Go to file
tomasz t 6eb870747d removed download of custom_layer data 2022-03-27 01:44:55 +01:00
.github/workflows Update deploy_to_prod.yaml 2022-01-30 11:25:18 +01:00
src added formatting + missing "icon-overlap" 2022-03-10 09:45:41 +01:00
.gitignore Prepare web to PWA installable app. 2022-01-22 18:05:53 +01:00
LICENSE Initial commit 2021-11-26 20:01:12 +01:00
README.md Update README.md 2022-01-30 11:19:19 +01:00
aed_poland.csv Fixed missing 'location' tag 2022-01-05 17:11:55 +01:00
aed_poland.geojson Fixed missing 'location' tag 2022-01-05 17:11:55 +01:00
aed_poland_metadata.json Fixed missing 'location' tag 2022-01-05 17:11:55 +01:00
download_data.py removed download of custom_layer data 2022-03-27 01:44:55 +01:00
index.html removed uneccesary code / formatting code 2022-03-06 21:29:08 +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
requirements.txt removed download of custom_layer data 2022-03-27 01:44:55 +01:00
serviceWorker.js Change strategy: try get from network 2022-01-27 15:26:54 +01:00
site.webmanifest Add option to install PWA app 2022-01-22 18:40:45 +01:00
taginfo.json added metadata for taginfo 2021-12-25 12:55:49 +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.

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.

File src/osm-integration.js contains placeholders for OAuth1 tokens for OpenStreetMap application which are filled during deploy (this allows us to have both prod and dev environments one pointing to OSM DEV API one to osm.org).

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

File requirements.txt contains packages used by python script. The script was updated to create additional layer from Google Sheets to before use you would need to comment out last line from download_data.py

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/

Command to deploy are in .github/workflows/ but they pretty much boil down to copying files to /var/www/.

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

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

Alternatives / Inne podobne