ncl 添加点shp文件_如何使用cartopy添加点要素shapefile以进行地图绘制

我有两个shapefile.一个是点特征shapefile,名为“point.shp”,另一个是名为“polygon.shp”的多边形shapefile.我想用cartopy添加到地图.

我设法添加“polygon.shp”,但失败了“point.shp”.

这是我的代码:

import matplotlib.pyplot as plt

from cartopy import crs

from cartopy.io.shapereader import Reader

from cartopy.feature import ShapelyFeature

ax = plt.axes(projection=crs.PlateCarree())

# add the polygon file, worked

ax.add_geometries(Reader("polygon.shp").geometries(), crs.PlateCarree(), facecolor='w')

# or(also worked):

ax.add_feature(ShapelyFeature(Reader("polygon.shp").geometries(), crs.PlateCarree(), facecolor='r'))

# but these two ways both failed with the "point.shp"

ax.add_geometries(Reader("point.shp").geometries(), crs.PlateCarree())

# or, this doesn't work neither:

ax.add_feature(ShapelyFeature(Reader("polygon.shp").geometries(), crs.PlateCarree(), facecolor='r'))

有没有人知道如何做到这一点,或为什么,没有检索所有点’x,y coords然后绘制它们?

使用坐标(x,y值),ax.plot()可以工作,但是ax.scatter()会失败,为什么?

谢谢

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值