Speed up Earth file loading #2446
-
Is there a way to speed up the loading of an earth file? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
There are several tips on preprocessing and optimizing your data here. |
Beta Was this translation helpful? Give feedback.
-
I have already optimized my geotiff by adding overviews (last overview is 128x128 pixel) and generated the spatial index for my shapefiles. |
Beta Was this translation helpful? Give feedback.
5000 geotiffs at high resolution can be quite difficult to load using the GDAL driver even if they have overviews. You should consider creating an mbtiles or a TMS dataset out of the data using osgearth_conv (or any other tool) or put your data behind a server that caches tiles so they aren't generated each time.