如何在底图中设置LCC的x_0,y_0(虚假向东/虚假北向)

时间:2019-04-16 09:22:08

标签: matplotlib-basemap pyproj

我正在将matplotlib-basemap与LCC投影配合使用。

使用.proj4string后,我在地图数据中找到默认值x_0,y_0

我要将x_0,y_0设置为0。

但是我找不到关于虚假东移和虚假北移的变量

如何将x_0,y_0的值设置为0?

https://matplotlib.org/basemap/api/basemap_api.html-没有有关x_0,y_0的参数数据

>>> map_lcc=Basemap(width=8000000,height=8000000, rsphere=(6378206.4,6356583.8),
...             resolution='l',area_thresh=1000.0,projection='lcc',
...             lat_1=33,lat_2=45,lat_0=23,lon_0=-96)
>>> map_lcc.proj4string
'+a=6378206.4 +b=6356583.8 +y_0=4000000.0 +lon_0=-96.0 +proj=lcc +x_0=4000000.0 +units=m +lat_2=45.0 +lat_1=33.0 +lat_0=23.0 '

0 个答案:

没有答案