summaryrefslogtreecommitdiff
path: root/django/contrib/gis/db/backends/spatialite
Commit message (Collapse)AuthorAgeFilesLines
* Refs #31014 -- Added FromWKB and FromWKT GIS database functions.Mariusz Felisiak2023-01-101-0/+2
| | | | | Co-authored-by: Ondřej Böhm <ondrej.bohm@firma.seznam.cz> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
* Fixed #33783 -- Added IsEmpty GIS database function and __isempty lookup on ↵Claude Paroz2023-01-031-1/+1
| | | | PostGIS.
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-078-128/+169
|
* Fixed #32575 -- Added support for SpatiaLite 5.Claude Paroz2021-04-083-3/+20
|
* Refs #27488 -- Corrected detection of IsValid() support on SpatiaLite.Mariusz Felisiak2021-04-081-1/+1
| | | LWGEOM is not required for IsValid().
* Fixed #32178 -- Allowed database backends to skip tests and mark expected ↵Hasan Ramezani2020-12-101-0/+10
| | | | | failures. Co-authored-by: Tim Graham <timograham@gmail.com>
* Added DatabaseFeatures.can_alter_geometry_field.Tim Graham2020-10-191-0/+1
|
* Bumped minimum isort version to 5.1.0.David Smith2020-07-302-2/+9
| | | | | Fixed inner imports per isort 5. isort 5.0.0 to 5.1.0 was unstable.
* Renamed PROJ.4 to PROJ.Claude Paroz2020-05-131-2/+2
|
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-042-8/+8
|
* Fixed #30996 -- Added AsWKB and AsWKT GIS functions.Sergey Fedoseev2019-11-221-0/+1
|
* Fixed typos in comments and a test name.Min ho Kim2019-07-191-1/+1
|
* Fixed #28738 -- Added the GeometryDistance function.Francisco Couzo2019-03-201-1/+1
|
* Fixed #30156 -- Dropped support for SpatiaLite 4.1 and 4.2.Tim Graham2019-02-041-23/+8
|
* Refs #30123 -- Changed second arg of ↵Nick Pope2019-01-231-3/+3
| | | | DatabaseIntrospection.get_geometry_type() to the row description.
* Refs #28841 -- Removed ForceRHR function per deprecation timeline.Tim Graham2019-01-171-1/+1
|
* Followed style guide for model attribute ordering.Matt Wiens2018-12-271-9/+13
|
* Fixed #29509 -- Added SpatiaLite support for covers and coveredby lookups.Sergey Fedoseev2018-06-211-0/+2
|
* Fixed #29484 -- Removed the need to specify SPATIALITE_LIBRARY_PATH with ↵Claude Paroz2018-06-091-12/+22
| | | | | | Spatialite 4.2+. Thanks Tim Graham for the review.
* Fixed #28842 -- Added SpatiaLite support for ForcePolygonCW function.Sergey Fedoseev2018-01-061-1/+2
|
* Fixed #28841 -- Added ForcePolygonCW GIS function and deprecated ForceRHR.Sergey Fedoseev2017-12-271-1/+1
|
* Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope2017-12-111-10/+10
|
* Fixed #28849 -- Fixed referenced table and column rename on SQLite.Simon Charette2017-12-011-2/+2
| | | | Thanks Ramiro for the input and Tim for the review.
* Fixed #28853 -- Updated connection.cursor() uses to use a context manager.Jon Dufresne2017-11-281-5/+1
|
* Fixed #28654 -- Dropped support for SpatiaLite 4.0.Tim Graham2017-09-304-15/+6
|
* Removed django.contrib.gis.geometry.backend.Tim Graham2017-09-121-3/+2
| | | | | The layer of indirection is unchanged and undocumented since its introduction in ff60c5f9de3e8690d1e86f3e9e3f7248a15397c8.
* Used sqlite3.Connection.load_extension() instead of query execution for ↵Sergey Fedoseev2017-09-121-6/+3
| | | | SpatiaLite loading.
* Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham2017-09-071-4/+6
| | | | This reverts commit 550cb3a365dee4edfdd1563224d5304de2a57fda because try/except performs better.
* Replaced @cached_property with class attributes where possible.Sergey Fedoseev2017-09-061-11/+9
|
* Refs #28518 -- Improved performance of loading geometries from DB.Sergey Fedoseev2017-09-051-3/+13
|
* Fixed #28518 -- Improved performance of loading geometries from DB.Sergey Fedoseev2017-08-241-1/+17
|
* Fixed #28380 -- Excluded null geometries in SpatiaLite geometry lookups.Fabian Schindler2017-08-241-11/+17
|
* Removed unused SpatialOperations.from_wkb.Tim Graham2017-07-261-1/+0
| | | Unused since its introduction in ff60c5f9de3e8690d1e86f3e9e3f7248a15397c8.
* Fixed #28432 -- Allowed geometry expressions to be used with distance lookups.Sergey Fedoseev2017-07-251-18/+0
| | | | Distance lookups use the Distance function for decreased code redundancy.
* Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen2017-06-281-6/+4
|
* Fixed #27830 -- Used distutils.version.LooseVersion for version parsing.chillaranand2017-06-131-13/+2
|
* Sorted imports per isort 4.2.9.Tim Graham2017-06-012-4/+6
|
* Fixed #26788 -- Fixed QuerySet.update() crash when updating a geometry to ↵Sergey Fedoseev2017-04-101-26/+0
| | | | another one.
* Fixed #11854 -- Added Azimuth GIS function. (#8286)Sergey Fedoseev2017-04-021-1/+1
|
* Fixed #12410 -- Added LineLocatePoint GIS function.Sergey Fedoseev2017-04-011-0/+1
|
* Made isvalid lookup use IsValid function to decrease code redundancy.Sergey Fedoseev2017-03-291-2/+0
|
* Removed more GeoQuerySet leftovers.Sergey Fedoseev2017-03-211-15/+2
| | | Follow up to a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
* Added SpatiaLite NumPoints support for non-LINESTRING geometries.Sergey Fedoseev2017-03-162-2/+1
|
* Updated postgis.net and gaia-gis.it links to https.Tim Graham2017-03-161-2/+2
|
* Removed GeoQuerySet leftovers.Sergey Fedoseev2017-03-161-22/+4
| | | Follow up to a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
* Fixed #25524 -- Removed GISOperations.get_distance()'s handle_spheroid param.Tim Graham2017-02-111-1/+1
|
* Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.Anton Samarchyan2017-02-043-11/+11
|
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-254-13/+13
|
* Refs #23919 -- Replaced six.reraise by raiseClaude Paroz2017-01-222-15/+11
|
* Refs #23919 -- Removed pysqlite support (it's Python 2 only).Tim Graham2017-01-201-9/+4
|