From 44894c6f6c854bb8d5c79cb349aa39526cf56ee2 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 3 Feb 2022 22:31:13 -0800 Subject: [PATCH] Fix warning about duplicate object description --- docs/python-api.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/python-api.rst b/docs/python-api.rst index 5106307..cc34505 100644 --- a/docs/python-api.rst +++ b/docs/python-api.rst @@ -2505,7 +2505,7 @@ If that option isn't relevant to your use-case you can to quote a string for use .. _python_api_gis: -Spatialite helpers +SpatiaLite helpers ================== `SpatiaLite `__ is a geographic extension to SQLite (similar to PostgreSQL + PostGIS). Using requires finding, loading and initializing the extension, adding geometry columns to existing tables and optionally creating spatial indexes. The utilities here help streamline that setup. @@ -2516,6 +2516,7 @@ Initialize SpatiaLite --------------------- .. automethod:: sqlite_utils.db.Database.init_spatialite + :noindex: .. _python_api_gis_find_spatialite: @@ -2530,6 +2531,7 @@ Adding geometry columns ----------------------- .. automethod:: sqlite_utils.db.Table.add_geometry_column + :noindex: .. _python_api_gis_create_spatial_index: @@ -2537,3 +2539,4 @@ Creating a spatial index ------------------------ .. automethod:: sqlite_utils.db.Table.create_spatial_index + :noindex: