Opened 11 years ago

Last modified 10 years ago

#20253 closed New feature

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

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

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 (0)

Note: See TracTickets for help on using tickets.
Back to Top