Question

improve speed of raster statistics?

  • 8 March 2021
  • 1 reply
  • 24 views

I've recently been using a lot of rasterio and rasterstats in python which operate orders of magnitude faster on my PC for basic operations such as zonal statistics than my approach in FME:

Clip rasters by polygons, then RasterStatisticsCalculator. Is there a more efficiently way of doing these sorts of operations?


1 reply

Userlevel 5
Badge +29

From my experience, RasterStatsCalc is pretty quick. So therefore I'm imagining that the slowness is at the clipping?

 

I've recently been working on a piece of work involving 10000s of rasters that have required similar workflows to above. What I have found worked well in my case (lots of small rasters - if you're dealing with large rasters, may be worth tiling them into smaller areas) is building your clip areas, then use the FeatureReader to read in rasters that intersect your clip areas. Then perform the clip.

 

This means each clip is only dealing with an area of rasters that are in close proximity to it. Should be much faster

Reply