forked from organicmaps/organicmaps
User 27 bits/coord for normal data and 16 for world map.
This commit is contained in:
parent
60e2dcfbae
commit
ac31ed145a
1 changed files with 5 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
#include "../indexer/feature_visibility.hpp"
|
||||
#include "../indexer/feature_impl.hpp"
|
||||
#include "../indexer/geometry_serialization.hpp"
|
||||
#include "../indexer/scales.hpp"
|
||||
#include "../indexer/tesselator.hpp"
|
||||
|
||||
#include "../geometry/polygon.hpp"
|
||||
|
@ -416,7 +417,10 @@ namespace feature
|
|||
FileReader reader(tempDatFilePath);
|
||||
|
||||
feature::DataHeader header;
|
||||
header.SetCodingParams(serial::CodingParams(30, midPoints.GetCenter()));
|
||||
uint32_t coordBits = 27;
|
||||
if (bWorld)
|
||||
coordBits -= (scales::GetUpperScale() - scales::GetUpperWorldScale());
|
||||
header.SetCodingParams(serial::CodingParams(coordBits, midPoints.GetCenter()));
|
||||
header.SetScales(bWorld ? g_arrWorldScales : g_arrCountryScales);
|
||||
|
||||
FeaturesCollector2 collector(datFilePath, header);
|
||||
|
|
Loading…
Add table
Reference in a new issue