fix building
git-svn-id: https://osmand.googlecode.com/svn/trunk@590 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
This commit is contained in:
parent
30bbe470d8
commit
2176d32a00
8 changed files with 25 additions and 11 deletions
4
DataExtractionOSM/OsmAndMapCreator.bat
Normal file
4
DataExtractionOSM/OsmAndMapCreator.bat
Normal file
|
@ -0,0 +1,4 @@
|
|||
REM the JVM. With the below settings the heap size (Available memory for the application)
|
||||
REM will range from 64 megabyte up to 512 megabyte.
|
||||
|
||||
start javaw.exe -Djava.util.logging.config.file=logging.properties -Xms64M -Xmx512M -cp "./OsmAndMapCreator.jar;./lib/*.jar" net.osmand.swing.OsmExtractionUI
|
|
@ -4,4 +4,4 @@
|
|||
# the JVM. With the below settings the heap size (Available memory for the application)
|
||||
# will range from 64 megabyte up to 512 megabyte.
|
||||
|
||||
java -jar OsmAndMapCreator.jar -Xms64M -Xmx512M
|
||||
java -Djava.util.logging.config.file=logging.properties -Xms64M -Xmx512M -cp "./OsmAndMapCreator.jar;./lib/*.jar" net.osmand.swing.OsmExtractionUI
|
5
DataExtractionOSM/batch_indexing.bat
Normal file
5
DataExtractionOSM/batch_indexing.bat
Normal file
|
@ -0,0 +1,5 @@
|
|||
REM the JVM. With the below settings the heap size (Available memory for the application)
|
||||
REM will range from 64 megabyte up to 512 megabyte.
|
||||
|
||||
|
||||
start java.exe -Djava.util.logging.config.file=logging.properties -Xms64M -Xmx512M -cp "./OsmAndMapCreator.jar;./lib/*.jar" net.osmand.data.index.IndexBatchCreator ./batch.xml
|
7
DataExtractionOSM/batch_indexing.sh
Normal file
7
DataExtractionOSM/batch_indexing.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# This file will start the Osm Extraction UI with custom memory settings for
|
||||
# the JVM. With the below settings the heap size (Available memory for the application)
|
||||
# will range from 64 megabyte up to 512 megabyte.
|
||||
|
||||
java -Djava.util.logging.config.file=logging.properties -Xms64M -Xmx512M -cp "./OsmAndMapCreator.jar;./lib/*.jar" net.osmand.data.index.IndexBatchCreator ./batch.xml
|
|
@ -38,8 +38,9 @@
|
|||
<fileset dir=".">
|
||||
<include name="OsmAndMapCreator.jar"/>
|
||||
<include name="lib/**"/>
|
||||
<include name="run.bat"/>
|
||||
<include name="run.sh"/>
|
||||
<include name="logging.properties"/>
|
||||
<include name="OsmAndMapCreator.bat"/>
|
||||
<include name="OsmAndMapCreator.sh"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<zip destfile="build.zip">
|
||||
|
|
BIN
DataExtractionOSM/build.zip
Normal file
BIN
DataExtractionOSM/build.zip
Normal file
Binary file not shown.
|
@ -1,4 +0,0 @@
|
|||
REM the JVM. With the below settings the heap size (Available memory for the application)
|
||||
REM will range from 64 megabyte up to 512 megabyte.
|
||||
|
||||
start javaw.exe -jar OsmAndMapCreator.jar -Xms64M -Xmx512M
|
|
@ -20,13 +20,14 @@
|
|||
or you can upload any file you have to googlecode (just put into 'directory_for_index_files')
|
||||
-->
|
||||
<process directory_for_osm_files="E:/Information/OSM maps/osm_batch" directory_for_index_files="E:/Information/OSM maps/osm_batch_ind"
|
||||
downloadOsmFiles="true" generateIndexes="true" uploadIndexes="true" deleteFilesAfterUploading="true" indexPOI="true" indexMap="true"
|
||||
downloadOsmFiles="true" generateIndexes="true" uploadIndexes="true"
|
||||
deleteFilesAfterUploading="true" indexPOI="true" indexMap="true"
|
||||
indexTransport="true" indexAddress="true">
|
||||
|
||||
|
||||
<!-- Countries to download from osm server -->
|
||||
|
||||
<!-- EUROPE -->
|
||||
<regions siteToDownload="http://download.geofabrik.de/osm/europe/{0}.osm.bz2" region_prefix="">
|
||||
<regions siteToDownload="http://download.geofabrik.de/osm/europe/{0}.osm.bz2" region_prefix="" skip="true">
|
||||
<region name="albania" esize="6" />
|
||||
<region name="andorra" esize="1" />
|
||||
<region name="austria" esize="110" />
|
||||
|
@ -234,7 +235,7 @@
|
|||
</regions>
|
||||
|
||||
<!-- USA -->
|
||||
<regions siteToDownload="http://downloads.cloudmade.com/north_america/united_states/{0}/{0}.osm.bz2" region_prefix="Canada_">
|
||||
<regions siteToDownload="http://downloads.cloudmade.com/north_america/united_states/{0}/{0}.osm.bz2" region_prefix="US_">
|
||||
<region name="alabama" esize=""/>
|
||||
<region name="alaska" esize=""/>
|
||||
<region name="arizona" esize=""/>
|
||||
|
|
Loading…
Reference in a new issue