ybqjymy

需要看下生成的数据在地球上的经纬度具体位置。

投影为墨卡托投影。

 1 clear all;
 2 close all;
 3 clc;
 4 
 5 load coast;
 6 a=load(\'out.txt\');  %自己的经纬度数据
 7 
 8 axesm mercator
 9 plotm(lat,long);
10 
11 hold on
12 plotm(a(:,1),a(:,2),\'.\')

 

 

分类:

技术点:

相关文章:

  • 2021-12-03
  • 2021-07-23
  • 2021-12-04
  • 2021-12-07
猜你喜欢
  • 2021-11-19
  • 2022-02-06
  • 2021-11-17
  • 2021-11-17
  • 2021-12-14
  • 2021-10-04
相关资源
相似解决方案