tiandsp

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

投影为墨卡托投影。

clear all;
close all;
clc;

load coast;
a=load(\'out.txt\');  %自己的经纬度数据

axesm mercator
plotm(lat,long);

hold on
plotm(a(:,1),a(:,2),\'.\')

分类:

技术点:

相关文章:

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