繁体   English   中英

Geopandas:多边形和点之间的差异()方法

[英]Geopandas : difference() methode between polygon and points

我正在测试geopandas以使事情变得非常简单:使用差异方法删除圆内的GeoDataFrame的某些点。

这是我的脚本的开头:

%matplotlib inline
# previous line is because I used ipynb
import pandas as pd
import geopandas as gp
from shapely.geometry import Point
[...]
points_df = gp.GeoDataFrame(csv_file, crs=None, geometry=geometry)

这是points_df的第一行:

    Name        Adress      geometry
0   place1      street1     POINT (6.182674 48.694416)
1   place2      street2     POINT (6.177306 48.689889)
2   place3      street3     POINT (6.18 48.69600000000001)
3   place4      street4     POINT (6.1819 48.6938)
4   place5      street5     POINT (6.175694 48.690833)

然后,我添加一个包含第一个GeoDF的几个点的点:

base = points_df.plot(marker='o', color='red', markersize=5)

center_coord = [Point(6.18, 48.689900)]
center = gp.GeoDataFrame(crs=None, geometry=center_coord)
center.plot(ax=base, color = 'blue',markersize=5)

circle = center.buffer(0.015)
circle.plot(ax=base, color = 'green')

这是iPython笔记本显示的结果:

多边形和点

现在,目标是删除绿色圆圈内的红点。 要做到这一点,我认为差异方法就足够了。 但是当我写道:

selection = points_df['geometry'].difference(circle)
selection.plot(color = 'green', markersize=5)

结果是......没有改变points_df:

没有变化

我想,difference()方法仅适用于多边形GeoDataFrames,并且点和多边形之间的混合不可行。 但也许我错过了什么!

在这种情况下,测试圆中一个点的存在的函数是否优于差分方法?

我想,difference()方法仅适用于多边形GeoDataFrames,并且点和多边形之间的混合不可行。

这似乎是问题,你不能使用叠加点。

而且对于那种空间操作,简单的空间连接似乎是最简单的解决方案。

从最后一个示例开始;):

%matplotlib inline
import pandas as pd
import geopandas as gp
import numpy as np
import matplotlib.pyplot as plt
from shapely.geometry import Point

# Create Fake Data
df = pd.DataFrame(np.random.randint(10,20,size=(35, 3)), columns=['Longitude','Latitude','data'])

# create Geometry series with lat / longitude
geometry = [Point(xy) for xy in zip(df.Longitude, df.Latitude)]

df = df.drop(['Longitude', 'Latitude'], axis = 1)

# Create GeoDataFrame
points = gp.GeoDataFrame(df, crs=None, geometry=geometry)

# Create Matplotlib figure
fig, ax = plt.subplots()

# Set Axes to equal (otherwise plot looks weird)
ax.set_aspect('equal')

# Plot GeoDataFrame on Axis ax
points.plot(ax=ax,marker='o', color='red', markersize=5)

# Create new point
center_coord = [Point(15, 13)]
center = gp.GeoDataFrame(crs=None, geometry=center_coord)

# Plot new point
center.plot(ax=ax,color = 'blue',markersize=5)
# Buffer point and plot it
circle = gp.GeoDataFrame(crs=None, geometry=center.buffer(2.5))

circle.plot(color = 'white',ax=ax)

问题

让我们知道如何确定一个点是在多边形的内部还是外部的问题...实现这一点的一种方法是加入多边形内的所有点,并创建一个DataFrame,其中包含所有点和点之间的差异。圈:

# Calculate the points inside the circle 

pointsinside = gp.sjoin(points,circle,how="inner")

# Now the points outside the circle is just the difference 
# between  points and points inside (see the ~)

pointsoutside = points[~points.index.isin(pointsinside.index)]


# Create a nice plot 
fig, ax = plt.subplots()
ax.set_aspect('equal')
circle.plot(color = 'white',ax=ax)
center.plot(ax=ax,color = 'blue',markersize=5)
pointsinside.plot(ax=ax,marker='o', color='green', markersize=5)

pointsoutside.plot(ax=ax,marker='o', color='yellow', markersize=5)

print('Total points:' ,len(points))
print('Points inside circle:' ,len(pointsinside))
print('Points outside circle:' ,len(pointsoutside))

总分:35

圈内点数:10

圈外点数:25

问题解决了 ;)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM