Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/osm-search/nominatim-data-analyser-frontend
Frontend of the QA Tool for Nominatim. Helps to improve the OpenStreetMap data quality and therefore the Nominatim search results.
https://github.com/osm-search/nominatim-data-analyser-frontend
nominatim openstreetmap
Last synced: about 1 month ago
JSON representation
Frontend of the QA Tool for Nominatim. Helps to improve the OpenStreetMap data quality and therefore the Nominatim search results.
- Host: GitHub
- URL: https://github.com/osm-search/nominatim-data-analyser-frontend
- Owner: osm-search
- License: gpl-2.0
- Created: 2021-08-18T14:24:29.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-20T16:26:44.000Z (about 1 year ago)
- Last Synced: 2024-03-26T09:09:26.193Z (9 months ago)
- Topics: nominatim, openstreetmap
- Language: Svelte
- Homepage:
- Size: 1.1 MB
- Stars: 3
- Watchers: 4
- Forks: 3
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Nominatim-Data-Analyser-Frontend
The Nominatim Data Analyser is a QA tool used to scan the nominatim database
and extract suspect data from it. These data are then
[presented to mappers](https://nominatim.org/qa/) through this webapp developed
in Svelte. The repository of the main backend can be found here:
[Nominatim-Data-Analyser](https://github.com/osm-search/Nominatim-Data-Analyser).# How to build
By default, the frontend will load its data from the official
Nominatim QA service at `https://qa-tile.nominatim.openstreetmap.org`.
If you want to use your own data, set the environment variable
`NOMINATIM_QA_WEBPATH` to the URL of the QA service.Building requires [yarn2](https://yarnpkg.com/). If your system only ships
with classic yarn (as with current Debian/Ubuntu distros), enable yarn2 by
running the following commands from the root folder:yarn set version berry
yarn set version stableTo build the app go into the root folder and run:
yarn install
This will install all the dependencies required by the app and then run:
yarn build
Then you need to serve the `public/` folder with any webserver to access the app.