Changes between Initial Version and Version 1 of Ticket #37250
- Timestamp:
- Aug 4, 2026, 10:50:50 AM (104 minutes ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #37250 – Description
initial v1 1 The multivalued geometry fields, e.g. `Multi polygon` define which classes they can contain, e.g. `Polygon` and not `Point`via the private attribute `_allowed`.1 The multivalued geometry fields, e.g. `MultiPolygon`, define which classes they can contain, e.g. `Polygon` but not `Point`, via the private attribute `_allowed`. 2 2 3 3 `GeometryCollection` is generic, so it contains all the others: … … 17 17 }}} 18 18 19 However, this list should also contain itself, since `GeometryCollection` can be nested.19 However, this list should also contain itself, since `GeometryCollection`s can be nested. 20 20 21 21 In other words, this should work: