mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
point to timmoody for catalog and use ghunt test branch
This commit is contained in:
parent
6598f3e111
commit
ad9b21f039
2 changed files with 17 additions and 14 deletions
|
@ -8,12 +8,15 @@
|
||||||
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
|
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
|
||||||
|
|
||||||
# The following soft coded variables allow testing, before pulling PR's into master
|
# The following soft coded variables allow testing, before pulling PR's into master
|
||||||
osm_repo_url: https://raw.githubusercontent.com/iiab/maps
|
# osm_repo_url: https://raw.githubusercontent.com/iiab/maps
|
||||||
#osm_repo_url: https://raw.githubusercontent.com/georgejhunt/maps
|
osm_repo_url: https://raw.githubusercontent.com/georgejhunt/maps
|
||||||
maps_branch: 'master' # Quotes not required
|
#maps_branch: 'master' # Quotes not required
|
||||||
#maps_branch: '7.2-maps'
|
maps_branch: 'jupyter'
|
||||||
|
|
||||||
# soft code sources
|
# soft code sources
|
||||||
archive_org_url: https://archive.org/download
|
archive_org_url: https://archive.org/download
|
||||||
map_catalog_url: http://download.iiab.io/content/OSM/vector-tiles
|
#map_catalog_url: http://download.iiab.io/content/OSM/vector-tiles
|
||||||
|
map_catalog_url: http://timmoody.com/iiab-files/maps
|
||||||
satellite_version: satellite_z0-z9_v3.mbtiles # 2021-12-20: Var unused, but hard-coded in 11 places within https://github.com/iiab/iiab-admin-console -- #3077 discusses map-catalog.json & adm-map-catalog.json
|
satellite_version: satellite_z0-z9_v3.mbtiles # 2021-12-20: Var unused, but hard-coded in 11 places within https://github.com/iiab/iiab-admin-console -- #3077 discusses map-catalog.json & adm-map-catalog.json
|
||||||
|
installer_planet: planet_z0-z6_2020.mbtiles
|
||||||
|
installer_satellite: satellite_z0-z6_v3.mbtiles
|
||||||
|
|
|
@ -85,27 +85,27 @@
|
||||||
- searchapi.php
|
- searchapi.php
|
||||||
- tileserver.php
|
- tileserver.php
|
||||||
|
|
||||||
- name: Download 34MB {{ map_catalog_url }}/planet_z0-z6_2019.mbtiles to {{ vector_map_path }}/installer/ -- for map installer
|
- name: Download 34MB {{ map_catalog_url }}/{{ installer_planet }} to {{ vector_map_path }}/installer/ -- for map installer
|
||||||
get_url:
|
get_url:
|
||||||
url: "{{ map_catalog_url }}/planet_z0-z6_2019.mbtiles"
|
url: "{{ map_catalog_url }}/{{ installer_planet }}"
|
||||||
dest: "{{ vector_map_path }}/installer/"
|
dest: "{{ vector_map_path }}/installer/"
|
||||||
timeout: "{{ download_timeout }}"
|
timeout: "{{ download_timeout }}"
|
||||||
|
|
||||||
- name: Symlink {{ vector_map_path }}/installer/detail.mbtiles -> {{ vector_map_path }}/installer/planet_z0-z6_2019.mbtiles
|
- name: Symlink {{ vector_map_path }}/installer/detail.mbtiles -> {{ vector_map_path }}/installer/{{ installer_planet }}
|
||||||
file:
|
file:
|
||||||
src: "{{ vector_map_path }}/installer/planet_z0-z6_2019.mbtiles"
|
src: "{{ vector_map_path }}/installer/{{ installer_planet }}"
|
||||||
path: "{{ vector_map_path }}/installer/detail.mbtiles"
|
path: "{{ vector_map_path }}/installer/detail.mbtiles"
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
- name: Symlink {{ vector_map_path }}/viewer/tiles/planet_z0-z6_2019.mbtiles -> {{ vector_map_path }}/installer/planet_z0-z6_2019.mbtiles
|
- name: Symlink {{ vector_map_path }}/viewer/tiles/{{ installer_planet }} -> {{ vector_map_path }}/installer/{{ installer_planet }}
|
||||||
file:
|
file:
|
||||||
src: "{{ vector_map_path }}/installer/planet_z0-z6_2019.mbtiles"
|
src: "{{ vector_map_path }}/installer/{{ installer_planet }}"
|
||||||
path: "{{ vector_map_path }}/viewer/tiles/planet_z0-z6_2019.mbtiles"
|
path: "{{ vector_map_path }}/viewer/tiles/{{ installer_planet }}"
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
- name: Download abbreviated satellite images from {{ map_catalog_url }}/satellite_z0-z6_v3.mbtiles to {{ vector_map_path }}/viewer/tiles/
|
- name: Download abbreviated satellite images from {{ map_catalog_url }}/{{ installer_satellite }} to {{ vector_map_path }}/viewer/tiles/
|
||||||
get_url:
|
get_url:
|
||||||
url: "{{ map_catalog_url }}/satellite_z0-z6_v3.mbtiles"
|
url: "{{ map_catalog_url }}/{{ installer_satellite }}"
|
||||||
dest: "{{ vector_map_path }}/viewer/tiles/"
|
dest: "{{ vector_map_path }}/viewer/tiles/"
|
||||||
timeout: "{{ download_timeout }}"
|
timeout: "{{ download_timeout }}"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue