地理点超出预期边界
Geographic points extend beyond expected boundary
我有一个包含在 GeoDataFrame 中的美国位置的点几何。
我想将其绘制为美国地图上的散点图。
我的代码是:
import numpy as np
import geopandas as gpd
import libpysal
import contextily as ctx
import matplotlib.pyplot as plt
from shapely.ops import cascaded_union
gdf = gpd.GeoDataFrame(point_geometry, geometry='geometry')
boundary = gpd.read_file(libpysal.examples.get_path('us48.shp'))
fig, ax = plt.subplots(figsize=(50, 50))
boundary.plot(ax=ax, color="gray")
gdf.plot(ax=ax, markersize=3.5, color="black")
ax.axis("off")
plt.axis("equal")
plt.show()
检查图表后,这些点超出了我的预期范围。
有什么我想念的吗?
我需要创建一个边界来限制点的分散吗?
情节看起来不错。我想你想排除美国本土以外的地方。这些点显然在夏威夷、阿拉斯加和加拿大。
从你的地理数据框 point
几何 gdf 和 polygon
几何 边界 ,你可以创建一个适当的边界,可以用来限制点的分散。
# need this module
from shapely.ops import cascaded_union
# create the conterminous USA polygon
poly_union = cascaded_union([poly for poly in boundary.geometry])
# get a selection from `gdf`, taking points within `poly_union`
points_within = gdf[gdf.geometry.within(poly_union)]
现在,points_within
是一个地理数据框,您可以用来代替 gdf
进行绘图。
points_within.plot(ax=ax, markersize=3.5, color="black")
我有一个包含在 GeoDataFrame 中的美国位置的点几何。 我想将其绘制为美国地图上的散点图。 我的代码是:
import numpy as np
import geopandas as gpd
import libpysal
import contextily as ctx
import matplotlib.pyplot as plt
from shapely.ops import cascaded_union
gdf = gpd.GeoDataFrame(point_geometry, geometry='geometry')
boundary = gpd.read_file(libpysal.examples.get_path('us48.shp'))
fig, ax = plt.subplots(figsize=(50, 50))
boundary.plot(ax=ax, color="gray")
gdf.plot(ax=ax, markersize=3.5, color="black")
ax.axis("off")
plt.axis("equal")
plt.show()
检查图表后,这些点超出了我的预期范围。 有什么我想念的吗? 我需要创建一个边界来限制点的分散吗?
情节看起来不错。我想你想排除美国本土以外的地方。这些点显然在夏威夷、阿拉斯加和加拿大。
从你的地理数据框 point
几何 gdf 和 polygon
几何 边界 ,你可以创建一个适当的边界,可以用来限制点的分散。
# need this module
from shapely.ops import cascaded_union
# create the conterminous USA polygon
poly_union = cascaded_union([poly for poly in boundary.geometry])
# get a selection from `gdf`, taking points within `poly_union`
points_within = gdf[gdf.geometry.within(poly_union)]
现在,points_within
是一个地理数据框,您可以用来代替 gdf
进行绘图。
points_within.plot(ax=ax, markersize=3.5, color="black")