필터 지우기
필터 지우기

How do I deidentify geoplot data?

조회 수: 5 (최근 30일)
Mia Hoffman
Mia Hoffman 2021년 11월 24일
댓글: Dave B 2021년 11월 24일
When using geoplot, the latitude and longitude values are automatically added to the axes. Additionally, the street names are also shown. Does anyone know how to turn off the xticks and yticks in a geoplot? Also, does anyone know how to turn off geolabels on the plot, such as street and park names?

답변 (1개)

Dave B
Dave B 2021년 11월 24일
You can turn off the Tick marks with the TickDir property on the GeographicAxes:
geoplot(42+rand(10,1), -71+rand(10,1))
ax=gca;
ax.TickDir='none';
(note: on older MATLAB's you had to instead set the TickLength property to [0 0])
To remove the tick labels (and the marks along with them), you have to drill down into the Latitude and Longitude axis:
geoplot(42+rand(10,1), -71+rand(10,1))
ax.LatitudeAxis.TickValues=[];
ax.LongitudeAxis.TickValues=[];
I'm less sure about turning off the labels, I think they just come with the basemap?
  댓글 수: 1
Dave B
Dave B 2021년 11월 24일
(for the words 'Latitude' and 'Longitude')
ax.LatitudeAxis.Label.String='';
ax.LongitudeAxis.Label.String='';

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Geographic Plots에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by