Skip to content

Commit

Permalink
chore: add_elevation_in_tiles default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Nov 6, 2024
1 parent 1a0e6ac commit bd23d2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mjolnir/elevationbuilder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ void add_elevations_to_multiple_tiles(const boost::property_tree::ptree& pt,
tilequeue.pop_front();
lock.unlock();

add_elevations_to_single_tile(graphreader, lock, geo_attribute_cache, sample, tile_id, add_elevation_in_tiles);
add_elevations_to_single_tile(graphreader, lock, geo_attribute_cache, sample, tile_id, add_elevation_in_tiles.get_value_or(true));
}
}

Expand Down

0 comments on commit bd23d2f

Please sign in to comment.