Fixed prefix for generated files

This commit is contained in:
Alex Zolotarev 2011-01-02 01:46:09 +01:00 committed by Alex Zolotarev
parent 06deb7a6b7
commit 657de04795
2 changed files with 5 additions and 2 deletions

View file

@ -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;

View file

@ -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