forked from organicmaps/organicmaps-tmp
[indexer_tool] Fixed classificator loading
This commit is contained in:
parent
75aa535cb6
commit
e20bfa9636
1 changed files with 8 additions and 4 deletions
|
@ -99,15 +99,19 @@ int main(int argc, char ** argv)
|
|||
feature::GenerateInfo genInfo;
|
||||
genInfo.dir = FLAGS_intermediate_data_path;
|
||||
|
||||
// Generate dat file
|
||||
if (FLAGS_generate_features)
|
||||
// load classificator only if necessary
|
||||
if (FLAGS_generate_features || FLAGS_generate_geometry || FLAGS_generate_index)
|
||||
{
|
||||
LOG(LINFO, ("Generating final data ..."));
|
||||
|
||||
classificator::Read(path + "drawing_rules.bin",
|
||||
path + "classificator.txt",
|
||||
path + "visibility.txt");
|
||||
classificator::PrepareForFeatureGeneration();
|
||||
}
|
||||
|
||||
// Generate dat file
|
||||
if (FLAGS_generate_features)
|
||||
{
|
||||
LOG(LINFO, ("Generating final data ..."));
|
||||
|
||||
if (FLAGS_output.empty())
|
||||
genInfo.datFilePrefix = path;
|
||||
|
|
Loading…
Add table
Reference in a new issue