Tim Graham
|
c9e8544321
|
Added SpatialFeatures.unsupported_geojson_options.
|
2020-11-11 07:39:15 +01:00 |
Tim Graham
|
dbb4a86fa7
|
Renamed BaseSpatialOperations.geography to BaseSpatialFeatures.supports_geography.
|
2020-11-09 08:12:00 +01:00 |
Tim Graham
|
69ffaa297c
|
Removed BaseSpatialOperations.geometry.
Unused since 26996e2d55 .
|
2020-11-09 07:57:02 +01:00 |
Tim Graham
|
7734337bcb
|
Made OracleSpatialAdapter clone geometries rather than mutate them.
|
2020-10-27 07:14:16 +01:00 |
Tim Graham
|
0eee5c1b9c
|
Added DatabaseFeatures.can_alter_geometry_field.
|
2020-10-19 12:41:52 +02:00 |
David Smith
|
10df5b7177
|
Refs #31670 -- Removed whitelist/blacklist terminology in docs and comments.
|
2020-06-17 13:15:56 +02:00 |
Jon Dufresne
|
d6aff369ad
|
Refs #30116 -- Simplified regex match group access with Match.__getitem__().
The method has been available since Python 3.6. The shorter syntax is
also marginally faster.
|
2020-05-11 12:01:28 +02:00 |
Nick Pope
|
335c9c94ac
|
Simplified imports from django.db and django.contrib.gis.db.
|
2020-02-04 13:20:06 +01:00 |
Simon Charette
|
bb9e82f274
|
Fixed #29955 -- Added support for distance expression to the dwithin lookup.
This was missed when adding support to other distance lookups in
refs #25499.
Thanks Peter Bex for the report and Mariusz for testcases.
|
2019-08-23 21:28:28 +02:00 |
Francisco Couzo
|
0193bf874f
|
Fixed #28738 -- Added the GeometryDistance function.
|
2019-03-20 12:54:42 -04:00 |
Claude Paroz
|
15715bf2a2
|
Fixed #22423 -- Added support for MySQL operators on real geometries.
Thanks Viswanathan Mahalingam for the report and initial patch, and
Nicke Pope and Tim Graham for the review.
|
2019-02-12 17:29:16 -05:00 |
Tim Graham
|
6f23996a59
|
Refs #28841 -- Removed ForceRHR function per deprecation timeline.
|
2019-01-17 10:52:19 -05:00 |
Mariusz Felisiak
|
a73cf8110e
|
Removed duplicate words in various comments.
|
2018-07-18 11:54:15 -04:00 |
Sergey Fedoseev
|
e9a370bb6a
|
Simplified GeometryField.select_format().
|
2017-11-04 10:08:25 -04:00 |
Simon Charette
|
9d93dff333
|
Fixed #28665 -- Change some database exceptions to NotImplementedError per PEP 249.
|
2017-10-06 12:47:08 -04:00 |
Mads Jensen
|
4508fafe16
|
Simplified various __eq__() methods.
|
2017-09-28 09:18:37 -04:00 |
Sergey Fedoseev
|
3905cfa1a5
|
Fixed #28353 -- Fixed some GIS functions when queryset is evaluated more than once.
Reverted test for refs #27603 in favor of using FuncTestMixin.
|
2017-09-11 11:56:39 -04:00 |
Sergey Fedoseev
|
1a85b07bdd
|
Fixed #28518 -- Improved performance of loading geometries from DB.
|
2017-08-24 14:08:35 -04:00 |
Tim Graham
|
ef9344b3a5
|
Removed unused SpatialOperations.from_wkb.
Unused since its introduction in ff60c5f9de .
|
2017-07-26 20:03:41 -04:00 |
Sergey Fedoseev
|
f3bada9889
|
Fixed #28436 -- Added support for distance lookups on MySQL.
|
2017-07-26 08:50:56 -04:00 |
Sergey Fedoseev
|
38af496b98
|
Fixed #28432 -- Allowed geometry expressions to be used with distance lookups.
Distance lookups use the Distance function for decreased code redundancy.
|
2017-07-25 15:49:35 -04:00 |
Sergey Fedoseev
|
44a7b98abb
|
Fixed #27964 -- Made MySQL backend raise exception if spatial transformation is needed for query.
|
2017-06-26 15:10:55 -04:00 |
Sergey Fedoseev
|
e7afef13f5
|
Fixed #26788 -- Fixed QuerySet.update() crash when updating a geometry to another one.
|
2017-04-10 13:26:26 -04:00 |
Sergey Fedoseev
|
5e710cf4a5
|
Fixed #11854 -- Added Azimuth GIS function. (#8286)
|
2017-04-02 14:24:06 -04:00 |
Sergey Fedoseev
|
ede4f6d48c
|
Fixed #12410 -- Added LineLocatePoint GIS function.
|
2017-04-01 15:02:09 -04:00 |
Sergey Fedoseev
|
9cd6ba991f
|
Made isvalid lookup use IsValid function to decrease code redundancy.
|
2017-03-29 08:56:58 -04:00 |
Sergey Fedoseev
|
6cb0a3ac28
|
Removed BaseSpatialOperations.truncate_params.
Unused since 32969c3931 .
|
2017-03-20 07:59:23 -04:00 |
Tim Graham
|
5bd7ffc313
|
Updated postgis.net and gaia-gis.it links to https.
|
2017-03-16 14:01:45 -04:00 |
Sergey Fedoseev
|
1bf5e79394
|
Removed GeoQuerySet leftovers.
Follow up to a0d166306f .
|
2017-03-16 09:38:02 -04:00 |
Anton Samarchyan
|
5411821e3b
|
Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.
|
2017-02-04 16:39:28 -05:00 |
chillaranand
|
d6eaf7c018
|
Refs #23919 -- Replaced super(ClassName, self) with super().
|
2017-01-25 12:23:46 -05:00 |
Simon Charette
|
cecc079168
|
Refs #23919 -- Stopped inheriting from object to define new style classes.
|
2017-01-19 08:39:46 +01:00 |
Claude Paroz
|
7b2f2e74ad
|
Refs #23919 -- Removed six.<various>_types usage
Thanks Tim Graham and Simon Charette for the reviews.
|
2017-01-18 20:18:46 +01:00 |
Claude Paroz
|
f3c43ad1fd
|
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
|
2017-01-18 13:44:34 +01:00 |
Tim Graham
|
a0d166306f
|
Removed GeoManager and GeoQuerySet per deprecation timeline.
|
2017-01-17 20:51:56 -05:00 |
Tim Graham
|
c04207cd38
|
Replaced some GIS has_X_method skips with supports_X_aggr/has_X_function.
|
2017-01-03 09:49:00 -05:00 |
Sergey Fedoseev
|
986c7d522a
|
Fixed #27497 -- Improved support of geodetic coordinates on SpatiaLite.
Area function, Distance function, and distance lookups now work with
geodetic coordinates on SpatiaLite.
|
2016-12-15 15:31:07 -05:00 |
Sergey Fedoseev
|
183f501540
|
Fixed #26789 -- Fixed handling of empty geometries in BaseSpatialField.get_db_prep_save().
|
2016-12-06 13:58:22 -05:00 |
Sergey Fedoseev
|
6f43b2b8a5
|
Removed unneeded GeoAggregate.convert_value() & DatabaseOperations.convert_geom().
|
2016-11-30 10:56:09 -05:00 |
Claude Paroz
|
f7a363ee1d
|
Fixed #26753 -- Made GDAL a required dependency for contrib.gis
Thanks Tim Graham for the review.
|
2016-06-18 10:58:02 +02:00 |
Tim Graham
|
ea34426ae7
|
Fixed flake8 2.6 warnings.
|
2016-06-16 09:12:50 -04:00 |
Nicolas Noé
|
23fbd3ff48
|
Fixed #26512 -- Added tests for SpatialRefSysMixin.get_units().
|
2016-04-19 11:19:44 -04:00 |
Daniel Wiesmann
|
c12a00e554
|
Fixed #26455 -- Allowed filtering and repairing invalid geometries.
Added the IsValid and MakeValid database functions, and the isvalid lookup,
all for PostGIS.
Thanks Tim Graham for the review.
|
2016-04-09 09:22:30 -04:00 |
Claude Paroz
|
00cb9e13b4
|
Fixed #15165 -- Prevented wrong results with perimeter on geodetic fields.
|
2015-12-30 18:07:02 -05:00 |
Sergey Fedoseev
|
717a54c883
|
Fixed #25797 -- Fixed regex for getting units from SRS WKT.
|
2015-12-03 19:03:28 -05:00 |
Sergey Fedoseev
|
7521bb95d5
|
Fixed #25630 -- Replaced `AsGeoHash` with `GeoHash` in unsupported GIS functions
|
2015-10-29 13:34:12 +01:00 |
Daniel Hahler
|
da5747f8e4
|
Fixed #25400 -- Fixed regression in nonexistent features on gis backends.
|
2015-09-17 09:30:46 -04:00 |
Jani Tiainen
|
1b8d7eff3b
|
Refs #12400 -- Added supports_geometry_field_unique_index GIS db feature.
|
2015-08-19 19:02:30 -04:00 |
Daniel Wiesmann
|
b769bbd4f6
|
Fixed #23804 -- Added RasterField for PostGIS.
Thanks to Tim Graham and Claude Paroz for the reviews and patches.
|
2015-06-19 14:36:43 -04:00 |
Claude Paroz
|
44bdbbc316
|
Added Spatialite support to GIS functions
|
2015-04-22 19:54:17 +02:00 |