Speeding up the rendering of large shapefiles... #1862
-
I have a large shapefile that defines country boundaries that I would like to speed up the rendering. When I enable this shapefile, I see a 12fps performance hit in the overall fps. I tried generating the qix index file for the shapefile with the command: ogrinfo -sql "CREATE SPATIAL INDEX ON world" world.shp which generated the world.qix file. However, it didn't seem to make any difference in speeding things up. My earth file has the following entry in it for the shapefile:
Is there something else I need to do to get this to work? If not, are there any other suggestions to speed up the rendering of large shapefiles? Thx Shayne |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Any chance this is a publically available shapefile? How many features? Is it many features in a small area? My first thought is use max_range="20000" and not "1e10" |
Beta Was this translation helpful? Give feedback.
-
Consider going with a |
Beta Was this translation helpful? Give feedback.
Consider going with a
FeatureImage
instead of aFeatureModel
layer.