FIX important issue for MapCreator, maps should be regenerated for the last month. Restriction relation is broken
This commit is contained in:
parent
818f8527f8
commit
edb03cf628
1 changed files with 1 additions and 1 deletions
|
@ -696,7 +696,7 @@ public class IndexVectorMapCreator extends AbstractIndexPartCreator {
|
|||
}
|
||||
|
||||
public long convertGeneratedIdToObfWrite(long id){
|
||||
return (id >> (MAP_LEVELS_POWER + 1)) + (id & 1);
|
||||
return (id >> (MAP_LEVELS_POWER)) + (id & 1);
|
||||
}
|
||||
|
||||
public void writeBinaryMapTree(rtree.Node parent, RTree r, BinaryMapIndexWriter writer, PreparedStatement selectData) throws IOException, RTreeException, SQLException {
|
||||
|
|
Loading…
Reference in a new issue