Update spatialite.rst (#413)

a line of sql added to create the idx_<table_name> in the python recipe
This commit is contained in:
joelondon 2019-03-15 05:06:45 +00:00 committed by Simon Willison
commit 9e8c36793b

View file

@ -68,6 +68,8 @@ Here's a recipe for taking a table with existing latitude and longitude columns,
UPDATE events SET
point_geom = GeomFromText('POINT('||"longitude"||' '||"latitude"||')',4326);
''')
# Now add a spatial index to that column
conn.execute('select CreateSpatialIndex("museums", "point_geom");')
# If you don't commit your changes will not be persisted:
conn.commit()
conn.close()