forked from organicmaps/organicmaps
Fixed prefix for generated files
This commit is contained in:
parent
06deb7a6b7
commit
657de04795
2 changed files with 5 additions and 2 deletions
|
@ -108,7 +108,10 @@ int main(int argc, char ** argv)
|
|||
path + "visibility.txt");
|
||||
classificator::PrepareForFeatureGeneration();
|
||||
|
||||
genInfo.datFilePrefix = path + FLAGS_output + (FLAGS_bucketing_level > 0 ? "-" : "");
|
||||
if (FLAGS_output.empty())
|
||||
genInfo.datFilePrefix = path;
|
||||
else
|
||||
genInfo.datFilePrefix = path + FLAGS_output + (FLAGS_bucketing_level > 0 ? "-" : "");
|
||||
genInfo.datFileSuffix = DATA_FILE_EXTENSION;
|
||||
genInfo.cellBucketingLevel = FLAGS_bucketing_level;
|
||||
genInfo.m_maxScaleForWorldFeatures = FLAGS_worldmap_max_zoom;
|
||||
|
|
|
@ -92,4 +92,4 @@ fi
|
|||
|
||||
$PV $OSM_BZ2 | bzip2 -d | $INDEXER_TOOL --intermediate_data_path=$TMPDIR \
|
||||
--use_light_nodes=$LIGHT_NODES --bucketing_level=$BUCKETING_LEVEL \
|
||||
--generate_final_data --sort_features=true --generate_index --output=101103 --worldmap_max_zoom=5
|
||||
--generate_final_data --sort_features=true --generate_index --worldmap_max_zoom=5
|
||||
|
|
Loading…
Add table
Reference in a new issue