Changes between Initial Version and Version 1 of Ticket #31967, comment 14


Ignore:
Timestamp:
Sep 19, 2023, 11:02:22 PM (8 months ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31967, comment 14

    initial v1  
    11I suggest posting your question in the [https://forum.djangoproject.com/c/internals/geodjango/13 GeoDjango category of the forum] instead.
     2
     3I suspect you only have to pass `output_field=models.MultiPolygonField()` when initializing your `SimplifyPreserveTopology` as hinted by the error message: `You must set output_field.`
     4
     5{{{#!python
     6SimplifyPreserveTopology(
     7    F(geometry), 0.0439453125, output_field=models.MultiPolygonField()
     8)
     9}}}
Back to Top