具有公制网格覆盖的墨卡托投影(从中心开始的米增量) - GMT通用映射工具

时间:2016-02-06 16:28:37

标签: unix grid overlay gmt mercator

我有一张蒙特塞拉特的情节,中心位于-62.2°,16.75°,使用通用制图工具(GMT)创建了墨卡托投影,如下所示。

enter image description here

我想在此基础上添加一个网格,使用中心作为原点。但是,我想用米而不是度数来生成覆盖网格。 有没有一种方法可以指定-62.2°,16.75°作为原点,然后从原点(1000m,2000m,5000m等)产生1000m倍的网格线(也许通过psxy?)?

用于生成此图的代码是

 class Tabledata
{
    public string A { get; set; }
    public string B { get; set; }
    public string C { get; set; }

    public Tabledata(string a, string b, string c)
    {
        A = a;
        B = b;
        C = c;
    }

}

1 个答案:

答案 0 :(得分:0)

只需将度数转换为米;你的网格将是超小的

gmt pscoast -R-62.25/-62.12/16.65/16.84 -JM6i -P -B.01666666g.00898311174 -Ggray -Dh -Slightblue -Wred > GMT_tut_4.ps

enter image description here