Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/contrib/gis/gdal/layer.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed E265 comment styleCollin Anderson2015-02-061-3/+2
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-10/+9
|
* Fixed #24014 -- Unified OGRException and GDALExceptionClaude Paroz2014-12-181-5/+5
| | | | Thanks Tim Graham for the review.
* Fixed #23812 -- Changed django.utils.six.moves.xrange ↵Michael Hall2014-12-131-7/+7
| | | | imports to range
* Corrected many style guide violations that the newest ↵Alex Gaynor2014-03-301-1/+1
| | | | version of flake8 catches
* Continue to attack E302 violationsAlex Gaynor2013-11-021-0/+1
|
* Fixed #21270 -- Fixed E701 pep8 warningsAlasdair Nicol2013-10-171-2/+4
|
* Use smarter string decoding in GeoDjangoClaude Paroz2012-10-081-4/+6
| | | | | | | | | The first try to solve the Python 3 GIS encoding/decoding issue was too naive. Using decode() on all read strings is bound to fail as soon as a non-ascii string is concerned. This patch is a little more clever, leaving ascii decoding when plain ascii strings are expected, and allowing to specify a custom encoding in DataSource hierarchy.
* Fixed #18640 -- Allowed access to GDAL Feature without ↵Claude Paroz2012-10-071-2/+2
| | | | | | Datasource Thanks Justin Bronn for improving my initial patch.
* [py3] Fixed GEOS/GDAL testsClaude Paroz2012-09-231-2/+3
|
* [py3] Added Python 3 compatibility for xrange.Aymeric Augustin2012-07-221-0/+1
|
* [py3] Removed longs.Aymeric Augustin2012-07-221-8/+10
|
* Added support for spatially filtering what OGR features ↵Justin Bronn2009-11-101-3/+27
| | | | | | are returned in iteration via the `Layer.spatial_filter` property. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11727 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Maintenance refactor of the GDAL (OGR) ctypes interface. ↵Justin Bronn2009-03-081-26/+21
| | | | | | | | | | | | | | | | Changes include: * All C API method explictly called from their prototype module, no longer imported via *. * Applied DRY to C pointer management, classes that do so subclass from `GDALBase`. * `OGRGeometry`: Added `from_bbox` class method (patch from Christopher Schmidt) and `kml` property. * `SpatialReference`: Now initialize with `SetFromUserInput` (initialization is now more simple and flexible); removed duplicate methods. * `Envelope`: Added `expand_to_include` method and now allow same coordinates for lower left and upper right points. Thanks to Paul Smith for tickets and patches. * `OGRGeomType`: Now treat OGC 'Geometry' type as 'Unknown'. Fixed #9855, #10368, #10380. Refs #9806. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9985 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9448 -- `Layer` objects now carry a reference to ↵Justin Bronn2008-10-261-2/+8
| | | | | | their parent `DataSource`. Thanks, Matthew D. Hancher for the bug report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9284 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Merged the gis branch into trunk.Justin Bronn2008-08-051-0/+187
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8219 bcc190cf-cafb-0310-a4f2-bffc1f526a37