geopandas 自带的几个数据集
- import geopandas as gpd
- import pandas as pd
-
- pd.set_option('display.max_rows',None)
- gpd.read_file(gpd.datasets.get_path('naturalearth_lowres'))

| pop_est | 人口数量 |
| continent | 国家所在的大陆 |
| name | 国家的名称 |
| iso_a3 | 国家的三个字母的ISO代码 |
| gdp_md_est | 国家的估计GDP(以百万为单位) |
| geometry | 国家的地理边界。这可以是POLYGON(多边形)或MULTIPOLYGON(多个多边形的集合,常用于有多个岛屿的国家) |
gpd.read_file(gpd.datasets.get_path('naturalearth_cities'))

gpd.read_file(gpd.datasets.get_path('nybb'))
