- go to
https://api.data.amsterdam.nl/api/swagger/?url=/geosearch/docs/geosearch.yml
- put
/geosearch/docs/geosearch.yml
into the search bar
- there is currently no guarantee that these docs are 100% up to date
- the possible datasets/tables that canbe used for filtering can be retrieved from
/catalogus/
- behavior of filtering on datasets is non-deterministic and opaque because 1) it is not described and 2) if there is a name collision, results may disappear
The dependencies are set up using pip-compile
which is part of the pip-tools
package.
So, after creating the virtual env, update the requirements files.
First install pip-tools
with pip install pip-tools
.
NB. Because of a problem with cython 3, we need an extra PIP_CONSTRAINT. Hopefully, this limitation will be removed in the near future. So, first try without the constraint. If that works, remove this limitation from this readme.
Now update the requirements.txt
and requirements_dev.txt
from the *.in
files.
echo "cython<3" > /tmp/constraint.txt
cd web
PIP_CONSTRAINT=/tmp/constraint.txt pip-compile --resolver=legacy -o requirements_dev.txt requirements_dev.in
PIP_CONSTRAINT=/tmp/constraint.txt pip-compile --resolver=legacy -o requirements.txt requirements.in
NB. See above about the needed PIP_CONSTRAINT.
cd
to the root of the git repoPIP_CONSTRAINT=/tmp/constraint.txt pip install -r web/requirements_dev.txt
pre-commit install
The local geosearch application can be started with python web/geosearch/wsgi.py
(with an active venv).
To run the geosearch application against the Azure postgreSQL instance define the following environment variables:
export DATASERVICES_PW_LOCATION
export DATASERVICES_DB_DATABASE_OVERRIDE
export DATASERVICES_DB_HOST_OVERRIDE
export DATASERVICES_DB_USER_OVERRIDE
The DATASERVICES_PW_LOCATION should point to a local file that contains a valid postgreSQL user token.
Local development can be done using docker.
The application requires the datasets_
tables
created by dso-api.
-
Start containers:
docker-compose up database -d
-
Start the app
docker-compose up web
-
Query the app
http://localhost:8022/?datasets=bag/gebieden&lat=52.3533513854879&lon=4.83714013585293&_fields=type&radius=100
-
Take the testsuite for a spin:
docker-compose exec web pytest -v
black formatting was introduced late in this project by a monster commit. To avoid git blame getting confused, configure git to ignore that commit:
$ git config blame.ignoreRevsFile .git-blame-ignore-revs
Doel is zoeken op coordinaat door de (aangegeven) aanwezige database views en features teruggeven aan de client in geojson formaat.
Er zijn twee soorten postgis queries van toepassing voor de usecase:
- ST_DWithin voor ST_Point velden
- ST_Contains voor ST_Polygon ST_MultiPolygon
We zoeken momenteel nog niet op ST_MultiLineString.
Momenteel is de geometrie opgeslagen in RD srid. We zouden naast deze kolom een kolom kunnen toevoegen waarin geometrie rsid WGS84 is. Met deze rsid heeft kunnen we een ST_GeoHash index gebruiken in plaats van de GEOS filter, wat beter performt.
View & index aanmaken wordt dan zoiets:
CREATE MATERIALIZED VIEW {}_mat AS SELECT *, ST_Transform(geometrie, 4326) as geometrie_wgs84 FROM {}
CREATE INDEX {}_idx ON {}_mat USING GIST(geometrie)
GISTCREATE INDEX {}_idx_wgs84 ON {}_mat USING ST_GeoHash(geometrie_wgs84)
geometrie_wgs84
Alleen datasets die zijn opgenomen in de referentiedatabase kunnen doorzocht worden vanuit Geosearch.
Voorbeeld van een zoekopdracht:
https://api.data.amsterdam.nl/geosearch/?datasets=bag%2Fopenbareruimtes&lat=52.38507894664783&lon=4.876663684844972&radius=5&_fields=naam,typeOmschrijving
Zoekparameters zijn:
datasets:
Komma-gescheiden lijst van datasets. Zie https://schemas.data.amsterdam.nl/datasets/
voor een lijst met alle mogelijke datasets.
Uiteraard moet de dataset geo-informatie bevatten om doorzoekbaar te zijn. Naast de dataset kan ook de datasettable gespecificeerd worden.
De specificatie van de datasets wordt dan datasets=<dataset-id>%2F<datset-table-id>, ...
x,y of lat, lon: Coordinatenpaar. x,y: voor coordinaten in RD stelsel en lat, lon: voor WGS84.
radius: Radius van de cirkel rond de opgegeven coordinaat.
_fields: Komma-gescheiden lijst van evt. extra velden die in het resultaat getoond moeten worden (zie ook weer de amsterdam schema definities voor de velden van de dataset-tabel).