You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
Allow displaying large vector data sources, e.g. the Glaciers CCI Shapefiles comprising several ten-thousand polygons each having thousands of coordinates.
for all features if len(data_frame) > config.num_features_max
feature by feature if len(data_frame) <= config.num_features_max and num_coords(feature) > config num_coords_max
allow expanding of point simplified geometries at certain zoom level (preferred) OR toggle expanded/collapsed state by (right?)clicking. Align with Allow selecting geometries on 3D globe #489
use a special style for feature geometries that are expandable/collapsible.
The text was updated successfully, but these errors were encountered:
Allow displaying large vector data sources, e.g. the Glaciers CCI Shapefiles comprising several ten-thousand polygons each having thousands of coordinates.
See Vector-Data-and-FATs.
To do:
len(data_frame) > config.num_features_max
len(data_frame) <= config.num_features_max and num_coords(feature) > config num_coords_max
The text was updated successfully, but these errors were encountered: