-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow drawing on a map on table pages for tables with a geometry column #8
Conversation
Tests are failing because |
Not sure why that fix didn't work. |
The tests are a bit tricky because ideally I'd like to have SpatiaLite installed so I can test the new
- name: Install SpatiaLite
run: |
sudo apt-get install libsqlite3-mod-spatialite |
Can depend on this 0.60a0 alpha release now: https://docs.datasette.io/en/latest/changelog.html#a0-2021-12-17 |
What's the quickest way to programmatically create a valid SQLite database geometry table with and without a spatial index configured I wonder? https://github.com/simonw/geojson-to-sqlite probably. |
In this: SELECT AddGeometryColumn('mytable', 'geometry', 4326, 'POINT', 'XY'); That |
Refs #7, simonw/datasette#473 and simonw/datasette#1559
Still needed:
filters_from_request
plugin hook that this uses