OsmAnd/build-scripts/srtm-batch-generate.xml

25 lines
1.7 KiB
XML
Raw Normal View History

2012-06-23 21:41:06 +02:00
<?xml version="1.0" encoding="utf-8"?>
<batch_process>
2012-06-25 23:50:09 +02:00
<process_attributes mapZooms="11-12;13-" renderingTypesFile="" zoomWaySmoothness="2"
osmDbDialect="SQLITE_IN_MEMORY" mapDbDialect="SQLITE_IN_MEMORY"/>
2012-06-23 21:41:06 +02:00
<!-- There are 3 subprocess :
1. Download fresh osm files from servers to 'directory_for_osm_files' (override existings).
2. Generate index files from all files in 'directory_for_osm_files' and put all indexes into 'directory_for_index_files'
3. Upload index files from 'directory_for_index_files' to googlecode.
If directory directory_for_uploaded_files is specified all uploaded files will be moved to it
All these subprocess could be ran independently ! So you can create some files check them and after that try to upload on googlecode,
or you can upload any file you have to googlecode (just put into 'directory_for_index_files')
-->
2012-06-24 17:09:42 +02:00
<!-- zoomWaySmoothness - 1-4, typical mapZooms - 8-10;11-12;13-14;15- -->
2012-11-15 17:41:28 +01:00
<process directory_for_osm_files="/var/lib/jenkins/data/contours-osm-bz2" directory_for_index_files="/var/lib/jenkins/indexes/srtm-uploaded" directory_for_generation=".work"
skipExistingIndexesAt="/var/lib/jenkins/indexes/srtm-uploaded" indexPOI="false" indexMap="true" indexRouting="false" indexTransport="false" indexAddress="false">
2012-06-23 21:41:06 +02:00
<!-- Add wget="C:/Program Files/GNUWin32/bin/wget.exe" to process, to use wget for download.
On linux systems if wget is in your path it can be wget="wget" or you can make own script with wget command:
wget="/path/to/script/wget.sh"
Defaultly enabled parameter of wget is: &-&-read-timeout=5 that prevents hanging of download from cloudmade/geofabrik server
-->
</process>
</batch_process>