필터 지우기
필터 지우기

I have latitude, longitude and Height data in form matrix, then I would plot these values in 3D plot just like how surface looks.

조회 수: 6 (최근 30일)
I just want to plot like 3D surface how generally we see with lat, lon and height data. Can I plot this directly with any commands or should I do anything else in data before we apply commands

답변 (1개)

Yavor Kamer
Yavor Kamer 2018년 10월 13일
lat and lon are in degrees and height is in meter/kilometers etc. If you want to plot them in the same plot (with plot3 for example) you need to convert lat and lon to the same units as your height.
If you have mapping toolbox you can use mfwdtran with a suitable projection for your region of interest.
  댓글 수: 3
Yavor Kamer
Yavor Kamer 2018년 10월 15일
You can use the function scatter3 like this:
scatter3(x,y,z,10,z)
10 is the symbol size and the last z tells it to use altitude for coloring
sivaiah borra
sivaiah borra 2018년 10월 15일
Thank you for your answer. It is giving only 3D line graph but, i want to plot 3D spatial plot or 3D Surface plot
just like how surface topography appears in 3D as given above image

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

Community Treasure Hunt

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

Start Hunting!

Translated by