python 从远程GeoJSON创建geopandas GeoDataFrame

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 从远程GeoJSON创建geopandas GeoDataFrame相关的知识,希望对你有一定的参考价值。

import requests, json, geopandas as gpd

def remoteGeoJSONToGDF(url, display = False):
    """Import remote GeoJSON to a GeoDataFrame
    Keyword arguments:
    url -- URL to GeoJSON resource on web
    display -- Displays geometries upon loading (default: False)
    """
    r = requests.get(url)
    data = r.json()
    gdf = gpd.GeoDataFrame.from_features(data['features'])
    if display:
        gdf.plot()
    return gdf

以上是关于python 从远程GeoJSON创建geopandas GeoDataFrame的主要内容,如果未能解决你的问题,请参考以下文章

python 远程GeoJSON到GDF示例

如何从 GeoJson 创建 utfgrid 瓦片?

从 GeoJSON 对象创建 GeoDataFrame

如何从图像叠加层创建 geojson 文件?

如何使用 react-leaflet 从 geojson 数据创建图例

如何在创建 geojson 时处理 NaN 值