我正在尝试使用matplotlib和cartopy创建一个Choropleth地图,我显然需要先绘制一个shapefile。但是,即使提出类似问题here和here,我仍未设法这样做。我怀疑投影或界限是错误指定的。
我的shapefile有投影
PROJCS["WGS_1984_UTM_Zone_32Nz",
GEOGCS["GCS_WGS_1984",
DATUM["WGS_1984",
SPHEROID["WGS_84",6378137,298.257223563]],
PRIMEM["Greenwich",0],
UNIT["Degree",0.017453292519943295]],
PROJECTION["Transverse_Mercator"],
PARAMETER["False_Easting",32500000],
PARAMETER["False_Northing",0],
PARAMETER["Central_Meridian",9],
PARAMETER["Scale_Factor",0.9996],
PARAMETER["Latitude_Of_Origin",0],
UNIT["Meter",1]]
可以下载here,我在谈论vg250_2010-01-01.utm32w.shape.ebenen/vg250_ebenen-historisch/de1001/vg250_gem.shp
我的代码是
#!/usr/local/bin/python
# -*- coding: utf8 -*-
import cartopy.crs as ccrs
import cartopy.io.shapereader as shpreader
import matplotlib.pyplot as plt
fname = 'path/vg250_gem.shp'
proj = ccrs.TransverseMercator(central_longitude=0.0,central_latitude=0.0,
false_easting=32500000.0,false_northing=0.0,
scale_factor=0.9996)
municipalities = list(shpreader.Reader(fname).geometries())
ax = plt.axes(projection=proj)
plt.title('Deutschland')
ax.add_geometries(municipalities,proj,edgecolor='black',facecolor='gray',alpha=0.5)
ax.set_extent([32458044.649189778*0.9, 5556418.748046352*1.1, 32465287.307457082*0.9, 5564153.5456742775*1.1],proj)
plt.show()
我使用fiona的相应方法获得了边界。 Python抛出错误
Traceback (most recent call last):
File "***/src/analysis/test.py", line 16, in <module>
ax.set_extent([32458044.649189778, 5556418.748046352, 32465287.307457082, 5564153.5456742775],proj)
File "/usr/local/lib/python2.7/site-packages/cartopy/mpl/geoaxes.py", line 652, in set_extent
ylim=self.projection.y_limits))
ValueError: Failed to determine the required bounds in projection coordinates. Check that the values provided are within the valid range (x_limits=[-20000000.0, 20000000.0], y_limits=[-10000000.0, 10000000.0]).
[Finished in 53.9s with exit code 1]
这对我没有意义。此外,尝试使用ccrs.UTM()给出了一个显示白色区域的图表。如果有人能告诉我如何解决这个问题,我会很感激。谢谢!
答案 0 :(得分:1)
我发现了两个问题。一个是对set_extent
的调用中的限制规范不正确,documentation指定[x0,x1,y0,y1]
应该是输入,您似乎已经给出了[x0,y0,x1,y1]
。
另一个问题似乎是卡车的限制,我能说的最好。看起来错误消息中列出的限制之外的投影将始终失败,并且这些限制是硬编码的。您可以编辑源代码(this line in their latest release),将-2e7
更改为-4e7
,同样也可以修改上限。完成这些修复后,您的绘图生成没有问题:
新的set_extent
行:
ax.set_extent([32458044.649189778*0.975, 32465287.307457082*1.025,5556418.748046352*0.9, 556415,3.5456742775*1.1],proj)
您可能还想在central_longitude=9.0
中设置TransverseMercator
,这似乎是您在shapefile中指定的内容。
我建议联系开发人员,他们可能有充分的理由设置这些界限,或者他们可能有更好的解决方法,或者他们可能会在以后的版本中拓宽界限!
<强>更新强>
您的界限似乎也仅基于municipalities
中的第一个设置:
In [34]: municipalities[0].bounds
Out[34]: (32458044.649189778, 5556418.748046352, 32465287.307457082, 5564153.5456742775)
但其他元素有不同的界限。您可以根据所有municipalities
边界的最小值/最大值来获取刷新到实际绘图的限制。
bnd = np.array([i.bounds for i in municipalities])
x0,x1 = np.min(bnd[:,0]),np.max(bnd[:,2])
y0,y1 = np.min(bnd[:,1]),np.max(bnd[:,3])
ax.set_extent([x0,x1,y0,y1],proj)