Go to file
tomasz t a3310bb638 removed unnecessary comments 2021-12-29 00:07:19 +01:00
.github/workflows added github actions to run deploys 2021-12-07 23:36:08 +01:00
src changed input type to text 2021-12-28 23:02:00 +01:00
.gitignore UI padding fix + metadata to gitignore 2021-12-18 09:55:37 +01:00
LICENSE Initial commit 2021-11-26 20:01:12 +01:00
README.md podlinkuj projekt z analogiczną stroną 2021-12-17 14:20:08 +01:00
aed_poland.csv Added refresh time 2021-12-17 18:07:04 +01:00
aed_poland.geojson moved download script and added export of file with metadata 2021-12-16 23:35:04 +01:00
aed_poland_metadata.json UI padding fix + metadata to gitignore 2021-12-18 09:55:37 +01:00
download_data.py moved download script and added export of file with metadata 2021-12-16 23:35:04 +01:00
index.html removed unnecessary comments 2021-12-29 00:07:19 +01:00
land.html added poc of functionality for adding nodes within map using ouath to authorize at osm api 2021-12-19 22:20:43 +01:00

README.md

Mapa defibrylatorów AED

English: Map presenting locations of defibrillators based on OpenStreetMap data.

To repozytorium zawiera kod strony prezentujacej lokalizacje defibrylatorów AED.

Dane pochodzą z bazy OpenStreetMap, którą każdy może uzupełniać do czego chcemy zachęcić.

Informacje o defibrylatorach są zawyczaj udostępniane przez poszczególnych operatorów lub jednostki samorządowe. Przez taką fragmentację ciężej znaleźć takie urządzenia. OSM jest otwartym zbiorem danych i zawsze taki pozostanie, więc dane mogą być wykorzystywane przez inne aplikacje webowe i mobilne.

Technical information [ENG]

This is a simple static website using HTML and vanilla JavaScript. Any webserver (Nginx/Apache) or things like S3 or GitHub Pages can be used to host frontend part.

The only thing that requires code execution is Python script that downloads data from Overpass API and converts it to GeoJSON and CSV files.

The only external package used is requests which can be installed using pip if not present in the system already.

Example CSV and GeoJSON files are uploaded to repo.

Scripts used to deploy on our server

Stack: Ubuntu/Nginx

Clone repo:

git clone --branch main --single-branch https://github.com/openstreetmap-polska/aed-mapa.git /home/aeduser/aed-mapa/

Deploy to /var/www/:

cd /home/aeduser/aed-mapa/
git pull
rsync --update --recursive --delete --exclude '*.py' --exclude '*.geojson' --exclude '*.json' --exclude '.git*'  --verbose /home/aeduser/aed-mapa/ /var/www/html/

Download new data (set crontab to run it periodically):

python3 /home/aeduser/aed-mapa/src/download_data.py /home/aeduser/aed_poland.geojson /home/aeduser/aed_poland.csv
cp /home/aeduser/aed_poland.geojson /var/www/html/aed_poland.geojson
cp /home/aeduser/aed_poland_metadata.json /var/www/html/aed_poland_metadata.json
cp /home/aeduser/aed_poland.csv /var/www/html/aed_poland.csv

Alternatives / Inne podobne