Spatial join points to polygons python

I want to create a simple spatial join between points and polygons using GeoPandas but I think GeoPandas has bug?

GeoPandas code:

from geopandas import gpd 
import geopandas 
points = geopandas.GeoDataFrame.from_file['points.shp'] # or geojson etc 
polys = geopandas.GeoDataFrame.from_file['polygons.shp'] 
pointInPoly = gpd.sjoin[points, polys, how='left',op='within'] 

Error :

Traceback [most recent call last]: 
  File "/home/username/testshapely/sumpointsinsidepolygon/testgeo.py", line 7, in  
    pointInPoly = gpd.sjoin[points, polys, how='left',op='within'] 
  File "/usr/local/lib/python2.7/dist-packages/geopandas/tools/sjoin.py", line 57, in sjoin 
    r_idx = np.concatenate[idxmatch.values] 
ValueError: need at least one array to concatenate 

And if I change the imports with the some code:

import geopandas 
import pandas as pd 
import geopandas as gpd 
from geopandas import GeoDataFrame, read_file 
from geopandas.tools import sjoin 
from shapely.geometry import Point, mapping,shape 
import pandas as gpd 

I get the following error:

    pointInPoly = gpd.sjoin[points, polys, how='left',op='within'] 
AttributeError: 'module' object has no attribute 'sjoin' 

Any ideas why?

Note

Interactive online version:

A spatial join uses binary predicates such as intersects and crosses to combine two GeoDataFrames based on the spatial relationship between their geometries.

A common use case might be a spatial join between a point layer and a polygon layer where you want to retain the point geometries and grab the attributes of the intersecting polygons.

Types of spatial joins¶

We currently support the following methods of spatial joins. We refer to the left_df and right_df which are the correspond to the two dataframes passed in as args.

Left outer join¶

In a LEFT OUTER JOIN [how='left'], we keep all rows from the left and duplicate them if necessary to represent multiple hits between the two dataframes. We retain attributes of the right if they intersect and lose right rows that don’t intersect. A left outer join implies that we are interested in retaining the geometries of the left.

This is equivalent to the PostGIS query:

SELECT pts.geom, pts.id as ptid, polys.id as polyid
FROM pts
LEFT OUTER JOIN polys
ON ST_Intersects[pts.geom, polys.geom];

                    geom                    | ptid | polyid
--------------------------------------------+------+--------
 010100000040A9FBF2D88AD03F349CD47D796CE9BF |    4 |     10
 010100000048EABE3CB622D8BFA8FBF2D88AA0E9BF |    3 |     10
 010100000048EABE3CB622D8BFA8FBF2D88AA0E9BF |    3 |     20
 0101000000F0D88AA0E1A4EEBF7052F7E5B115E9BF |    2 |     20
 0101000000818693BA2F8FF7BF4ADD97C75604E9BF |    1 |
[5 rows]

Right outer join¶

In a RIGHT OUTER JOIN [how='right'], we keep all rows from the right and duplicate them if necessary to represent multiple hits between the two dataframes. We retain attributes of the left if they intersect and lose left rows that don’t intersect. A right outer join implies that we are interested in retaining the geometries of the right.

This is equivalent to the PostGIS query:

SELECT polys.geom, pts.id as ptid, polys.id as polyid
FROM pts
RIGHT OUTER JOIN polys
ON ST_Intersects[pts.geom, polys.geom];

  geom    | ptid | polyid
----------+------+--------
 01...9BF |    4 |     10
 01...9BF |    3 |     10
 02...7BF |    3 |     20
 02...7BF |    2 |     20
 00...5BF |      |     30
[5 rows]

Inner join¶

In an INNER JOIN [how='inner'], we keep rows from the right and left only where their binary predicate is True. We duplicate them if necessary to represent multiple hits between the two dataframes. We retain attributes of the right and left only if they intersect and lose all rows that do not. An inner join implies that we are interested in retaining the geometries of the left.

This is equivalent to the PostGIS query:

SELECT pts.geom, pts.id as ptid, polys.id as polyid
FROM pts
INNER JOIN polys
ON ST_Intersects[pts.geom, polys.geom];

                    geom                    | ptid | polyid
--------------------------------------------+------+--------
 010100000040A9FBF2D88AD03F349CD47D796CE9BF |    4 |     10
 010100000048EABE3CB622D8BFA8FBF2D88AA0E9BF |    3 |     10
 010100000048EABE3CB622D8BFA8FBF2D88AA0E9BF |    3 |     20
 0101000000F0D88AA0E1A4EEBF7052F7E5B115E9BF |    2 |     20
[4 rows]

Spatial Joins between two GeoDataFrames¶

Let’s take a look at how we’d implement these using GeoPandas. First, load up the NYC test data into GeoDataFrames:

%matplotlib inline
from shapely.geometry import Point
from geopandas import datasets, GeoDataFrame, read_file

# NYC Boros
zippath = datasets.get_path['nybb']
polydf = read_file[zippath]

# Generate some points
b = [int[x] for x in polydf.total_bounds]
N = 8
pointdf = GeoDataFrame[[
    {'geometry': Point[x, y], 'value1': x + y, 'value2': x - y}
    for x, y in zip[range[b[0], b[2], int[[b[2] - b[0]] / N]],
                    range[b[1], b[3], int[[b[3] - b[1]] / N]]]]]

# Make sure they're using the same projection reference
pointdf.crs = polydf.crs

geometryvalue1value2012345678
POINT [913175.000 120121.000] 1033296 793054
POINT [932450.000 139211.000] 1071661 793239
POINT [951725.000 158301.000] 1110026 793424
POINT [971000.000 177391.000] 1148391 793609
POINT [990275.000 196481.000] 1186756 793794
POINT [1009550.000 215571.000] 1225121 793979
POINT [1028825.000 234661.000] 1263486 794164
POINT [1048100.000 253751.000] 1301851 794349
POINT [1067375.000 272841.000] 1340216 794534

BoroCodeBoroNameShape_LengShape_Areageometry01234
5 Staten Island 330470.010332 1.623820e+09 MULTIPOLYGON [[[970217.022 145643.332, 970227....
4 Queens 896344.047763 3.045213e+09 MULTIPOLYGON [[[1029606.077 156073.814, 102957...
3 Brooklyn 741080.523166 1.937479e+09 MULTIPOLYGON [[[1021176.479 151374.797, 102100...
1 Manhattan 359299.096471 6.364715e+08 MULTIPOLYGON [[[981219.056 188655.316, 980940....
2 Bronx 464392.991824 1.186925e+09 MULTIPOLYGON [[[1012821.806 229228.265, 101278...

Joins¶

join_left_df = pointdf.sjoin[polydf, how="left"]
join_left_df
# Note the NaNs where the point did not intersect a boro

geometryvalue1value2index_rightBoroCodeBoroNameShape_LengShape_Area012345678
POINT [913175.000 120121.000] 1033296 793054 NaN NaN NaN NaN NaN
POINT [932450.000 139211.000] 1071661 793239 0.0 5.0 Staten Island 330470.010332 1.623820e+09
POINT [951725.000 158301.000] 1110026 793424 0.0 5.0 Staten Island 330470.010332 1.623820e+09
POINT [971000.000 177391.000] 1148391 793609 NaN NaN NaN NaN NaN
POINT [990275.000 196481.000] 1186756 793794 NaN NaN NaN NaN NaN
POINT [1009550.000 215571.000] 1225121 793979 1.0 4.0 Queens 896344.047763 3.045213e+09
POINT [1028825.000 234661.000] 1263486 794164 4.0 2.0 Bronx 464392.991824 1.186925e+09
POINT [1048100.000 253751.000] 1301851 794349 NaN NaN NaN NaN NaN
POINT [1067375.000 272841.000] 1340216 794534 NaN NaN NaN NaN NaN

join_right_df = pointdf.sjoin[polydf, how="right"]
join_right_df
# Note Staten Island is repeated

index_leftvalue1value2BoroCodeBoroNameShape_LengShape_Areageometry001234
1.0 1071661.0 793239.0 5 Staten Island 330470.010332 1.623820e+09 MULTIPOLYGON [[[970217.022 145643.332, 970227....
2.0 1110026.0 793424.0 5 Staten Island 330470.010332 1.623820e+09 MULTIPOLYGON [[[970217.022 145643.332, 970227....
5.0 1225121.0 793979.0 4 Queens 896344.047763 3.045213e+09 MULTIPOLYGON [[[1029606.077 156073.814, 102957...
NaN NaN NaN 3 Brooklyn 741080.523166 1.937479e+09 MULTIPOLYGON [[[1021176.479 151374.797, 102100...
NaN NaN NaN 1 Manhattan 359299.096471 6.364715e+08 MULTIPOLYGON [[[981219.056 188655.316, 980940....
6.0 1263486.0 794164.0 2 Bronx 464392.991824 1.186925e+09 MULTIPOLYGON [[[1012821.806 229228.265, 101278...

join_inner_df = pointdf.sjoin[polydf, how="inner"]
join_inner_df
# Note the lack of NaNs; dropped anything that didn't intersect

geometryvalue1value2index_rightBoroCodeBoroNameShape_LengShape_Area1256
POINT [932450.000 139211.000] 1071661 793239 0 5 Staten Island 330470.010332 1.623820e+09
POINT [951725.000 158301.000] 1110026 793424 0 5 Staten Island 330470.010332 1.623820e+09
POINT [1009550.000 215571.000] 1225121 793979 1 4 Queens 896344.047763 3.045213e+09
POINT [1028825.000 234661.000] 1263486 794164 4 2 Bronx 464392.991824 1.186925e+09

We’re not limited to using the intersection binary predicate. Any of the Shapely geometry methods that return a Boolean can be used by specifying the op kwarg.

pointdf.sjoin[polydf, how="left", predicate="within"]

geometryvalue1value2index_rightBoroCodeBoroNameShape_LengShape_Area012345678
POINT [913175.000 120121.000] 1033296 793054 NaN NaN NaN NaN NaN
POINT [932450.000 139211.000] 1071661 793239 0.0 5.0 Staten Island 330470.010332 1.623820e+09
POINT [951725.000 158301.000] 1110026 793424 0.0 5.0 Staten Island 330470.010332 1.623820e+09
POINT [971000.000 177391.000] 1148391 793609 NaN NaN NaN NaN NaN
POINT [990275.000 196481.000] 1186756 793794 NaN NaN NaN NaN NaN
POINT [1009550.000 215571.000] 1225121 793979 1.0 4.0 Queens 896344.047763 3.045213e+09
POINT [1028825.000 234661.000] 1263486 794164 4.0 2.0 Bronx 464392.991824 1.186925e+09
POINT [1048100.000 253751.000] 1301851 794349 NaN NaN NaN NaN NaN
POINT [1067375.000 272841.000] 1340216 794534 NaN NaN NaN NaN NaN

We can also conduct a nearest neighbour join with sjoin_nearest.

pointdf.sjoin_nearest[polydf, how="left", distance_col="Distances"]
# Note the optional Distances column with computed distances between each point
# and the nearest polydf geometry.

geometryvalue1value2index_rightBoroCodeBoroNameShape_LengShape_AreaDistances012345678
POINT [913175.000 120121.000] 1033296 793054 0 5 Staten Island 330470.010332 1.623820e+09 1479.291092
POINT [932450.000 139211.000] 1071661 793239 0 5 Staten Island 330470.010332 1.623820e+09 0.000000
POINT [951725.000 158301.000] 1110026 793424 0 5 Staten Island 330470.010332 1.623820e+09 0.000000
POINT [971000.000 177391.000] 1148391 793609 2 3 Brooklyn 741080.523166 1.937479e+09 5075.979291
POINT [990275.000 196481.000] 1186756 793794 2 3 Brooklyn 741080.523166 1.937479e+09 22.361467
POINT [1009550.000 215571.000] 1225121 793979 1 4 Queens 896344.047763 3.045213e+09 0.000000
POINT [1028825.000 234661.000] 1263486 794164 4 2 Bronx 464392.991824 1.186925e+09 0.000000
POINT [1048100.000 253751.000] 1301851 794349 4 2 Bronx 464392.991824 1.186925e+09 818.940377
POINT [1067375.000 272841.000] 1340216 794534 4 2 Bronx 464392.991824 1.186925e+09 25368.109000

How do you do spatial join points and polygons?

To begin making a spatial join between a polygon layer and a point layer, right click on the polygon layer in the table of contents, and choose Joins and Relates>Join. The join dialogue opens. Make sure that in the dropdown at the top you have chosen “Join data from another layer based on spatial location.”

What is spatial join in Geopandas?

A spatial join uses binary predicates such as intersects and crosses to combine two GeoDataFrames based on the spatial relationship between their geometries.

How do you join polygons?

3] Select the polygons you want to merge [hold the Shift key while selecting the features so that you can select more than one], click the drop down arrow next to “Editor” on the Editor toolbar and click Merge.

Chủ Đề