Re: [Django] #20253: GeoDjango - made GeoQuerySet.extent() available with Spatialite

2014-08-23 Thread Django
#20253: GeoDjango - made GeoQuerySet.extent() available with Spatialite
-+-
 Reporter:  burton449geo@…   |Owner:  nobody
 Type:  New feature  |   Status:  closed
Component:  GIS  |  Version:  master
 Severity:  Normal   |   Resolution:  fixed
 Keywords:  GeoDjango,   | Triage Stage:  Accepted
  Spatialite |  Needs documentation:  0
Has patch:  0|  Patch needs improvement:  0
  Needs tests:  0|UI/UX:  0
Easy pickings:  0|
-+-
Changes (by claudep):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 This has been added in [a7d964ab87ad7352af3e33b8f3c12e4643a80f02] for
 Spatialite >= 3 (which really supports `Extent`).

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/080.d56bfcb49018f71f8212ed295775ce63%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #20253: GeoDjango - made GeoQuerySet.extent() available with Spatialite

2013-12-06 Thread Django
#20253: GeoDjango - made GeoQuerySet.extent() available with Spatialite
-+-
 Reporter:  burton449geo@…   |Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  GIS  |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  GeoDjango,   | Triage Stage:  Accepted
  Spatialite |  Needs documentation:  0
Has patch:  0|  Patch needs improvement:  0
  Needs tests:  0|UI/UX:  0
Easy pickings:  0|
-+-

Comment (by ramiro):

 See also #12733 that ask for the same feature for MySQL.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/080.4868621b3c32beab6c49fa6e94a48f7c%40djangoproject.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [Django] #20253: GeoDjango - made GeoQuerySet.extent() available with Spatialite

2013-12-05 Thread Django
#20253: GeoDjango - made GeoQuerySet.extent() available with Spatialite
-+-
 Reporter:  burton449geo@…   |Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  GIS  |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  GeoDjango,   | Triage Stage:  Accepted
  Spatialite |  Needs documentation:  0
Has patch:  0|  Patch needs improvement:  0
  Needs tests:  0|UI/UX:  0
Easy pickings:  0|
-+-
Description changed by ramiro:

Old 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;

New 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;
 }}}

--

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/080.1f14ed4cc265b2aa5f0a5743b491b4d6%40djangoproject.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [Django] #20253: GeoDjango - made GeoQuerySet.extent() available with Spatialite

2013-04-12 Thread Django
#20253: GeoDjango - made GeoQuerySet.extent() available with Spatialite
-+-
 Reporter:  burton449geo@…   |Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  GIS  |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  GeoDjango,   | Triage Stage:  Accepted
  Spatialite |  Needs documentation:  0
Has patch:  0|  Patch needs improvement:  0
  Needs tests:  0|UI/UX:  0
Easy pickings:  0|
-+-
Changes (by claudep):

 * needs_better_patch:   => 0
 * version:  1.4 => master
 * needs_tests:   => 0
 * needs_docs:   => 0
 * stage:  Unreviewed => Accepted


-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[Django] #20253: GeoDjango - made GeoQuerySet.extent() available with Spatialite

2013-04-12 Thread Django
#20253: GeoDjango - made GeoQuerySet.extent() available with Spatialite
+---
 Reporter:  burton449geo@…  |  Owner:  nobody
 Type:  New feature | Status:  new
Component:  GIS |Version:  1.4
 Severity:  Normal  |   Keywords:  GeoDjango, Spatialite
 Triage Stage:  Unreviewed  |  Has patch:  0
Easy pickings:  0   |  UI/UX:  0
+---
 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;

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.