1OSMIUM-INDEX-TYPES(5) OSMIUM-INDEX-TYPES(5)
2
3
4
6 osmium-index-types - Index types used to store node locations
7
9 The osmium add-locations-to-ways and osmium export commands have to
10 keep an index of the node locations in memory or in a temporary file on
11 disk while doing their work. There are several different ways this can
12 be done which have different advantages and disadvantages.
13
14 Use the –show-index-types, -I option on these commands to show all
15 available index types. It depends on your operating system which index
16 types are available.
17
18 Use the –index-type, -i option on these commands to set the index type
19 to be used.
20
21 The default index type is flex_mem which will keep all data in memory
22 and works for small extracts as well as the whole planet file. It is
23 the right choice for almost all use cases if you have enough memory to
24 keep the whole index in memory.
25
26 For the osmium export command, the special type none is used when read‐
27 ing from files with the node locations on the ways. (See
28 osmium-add-node-locations-to-ways(1) for how to get a file like this.)
29
30 You can use one of the file-based indexes for the node location store
31 to minimize memory use, but performance will suffer. In this case use
32 sparse_file_array if you have a small or medium sized extract and
33 dense_file_array if you are working with a full planet or a really
34 large extract.
35
37 It depends on the index type used how much memory is needed:
38
39 · For sparse_*_array types 16 bytes per node in the input file are
40 used.
41
42 · For dense_*_array types 8 bytes times the largest node ID in the
43 input file are used.
44
45 The *_mem_* types use potentially up to twice this amount.
46
47 The *mem* and *mmap* types store the data in memory, the *file* types
48 in a file on disk.
49
50 The flex_mem type automatically switches between something similar to
51 sparse_mmap_array for smaller extracts and dense_mmap_array for larger
52 extracts or the whole planet file.
53
54 If you specify the –verbose, -v option, Osmium will display how much
55 memory was used for the index.
56
58 · osmium(1), osmium-add-locations-to-ways(1), osmium-export(1)
59
60 · Osmium website (https://osmcode.org/osmium-tool/)
61
62 · Index types (https://osmcode.org/osmium-concepts/#indexes)
63
65 Copyright (C) 2013-2018 Jochen Topf <jochen@topf.org>.
66
67 License GPLv3+: GNU GPL version 3 or later
68 <https://gnu.org/licenses/gpl.html>. This is free software: you are
69 free to change and redistribute it. There is NO WARRANTY, to the
70 extent permitted by law.
71
73 If you have any questions or want to report a bug, please go to
74 https://osmcode.org/contact.html
75
77 Jochen Topf <jochen@topf.org>.
78
79
80
81 1.10.0 OSMIUM-INDEX-TYPES(5)