Checking if a geocoordinate point is land or ocean with cartopy?
问题 I want to know given a latitude and longitude if a coordinate is land or sea According to https://gis.stackexchange.com/questions/235133/checking-if-a-geocoordinate-point-is-land-or-ocean from mpl_toolkits.basemap import Basemap bm = Basemap() # default: projection='cyl' print bm.is_land(99.675, 13.104) #True print bm.is_land(100.539, 13.104) #False The problem is that basemap is deprecated. how di perform this with cartopy? 回答1: A question which deals with point containment testing of