Go to file
tomasz t 49b57b9aa7 test 2022-01-26 02:15:19 +01:00
.github/workflows test 2022-01-26 02:15:19 +01:00
src introduced new deployment strategy 2022-01-26 01:32:09 +01:00
.gitignore added spreadsheet export 2022-01-14 02:04:32 +01:00
LICENSE
README.md updated readme 2022-01-23 20:14:26 +01:00
aed_poland.csv
aed_poland.geojson
aed_poland_metadata.json
download_data.py added second parameter handling 2022-01-24 00:16:13 +01:00
index.html Poprawki UI nowych zmian 2022-01-24 08:30:23 +01:00
land.html
requirements.txt added download capability for custom layer from google sheets 2022-01-23 20:15:56 +01:00
site.webmanifest
taginfo.json

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.

Poza pobieraniem danych bezpośrednio z OSM albo za pomocą usług jak Overpass API dane wyświetlane na stronie można pobrać w formacie:

Gitflow

branch 'development' -> branch 'main'

Branch 'development' jest hostowany pod: https://aed.openstreetmap.org.pl/dev/ a branch 'main' pod: https://aed.openstreetmap.org.pl/

Github actions robi deploy gdy pojawiają się nowe commity na tych branch-ach.

Nowe branche powinny być bazowane na 'development' i PR mergowane również do 'development'. Następnie PR z brancha 'development' do 'main'.

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