Changes between Initial Version and Version 1 of Ticket #37250


Ignore:
Timestamp:
Aug 4, 2026, 10:50:50 AM (104 minutes ago)
Author:
Jacob Walls
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #37250 – Description

    initial v1  
    1 The multivalued geometry fields, e.g. `Multipolygon` define which classes they can contain, e.g. `Polygon` and not `Point` via the private attribute `_allowed`.
     1The multivalued geometry fields, e.g. `MultiPolygon`, define which classes they can contain, e.g. `Polygon` but not `Point`, via the private attribute `_allowed`.
    22
    33`GeometryCollection` is generic, so it contains all the others:
     
    1717}}}
    1818
    19 However, this list should also contain itself, since `GeometryCollection` can be nested.
     19However, this list should also contain itself, since `GeometryCollection`s can be nested.
    2020
    2121In other words, this should work:
Back to Top