How to add a point-feature shapefile to map using cartopy
问题 I have two shapefiles. One is a point feature shapefile, named "point.shp", the other is a polygon shapefile named "polygon.shp". Both I want to add to a map using cartopy. I managed to add the "polygon.shp", but failed with the "point.shp". Here's my code: 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