OSMIUM-CREATE-LOCATIONS-INDEX(1) | OSMIUM-CREATE-LOCATIONS-INDEX(1) |
osmium-create-locations-index - create or update locations index from OSM file
osmium create-locations-index -i INDEX-FILE [OPTIONS] OSM-FILE
Create an index of all node locations from the OSM-FILE in the file INDEX-FILE.
If the INDEX-FILE exists, it will not be touched unless the --update/-u option is used.
Regardless of the size of the input file, this index will need about 8 * highest-node-id bytes on disk. For a current planet file this is more than 50 GBytes.
The index file format is compatible to the one created by “osmium add-location-to-ways -i dense_file_array,INDEX-FILE” and to the flatnode store created by osm2pgsql.
When the input file is a full history file or a change file, the last location encountered in the file for any ID ends up in the index. Usually this will be the newest location (from the node with the highest version).
This command will not work with negative node IDs.
This commands reads its input file only once, so it can be streamed, ie. it can read from STDIN.
osmium create-locations-index exits with exit code
osmium create-locations-index will not use a lot of memory.
Create node locations index from planet:
osmium create-locations-index -i locations.idx planet.osm.pbf
Set a node location in the index using an input file in OPL format:
echo "n123 x-80.6042 y28.6083" | \
osmium create-locations-index -i locations.idx -F opl --update
Copyright (C) 2013-2023 Jochen Topf <jochen@topf.org>.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
If you have any questions or want to report a bug, please go to https://osmcode.org/contact.html
Jochen Topf <jochen@topf.org>.
1.15.0 |