How to calculate mean value of a raster for each polygon in a shape
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
1
down vote
favorite
I wrote a python script who calculate, for rasters, mean value for each polygon of a shapefile. But I think that it's a "war machine" (it takes many treatment time) and I would like to simplify it.
Is somebody know a simple way to do it?
I'm using geopandas for shapefile manipulations.
python raster shapefile polygon geopandas
add a comment |Â
up vote
1
down vote
favorite
I wrote a python script who calculate, for rasters, mean value for each polygon of a shapefile. But I think that it's a "war machine" (it takes many treatment time) and I would like to simplify it.
Is somebody know a simple way to do it?
I'm using geopandas for shapefile manipulations.
python raster shapefile polygon geopandas
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I wrote a python script who calculate, for rasters, mean value for each polygon of a shapefile. But I think that it's a "war machine" (it takes many treatment time) and I would like to simplify it.
Is somebody know a simple way to do it?
I'm using geopandas for shapefile manipulations.
python raster shapefile polygon geopandas
I wrote a python script who calculate, for rasters, mean value for each polygon of a shapefile. But I think that it's a "war machine" (it takes many treatment time) and I would like to simplify it.
Is somebody know a simple way to do it?
I'm using geopandas for shapefile manipulations.
python raster shapefile polygon geopandas
python raster shapefile polygon geopandas
asked 2 hours ago


Tim C.
410214
410214
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
You can use the rasterstats
package for this.
For example (assuming you have a geopandas.GeoDataFrame called gdf
):
from rasterstats import zonal_stats
with rasterio.open("/path/to/raster.tif") as src:
affine = src.transform
array = src.read(1)
df_zonal_stats = pd.DataFrame(zonal_stats(gdf, array, affine=affine))
# adding statistics back to original GeoDataFrame
gdf2 = pd.concat([gdf, df_zonal_stats], axis=1)
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
You can use the rasterstats
package for this.
For example (assuming you have a geopandas.GeoDataFrame called gdf
):
from rasterstats import zonal_stats
with rasterio.open("/path/to/raster.tif") as src:
affine = src.transform
array = src.read(1)
df_zonal_stats = pd.DataFrame(zonal_stats(gdf, array, affine=affine))
# adding statistics back to original GeoDataFrame
gdf2 = pd.concat([gdf, df_zonal_stats], axis=1)
add a comment |Â
up vote
2
down vote
You can use the rasterstats
package for this.
For example (assuming you have a geopandas.GeoDataFrame called gdf
):
from rasterstats import zonal_stats
with rasterio.open("/path/to/raster.tif") as src:
affine = src.transform
array = src.read(1)
df_zonal_stats = pd.DataFrame(zonal_stats(gdf, array, affine=affine))
# adding statistics back to original GeoDataFrame
gdf2 = pd.concat([gdf, df_zonal_stats], axis=1)
add a comment |Â
up vote
2
down vote
up vote
2
down vote
You can use the rasterstats
package for this.
For example (assuming you have a geopandas.GeoDataFrame called gdf
):
from rasterstats import zonal_stats
with rasterio.open("/path/to/raster.tif") as src:
affine = src.transform
array = src.read(1)
df_zonal_stats = pd.DataFrame(zonal_stats(gdf, array, affine=affine))
# adding statistics back to original GeoDataFrame
gdf2 = pd.concat([gdf, df_zonal_stats], axis=1)
You can use the rasterstats
package for this.
For example (assuming you have a geopandas.GeoDataFrame called gdf
):
from rasterstats import zonal_stats
with rasterio.open("/path/to/raster.tif") as src:
affine = src.transform
array = src.read(1)
df_zonal_stats = pd.DataFrame(zonal_stats(gdf, array, affine=affine))
# adding statistics back to original GeoDataFrame
gdf2 = pd.concat([gdf, df_zonal_stats], axis=1)
answered 1 hour ago
joris
881511
881511
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f297076%2fhow-to-calculate-mean-value-of-a-raster-for-each-polygon-in-a-shape%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password