How to calculate mean value of a raster for each polygon in a shape

The name of the pictureThe name of the pictureThe name of the pictureClash 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.










share|improve this question



























    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.










    share|improve this question























      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.










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 2 hours ago









      Tim C.

      410214




      410214




















          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)





          share|improve this answer




















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "79"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            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






























            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)





            share|improve this answer
























              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)





              share|improve this answer






















                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)





                share|improve this answer












                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)






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 1 hour ago









                joris

                881511




                881511



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    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













































































                    Comments

                    Popular posts from this blog

                    What does second last employer means? [closed]

                    List of Gilmore Girls characters

                    Confectionery