Problem About 3D Plot Of Map
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi everyone,
I am trying to plot 3D map whose x and y axis are located on 2D map specified by using worldmap and geoshow functions and z axis is assigned as depth. But, the code I am trying to develop doesn't give what I am expecting. Here is my code;
worldmap([37.400 39.200],[42.000 44.400]);
geoshow('landareas.shp', 'FaceColor', 'yellow');
Latitude=[38.8435 38.8420 38.7043 38.8430 38.8335];
Longitude=[43.5308 43.5710 43.4535 43.4585 43 5795];
Depth=[21.71 21.9 21 25.5 21.8];
plot3m(Latitude,Longitude,Depth, 'o', 'MarkerSize', 3,...
'MarkerFaceColor','r');
How can I solve this problem?
댓글 수: 0
답변 (1개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!