Opened 11 years ago

Last modified 10 years ago

#20253 closed New feature

GeoDjango - made GeoQuerySet.extent() available with Spatialite — at Version 2

Reported by: burton449geo@… Owned by: nobody
Component: GIS Version: dev
Severity: Normal Keywords: GeoDjango, Spatialite
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Ramiro Morales)

It could be a good idea to implement a GeoQuerySet.extent() for spatialite using this sql query:

SELECT Min(MbrMinX(geometry)), Min(MbrMinY(geometry)), Max(MbrMaxX(geometry)), Max(MbrMaxY(geometry)
FROM MyTable;

Change History (2)

comment:1 by Claude Paroz, 11 years ago

Triage Stage: UnreviewedAccepted
Version: 1.4master

comment:2 by Ramiro Morales, 11 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top