Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/contrib/gis/gdal
Commit message (Collapse)AuthorAgeFilesLines
* Refs #25588 -- Added the srid property to GDALRasterDaniel Wiesmann2015-10-281-0/+14
| | | | | Geometry objects have an srid property, so this addition makes the raster api more similar to the geometries api.
* Fixed #25585 -- Allowed setting OGRGeometry srid/srs ↵Sergey Fedoseev2015-10-221-1/+3
| | | | attributes to `None`.
* Fixed #25533 -- Changed datatype mapping for GDALRastersDaniel Wiesmann2015-10-091-2/+2
|
* Fixed #25072 -- Prevented GDALRaster memory to be ↵Claude Paroz2015-07-102-12/+27
| | | | | | | | | uncollectable Setting GDALRaster.bands as a cached property was creating a circular reference with objects having __del__ methods, which means the memory could never be freed. Thanks Daniel Wiesmann for the report and test, and Tim Graham for the review.
* Sorted imports in __init__.py files.Tim Graham2015-06-271-2/+3
|
* Refs #24840 -- Added GDALRaster Warp and transform methodsDaniel Wiesmann2015-06-243-1/+129
| | | | Thanks to Tim Graham for the review.
* Fixed #25011, Refs #23804 -- Added check for GDAL on ↵Daniel Wiesmann2015-06-231-1/+2
| | | | RasterField initialization
* Added GDAL 2.0 supportClaude Paroz2015-06-204-9/+37
|
* Fixed #23804 -- Added RasterField for PostGIS.Daniel Wiesmann2015-06-193-3/+12
| | | | Thanks to Tim Graham and Claude Paroz for the reviews and patches.
* Removed unnecessary arguments in .get method callsPiotr Jakimiak2015-05-131-1/+1
|
* Fixed #24207 -- Added 25D-type geometry field support to ↵Claude Paroz2015-05-061-0/+8
| | | | | | | ogrinspect Thanks Michael Diener for the report and sample data, and Tim Graham for the review.
* Fixed #24724 -- Fixed GIS initialization crash on Windows.Tim Graham2015-05-011-38/+40
|
* Fixed gis test failures when numpy isn't installed.Daniel Wiesmann2015-03-201-1/+1
| | | | Thanks to Bas Peschier for pointing this out. Refs #23804.
* Made SRID a required parameter for GDALRaster ↵Daniel Wiesmann2015-03-171-1/+5
| | | | | | | instantiation; refs #23804. Earlier versions of GDAL do not allow the srid to be set to 0, so it should be a required parameter to ensure compatibility.
* Added write support for GDALRasterDaniel Wiesmann2015-03-164-34/+242
| | | | | | | | | | | - Instantiation of GDALRaster instances from dict or json data. - Retrieve and write pixel values in GDALBand objects. - Support for the GDALFlushCache in gdal C prototypes - Added private flush method to GDALRaster to make sure all data is written to files when file-based rasters are changed. - Replaced ``ptr`` with ``_ptr`` for internal ptr variable Refs #23804. Thanks Claude Paroz and Tim Graham for the reviews.
* Moved contrib.gis tests out of contrib.Tim Graham2015-02-118-1281/+0
|
* Fixed E265 comment styleCollin Anderson2015-02-0614-49/+44
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-0619-65/+67
|
* Added RasterSource/GDALBand GDAL objectsClaude Paroz2014-12-239-7/+372
| | | | | Based on Daniel Wiesmann's raster branch. Thanks Daniel Wiesmann and Tim Graham for the reviews. Refs #23804.
* Fixed #24014 -- Unified OGRException and GDALExceptionClaude Paroz2014-12-1817-85/+85
| | | | Thanks Tim Graham for the review.
* Removed netCDF from GIS driver testing; refs #23804.Tim Graham2014-12-171-1/+1
| | | | It may not be installed on all systems.
* Fixed #23812 -- Changed django.utils.six.moves.xrange ↵Michael Hall2014-12-135-27/+27
| | | | imports to range
* Fixed #23968 -- Replaced list comprehension with ↵Jon Dufresne2014-12-083-3/+3
| | | | generators and dict comprehension
* Added raster support for GDAL Driver classClaude Paroz2014-12-024-56/+89
| | | | Based on Daniel Wiesmann's work. Refs #23804.
* Added cpl error codes to errcheck functionsDaniel Wiesmann2014-12-024-19/+46
| | | | | GDAL raster methods return different error codes from the vector API.
* Added GDAL prototypes for raster supportDaniel Wiesmann2014-12-022-2/+59
| | | | Refs #23804.
* Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-041-1/+1
|
* Fixed #13843 -- Prevented AttributeError during geometry ↵Claude Paroz2014-09-124-4/+4
| | | | objects deletion
* Prevented Attribute error in GDAL objects deletionClaude Paroz2014-09-121-1/+1
|
* Limited lines to 119 characters in django/Tim Graham2014-09-055-46/+174
| | | | refs #23395.
* Fixed #23064 -- Added lib detection support for GDAL ↵Claude Paroz2014-07-211-3/+3
| | | | | | | 1.10/1.11 Note that GDAL 1.11 is not yet officially supported, until someone has tested it and can confirm it has no issues with Django.
* Fixed #22714 -- Made contrib.gis use six-provided ↵Claude Paroz2014-05-281-5/+3
| | | | | | memoryview type Thanks Tim Graham for the report.
* Fix many many typos in comments throughout the codebaseAlex Gaynor2014-04-261-1/+1
|
* Corrected many style guide violations that the newest ↵Alex Gaynor2014-03-304-4/+4
| | | | version of flake8 catches
* Removed unused imports.Tim Graham2014-03-291-1/+0
|
* Dropped support for GDAL 1.6Claude Paroz2014-03-291-22/+0
|
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-034-7/+7
| | | | Thanks Piotr Kasprzyk for help with the patch.
* Fixed typo in test docstring.Rodolfo Carvalho2014-02-151-1/+1
|
* Fixed E127 pep8 warnings.Loic Bistuer2013-12-141-1/+1
|
* Fixed all E261 warningscoagulant2013-11-027-31/+31
|
* More attacking E302 violatorsAlex Gaynor2013-11-028-1/+43
|
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-7/+17
|
* Continue to attack E302 violationsAlex Gaynor2013-11-0210-1/+26
|
* Fixed #15529 -- More permissive geojson syntax in ↵Claude Paroz2013-10-311-0/+3
| | | | | | constructor Thanks Wouter Klein Heerenbrink for the report.
* Fixed all the E203 violationsAlex Gaynor2013-10-274-36/+36
|
* Start attacking E231 violationsAlex Gaynor2013-10-242-15/+15
|
* Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol2013-10-231-0/+1
|
* Fixed E225 pep8 warnings.Tim Graham2013-10-232-2/+2
|
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-211-1/+1
|
* Remove some unnecesary uses of boolAlex Gaynor2013-10-173-3/+3
|