diff --git a/Containerfile.data_handler b/data_handler/Containerfile similarity index 100% rename from Containerfile.data_handler rename to data_handler/Containerfile diff --git a/data_init/initializeDB_planet_20120912.sql b/data_handler/data_init/initializeDB_planet_20120912.sql similarity index 100% rename from data_init/initializeDB_planet_20120912.sql rename to data_handler/data_init/initializeDB_planet_20120912.sql diff --git a/utils/config.php b/data_handler/utils/config.php similarity index 100% rename from utils/config.php rename to data_handler/utils/config.php diff --git a/utils/entrypoint.sh b/data_handler/utils/entrypoint.sh similarity index 100% rename from utils/entrypoint.sh rename to data_handler/utils/entrypoint.sh diff --git a/utils/get_sync_state.php b/data_handler/utils/get_sync_state.php similarity index 100% rename from utils/get_sync_state.php rename to data_handler/utils/get_sync_state.php diff --git a/utils/init_db.php b/data_handler/utils/init_db.php similarity index 100% rename from utils/init_db.php rename to data_handler/utils/init_db.php diff --git a/utils/update_camera.php b/data_handler/utils/update_camera.php similarity index 100% rename from utils/update_camera.php rename to data_handler/utils/update_camera.php diff --git a/utils/update_camera.sh b/data_handler/utils/update_camera.sh similarity index 100% rename from utils/update_camera.sh rename to data_handler/utils/update_camera.sh diff --git a/data_handler_python/Containerfile b/data_handler_python/Containerfile new file mode 100644 index 0000000..ea1e354 --- /dev/null +++ b/data_handler_python/Containerfile @@ -0,0 +1,4 @@ +FROM quay.io/fedora/fedora-minimal:43 +RUN microdnf install -y python-pip && microdnf clean all && pip install OSMPythonTools + +COPY ./lookup_country.py /opt/ \ No newline at end of file diff --git a/data_handler_python/lookup_country.py b/data_handler_python/lookup_country.py new file mode 100644 index 0000000..a0266b0 --- /dev/null +++ b/data_handler_python/lookup_country.py @@ -0,0 +1,7 @@ +from OSMPythonTools.nominatim import Nominatim + + +nominatim = Nominatim() +heidelberg = nominatim.query(49.4093582, 8.694724, reverse=True, zoom=10) + +print(heidelberg.address()['country_code']) \ No newline at end of file diff --git a/data_handler_python/test.py b/data_handler_python/test.py new file mode 100644 index 0000000..b925a20 --- /dev/null +++ b/data_handler_python/test.py @@ -0,0 +1,12 @@ + + +import xml.etree.cElementTree as ET +import gzip +import requests + +r = requests.get('https://planet.openstreetmap.org/replication/minute/000/000/001.osc.gz') + +data = gzip.decompress(r.content) + +tree = ET.fromstring(data) +print(tree.findall("./.")) \ No newline at end of file diff --git a/Containerfile b/web/Containerfile similarity index 100% rename from Containerfile rename to web/Containerfile diff --git a/www/sunders/Leaflet/images/layers-2x.png b/web/www/sunders/Leaflet/images/layers-2x.png similarity index 100% rename from www/sunders/Leaflet/images/layers-2x.png rename to web/www/sunders/Leaflet/images/layers-2x.png diff --git a/www/sunders/Leaflet/images/layers.png b/web/www/sunders/Leaflet/images/layers.png similarity index 100% rename from www/sunders/Leaflet/images/layers.png rename to web/www/sunders/Leaflet/images/layers.png diff --git a/www/sunders/Leaflet/images/marker-icon-2x.png b/web/www/sunders/Leaflet/images/marker-icon-2x.png similarity index 100% rename from www/sunders/Leaflet/images/marker-icon-2x.png rename to web/www/sunders/Leaflet/images/marker-icon-2x.png diff --git a/www/sunders/Leaflet/images/marker-icon.png b/web/www/sunders/Leaflet/images/marker-icon.png similarity index 100% rename from www/sunders/Leaflet/images/marker-icon.png rename to web/www/sunders/Leaflet/images/marker-icon.png diff --git a/www/sunders/Leaflet/images/marker-shadow.png b/web/www/sunders/Leaflet/images/marker-shadow.png similarity index 100% rename from www/sunders/Leaflet/images/marker-shadow.png rename to web/www/sunders/Leaflet/images/marker-shadow.png diff --git a/www/sunders/Leaflet/leaflet-LICENSE b/web/www/sunders/Leaflet/leaflet-LICENSE similarity index 100% rename from www/sunders/Leaflet/leaflet-LICENSE rename to web/www/sunders/Leaflet/leaflet-LICENSE diff --git a/www/sunders/Leaflet/leaflet-README.md b/web/www/sunders/Leaflet/leaflet-README.md similarity index 100% rename from www/sunders/Leaflet/leaflet-README.md rename to web/www/sunders/Leaflet/leaflet-README.md diff --git a/www/sunders/Leaflet/leaflet-src.esm.js b/web/www/sunders/Leaflet/leaflet-src.esm.js similarity index 100% rename from www/sunders/Leaflet/leaflet-src.esm.js rename to web/www/sunders/Leaflet/leaflet-src.esm.js diff --git a/www/sunders/Leaflet/leaflet-src.esm.js.map b/web/www/sunders/Leaflet/leaflet-src.esm.js.map similarity index 100% rename from www/sunders/Leaflet/leaflet-src.esm.js.map rename to web/www/sunders/Leaflet/leaflet-src.esm.js.map diff --git a/www/sunders/Leaflet/leaflet-src.js b/web/www/sunders/Leaflet/leaflet-src.js similarity index 100% rename from www/sunders/Leaflet/leaflet-src.js rename to web/www/sunders/Leaflet/leaflet-src.js diff --git a/www/sunders/Leaflet/leaflet-src.js.map b/web/www/sunders/Leaflet/leaflet-src.js.map similarity index 100% rename from www/sunders/Leaflet/leaflet-src.js.map rename to web/www/sunders/Leaflet/leaflet-src.js.map diff --git a/www/sunders/Leaflet/leaflet.css b/web/www/sunders/Leaflet/leaflet.css similarity index 100% rename from www/sunders/Leaflet/leaflet.css rename to web/www/sunders/Leaflet/leaflet.css diff --git a/www/sunders/Leaflet/leaflet.js b/web/www/sunders/Leaflet/leaflet.js similarity index 100% rename from www/sunders/Leaflet/leaflet.js rename to web/www/sunders/Leaflet/leaflet.js diff --git a/www/sunders/Leaflet/leaflet.js.map b/web/www/sunders/Leaflet/leaflet.js.map similarity index 100% rename from www/sunders/Leaflet/leaflet.js.map rename to web/www/sunders/Leaflet/leaflet.js.map diff --git a/www/sunders/Leaflet/semicircle-LICENSE b/web/www/sunders/Leaflet/semicircle-LICENSE similarity index 100% rename from www/sunders/Leaflet/semicircle-LICENSE rename to web/www/sunders/Leaflet/semicircle-LICENSE diff --git a/www/sunders/Leaflet/semicircle-README.md b/web/www/sunders/Leaflet/semicircle-README.md similarity index 100% rename from www/sunders/Leaflet/semicircle-README.md rename to web/www/sunders/Leaflet/semicircle-README.md diff --git a/www/sunders/Leaflet/semicircle.js b/web/www/sunders/Leaflet/semicircle.js similarity index 100% rename from www/sunders/Leaflet/semicircle.js rename to web/www/sunders/Leaflet/semicircle.js diff --git a/www/sunders/add-lists.php b/web/www/sunders/add-lists.php similarity index 100% rename from www/sunders/add-lists.php rename to web/www/sunders/add-lists.php diff --git a/www/sunders/apple-touch-icon.png b/web/www/sunders/apple-touch-icon.png similarity index 100% rename from www/sunders/apple-touch-icon.png rename to web/www/sunders/apple-touch-icon.png diff --git a/www/sunders/camera.php b/web/www/sunders/camera.php similarity index 100% rename from www/sunders/camera.php rename to web/www/sunders/camera.php diff --git a/www/sunders/config.php b/web/www/sunders/config.php similarity index 100% rename from www/sunders/config.php rename to web/www/sunders/config.php diff --git a/www/sunders/css/spinner.css b/web/www/sunders/css/spinner.css similarity index 100% rename from www/sunders/css/spinner.css rename to web/www/sunders/css/spinner.css diff --git a/www/sunders/css/stats.css b/web/www/sunders/css/stats.css similarity index 100% rename from www/sunders/css/stats.css rename to web/www/sunders/css/stats.css diff --git a/www/sunders/css/sunders.css b/web/www/sunders/css/sunders.css similarity index 100% rename from www/sunders/css/sunders.css rename to web/www/sunders/css/sunders.css diff --git a/www/sunders/de/camera.php b/web/www/sunders/de/camera.php similarity index 100% rename from www/sunders/de/camera.php rename to web/www/sunders/de/camera.php diff --git a/www/sunders/de/images b/web/www/sunders/de/images similarity index 100% rename from www/sunders/de/images rename to web/www/sunders/de/images diff --git a/www/sunders/de/index.php b/web/www/sunders/de/index.php similarity index 100% rename from www/sunders/de/index.php rename to web/www/sunders/de/index.php diff --git a/www/sunders/de/stats/index.php b/web/www/sunders/de/stats/index.php similarity index 100% rename from www/sunders/de/stats/index.php rename to web/www/sunders/de/stats/index.php diff --git a/www/sunders/decode-json.php b/web/www/sunders/decode-json.php similarity index 100% rename from www/sunders/decode-json.php rename to web/www/sunders/decode-json.php diff --git a/www/sunders/en/camera.php b/web/www/sunders/en/camera.php similarity index 100% rename from www/sunders/en/camera.php rename to web/www/sunders/en/camera.php diff --git a/www/sunders/en/images b/web/www/sunders/en/images similarity index 100% rename from www/sunders/en/images rename to web/www/sunders/en/images diff --git a/www/sunders/en/index.php b/web/www/sunders/en/index.php similarity index 100% rename from www/sunders/en/index.php rename to web/www/sunders/en/index.php diff --git a/www/sunders/en/stats/index.php b/web/www/sunders/en/stats/index.php similarity index 100% rename from www/sunders/en/stats/index.php rename to web/www/sunders/en/stats/index.php diff --git a/www/sunders/es/camera.php b/web/www/sunders/es/camera.php similarity index 100% rename from www/sunders/es/camera.php rename to web/www/sunders/es/camera.php diff --git a/www/sunders/es/images b/web/www/sunders/es/images similarity index 100% rename from www/sunders/es/images rename to web/www/sunders/es/images diff --git a/www/sunders/es/index.php b/web/www/sunders/es/index.php similarity index 100% rename from www/sunders/es/index.php rename to web/www/sunders/es/index.php diff --git a/www/sunders/es/stats/index.php b/web/www/sunders/es/stats/index.php similarity index 100% rename from www/sunders/es/stats/index.php rename to web/www/sunders/es/stats/index.php diff --git a/www/sunders/favicon.ico b/web/www/sunders/favicon.ico similarity index 100% rename from www/sunders/favicon.ico rename to web/www/sunders/favicon.ico diff --git a/www/sunders/favicon.png b/web/www/sunders/favicon.png similarity index 100% rename from www/sunders/favicon.png rename to web/www/sunders/favicon.png diff --git a/www/sunders/files/license_Leaflet.txt b/web/www/sunders/files/license_Leaflet.txt similarity index 100% rename from www/sunders/files/license_Leaflet.txt rename to web/www/sunders/files/license_Leaflet.txt diff --git a/www/sunders/files/license_Semicircle.txt b/web/www/sunders/files/license_Semicircle.txt similarity index 100% rename from www/sunders/files/license_Semicircle.txt rename to web/www/sunders/files/license_Semicircle.txt diff --git a/www/sunders/files/license_osmcamera.txt b/web/www/sunders/files/license_osmcamera.txt similarity index 100% rename from www/sunders/files/license_osmcamera.txt rename to web/www/sunders/files/license_osmcamera.txt diff --git a/www/sunders/files/sunders.asc b/web/www/sunders/files/sunders.asc similarity index 100% rename from www/sunders/files/sunders.asc rename to web/www/sunders/files/sunders.asc diff --git a/www/sunders/fr/camera.php b/web/www/sunders/fr/camera.php similarity index 100% rename from www/sunders/fr/camera.php rename to web/www/sunders/fr/camera.php diff --git a/www/sunders/fr/images b/web/www/sunders/fr/images similarity index 100% rename from www/sunders/fr/images rename to web/www/sunders/fr/images diff --git a/www/sunders/fr/index.php b/web/www/sunders/fr/index.php similarity index 100% rename from www/sunders/fr/index.php rename to web/www/sunders/fr/index.php diff --git a/www/sunders/fr/stats/index.php b/web/www/sunders/fr/stats/index.php similarity index 100% rename from www/sunders/fr/stats/index.php rename to web/www/sunders/fr/stats/index.php diff --git a/www/sunders/i18n.php b/web/www/sunders/i18n.php similarity index 100% rename from www/sunders/i18n.php rename to web/www/sunders/i18n.php diff --git a/www/sunders/i18n/common/de.json b/web/www/sunders/i18n/common/de.json similarity index 100% rename from www/sunders/i18n/common/de.json rename to web/www/sunders/i18n/common/de.json diff --git a/www/sunders/i18n/common/en.json b/web/www/sunders/i18n/common/en.json similarity index 100% rename from www/sunders/i18n/common/en.json rename to web/www/sunders/i18n/common/en.json diff --git a/www/sunders/i18n/common/es.json b/web/www/sunders/i18n/common/es.json similarity index 100% rename from www/sunders/i18n/common/es.json rename to web/www/sunders/i18n/common/es.json diff --git a/www/sunders/i18n/common/fr.json b/web/www/sunders/i18n/common/fr.json similarity index 100% rename from www/sunders/i18n/common/fr.json rename to web/www/sunders/i18n/common/fr.json diff --git a/www/sunders/i18n/common/it.json b/web/www/sunders/i18n/common/it.json similarity index 100% rename from www/sunders/i18n/common/it.json rename to web/www/sunders/i18n/common/it.json diff --git a/www/sunders/i18n/common/ru.json b/web/www/sunders/i18n/common/ru.json similarity index 100% rename from www/sunders/i18n/common/ru.json rename to web/www/sunders/i18n/common/ru.json diff --git a/www/sunders/i18n/countries/de.json b/web/www/sunders/i18n/countries/de.json similarity index 100% rename from www/sunders/i18n/countries/de.json rename to web/www/sunders/i18n/countries/de.json diff --git a/www/sunders/i18n/countries/en.json b/web/www/sunders/i18n/countries/en.json similarity index 100% rename from www/sunders/i18n/countries/en.json rename to web/www/sunders/i18n/countries/en.json diff --git a/www/sunders/i18n/countries/es.json b/web/www/sunders/i18n/countries/es.json similarity index 100% rename from www/sunders/i18n/countries/es.json rename to web/www/sunders/i18n/countries/es.json diff --git a/www/sunders/i18n/countries/fr.json b/web/www/sunders/i18n/countries/fr.json similarity index 100% rename from www/sunders/i18n/countries/fr.json rename to web/www/sunders/i18n/countries/fr.json diff --git a/www/sunders/i18n/countries/it.json b/web/www/sunders/i18n/countries/it.json similarity index 100% rename from www/sunders/i18n/countries/it.json rename to web/www/sunders/i18n/countries/it.json diff --git a/www/sunders/i18n/countries/ru.json b/web/www/sunders/i18n/countries/ru.json similarity index 100% rename from www/sunders/i18n/countries/ru.json rename to web/www/sunders/i18n/countries/ru.json diff --git a/www/sunders/i18n/credits/de.json b/web/www/sunders/i18n/credits/de.json similarity index 100% rename from www/sunders/i18n/credits/de.json rename to web/www/sunders/i18n/credits/de.json diff --git a/www/sunders/i18n/credits/en.json b/web/www/sunders/i18n/credits/en.json similarity index 100% rename from www/sunders/i18n/credits/en.json rename to web/www/sunders/i18n/credits/en.json diff --git a/www/sunders/i18n/credits/es.json b/web/www/sunders/i18n/credits/es.json similarity index 100% rename from www/sunders/i18n/credits/es.json rename to web/www/sunders/i18n/credits/es.json diff --git a/www/sunders/i18n/credits/fr.json b/web/www/sunders/i18n/credits/fr.json similarity index 100% rename from www/sunders/i18n/credits/fr.json rename to web/www/sunders/i18n/credits/fr.json diff --git a/www/sunders/i18n/credits/it.json b/web/www/sunders/i18n/credits/it.json similarity index 100% rename from www/sunders/i18n/credits/it.json rename to web/www/sunders/i18n/credits/it.json diff --git a/www/sunders/i18n/credits/ru.json b/web/www/sunders/i18n/credits/ru.json similarity index 100% rename from www/sunders/i18n/credits/ru.json rename to web/www/sunders/i18n/credits/ru.json diff --git a/www/sunders/i18n/links/de.json b/web/www/sunders/i18n/links/de.json similarity index 100% rename from www/sunders/i18n/links/de.json rename to web/www/sunders/i18n/links/de.json diff --git a/www/sunders/i18n/links/en.json b/web/www/sunders/i18n/links/en.json similarity index 100% rename from www/sunders/i18n/links/en.json rename to web/www/sunders/i18n/links/en.json diff --git a/www/sunders/i18n/links/es.json b/web/www/sunders/i18n/links/es.json similarity index 100% rename from www/sunders/i18n/links/es.json rename to web/www/sunders/i18n/links/es.json diff --git a/www/sunders/i18n/links/fr.json b/web/www/sunders/i18n/links/fr.json similarity index 100% rename from www/sunders/i18n/links/fr.json rename to web/www/sunders/i18n/links/fr.json diff --git a/www/sunders/i18n/links/it.json b/web/www/sunders/i18n/links/it.json similarity index 100% rename from www/sunders/i18n/links/it.json rename to web/www/sunders/i18n/links/it.json diff --git a/www/sunders/i18n/links/ru.json b/web/www/sunders/i18n/links/ru.json similarity index 100% rename from www/sunders/i18n/links/ru.json rename to web/www/sunders/i18n/links/ru.json diff --git a/www/sunders/i18n/manual/de.json b/web/www/sunders/i18n/manual/de.json similarity index 100% rename from www/sunders/i18n/manual/de.json rename to web/www/sunders/i18n/manual/de.json diff --git a/www/sunders/i18n/manual/en.json b/web/www/sunders/i18n/manual/en.json similarity index 100% rename from www/sunders/i18n/manual/en.json rename to web/www/sunders/i18n/manual/en.json diff --git a/www/sunders/i18n/manual/es.json b/web/www/sunders/i18n/manual/es.json similarity index 100% rename from www/sunders/i18n/manual/es.json rename to web/www/sunders/i18n/manual/es.json diff --git a/www/sunders/i18n/manual/fr.json b/web/www/sunders/i18n/manual/fr.json similarity index 100% rename from www/sunders/i18n/manual/fr.json rename to web/www/sunders/i18n/manual/fr.json diff --git a/www/sunders/i18n/manual/it.json b/web/www/sunders/i18n/manual/it.json similarity index 100% rename from www/sunders/i18n/manual/it.json rename to web/www/sunders/i18n/manual/it.json diff --git a/www/sunders/i18n/manual/ru.json b/web/www/sunders/i18n/manual/ru.json similarity index 100% rename from www/sunders/i18n/manual/ru.json rename to web/www/sunders/i18n/manual/ru.json diff --git a/www/sunders/i18n/stats/de.json b/web/www/sunders/i18n/stats/de.json similarity index 100% rename from www/sunders/i18n/stats/de.json rename to web/www/sunders/i18n/stats/de.json diff --git a/www/sunders/i18n/stats/en.json b/web/www/sunders/i18n/stats/en.json similarity index 100% rename from www/sunders/i18n/stats/en.json rename to web/www/sunders/i18n/stats/en.json diff --git a/www/sunders/i18n/stats/es.json b/web/www/sunders/i18n/stats/es.json similarity index 100% rename from www/sunders/i18n/stats/es.json rename to web/www/sunders/i18n/stats/es.json diff --git a/www/sunders/i18n/stats/fr.json b/web/www/sunders/i18n/stats/fr.json similarity index 100% rename from www/sunders/i18n/stats/fr.json rename to web/www/sunders/i18n/stats/fr.json diff --git a/www/sunders/i18n/stats/it.json b/web/www/sunders/i18n/stats/it.json similarity index 100% rename from www/sunders/i18n/stats/it.json rename to web/www/sunders/i18n/stats/it.json diff --git a/www/sunders/i18n/stats/ru.json b/web/www/sunders/i18n/stats/ru.json similarity index 100% rename from www/sunders/i18n/stats/ru.json rename to web/www/sunders/i18n/stats/ru.json diff --git a/www/sunders/i18n/symbology/de.json b/web/www/sunders/i18n/symbology/de.json similarity index 100% rename from www/sunders/i18n/symbology/de.json rename to web/www/sunders/i18n/symbology/de.json diff --git a/www/sunders/i18n/symbology/en.json b/web/www/sunders/i18n/symbology/en.json similarity index 100% rename from www/sunders/i18n/symbology/en.json rename to web/www/sunders/i18n/symbology/en.json diff --git a/www/sunders/i18n/symbology/es.json b/web/www/sunders/i18n/symbology/es.json similarity index 100% rename from www/sunders/i18n/symbology/es.json rename to web/www/sunders/i18n/symbology/es.json diff --git a/www/sunders/i18n/symbology/fr.json b/web/www/sunders/i18n/symbology/fr.json similarity index 100% rename from www/sunders/i18n/symbology/fr.json rename to web/www/sunders/i18n/symbology/fr.json diff --git a/www/sunders/i18n/symbology/it.json b/web/www/sunders/i18n/symbology/it.json similarity index 100% rename from www/sunders/i18n/symbology/it.json rename to web/www/sunders/i18n/symbology/it.json diff --git a/www/sunders/i18n/symbology/ru.json b/web/www/sunders/i18n/symbology/ru.json similarity index 100% rename from www/sunders/i18n/symbology/ru.json rename to web/www/sunders/i18n/symbology/ru.json diff --git a/www/sunders/images/button_language.png b/web/www/sunders/images/button_language.png similarity index 100% rename from www/sunders/images/button_language.png rename to web/www/sunders/images/button_language.png diff --git a/www/sunders/images/button_less_blue.png b/web/www/sunders/images/button_less_blue.png similarity index 100% rename from www/sunders/images/button_less_blue.png rename to web/www/sunders/images/button_less_blue.png diff --git a/www/sunders/images/button_less_gray.png b/web/www/sunders/images/button_less_gray.png similarity index 100% rename from www/sunders/images/button_less_gray.png rename to web/www/sunders/images/button_less_gray.png diff --git a/www/sunders/images/button_more_blue.png b/web/www/sunders/images/button_more_blue.png similarity index 100% rename from www/sunders/images/button_more_blue.png rename to web/www/sunders/images/button_more_blue.png diff --git a/www/sunders/images/button_more_gray.png b/web/www/sunders/images/button_more_gray.png similarity index 100% rename from www/sunders/images/button_more_gray.png rename to web/www/sunders/images/button_more_gray.png diff --git a/www/sunders/images/button_next.png b/web/www/sunders/images/button_next.png similarity index 100% rename from www/sunders/images/button_next.png rename to web/www/sunders/images/button_next.png diff --git a/www/sunders/images/button_permalink.png b/web/www/sunders/images/button_permalink.png similarity index 100% rename from www/sunders/images/button_permalink.png rename to web/www/sunders/images/button_permalink.png diff --git a/www/sunders/images/button_previous.png b/web/www/sunders/images/button_previous.png similarity index 100% rename from www/sunders/images/button_previous.png rename to web/www/sunders/images/button_previous.png diff --git a/www/sunders/images/button_search.png b/web/www/sunders/images/button_search.png similarity index 100% rename from www/sunders/images/button_search.png rename to web/www/sunders/images/button_search.png diff --git a/www/sunders/images/button_stats.png b/web/www/sunders/images/button_stats.png similarity index 100% rename from www/sunders/images/button_stats.png rename to web/www/sunders/images/button_stats.png diff --git a/www/sunders/images/cam.png b/web/www/sunders/images/cam.png similarity index 100% rename from www/sunders/images/cam.png rename to web/www/sunders/images/cam.png diff --git a/www/sunders/images/camAll.png b/web/www/sunders/images/camAll.png similarity index 100% rename from www/sunders/images/camAll.png rename to web/www/sunders/images/camAll.png diff --git a/www/sunders/images/camBlue.png b/web/www/sunders/images/camBlue.png similarity index 100% rename from www/sunders/images/camBlue.png rename to web/www/sunders/images/camBlue.png diff --git a/www/sunders/images/camGreen.png b/web/www/sunders/images/camGreen.png similarity index 100% rename from www/sunders/images/camGreen.png rename to web/www/sunders/images/camGreen.png diff --git a/www/sunders/images/camRed.png b/web/www/sunders/images/camRed.png similarity index 100% rename from www/sunders/images/camRed.png rename to web/www/sunders/images/camRed.png diff --git a/www/sunders/images/close.png b/web/www/sunders/images/close.png similarity index 100% rename from www/sunders/images/close.png rename to web/www/sunders/images/close.png diff --git a/www/sunders/images/colorBlue.png b/web/www/sunders/images/colorBlue.png similarity index 100% rename from www/sunders/images/colorBlue.png rename to web/www/sunders/images/colorBlue.png diff --git a/www/sunders/images/colorBlueAll.png b/web/www/sunders/images/colorBlueAll.png similarity index 100% rename from www/sunders/images/colorBlueAll.png rename to web/www/sunders/images/colorBlueAll.png diff --git a/www/sunders/images/colorGreen.png b/web/www/sunders/images/colorGreen.png similarity index 100% rename from www/sunders/images/colorGreen.png rename to web/www/sunders/images/colorGreen.png diff --git a/www/sunders/images/colorGreenAll.png b/web/www/sunders/images/colorGreenAll.png similarity index 100% rename from www/sunders/images/colorGreenAll.png rename to web/www/sunders/images/colorGreenAll.png diff --git a/www/sunders/images/colorRed.png b/web/www/sunders/images/colorRed.png similarity index 100% rename from www/sunders/images/colorRed.png rename to web/www/sunders/images/colorRed.png diff --git a/www/sunders/images/colorRedAll.png b/web/www/sunders/images/colorRedAll.png similarity index 100% rename from www/sunders/images/colorRedAll.png rename to web/www/sunders/images/colorRedAll.png diff --git a/www/sunders/images/dome.png b/web/www/sunders/images/dome.png similarity index 100% rename from www/sunders/images/dome.png rename to web/www/sunders/images/dome.png diff --git a/www/sunders/images/domeAll.png b/web/www/sunders/images/domeAll.png similarity index 100% rename from www/sunders/images/domeAll.png rename to web/www/sunders/images/domeAll.png diff --git a/www/sunders/images/domeBlue.png b/web/www/sunders/images/domeBlue.png similarity index 100% rename from www/sunders/images/domeBlue.png rename to web/www/sunders/images/domeBlue.png diff --git a/www/sunders/images/domeGreen.png b/web/www/sunders/images/domeGreen.png similarity index 100% rename from www/sunders/images/domeGreen.png rename to web/www/sunders/images/domeGreen.png diff --git a/www/sunders/images/domeRed.png b/web/www/sunders/images/domeRed.png similarity index 100% rename from www/sunders/images/domeRed.png rename to web/www/sunders/images/domeRed.png diff --git a/www/sunders/images/dome_z-17_h-3.png b/web/www/sunders/images/dome_z-17_h-3.png similarity index 100% rename from www/sunders/images/dome_z-17_h-3.png rename to web/www/sunders/images/dome_z-17_h-3.png diff --git a/www/sunders/images/dome_z-17_h-5.png b/web/www/sunders/images/dome_z-17_h-5.png similarity index 100% rename from www/sunders/images/dome_z-17_h-5.png rename to web/www/sunders/images/dome_z-17_h-5.png diff --git a/www/sunders/images/dome_z-17_h-5_d-45.png b/web/www/sunders/images/dome_z-17_h-5_d-45.png similarity index 100% rename from www/sunders/images/dome_z-17_h-5_d-45.png rename to web/www/sunders/images/dome_z-17_h-5_d-45.png diff --git a/www/sunders/images/fixed.png b/web/www/sunders/images/fixed.png similarity index 100% rename from www/sunders/images/fixed.png rename to web/www/sunders/images/fixed.png diff --git a/www/sunders/images/fixedAll.png b/web/www/sunders/images/fixedAll.png similarity index 100% rename from www/sunders/images/fixedAll.png rename to web/www/sunders/images/fixedAll.png diff --git a/www/sunders/images/fixedBlue.png b/web/www/sunders/images/fixedBlue.png similarity index 100% rename from www/sunders/images/fixedBlue.png rename to web/www/sunders/images/fixedBlue.png diff --git a/www/sunders/images/fixedGreen.png b/web/www/sunders/images/fixedGreen.png similarity index 100% rename from www/sunders/images/fixedGreen.png rename to web/www/sunders/images/fixedGreen.png diff --git a/www/sunders/images/fixedRed.png b/web/www/sunders/images/fixedRed.png similarity index 100% rename from www/sunders/images/fixedRed.png rename to web/www/sunders/images/fixedRed.png diff --git a/www/sunders/images/fixed_z-17_d-90_a-15_h-10.png b/web/www/sunders/images/fixed_z-17_d-90_a-15_h-10.png similarity index 100% rename from www/sunders/images/fixed_z-17_d-90_a-15_h-10.png rename to web/www/sunders/images/fixed_z-17_d-90_a-15_h-10.png diff --git a/www/sunders/images/fixed_z-17_d-90_a-15_h-5.png b/web/www/sunders/images/fixed_z-17_d-90_a-15_h-5.png similarity index 100% rename from www/sunders/images/fixed_z-17_d-90_a-15_h-5.png rename to web/www/sunders/images/fixed_z-17_d-90_a-15_h-5.png diff --git a/www/sunders/images/fixed_z-17_d-90_a-60_h-10.png b/web/www/sunders/images/fixed_z-17_d-90_a-60_h-10.png similarity index 100% rename from www/sunders/images/fixed_z-17_d-90_a-60_h-10.png rename to web/www/sunders/images/fixed_z-17_d-90_a-60_h-10.png diff --git a/www/sunders/images/guard.png b/web/www/sunders/images/guard.png similarity index 100% rename from www/sunders/images/guard.png rename to web/www/sunders/images/guard.png diff --git a/www/sunders/images/guardAll.png b/web/www/sunders/images/guardAll.png similarity index 100% rename from www/sunders/images/guardAll.png rename to web/www/sunders/images/guardAll.png diff --git a/www/sunders/images/guardBlue.png b/web/www/sunders/images/guardBlue.png similarity index 100% rename from www/sunders/images/guardBlue.png rename to web/www/sunders/images/guardBlue.png diff --git a/www/sunders/images/guardGreen.png b/web/www/sunders/images/guardGreen.png similarity index 100% rename from www/sunders/images/guardGreen.png rename to web/www/sunders/images/guardGreen.png diff --git a/www/sunders/images/guardRed.png b/web/www/sunders/images/guardRed.png similarity index 100% rename from www/sunders/images/guardRed.png rename to web/www/sunders/images/guardRed.png diff --git a/www/sunders/images/icon.png b/web/www/sunders/images/icon.png similarity index 100% rename from www/sunders/images/icon.png rename to web/www/sunders/images/icon.png diff --git a/www/sunders/images/link-how-de.png b/web/www/sunders/images/link-how-de.png similarity index 100% rename from www/sunders/images/link-how-de.png rename to web/www/sunders/images/link-how-de.png diff --git a/www/sunders/images/link-how-en.png b/web/www/sunders/images/link-how-en.png similarity index 100% rename from www/sunders/images/link-how-en.png rename to web/www/sunders/images/link-how-en.png diff --git a/www/sunders/images/link-how-es.png b/web/www/sunders/images/link-how-es.png similarity index 100% rename from www/sunders/images/link-how-es.png rename to web/www/sunders/images/link-how-es.png diff --git a/www/sunders/images/link-how-fr.png b/web/www/sunders/images/link-how-fr.png similarity index 100% rename from www/sunders/images/link-how-fr.png rename to web/www/sunders/images/link-how-fr.png diff --git a/www/sunders/images/link-how-it.png b/web/www/sunders/images/link-how-it.png similarity index 100% rename from www/sunders/images/link-how-it.png rename to web/www/sunders/images/link-how-it.png diff --git a/www/sunders/images/link-how-ru.png b/web/www/sunders/images/link-how-ru.png similarity index 100% rename from www/sunders/images/link-how-ru.png rename to web/www/sunders/images/link-how-ru.png diff --git a/www/sunders/images/link-what-de.png b/web/www/sunders/images/link-what-de.png similarity index 100% rename from www/sunders/images/link-what-de.png rename to web/www/sunders/images/link-what-de.png diff --git a/www/sunders/images/link-what-en.png b/web/www/sunders/images/link-what-en.png similarity index 100% rename from www/sunders/images/link-what-en.png rename to web/www/sunders/images/link-what-en.png diff --git a/www/sunders/images/link-what-es.png b/web/www/sunders/images/link-what-es.png similarity index 100% rename from www/sunders/images/link-what-es.png rename to web/www/sunders/images/link-what-es.png diff --git a/www/sunders/images/link-what-fr.png b/web/www/sunders/images/link-what-fr.png similarity index 100% rename from www/sunders/images/link-what-fr.png rename to web/www/sunders/images/link-what-fr.png diff --git a/www/sunders/images/link-what-it.png b/web/www/sunders/images/link-what-it.png similarity index 100% rename from www/sunders/images/link-what-it.png rename to web/www/sunders/images/link-what-it.png diff --git a/www/sunders/images/link-what-ru.png b/web/www/sunders/images/link-what-ru.png similarity index 100% rename from www/sunders/images/link-what-ru.png rename to web/www/sunders/images/link-what-ru.png diff --git a/www/sunders/images/link-where-de.png b/web/www/sunders/images/link-where-de.png similarity index 100% rename from www/sunders/images/link-where-de.png rename to web/www/sunders/images/link-where-de.png diff --git a/www/sunders/images/link-where-en.png b/web/www/sunders/images/link-where-en.png similarity index 100% rename from www/sunders/images/link-where-en.png rename to web/www/sunders/images/link-where-en.png diff --git a/www/sunders/images/link-where-es.png b/web/www/sunders/images/link-where-es.png similarity index 100% rename from www/sunders/images/link-where-es.png rename to web/www/sunders/images/link-where-es.png diff --git a/www/sunders/images/link-where-fr.png b/web/www/sunders/images/link-where-fr.png similarity index 100% rename from www/sunders/images/link-where-fr.png rename to web/www/sunders/images/link-where-fr.png diff --git a/www/sunders/images/link-where-it.png b/web/www/sunders/images/link-where-it.png similarity index 100% rename from www/sunders/images/link-where-it.png rename to web/www/sunders/images/link-where-it.png diff --git a/www/sunders/images/link-where-ru.png b/web/www/sunders/images/link-where-ru.png similarity index 100% rename from www/sunders/images/link-where-ru.png rename to web/www/sunders/images/link-where-ru.png diff --git a/www/sunders/images/lock-insecure.png b/web/www/sunders/images/lock-insecure.png similarity index 100% rename from www/sunders/images/lock-insecure.png rename to web/www/sunders/images/lock-insecure.png diff --git a/www/sunders/images/lock-secure.png b/web/www/sunders/images/lock-secure.png similarity index 100% rename from www/sunders/images/lock-secure.png rename to web/www/sunders/images/lock-secure.png diff --git a/www/sunders/images/logo.png b/web/www/sunders/images/logo.png similarity index 100% rename from www/sunders/images/logo.png rename to web/www/sunders/images/logo.png diff --git a/www/sunders/images/panning.png b/web/www/sunders/images/panning.png similarity index 100% rename from www/sunders/images/panning.png rename to web/www/sunders/images/panning.png diff --git a/www/sunders/images/panningAll.png b/web/www/sunders/images/panningAll.png similarity index 100% rename from www/sunders/images/panningAll.png rename to web/www/sunders/images/panningAll.png diff --git a/www/sunders/images/panningBlue.png b/web/www/sunders/images/panningBlue.png similarity index 100% rename from www/sunders/images/panningBlue.png rename to web/www/sunders/images/panningBlue.png diff --git a/www/sunders/images/panningGreen.png b/web/www/sunders/images/panningGreen.png similarity index 100% rename from www/sunders/images/panningGreen.png rename to web/www/sunders/images/panningGreen.png diff --git a/www/sunders/images/panningRed.png b/web/www/sunders/images/panningRed.png similarity index 100% rename from www/sunders/images/panningRed.png rename to web/www/sunders/images/panningRed.png diff --git a/www/sunders/images/slider-toggle.png b/web/www/sunders/images/slider-toggle.png similarity index 100% rename from www/sunders/images/slider-toggle.png rename to web/www/sunders/images/slider-toggle.png diff --git a/www/sunders/images/title-how-de.png b/web/www/sunders/images/title-how-de.png similarity index 100% rename from www/sunders/images/title-how-de.png rename to web/www/sunders/images/title-how-de.png diff --git a/www/sunders/images/title-how-en.png b/web/www/sunders/images/title-how-en.png similarity index 100% rename from www/sunders/images/title-how-en.png rename to web/www/sunders/images/title-how-en.png diff --git a/www/sunders/images/title-how-es.png b/web/www/sunders/images/title-how-es.png similarity index 100% rename from www/sunders/images/title-how-es.png rename to web/www/sunders/images/title-how-es.png diff --git a/www/sunders/images/title-how-fr.png b/web/www/sunders/images/title-how-fr.png similarity index 100% rename from www/sunders/images/title-how-fr.png rename to web/www/sunders/images/title-how-fr.png diff --git a/www/sunders/images/title-how-it.png b/web/www/sunders/images/title-how-it.png similarity index 100% rename from www/sunders/images/title-how-it.png rename to web/www/sunders/images/title-how-it.png diff --git a/www/sunders/images/title-how-ru.png b/web/www/sunders/images/title-how-ru.png similarity index 100% rename from www/sunders/images/title-how-ru.png rename to web/www/sunders/images/title-how-ru.png diff --git a/www/sunders/images/title-mea.png b/web/www/sunders/images/title-mea.png similarity index 100% rename from www/sunders/images/title-mea.png rename to web/www/sunders/images/title-mea.png diff --git a/www/sunders/images/title-sunders.png b/web/www/sunders/images/title-sunders.png similarity index 100% rename from www/sunders/images/title-sunders.png rename to web/www/sunders/images/title-sunders.png diff --git a/www/sunders/images/title-what-de.png b/web/www/sunders/images/title-what-de.png similarity index 100% rename from www/sunders/images/title-what-de.png rename to web/www/sunders/images/title-what-de.png diff --git a/www/sunders/images/title-what-en.png b/web/www/sunders/images/title-what-en.png similarity index 100% rename from www/sunders/images/title-what-en.png rename to web/www/sunders/images/title-what-en.png diff --git a/www/sunders/images/title-what-es.png b/web/www/sunders/images/title-what-es.png similarity index 100% rename from www/sunders/images/title-what-es.png rename to web/www/sunders/images/title-what-es.png diff --git a/www/sunders/images/title-what-fr.png b/web/www/sunders/images/title-what-fr.png similarity index 100% rename from www/sunders/images/title-what-fr.png rename to web/www/sunders/images/title-what-fr.png diff --git a/www/sunders/images/title-what-it.png b/web/www/sunders/images/title-what-it.png similarity index 100% rename from www/sunders/images/title-what-it.png rename to web/www/sunders/images/title-what-it.png diff --git a/www/sunders/images/title-what-ru.png b/web/www/sunders/images/title-what-ru.png similarity index 100% rename from www/sunders/images/title-what-ru.png rename to web/www/sunders/images/title-what-ru.png diff --git a/www/sunders/images/title-where-de.png b/web/www/sunders/images/title-where-de.png similarity index 100% rename from www/sunders/images/title-where-de.png rename to web/www/sunders/images/title-where-de.png diff --git a/www/sunders/images/title-where-en.png b/web/www/sunders/images/title-where-en.png similarity index 100% rename from www/sunders/images/title-where-en.png rename to web/www/sunders/images/title-where-en.png diff --git a/www/sunders/images/title-where-es.png b/web/www/sunders/images/title-where-es.png similarity index 100% rename from www/sunders/images/title-where-es.png rename to web/www/sunders/images/title-where-es.png diff --git a/www/sunders/images/title-where-fr.png b/web/www/sunders/images/title-where-fr.png similarity index 100% rename from www/sunders/images/title-where-fr.png rename to web/www/sunders/images/title-where-fr.png diff --git a/www/sunders/images/title-where-it.png b/web/www/sunders/images/title-where-it.png similarity index 100% rename from www/sunders/images/title-where-it.png rename to web/www/sunders/images/title-where-it.png diff --git a/www/sunders/images/title-where-ru.png b/web/www/sunders/images/title-where-ru.png similarity index 100% rename from www/sunders/images/title-where-ru.png rename to web/www/sunders/images/title-where-ru.png diff --git a/www/sunders/images/todo_cam.png b/web/www/sunders/images/todo_cam.png similarity index 100% rename from www/sunders/images/todo_cam.png rename to web/www/sunders/images/todo_cam.png diff --git a/www/sunders/images/todo_camAll.png b/web/www/sunders/images/todo_camAll.png similarity index 100% rename from www/sunders/images/todo_camAll.png rename to web/www/sunders/images/todo_camAll.png diff --git a/www/sunders/images/todo_camBlue.png b/web/www/sunders/images/todo_camBlue.png similarity index 100% rename from www/sunders/images/todo_camBlue.png rename to web/www/sunders/images/todo_camBlue.png diff --git a/www/sunders/images/todo_camGreen.png b/web/www/sunders/images/todo_camGreen.png similarity index 100% rename from www/sunders/images/todo_camGreen.png rename to web/www/sunders/images/todo_camGreen.png diff --git a/www/sunders/images/todo_camRed.png b/web/www/sunders/images/todo_camRed.png similarity index 100% rename from www/sunders/images/todo_camRed.png rename to web/www/sunders/images/todo_camRed.png diff --git a/www/sunders/images/todo_dome.png b/web/www/sunders/images/todo_dome.png similarity index 100% rename from www/sunders/images/todo_dome.png rename to web/www/sunders/images/todo_dome.png diff --git a/www/sunders/images/todo_domeAll.png b/web/www/sunders/images/todo_domeAll.png similarity index 100% rename from www/sunders/images/todo_domeAll.png rename to web/www/sunders/images/todo_domeAll.png diff --git a/www/sunders/images/todo_domeBlue.png b/web/www/sunders/images/todo_domeBlue.png similarity index 100% rename from www/sunders/images/todo_domeBlue.png rename to web/www/sunders/images/todo_domeBlue.png diff --git a/www/sunders/images/todo_domeGreen.png b/web/www/sunders/images/todo_domeGreen.png similarity index 100% rename from www/sunders/images/todo_domeGreen.png rename to web/www/sunders/images/todo_domeGreen.png diff --git a/www/sunders/images/todo_domeRed.png b/web/www/sunders/images/todo_domeRed.png similarity index 100% rename from www/sunders/images/todo_domeRed.png rename to web/www/sunders/images/todo_domeRed.png diff --git a/www/sunders/images/todo_fixed.png b/web/www/sunders/images/todo_fixed.png similarity index 100% rename from www/sunders/images/todo_fixed.png rename to web/www/sunders/images/todo_fixed.png diff --git a/www/sunders/images/todo_fixedAll.png b/web/www/sunders/images/todo_fixedAll.png similarity index 100% rename from www/sunders/images/todo_fixedAll.png rename to web/www/sunders/images/todo_fixedAll.png diff --git a/www/sunders/images/todo_fixedBlue.png b/web/www/sunders/images/todo_fixedBlue.png similarity index 100% rename from www/sunders/images/todo_fixedBlue.png rename to web/www/sunders/images/todo_fixedBlue.png diff --git a/www/sunders/images/todo_fixedGreen.png b/web/www/sunders/images/todo_fixedGreen.png similarity index 100% rename from www/sunders/images/todo_fixedGreen.png rename to web/www/sunders/images/todo_fixedGreen.png diff --git a/www/sunders/images/todo_fixedRed.png b/web/www/sunders/images/todo_fixedRed.png similarity index 100% rename from www/sunders/images/todo_fixedRed.png rename to web/www/sunders/images/todo_fixedRed.png diff --git a/www/sunders/images/todo_guard.png b/web/www/sunders/images/todo_guard.png similarity index 100% rename from www/sunders/images/todo_guard.png rename to web/www/sunders/images/todo_guard.png diff --git a/www/sunders/images/todo_guardAll.png b/web/www/sunders/images/todo_guardAll.png similarity index 100% rename from www/sunders/images/todo_guardAll.png rename to web/www/sunders/images/todo_guardAll.png diff --git a/www/sunders/images/todo_guardBlue.png b/web/www/sunders/images/todo_guardBlue.png similarity index 100% rename from www/sunders/images/todo_guardBlue.png rename to web/www/sunders/images/todo_guardBlue.png diff --git a/www/sunders/images/todo_guardGreen.png b/web/www/sunders/images/todo_guardGreen.png similarity index 100% rename from www/sunders/images/todo_guardGreen.png rename to web/www/sunders/images/todo_guardGreen.png diff --git a/www/sunders/images/todo_guardRed.png b/web/www/sunders/images/todo_guardRed.png similarity index 100% rename from www/sunders/images/todo_guardRed.png rename to web/www/sunders/images/todo_guardRed.png diff --git a/www/sunders/images/todo_panning.png b/web/www/sunders/images/todo_panning.png similarity index 100% rename from www/sunders/images/todo_panning.png rename to web/www/sunders/images/todo_panning.png diff --git a/www/sunders/images/todo_panningAll.png b/web/www/sunders/images/todo_panningAll.png similarity index 100% rename from www/sunders/images/todo_panningAll.png rename to web/www/sunders/images/todo_panningAll.png diff --git a/www/sunders/images/todo_panningBlue.png b/web/www/sunders/images/todo_panningBlue.png similarity index 100% rename from www/sunders/images/todo_panningBlue.png rename to web/www/sunders/images/todo_panningBlue.png diff --git a/www/sunders/images/todo_panningGreen.png b/web/www/sunders/images/todo_panningGreen.png similarity index 100% rename from www/sunders/images/todo_panningGreen.png rename to web/www/sunders/images/todo_panningGreen.png diff --git a/www/sunders/images/todo_panningRed.png b/web/www/sunders/images/todo_panningRed.png similarity index 100% rename from www/sunders/images/todo_panningRed.png rename to web/www/sunders/images/todo_panningRed.png diff --git a/www/sunders/images/todo_traffic.png b/web/www/sunders/images/todo_traffic.png similarity index 100% rename from www/sunders/images/todo_traffic.png rename to web/www/sunders/images/todo_traffic.png diff --git a/www/sunders/images/traffic.png b/web/www/sunders/images/traffic.png similarity index 100% rename from www/sunders/images/traffic.png rename to web/www/sunders/images/traffic.png diff --git a/www/sunders/images/yarrow-up.png b/web/www/sunders/images/yarrow-up.png similarity index 100% rename from www/sunders/images/yarrow-up.png rename to web/www/sunders/images/yarrow-up.png diff --git a/www/sunders/index.php b/web/www/sunders/index.php similarity index 100% rename from www/sunders/index.php rename to web/www/sunders/index.php diff --git a/www/sunders/it/camera.php b/web/www/sunders/it/camera.php similarity index 100% rename from www/sunders/it/camera.php rename to web/www/sunders/it/camera.php diff --git a/www/sunders/it/images b/web/www/sunders/it/images similarity index 100% rename from www/sunders/it/images rename to web/www/sunders/it/images diff --git a/www/sunders/it/index.php b/web/www/sunders/it/index.php similarity index 100% rename from www/sunders/it/index.php rename to web/www/sunders/it/index.php diff --git a/www/sunders/it/stats/index.php b/web/www/sunders/it/stats/index.php similarity index 100% rename from www/sunders/it/stats/index.php rename to web/www/sunders/it/stats/index.php diff --git a/www/sunders/js/leafletembed_functions.js b/web/www/sunders/js/leafletembed_functions.js similarity index 100% rename from www/sunders/js/leafletembed_functions.js rename to web/www/sunders/js/leafletembed_functions.js diff --git a/www/sunders/js/leafletembed_icons.js b/web/www/sunders/js/leafletembed_icons.js similarity index 100% rename from www/sunders/js/leafletembed_icons.js rename to web/www/sunders/js/leafletembed_icons.js diff --git a/www/sunders/js/search.js b/web/www/sunders/js/search.js similarity index 100% rename from www/sunders/js/search.js rename to web/www/sunders/js/search.js diff --git a/www/sunders/json/credits.json b/web/www/sunders/json/credits.json similarity index 100% rename from www/sunders/json/credits.json rename to web/www/sunders/json/credits.json diff --git a/www/sunders/json/links.json b/web/www/sunders/json/links.json similarity index 100% rename from www/sunders/json/links.json rename to web/www/sunders/json/links.json diff --git a/www/sunders/json/manual.json b/web/www/sunders/json/manual.json similarity index 100% rename from www/sunders/json/manual.json rename to web/www/sunders/json/manual.json diff --git a/www/sunders/json/stats-query.json b/web/www/sunders/json/stats-query.json similarity index 100% rename from www/sunders/json/stats-query.json rename to web/www/sunders/json/stats-query.json diff --git a/www/sunders/json/symbology.json b/web/www/sunders/json/symbology.json similarity index 100% rename from www/sunders/json/symbology.json rename to web/www/sunders/json/symbology.json diff --git a/www/sunders/mindex.html b/web/www/sunders/mindex.html similarity index 100% rename from www/sunders/mindex.html rename to web/www/sunders/mindex.html diff --git a/www/sunders/mstile-144x144.png b/web/www/sunders/mstile-144x144.png similarity index 100% rename from www/sunders/mstile-144x144.png rename to web/www/sunders/mstile-144x144.png diff --git a/www/sunders/ru/camera.php b/web/www/sunders/ru/camera.php similarity index 100% rename from www/sunders/ru/camera.php rename to web/www/sunders/ru/camera.php diff --git a/www/sunders/ru/images b/web/www/sunders/ru/images similarity index 100% rename from www/sunders/ru/images rename to web/www/sunders/ru/images diff --git a/www/sunders/ru/index.php b/web/www/sunders/ru/index.php similarity index 100% rename from www/sunders/ru/index.php rename to web/www/sunders/ru/index.php diff --git a/www/sunders/ru/stats/index.php b/web/www/sunders/ru/stats/index.php similarity index 100% rename from www/sunders/ru/stats/index.php rename to web/www/sunders/ru/stats/index.php diff --git a/www/sunders/stats/index.php b/web/www/sunders/stats/index.php similarity index 100% rename from www/sunders/stats/index.php rename to web/www/sunders/stats/index.php diff --git a/www/sunders/sunders.html b/web/www/sunders/sunders.html similarity index 100% rename from www/sunders/sunders.html rename to web/www/sunders/sunders.html