1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Refs #24840 -- Added GDALRaster Warp and transform methods

Thanks to Tim Graham for the review.
This commit is contained in:
Daniel Wiesmann
2015-06-19 13:56:50 +01:00
committed by Claude Paroz
parent c0fff64486
commit c078021555
7 changed files with 337 additions and 5 deletions

View File

@@ -177,6 +177,15 @@ Minor features
It supports automatic spatial index creation and reprojection when saving a
model. It does not yet support spatial querying.
* The new :meth:`GDALRaster.warp() <django.contrib.gis.gdal.GDALRaster.warp>`
method allows warping a raster by specifying target raster properties such as
origin, width, height, or pixel size (amongst others).
* The new :meth:`GDALRaster.transform()
<django.contrib.gis.gdal.GDALRaster.transform>` method allows transforming a
raster into a different spatial reference system by specifying a target
``srid``.
:mod:`django.contrib.messages`
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^