Plot .grd file

조회 수: 12 (최근 30일)
P_L
P_L 2019년 2월 24일
댓글: Walter Roberson 2019년 2월 28일
Hi there, I am relatively new to matlab and am using it for a very important project. I am hoping to use a .grd file to plot a topographic map of a major fault in Turkey and some data (my results) over it. However, I am really struggling to plot the .grd file in Matlab - I have tried grdinfo2 and grdread2 but i keep getting errors.
I have tried youtube and looking on here for relevant documentation but can't get anything to work. If anyone would be so kind as to help/ advise it would be very much appreciated.
Many thanks
  댓글 수: 5
P_L
P_L 2019년 2월 25일
편집: P_L 2019년 2월 25일
Hi Walter, thanks again for getting back to me!
I have another question if you'd be so kind to help.. I am now trying to plot my data on top of the topography as mentioned before. I have used the function shadem to colour it correctly and now my data points for my stations get 'lost' in the topography. They show up fine when i don't use 'shadem' however, the quality of the topography is too poor my project. 1) Is there a way to stop my data points from getting lost?
Many thanks
h = pcolor(X,Y, Z);
shading interp
h.EdgeColor = 'none';
xlabel('Longitude (deg, E)');
ylabel('Latitude (deg, N)')
shadem('phong')
%axis([30 30.1 40 41.1 10.9 0 2500])
hold on
% plot for stations
load station_location.txt
latitude= station_location(:,1);
longitude= station_location(:,2);
elevation= station_location(:,3);
% plot them
plot(longitude,latitude,'^','MarkerSize',5,'MarkerFaceColor', [0.6350 0.0780 0.1840])
Walter Roberson
Walter Roberson 2019년 2월 28일
shadem() would be for the Mapping Toolbox; some of the routines you are using such as plot() are not appropriate if you are working with a mapping axes. If you are using a mapping axes then you should use surfm() instead of pcolor(), and plotm() instead of plot()

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

채택된 답변

KSSV
KSSV 2019년 2월 25일
편집: KSSV 2019년 2월 25일
pcolor(Y,X,Z)
shading interp
  댓글 수: 1
P_L
P_L 2019년 2월 25일
Thank you :)

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by