├── .clang-tidy ├── .codecov.yml ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── config.yml ├── actions │ ├── build │ │ └── action.yml │ ├── cmake-windows │ │ └── action.yml │ ├── cmake │ │ └── action.yml │ ├── ctest │ │ └── action.yml │ ├── install-macos │ │ └── action.yml │ ├── install-protozero │ │ └── action.yml │ ├── install-ubuntu │ │ └── action.yml │ └── install-windows │ │ └── action.yml └── workflows │ ├── ci.yml │ └── clang-tidy.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── NOTES_FOR_DEVELOPERS.md ├── README.md ├── benchmarks ├── CMakeLists.txt ├── README.md ├── download_data.sh ├── osmium_benchmark_count.cpp ├── osmium_benchmark_count_tag.cpp ├── osmium_benchmark_index_map.cpp ├── osmium_benchmark_mercator.cpp ├── osmium_benchmark_static_vs_dynamic_index.cpp ├── osmium_benchmark_write_pbf.cpp ├── run_benchmark_count.sh ├── run_benchmark_count_tag.sh ├── run_benchmark_index_map.sh ├── run_benchmark_mercator.sh ├── run_benchmark_static_vs_dynamic_index.sh ├── run_benchmark_write_pbf.sh ├── run_benchmarks.sh └── setup.sh ├── cmake ├── FindGem.cmake ├── FindLZ4.cmake ├── FindOsmium.cmake ├── FindProtozero.cmake ├── README └── iwyu.sh ├── doc ├── CMakeLists.txt ├── Doxyfile.in ├── README.md ├── doc.md ├── header.html └── osmium.css ├── examples ├── CMakeLists.txt ├── README.md ├── osmium_amenity_list.cpp ├── osmium_area_test.cpp ├── osmium_change_tags.cpp ├── osmium_convert.cpp ├── osmium_count.cpp ├── osmium_create_pois.cpp ├── osmium_debug.cpp ├── osmium_dump_internal.cpp ├── osmium_filter_discussions.cpp ├── osmium_index_lookup.cpp ├── osmium_location_cache_create.cpp ├── osmium_location_cache_use.cpp ├── osmium_pub_names.cpp ├── osmium_read.cpp ├── osmium_read_with_progress.cpp ├── osmium_road_length.cpp ├── osmium_tags_filter.cpp └── osmium_tiles.cpp ├── include ├── gdalcpp.hpp └── osmium │ ├── area │ ├── assembler.hpp │ ├── assembler_config.hpp │ ├── assembler_legacy.hpp │ ├── detail │ │ ├── basic_assembler.hpp │ │ ├── basic_assembler_with_tags.hpp │ │ ├── node_ref_segment.hpp │ │ ├── proto_ring.hpp │ │ ├── segment_list.hpp │ │ └── vector.hpp │ ├── geom_assembler.hpp │ ├── multipolygon_collector.hpp │ ├── multipolygon_manager.hpp │ ├── multipolygon_manager_legacy.hpp │ ├── problem_reporter.hpp │ ├── problem_reporter_exception.hpp │ ├── problem_reporter_ogr.hpp │ ├── problem_reporter_stream.hpp │ └── stats.hpp │ ├── builder │ ├── attr.hpp │ ├── builder.hpp │ └── osm_object_builder.hpp │ ├── diff_handler.hpp │ ├── diff_iterator.hpp │ ├── diff_visitor.hpp │ ├── dynamic_handler.hpp │ ├── experimental │ └── flex_reader.hpp │ ├── fwd.hpp │ ├── geom │ ├── coordinates.hpp │ ├── factory.hpp │ ├── geojson.hpp │ ├── geos.hpp │ ├── haversine.hpp │ ├── mercator_projection.hpp │ ├── ogr.hpp │ ├── rapid_geojson.hpp │ ├── relations.hpp │ ├── tile.hpp │ ├── util.hpp │ ├── wkb.hpp │ └── wkt.hpp │ ├── handler.hpp │ ├── handler │ ├── chain.hpp │ ├── check_order.hpp │ ├── disk_store.hpp │ ├── dump.hpp │ ├── node_locations_for_ways.hpp │ └── object_relations.hpp │ ├── index │ ├── detail │ │ ├── create_map_with_fd.hpp │ │ ├── mmap_vector_anon.hpp │ │ ├── mmap_vector_base.hpp │ │ ├── mmap_vector_file.hpp │ │ ├── tmpfile.hpp │ │ ├── vector_map.hpp │ │ └── vector_multimap.hpp │ ├── id_set.hpp │ ├── index.hpp │ ├── map.hpp │ ├── map │ │ ├── all.hpp │ │ ├── dense_file_array.hpp │ │ ├── dense_mem_array.hpp │ │ ├── dense_mmap_array.hpp │ │ ├── dummy.hpp │ │ ├── flex_mem.hpp │ │ ├── sparse_file_array.hpp │ │ ├── sparse_mem_array.hpp │ │ ├── sparse_mem_map.hpp │ │ └── sparse_mmap_array.hpp │ ├── multimap.hpp │ ├── multimap │ │ ├── all.hpp │ │ ├── hybrid.hpp │ │ ├── sparse_file_array.hpp │ │ ├── sparse_mem_array.hpp │ │ ├── sparse_mem_multimap.hpp │ │ └── sparse_mmap_array.hpp │ ├── node_locations_map.hpp │ ├── nwr_array.hpp │ └── relations_map.hpp │ ├── io │ ├── any_compression.hpp │ ├── any_input.hpp │ ├── any_output.hpp │ ├── bzip2_compression.hpp │ ├── compression.hpp │ ├── debug_output.hpp │ ├── detail │ │ ├── debug_output_format.hpp │ │ ├── ids_output_format.hpp │ │ ├── input_format.hpp │ │ ├── lz4.hpp │ │ ├── o5m_input_format.hpp │ │ ├── opl_input_format.hpp │ │ ├── opl_output_format.hpp │ │ ├── opl_parser_functions.hpp │ │ ├── output_format.hpp │ │ ├── pbf.hpp │ │ ├── pbf_decoder.hpp │ │ ├── pbf_input_format.hpp │ │ ├── pbf_output_format.hpp │ │ ├── protobuf_tags.hpp │ │ ├── queue_util.hpp │ │ ├── read_thread.hpp │ │ ├── read_write.hpp │ │ ├── string_table.hpp │ │ ├── string_util.hpp │ │ ├── write_thread.hpp │ │ ├── xml_input_format.hpp │ │ ├── xml_output_format.hpp │ │ └── zlib.hpp │ ├── error.hpp │ ├── file.hpp │ ├── file_compression.hpp │ ├── file_format.hpp │ ├── gzip_compression.hpp │ ├── header.hpp │ ├── ids_output.hpp │ ├── input_iterator.hpp │ ├── o5m_input.hpp │ ├── opl_input.hpp │ ├── opl_output.hpp │ ├── output_iterator.hpp │ ├── overwrite.hpp │ ├── pbf.hpp │ ├── pbf_input.hpp │ ├── pbf_output.hpp │ ├── reader.hpp │ ├── reader_iterator.hpp │ ├── reader_with_progress_bar.hpp │ ├── writer.hpp │ ├── writer_options.hpp │ ├── xml_input.hpp │ └── xml_output.hpp │ ├── memory │ ├── buffer.hpp │ ├── callback_buffer.hpp │ ├── collection.hpp │ ├── item.hpp │ └── item_iterator.hpp │ ├── object_pointer_collection.hpp │ ├── opl.hpp │ ├── osm.hpp │ ├── osm │ ├── area.hpp │ ├── box.hpp │ ├── changeset.hpp │ ├── crc.hpp │ ├── crc_zlib.hpp │ ├── diff_object.hpp │ ├── entity.hpp │ ├── entity_bits.hpp │ ├── item_type.hpp │ ├── location.hpp │ ├── metadata_options.hpp │ ├── node.hpp │ ├── node_ref.hpp │ ├── node_ref_list.hpp │ ├── object.hpp │ ├── object_comparisons.hpp │ ├── relation.hpp │ ├── segment.hpp │ ├── tag.hpp │ ├── timestamp.hpp │ ├── types.hpp │ ├── types_from_string.hpp │ ├── undirected_segment.hpp │ └── way.hpp │ ├── relations │ ├── collector.hpp │ ├── detail │ │ ├── member_meta.hpp │ │ └── relation_meta.hpp │ ├── manager_util.hpp │ ├── members_database.hpp │ ├── relations_database.hpp │ └── relations_manager.hpp │ ├── storage │ └── item_stash.hpp │ ├── tags │ ├── filter.hpp │ ├── matcher.hpp │ ├── taglist.hpp │ └── tags_filter.hpp │ ├── thread │ ├── function_wrapper.hpp │ ├── pool.hpp │ ├── queue.hpp │ └── util.hpp │ ├── util │ ├── compatibility.hpp │ ├── config.hpp │ ├── delta.hpp │ ├── double.hpp │ ├── endian.hpp │ ├── file.hpp │ ├── iterator.hpp │ ├── memory.hpp │ ├── memory_mapping.hpp │ ├── minmax.hpp │ ├── misc.hpp │ ├── options.hpp │ ├── progress_bar.hpp │ ├── string.hpp │ ├── string_matcher.hpp │ ├── timer.hpp │ └── verbose_output.hpp │ ├── version.hpp │ └── visitor.hpp ├── osmium.imp └── test ├── CMakeLists.txt ├── README ├── catch └── catch.hpp ├── data-tests ├── .gitignore ├── CMakeLists.txt ├── README.md ├── include │ ├── check_basics_handler.hpp │ ├── check_wkt_handler.hpp │ ├── common.hpp │ └── testdata-testcases.hpp ├── multipolygon.qgs ├── run-testdata-multipolygon.cmake ├── testcases │ ├── test-100.cpp │ ├── test-101.cpp │ ├── test-102.cpp │ ├── test-110.cpp │ ├── test-111.cpp │ ├── test-112.cpp │ ├── test-113.cpp │ ├── test-114.cpp │ ├── test-115.cpp │ ├── test-116.cpp │ ├── test-120.cpp │ ├── test-121.cpp │ ├── test-122.cpp │ ├── test-123.cpp │ └── test-124.cpp ├── testdata-multipolygon.cpp ├── testdata-overview.cpp ├── testdata-testcases.cpp └── testdata-xml.cpp ├── examples ├── CMakeLists.txt └── t │ ├── amenity_list │ ├── CMakeLists.txt │ ├── area.osm │ └── node.osm │ ├── area_test │ ├── CMakeLists.txt │ └── data.osm │ ├── change_tags │ ├── .gitattributes │ ├── CMakeLists.txt │ ├── data.osm │ └── result.osm │ ├── convert │ ├── CMakeLists.txt │ └── data.osm │ ├── count │ ├── CMakeLists.txt │ └── data.osm │ ├── create_pois │ └── CMakeLists.txt │ ├── debug │ ├── CMakeLists.txt │ ├── changesets.osm │ └── data.osm │ ├── dump_internal │ ├── CMakeLists.txt │ └── data.osm │ ├── filter_discussions │ ├── CMakeLists.txt │ └── changesets.osm │ ├── index_lookup │ └── CMakeLists.txt │ ├── location_cache │ ├── CMakeLists.txt │ ├── data.osm │ └── way.osm │ ├── pub_names │ ├── CMakeLists.txt │ ├── pub-addr.osm │ ├── pub-node.osm │ ├── pub-noname.osm │ └── pub-way.osm │ ├── read │ ├── CMakeLists.txt │ └── data.osm │ ├── read_with_progress │ ├── CMakeLists.txt │ └── data.osm │ ├── road_length │ ├── CMakeLists.txt │ └── road.osm │ └── tiles │ └── CMakeLists.txt ├── include ├── test_crc.hpp ├── utils.hpp └── win_mkstemp.hpp ├── t ├── area │ ├── test_area_id.cpp │ ├── test_assembler.cpp │ └── test_node_ref_segment.cpp ├── builder │ ├── test_attr.cpp │ └── test_object_builder.cpp ├── geom │ ├── area_helper.hpp │ ├── test_coordinates.cpp │ ├── test_exception.cpp │ ├── test_factory_with_projection.cpp │ ├── test_geojson.cpp │ ├── test_geos.cpp │ ├── test_mercator.cpp │ ├── test_ogr.cpp │ ├── test_ogr_wkb.cpp │ ├── test_projection.cpp │ ├── test_tile.cpp │ ├── test_tile_data.hpp │ ├── test_wkb.cpp │ ├── test_wkt.cpp │ └── wnl_helper.hpp ├── handler │ ├── test_apply.cpp │ ├── test_check_order_handler.cpp │ └── test_dynamic_handler.cpp ├── index │ ├── test_dump_and_load_index.cpp │ ├── test_dump_sparse_as_array.cpp │ ├── test_file_based_index.cpp │ ├── test_id_set.cpp │ ├── test_id_to_location.cpp │ ├── test_nwr_array.cpp │ ├── test_object_pointer_collection.cpp │ └── test_relations_map.cpp ├── io │ ├── corrupt_data_bzip2.txt.bz2 │ ├── corrupt_data_gzip.txt.gz │ ├── data-cr.opl │ ├── data-n0w1r3.osm │ ├── data-n0w1r3.osm.o5m │ ├── data-n0w1r3.osm.opl │ ├── data-n5w0r3.osm │ ├── data-n5w0r3.osm.o5m │ ├── data-n5w0r3.osm.opl │ ├── data-n5w1r0.osm │ ├── data-n5w1r0.osm.o5m │ ├── data-n5w1r0.osm.opl │ ├── data-n5w1r3.osm │ ├── data-n5w1r3.osm.o5m │ ├── data-n5w1r3.osm.opl │ ├── data-nonl.opl │ ├── data.opl │ ├── data.osm │ ├── data.osm.bz2 │ ├── data.osm.gz │ ├── data.txt │ ├── data_bzip2.txt.bz2 │ ├── data_gzip.txt.gz │ ├── data_pbf_version-1-densenodes.osm.pbf │ ├── data_pbf_version-1.osm │ ├── data_pbf_version-1.osm.pbf │ ├── deleted_nodes.osh │ ├── deleted_nodes.osh.pbf │ ├── empty_file │ ├── test_bzip2.cpp │ ├── test_compression_factory.cpp │ ├── test_file_formats.cpp │ ├── test_file_seek.cpp │ ├── test_gzip.cpp │ ├── test_nocompression.cpp │ ├── test_opl_parser.cpp │ ├── test_output_iterator.cpp │ ├── test_output_utils.cpp │ ├── test_pbf.cpp │ ├── test_reader.cpp │ ├── test_reader_fileformat.cpp │ ├── test_reader_with_mock_decompression.cpp │ ├── test_reader_with_mock_parser.cpp │ ├── test_string_table.cpp │ ├── test_writer.cpp │ ├── test_writer_with_mock_compression.cpp │ └── test_writer_with_mock_encoder.cpp ├── memory │ ├── test_buffer_basics.cpp │ ├── test_buffer_node.cpp │ ├── test_buffer_purge.cpp │ ├── test_callback_buffer.cpp │ ├── test_item.cpp │ └── test_type_is_compatible.cpp ├── osm │ ├── test_area.cpp │ ├── test_box.cpp │ ├── test_changeset.cpp │ ├── test_crc.cpp │ ├── test_entity_bits.cpp │ ├── test_location.cpp │ ├── test_metadata.cpp │ ├── test_node.cpp │ ├── test_node_ref.cpp │ ├── test_object_comparisons.cpp │ ├── test_relation.cpp │ ├── test_timestamp.cpp │ ├── test_types_from_string.cpp │ └── test_way.cpp ├── relations │ ├── data.osm │ ├── dupl_member.osm │ ├── missing_members.osm │ ├── test_members_database.cpp │ ├── test_read_relations.cpp │ ├── test_relations_database.cpp │ └── test_relations_manager.cpp ├── storage │ └── test_item_stash.cpp ├── tags │ ├── test_filter.cpp │ ├── test_operators.cpp │ ├── test_tag_list.cpp │ ├── test_tag_matcher.cpp │ └── test_tags_filter.cpp ├── thread │ ├── test_pool.cpp │ ├── test_queue.cpp │ └── test_util.cpp └── util │ ├── .gitattributes │ ├── known_file_size │ ├── test_config.cpp │ ├── test_delta.cpp │ ├── test_double.cpp │ ├── test_file.cpp │ ├── test_memory.cpp │ ├── test_memory_mapping.cpp │ ├── test_minmax.cpp │ ├── test_misc.cpp │ ├── test_options.cpp │ ├── test_string.cpp │ ├── test_string_matcher.cpp │ ├── test_timer_disabled.cpp │ └── test_timer_enabled.cpp ├── test_main.cpp └── valgrind.supp /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: "https://osmcode.org/sponsors.html" 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/actions/build/action.yml -------------------------------------------------------------------------------- /.github/actions/cmake-windows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/actions/cmake-windows/action.yml -------------------------------------------------------------------------------- /.github/actions/cmake/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/actions/cmake/action.yml -------------------------------------------------------------------------------- /.github/actions/ctest/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/actions/ctest/action.yml -------------------------------------------------------------------------------- /.github/actions/install-macos/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/actions/install-macos/action.yml -------------------------------------------------------------------------------- /.github/actions/install-protozero/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/actions/install-protozero/action.yml -------------------------------------------------------------------------------- /.github/actions/install-ubuntu/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/actions/install-ubuntu/action.yml -------------------------------------------------------------------------------- /.github/actions/install-windows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/actions/install-windows/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/clang-tidy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.github/workflows/clang-tidy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTES_FOR_DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/NOTES_FOR_DEVELOPERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/download_data.sh -------------------------------------------------------------------------------- /benchmarks/osmium_benchmark_count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/osmium_benchmark_count.cpp -------------------------------------------------------------------------------- /benchmarks/osmium_benchmark_count_tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/osmium_benchmark_count_tag.cpp -------------------------------------------------------------------------------- /benchmarks/osmium_benchmark_index_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/osmium_benchmark_index_map.cpp -------------------------------------------------------------------------------- /benchmarks/osmium_benchmark_mercator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/osmium_benchmark_mercator.cpp -------------------------------------------------------------------------------- /benchmarks/osmium_benchmark_static_vs_dynamic_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/osmium_benchmark_static_vs_dynamic_index.cpp -------------------------------------------------------------------------------- /benchmarks/osmium_benchmark_write_pbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/osmium_benchmark_write_pbf.cpp -------------------------------------------------------------------------------- /benchmarks/run_benchmark_count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/run_benchmark_count.sh -------------------------------------------------------------------------------- /benchmarks/run_benchmark_count_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/run_benchmark_count_tag.sh -------------------------------------------------------------------------------- /benchmarks/run_benchmark_index_map.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/run_benchmark_index_map.sh -------------------------------------------------------------------------------- /benchmarks/run_benchmark_mercator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/run_benchmark_mercator.sh -------------------------------------------------------------------------------- /benchmarks/run_benchmark_static_vs_dynamic_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/run_benchmark_static_vs_dynamic_index.sh -------------------------------------------------------------------------------- /benchmarks/run_benchmark_write_pbf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/run_benchmark_write_pbf.sh -------------------------------------------------------------------------------- /benchmarks/run_benchmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/run_benchmarks.sh -------------------------------------------------------------------------------- /benchmarks/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/benchmarks/setup.sh -------------------------------------------------------------------------------- /cmake/FindGem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/cmake/FindGem.cmake -------------------------------------------------------------------------------- /cmake/FindLZ4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/cmake/FindLZ4.cmake -------------------------------------------------------------------------------- /cmake/FindOsmium.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/cmake/FindOsmium.cmake -------------------------------------------------------------------------------- /cmake/FindProtozero.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/cmake/FindProtozero.cmake -------------------------------------------------------------------------------- /cmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/cmake/README -------------------------------------------------------------------------------- /cmake/iwyu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/cmake/iwyu.sh -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/doc/doc.md -------------------------------------------------------------------------------- /doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/doc/header.html -------------------------------------------------------------------------------- /doc/osmium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/doc/osmium.css -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/osmium_amenity_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_amenity_list.cpp -------------------------------------------------------------------------------- /examples/osmium_area_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_area_test.cpp -------------------------------------------------------------------------------- /examples/osmium_change_tags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_change_tags.cpp -------------------------------------------------------------------------------- /examples/osmium_convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_convert.cpp -------------------------------------------------------------------------------- /examples/osmium_count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_count.cpp -------------------------------------------------------------------------------- /examples/osmium_create_pois.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_create_pois.cpp -------------------------------------------------------------------------------- /examples/osmium_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_debug.cpp -------------------------------------------------------------------------------- /examples/osmium_dump_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_dump_internal.cpp -------------------------------------------------------------------------------- /examples/osmium_filter_discussions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_filter_discussions.cpp -------------------------------------------------------------------------------- /examples/osmium_index_lookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_index_lookup.cpp -------------------------------------------------------------------------------- /examples/osmium_location_cache_create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_location_cache_create.cpp -------------------------------------------------------------------------------- /examples/osmium_location_cache_use.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_location_cache_use.cpp -------------------------------------------------------------------------------- /examples/osmium_pub_names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_pub_names.cpp -------------------------------------------------------------------------------- /examples/osmium_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_read.cpp -------------------------------------------------------------------------------- /examples/osmium_read_with_progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_read_with_progress.cpp -------------------------------------------------------------------------------- /examples/osmium_road_length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_road_length.cpp -------------------------------------------------------------------------------- /examples/osmium_tags_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_tags_filter.cpp -------------------------------------------------------------------------------- /examples/osmium_tiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/examples/osmium_tiles.cpp -------------------------------------------------------------------------------- /include/gdalcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/gdalcpp.hpp -------------------------------------------------------------------------------- /include/osmium/area/assembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/assembler.hpp -------------------------------------------------------------------------------- /include/osmium/area/assembler_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/assembler_config.hpp -------------------------------------------------------------------------------- /include/osmium/area/assembler_legacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/assembler_legacy.hpp -------------------------------------------------------------------------------- /include/osmium/area/detail/basic_assembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/detail/basic_assembler.hpp -------------------------------------------------------------------------------- /include/osmium/area/detail/basic_assembler_with_tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/detail/basic_assembler_with_tags.hpp -------------------------------------------------------------------------------- /include/osmium/area/detail/node_ref_segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/detail/node_ref_segment.hpp -------------------------------------------------------------------------------- /include/osmium/area/detail/proto_ring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/detail/proto_ring.hpp -------------------------------------------------------------------------------- /include/osmium/area/detail/segment_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/detail/segment_list.hpp -------------------------------------------------------------------------------- /include/osmium/area/detail/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/detail/vector.hpp -------------------------------------------------------------------------------- /include/osmium/area/geom_assembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/geom_assembler.hpp -------------------------------------------------------------------------------- /include/osmium/area/multipolygon_collector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/multipolygon_collector.hpp -------------------------------------------------------------------------------- /include/osmium/area/multipolygon_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/multipolygon_manager.hpp -------------------------------------------------------------------------------- /include/osmium/area/multipolygon_manager_legacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/multipolygon_manager_legacy.hpp -------------------------------------------------------------------------------- /include/osmium/area/problem_reporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/problem_reporter.hpp -------------------------------------------------------------------------------- /include/osmium/area/problem_reporter_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/problem_reporter_exception.hpp -------------------------------------------------------------------------------- /include/osmium/area/problem_reporter_ogr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/problem_reporter_ogr.hpp -------------------------------------------------------------------------------- /include/osmium/area/problem_reporter_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/problem_reporter_stream.hpp -------------------------------------------------------------------------------- /include/osmium/area/stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/area/stats.hpp -------------------------------------------------------------------------------- /include/osmium/builder/attr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/builder/attr.hpp -------------------------------------------------------------------------------- /include/osmium/builder/builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/builder/builder.hpp -------------------------------------------------------------------------------- /include/osmium/builder/osm_object_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/builder/osm_object_builder.hpp -------------------------------------------------------------------------------- /include/osmium/diff_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/diff_handler.hpp -------------------------------------------------------------------------------- /include/osmium/diff_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/diff_iterator.hpp -------------------------------------------------------------------------------- /include/osmium/diff_visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/diff_visitor.hpp -------------------------------------------------------------------------------- /include/osmium/dynamic_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/dynamic_handler.hpp -------------------------------------------------------------------------------- /include/osmium/experimental/flex_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/experimental/flex_reader.hpp -------------------------------------------------------------------------------- /include/osmium/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/fwd.hpp -------------------------------------------------------------------------------- /include/osmium/geom/coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/coordinates.hpp -------------------------------------------------------------------------------- /include/osmium/geom/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/factory.hpp -------------------------------------------------------------------------------- /include/osmium/geom/geojson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/geojson.hpp -------------------------------------------------------------------------------- /include/osmium/geom/geos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/geos.hpp -------------------------------------------------------------------------------- /include/osmium/geom/haversine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/haversine.hpp -------------------------------------------------------------------------------- /include/osmium/geom/mercator_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/mercator_projection.hpp -------------------------------------------------------------------------------- /include/osmium/geom/ogr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/ogr.hpp -------------------------------------------------------------------------------- /include/osmium/geom/rapid_geojson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/rapid_geojson.hpp -------------------------------------------------------------------------------- /include/osmium/geom/relations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/relations.hpp -------------------------------------------------------------------------------- /include/osmium/geom/tile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/tile.hpp -------------------------------------------------------------------------------- /include/osmium/geom/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/util.hpp -------------------------------------------------------------------------------- /include/osmium/geom/wkb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/wkb.hpp -------------------------------------------------------------------------------- /include/osmium/geom/wkt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/geom/wkt.hpp -------------------------------------------------------------------------------- /include/osmium/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/handler.hpp -------------------------------------------------------------------------------- /include/osmium/handler/chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/handler/chain.hpp -------------------------------------------------------------------------------- /include/osmium/handler/check_order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/handler/check_order.hpp -------------------------------------------------------------------------------- /include/osmium/handler/disk_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/handler/disk_store.hpp -------------------------------------------------------------------------------- /include/osmium/handler/dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/handler/dump.hpp -------------------------------------------------------------------------------- /include/osmium/handler/node_locations_for_ways.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/handler/node_locations_for_ways.hpp -------------------------------------------------------------------------------- /include/osmium/handler/object_relations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/handler/object_relations.hpp -------------------------------------------------------------------------------- /include/osmium/index/detail/create_map_with_fd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/detail/create_map_with_fd.hpp -------------------------------------------------------------------------------- /include/osmium/index/detail/mmap_vector_anon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/detail/mmap_vector_anon.hpp -------------------------------------------------------------------------------- /include/osmium/index/detail/mmap_vector_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/detail/mmap_vector_base.hpp -------------------------------------------------------------------------------- /include/osmium/index/detail/mmap_vector_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/detail/mmap_vector_file.hpp -------------------------------------------------------------------------------- /include/osmium/index/detail/tmpfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/detail/tmpfile.hpp -------------------------------------------------------------------------------- /include/osmium/index/detail/vector_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/detail/vector_map.hpp -------------------------------------------------------------------------------- /include/osmium/index/detail/vector_multimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/detail/vector_multimap.hpp -------------------------------------------------------------------------------- /include/osmium/index/id_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/id_set.hpp -------------------------------------------------------------------------------- /include/osmium/index/index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/index.hpp -------------------------------------------------------------------------------- /include/osmium/index/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map.hpp -------------------------------------------------------------------------------- /include/osmium/index/map/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map/all.hpp -------------------------------------------------------------------------------- /include/osmium/index/map/dense_file_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map/dense_file_array.hpp -------------------------------------------------------------------------------- /include/osmium/index/map/dense_mem_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map/dense_mem_array.hpp -------------------------------------------------------------------------------- /include/osmium/index/map/dense_mmap_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map/dense_mmap_array.hpp -------------------------------------------------------------------------------- /include/osmium/index/map/dummy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map/dummy.hpp -------------------------------------------------------------------------------- /include/osmium/index/map/flex_mem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map/flex_mem.hpp -------------------------------------------------------------------------------- /include/osmium/index/map/sparse_file_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map/sparse_file_array.hpp -------------------------------------------------------------------------------- /include/osmium/index/map/sparse_mem_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map/sparse_mem_array.hpp -------------------------------------------------------------------------------- /include/osmium/index/map/sparse_mem_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map/sparse_mem_map.hpp -------------------------------------------------------------------------------- /include/osmium/index/map/sparse_mmap_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/map/sparse_mmap_array.hpp -------------------------------------------------------------------------------- /include/osmium/index/multimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/multimap.hpp -------------------------------------------------------------------------------- /include/osmium/index/multimap/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/multimap/all.hpp -------------------------------------------------------------------------------- /include/osmium/index/multimap/hybrid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/multimap/hybrid.hpp -------------------------------------------------------------------------------- /include/osmium/index/multimap/sparse_file_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/multimap/sparse_file_array.hpp -------------------------------------------------------------------------------- /include/osmium/index/multimap/sparse_mem_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/multimap/sparse_mem_array.hpp -------------------------------------------------------------------------------- /include/osmium/index/multimap/sparse_mem_multimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/multimap/sparse_mem_multimap.hpp -------------------------------------------------------------------------------- /include/osmium/index/multimap/sparse_mmap_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/multimap/sparse_mmap_array.hpp -------------------------------------------------------------------------------- /include/osmium/index/node_locations_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/node_locations_map.hpp -------------------------------------------------------------------------------- /include/osmium/index/nwr_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/nwr_array.hpp -------------------------------------------------------------------------------- /include/osmium/index/relations_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/index/relations_map.hpp -------------------------------------------------------------------------------- /include/osmium/io/any_compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/any_compression.hpp -------------------------------------------------------------------------------- /include/osmium/io/any_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/any_input.hpp -------------------------------------------------------------------------------- /include/osmium/io/any_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/any_output.hpp -------------------------------------------------------------------------------- /include/osmium/io/bzip2_compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/bzip2_compression.hpp -------------------------------------------------------------------------------- /include/osmium/io/compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/compression.hpp -------------------------------------------------------------------------------- /include/osmium/io/debug_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/debug_output.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/debug_output_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/debug_output_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/ids_output_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/ids_output_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/input_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/input_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/lz4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/lz4.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/o5m_input_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/o5m_input_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/opl_input_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/opl_input_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/opl_output_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/opl_output_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/opl_parser_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/opl_parser_functions.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/output_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/output_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/pbf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/pbf.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/pbf_decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/pbf_decoder.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/pbf_input_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/pbf_input_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/pbf_output_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/pbf_output_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/protobuf_tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/protobuf_tags.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/queue_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/queue_util.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/read_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/read_thread.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/read_write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/read_write.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/string_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/string_table.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/string_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/string_util.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/write_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/write_thread.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/xml_input_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/xml_input_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/xml_output_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/xml_output_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/detail/zlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/detail/zlib.hpp -------------------------------------------------------------------------------- /include/osmium/io/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/error.hpp -------------------------------------------------------------------------------- /include/osmium/io/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/file.hpp -------------------------------------------------------------------------------- /include/osmium/io/file_compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/file_compression.hpp -------------------------------------------------------------------------------- /include/osmium/io/file_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/file_format.hpp -------------------------------------------------------------------------------- /include/osmium/io/gzip_compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/gzip_compression.hpp -------------------------------------------------------------------------------- /include/osmium/io/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/header.hpp -------------------------------------------------------------------------------- /include/osmium/io/ids_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/ids_output.hpp -------------------------------------------------------------------------------- /include/osmium/io/input_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/input_iterator.hpp -------------------------------------------------------------------------------- /include/osmium/io/o5m_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/o5m_input.hpp -------------------------------------------------------------------------------- /include/osmium/io/opl_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/opl_input.hpp -------------------------------------------------------------------------------- /include/osmium/io/opl_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/opl_output.hpp -------------------------------------------------------------------------------- /include/osmium/io/output_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/output_iterator.hpp -------------------------------------------------------------------------------- /include/osmium/io/overwrite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/overwrite.hpp -------------------------------------------------------------------------------- /include/osmium/io/pbf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/pbf.hpp -------------------------------------------------------------------------------- /include/osmium/io/pbf_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/pbf_input.hpp -------------------------------------------------------------------------------- /include/osmium/io/pbf_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/pbf_output.hpp -------------------------------------------------------------------------------- /include/osmium/io/reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/reader.hpp -------------------------------------------------------------------------------- /include/osmium/io/reader_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/reader_iterator.hpp -------------------------------------------------------------------------------- /include/osmium/io/reader_with_progress_bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/reader_with_progress_bar.hpp -------------------------------------------------------------------------------- /include/osmium/io/writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/writer.hpp -------------------------------------------------------------------------------- /include/osmium/io/writer_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/writer_options.hpp -------------------------------------------------------------------------------- /include/osmium/io/xml_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/xml_input.hpp -------------------------------------------------------------------------------- /include/osmium/io/xml_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/io/xml_output.hpp -------------------------------------------------------------------------------- /include/osmium/memory/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/memory/buffer.hpp -------------------------------------------------------------------------------- /include/osmium/memory/callback_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/memory/callback_buffer.hpp -------------------------------------------------------------------------------- /include/osmium/memory/collection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/memory/collection.hpp -------------------------------------------------------------------------------- /include/osmium/memory/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/memory/item.hpp -------------------------------------------------------------------------------- /include/osmium/memory/item_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/memory/item_iterator.hpp -------------------------------------------------------------------------------- /include/osmium/object_pointer_collection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/object_pointer_collection.hpp -------------------------------------------------------------------------------- /include/osmium/opl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/opl.hpp -------------------------------------------------------------------------------- /include/osmium/osm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm.hpp -------------------------------------------------------------------------------- /include/osmium/osm/area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/area.hpp -------------------------------------------------------------------------------- /include/osmium/osm/box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/box.hpp -------------------------------------------------------------------------------- /include/osmium/osm/changeset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/changeset.hpp -------------------------------------------------------------------------------- /include/osmium/osm/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/crc.hpp -------------------------------------------------------------------------------- /include/osmium/osm/crc_zlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/crc_zlib.hpp -------------------------------------------------------------------------------- /include/osmium/osm/diff_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/diff_object.hpp -------------------------------------------------------------------------------- /include/osmium/osm/entity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/entity.hpp -------------------------------------------------------------------------------- /include/osmium/osm/entity_bits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/entity_bits.hpp -------------------------------------------------------------------------------- /include/osmium/osm/item_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/item_type.hpp -------------------------------------------------------------------------------- /include/osmium/osm/location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/location.hpp -------------------------------------------------------------------------------- /include/osmium/osm/metadata_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/metadata_options.hpp -------------------------------------------------------------------------------- /include/osmium/osm/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/node.hpp -------------------------------------------------------------------------------- /include/osmium/osm/node_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/node_ref.hpp -------------------------------------------------------------------------------- /include/osmium/osm/node_ref_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/node_ref_list.hpp -------------------------------------------------------------------------------- /include/osmium/osm/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/object.hpp -------------------------------------------------------------------------------- /include/osmium/osm/object_comparisons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/object_comparisons.hpp -------------------------------------------------------------------------------- /include/osmium/osm/relation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/relation.hpp -------------------------------------------------------------------------------- /include/osmium/osm/segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/segment.hpp -------------------------------------------------------------------------------- /include/osmium/osm/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/tag.hpp -------------------------------------------------------------------------------- /include/osmium/osm/timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/timestamp.hpp -------------------------------------------------------------------------------- /include/osmium/osm/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/types.hpp -------------------------------------------------------------------------------- /include/osmium/osm/types_from_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/types_from_string.hpp -------------------------------------------------------------------------------- /include/osmium/osm/undirected_segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/undirected_segment.hpp -------------------------------------------------------------------------------- /include/osmium/osm/way.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/osm/way.hpp -------------------------------------------------------------------------------- /include/osmium/relations/collector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/relations/collector.hpp -------------------------------------------------------------------------------- /include/osmium/relations/detail/member_meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/relations/detail/member_meta.hpp -------------------------------------------------------------------------------- /include/osmium/relations/detail/relation_meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/relations/detail/relation_meta.hpp -------------------------------------------------------------------------------- /include/osmium/relations/manager_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/relations/manager_util.hpp -------------------------------------------------------------------------------- /include/osmium/relations/members_database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/relations/members_database.hpp -------------------------------------------------------------------------------- /include/osmium/relations/relations_database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/relations/relations_database.hpp -------------------------------------------------------------------------------- /include/osmium/relations/relations_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/relations/relations_manager.hpp -------------------------------------------------------------------------------- /include/osmium/storage/item_stash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/storage/item_stash.hpp -------------------------------------------------------------------------------- /include/osmium/tags/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/tags/filter.hpp -------------------------------------------------------------------------------- /include/osmium/tags/matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/tags/matcher.hpp -------------------------------------------------------------------------------- /include/osmium/tags/taglist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/tags/taglist.hpp -------------------------------------------------------------------------------- /include/osmium/tags/tags_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/tags/tags_filter.hpp -------------------------------------------------------------------------------- /include/osmium/thread/function_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/thread/function_wrapper.hpp -------------------------------------------------------------------------------- /include/osmium/thread/pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/thread/pool.hpp -------------------------------------------------------------------------------- /include/osmium/thread/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/thread/queue.hpp -------------------------------------------------------------------------------- /include/osmium/thread/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/thread/util.hpp -------------------------------------------------------------------------------- /include/osmium/util/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/compatibility.hpp -------------------------------------------------------------------------------- /include/osmium/util/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/config.hpp -------------------------------------------------------------------------------- /include/osmium/util/delta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/delta.hpp -------------------------------------------------------------------------------- /include/osmium/util/double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/double.hpp -------------------------------------------------------------------------------- /include/osmium/util/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/endian.hpp -------------------------------------------------------------------------------- /include/osmium/util/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/file.hpp -------------------------------------------------------------------------------- /include/osmium/util/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/iterator.hpp -------------------------------------------------------------------------------- /include/osmium/util/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/memory.hpp -------------------------------------------------------------------------------- /include/osmium/util/memory_mapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/memory_mapping.hpp -------------------------------------------------------------------------------- /include/osmium/util/minmax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/minmax.hpp -------------------------------------------------------------------------------- /include/osmium/util/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/misc.hpp -------------------------------------------------------------------------------- /include/osmium/util/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/options.hpp -------------------------------------------------------------------------------- /include/osmium/util/progress_bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/progress_bar.hpp -------------------------------------------------------------------------------- /include/osmium/util/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/string.hpp -------------------------------------------------------------------------------- /include/osmium/util/string_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/string_matcher.hpp -------------------------------------------------------------------------------- /include/osmium/util/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/timer.hpp -------------------------------------------------------------------------------- /include/osmium/util/verbose_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/util/verbose_output.hpp -------------------------------------------------------------------------------- /include/osmium/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/version.hpp -------------------------------------------------------------------------------- /include/osmium/visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/include/osmium/visitor.hpp -------------------------------------------------------------------------------- /osmium.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/osmium.imp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/README -------------------------------------------------------------------------------- /test/catch/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/catch/catch.hpp -------------------------------------------------------------------------------- /test/data-tests/.gitignore: -------------------------------------------------------------------------------- 1 | multipolygon.qgs~ 2 | -------------------------------------------------------------------------------- /test/data-tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/data-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/README.md -------------------------------------------------------------------------------- /test/data-tests/include/check_basics_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/include/check_basics_handler.hpp -------------------------------------------------------------------------------- /test/data-tests/include/check_wkt_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/include/check_wkt_handler.hpp -------------------------------------------------------------------------------- /test/data-tests/include/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/include/common.hpp -------------------------------------------------------------------------------- /test/data-tests/include/testdata-testcases.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/include/testdata-testcases.hpp -------------------------------------------------------------------------------- /test/data-tests/multipolygon.qgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/multipolygon.qgs -------------------------------------------------------------------------------- /test/data-tests/run-testdata-multipolygon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/run-testdata-multipolygon.cmake -------------------------------------------------------------------------------- /test/data-tests/testcases/test-100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-100.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-101.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-102.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-110.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-111.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-111.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-112.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-112.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-113.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-113.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-114.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-114.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-115.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-115.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-116.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-116.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-120.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-121.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-121.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-122.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-122.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-123.cpp -------------------------------------------------------------------------------- /test/data-tests/testcases/test-124.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testcases/test-124.cpp -------------------------------------------------------------------------------- /test/data-tests/testdata-multipolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testdata-multipolygon.cpp -------------------------------------------------------------------------------- /test/data-tests/testdata-overview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testdata-overview.cpp -------------------------------------------------------------------------------- /test/data-tests/testdata-testcases.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testdata-testcases.cpp -------------------------------------------------------------------------------- /test/data-tests/testdata-xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/data-tests/testdata-xml.cpp -------------------------------------------------------------------------------- /test/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/amenity_list/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/amenity_list/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/amenity_list/area.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/amenity_list/area.osm -------------------------------------------------------------------------------- /test/examples/t/amenity_list/node.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/amenity_list/node.osm -------------------------------------------------------------------------------- /test/examples/t/area_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/area_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/area_test/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/area_test/data.osm -------------------------------------------------------------------------------- /test/examples/t/change_tags/.gitattributes: -------------------------------------------------------------------------------- 1 | result.osm text eol=lf 2 | -------------------------------------------------------------------------------- /test/examples/t/change_tags/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/change_tags/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/change_tags/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/change_tags/data.osm -------------------------------------------------------------------------------- /test/examples/t/change_tags/result.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/change_tags/result.osm -------------------------------------------------------------------------------- /test/examples/t/convert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/convert/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/convert/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/convert/data.osm -------------------------------------------------------------------------------- /test/examples/t/count/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/count/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/count/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/count/data.osm -------------------------------------------------------------------------------- /test/examples/t/create_pois/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/create_pois/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/debug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/debug/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/debug/changesets.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/debug/changesets.osm -------------------------------------------------------------------------------- /test/examples/t/debug/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/debug/data.osm -------------------------------------------------------------------------------- /test/examples/t/dump_internal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/dump_internal/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/dump_internal/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/dump_internal/data.osm -------------------------------------------------------------------------------- /test/examples/t/filter_discussions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/filter_discussions/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/filter_discussions/changesets.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/filter_discussions/changesets.osm -------------------------------------------------------------------------------- /test/examples/t/index_lookup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/index_lookup/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/location_cache/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/location_cache/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/location_cache/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/location_cache/data.osm -------------------------------------------------------------------------------- /test/examples/t/location_cache/way.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/location_cache/way.osm -------------------------------------------------------------------------------- /test/examples/t/pub_names/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/pub_names/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/pub_names/pub-addr.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/pub_names/pub-addr.osm -------------------------------------------------------------------------------- /test/examples/t/pub_names/pub-node.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/pub_names/pub-node.osm -------------------------------------------------------------------------------- /test/examples/t/pub_names/pub-noname.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/pub_names/pub-noname.osm -------------------------------------------------------------------------------- /test/examples/t/pub_names/pub-way.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/pub_names/pub-way.osm -------------------------------------------------------------------------------- /test/examples/t/read/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/read/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/read/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/read/data.osm -------------------------------------------------------------------------------- /test/examples/t/read_with_progress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/read_with_progress/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/read_with_progress/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/read_with_progress/data.osm -------------------------------------------------------------------------------- /test/examples/t/road_length/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/road_length/CMakeLists.txt -------------------------------------------------------------------------------- /test/examples/t/road_length/road.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/road_length/road.osm -------------------------------------------------------------------------------- /test/examples/t/tiles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/examples/t/tiles/CMakeLists.txt -------------------------------------------------------------------------------- /test/include/test_crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/include/test_crc.hpp -------------------------------------------------------------------------------- /test/include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/include/utils.hpp -------------------------------------------------------------------------------- /test/include/win_mkstemp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/include/win_mkstemp.hpp -------------------------------------------------------------------------------- /test/t/area/test_area_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/area/test_area_id.cpp -------------------------------------------------------------------------------- /test/t/area/test_assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/area/test_assembler.cpp -------------------------------------------------------------------------------- /test/t/area/test_node_ref_segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/area/test_node_ref_segment.cpp -------------------------------------------------------------------------------- /test/t/builder/test_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/builder/test_attr.cpp -------------------------------------------------------------------------------- /test/t/builder/test_object_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/builder/test_object_builder.cpp -------------------------------------------------------------------------------- /test/t/geom/area_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/area_helper.hpp -------------------------------------------------------------------------------- /test/t/geom/test_coordinates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_coordinates.cpp -------------------------------------------------------------------------------- /test/t/geom/test_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_exception.cpp -------------------------------------------------------------------------------- /test/t/geom/test_factory_with_projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_factory_with_projection.cpp -------------------------------------------------------------------------------- /test/t/geom/test_geojson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_geojson.cpp -------------------------------------------------------------------------------- /test/t/geom/test_geos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_geos.cpp -------------------------------------------------------------------------------- /test/t/geom/test_mercator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_mercator.cpp -------------------------------------------------------------------------------- /test/t/geom/test_ogr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_ogr.cpp -------------------------------------------------------------------------------- /test/t/geom/test_ogr_wkb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_ogr_wkb.cpp -------------------------------------------------------------------------------- /test/t/geom/test_projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_projection.cpp -------------------------------------------------------------------------------- /test/t/geom/test_tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_tile.cpp -------------------------------------------------------------------------------- /test/t/geom/test_tile_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_tile_data.hpp -------------------------------------------------------------------------------- /test/t/geom/test_wkb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_wkb.cpp -------------------------------------------------------------------------------- /test/t/geom/test_wkt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/test_wkt.cpp -------------------------------------------------------------------------------- /test/t/geom/wnl_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/geom/wnl_helper.hpp -------------------------------------------------------------------------------- /test/t/handler/test_apply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/handler/test_apply.cpp -------------------------------------------------------------------------------- /test/t/handler/test_check_order_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/handler/test_check_order_handler.cpp -------------------------------------------------------------------------------- /test/t/handler/test_dynamic_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/handler/test_dynamic_handler.cpp -------------------------------------------------------------------------------- /test/t/index/test_dump_and_load_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/index/test_dump_and_load_index.cpp -------------------------------------------------------------------------------- /test/t/index/test_dump_sparse_as_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/index/test_dump_sparse_as_array.cpp -------------------------------------------------------------------------------- /test/t/index/test_file_based_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/index/test_file_based_index.cpp -------------------------------------------------------------------------------- /test/t/index/test_id_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/index/test_id_set.cpp -------------------------------------------------------------------------------- /test/t/index/test_id_to_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/index/test_id_to_location.cpp -------------------------------------------------------------------------------- /test/t/index/test_nwr_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/index/test_nwr_array.cpp -------------------------------------------------------------------------------- /test/t/index/test_object_pointer_collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/index/test_object_pointer_collection.cpp -------------------------------------------------------------------------------- /test/t/index/test_relations_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/index/test_relations_map.cpp -------------------------------------------------------------------------------- /test/t/io/corrupt_data_bzip2.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/corrupt_data_bzip2.txt.bz2 -------------------------------------------------------------------------------- /test/t/io/corrupt_data_gzip.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/corrupt_data_gzip.txt.gz -------------------------------------------------------------------------------- /test/t/io/data-cr.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-cr.opl -------------------------------------------------------------------------------- /test/t/io/data-n0w1r3.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n0w1r3.osm -------------------------------------------------------------------------------- /test/t/io/data-n0w1r3.osm.o5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n0w1r3.osm.o5m -------------------------------------------------------------------------------- /test/t/io/data-n0w1r3.osm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n0w1r3.osm.opl -------------------------------------------------------------------------------- /test/t/io/data-n5w0r3.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n5w0r3.osm -------------------------------------------------------------------------------- /test/t/io/data-n5w0r3.osm.o5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n5w0r3.osm.o5m -------------------------------------------------------------------------------- /test/t/io/data-n5w0r3.osm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n5w0r3.osm.opl -------------------------------------------------------------------------------- /test/t/io/data-n5w1r0.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n5w1r0.osm -------------------------------------------------------------------------------- /test/t/io/data-n5w1r0.osm.o5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n5w1r0.osm.o5m -------------------------------------------------------------------------------- /test/t/io/data-n5w1r0.osm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n5w1r0.osm.opl -------------------------------------------------------------------------------- /test/t/io/data-n5w1r3.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n5w1r3.osm -------------------------------------------------------------------------------- /test/t/io/data-n5w1r3.osm.o5m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n5w1r3.osm.o5m -------------------------------------------------------------------------------- /test/t/io/data-n5w1r3.osm.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-n5w1r3.osm.opl -------------------------------------------------------------------------------- /test/t/io/data-nonl.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data-nonl.opl -------------------------------------------------------------------------------- /test/t/io/data.opl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data.opl -------------------------------------------------------------------------------- /test/t/io/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data.osm -------------------------------------------------------------------------------- /test/t/io/data.osm.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data.osm.bz2 -------------------------------------------------------------------------------- /test/t/io/data.osm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data.osm.gz -------------------------------------------------------------------------------- /test/t/io/data.txt: -------------------------------------------------------------------------------- 1 | TESTDATA 2 | -------------------------------------------------------------------------------- /test/t/io/data_bzip2.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data_bzip2.txt.bz2 -------------------------------------------------------------------------------- /test/t/io/data_gzip.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data_gzip.txt.gz -------------------------------------------------------------------------------- /test/t/io/data_pbf_version-1-densenodes.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data_pbf_version-1-densenodes.osm.pbf -------------------------------------------------------------------------------- /test/t/io/data_pbf_version-1.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data_pbf_version-1.osm -------------------------------------------------------------------------------- /test/t/io/data_pbf_version-1.osm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/data_pbf_version-1.osm.pbf -------------------------------------------------------------------------------- /test/t/io/deleted_nodes.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/deleted_nodes.osh -------------------------------------------------------------------------------- /test/t/io/deleted_nodes.osh.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/deleted_nodes.osh.pbf -------------------------------------------------------------------------------- /test/t/io/empty_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/t/io/test_bzip2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_bzip2.cpp -------------------------------------------------------------------------------- /test/t/io/test_compression_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_compression_factory.cpp -------------------------------------------------------------------------------- /test/t/io/test_file_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_file_formats.cpp -------------------------------------------------------------------------------- /test/t/io/test_file_seek.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_file_seek.cpp -------------------------------------------------------------------------------- /test/t/io/test_gzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_gzip.cpp -------------------------------------------------------------------------------- /test/t/io/test_nocompression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_nocompression.cpp -------------------------------------------------------------------------------- /test/t/io/test_opl_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_opl_parser.cpp -------------------------------------------------------------------------------- /test/t/io/test_output_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_output_iterator.cpp -------------------------------------------------------------------------------- /test/t/io/test_output_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_output_utils.cpp -------------------------------------------------------------------------------- /test/t/io/test_pbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_pbf.cpp -------------------------------------------------------------------------------- /test/t/io/test_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_reader.cpp -------------------------------------------------------------------------------- /test/t/io/test_reader_fileformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_reader_fileformat.cpp -------------------------------------------------------------------------------- /test/t/io/test_reader_with_mock_decompression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_reader_with_mock_decompression.cpp -------------------------------------------------------------------------------- /test/t/io/test_reader_with_mock_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_reader_with_mock_parser.cpp -------------------------------------------------------------------------------- /test/t/io/test_string_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_string_table.cpp -------------------------------------------------------------------------------- /test/t/io/test_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_writer.cpp -------------------------------------------------------------------------------- /test/t/io/test_writer_with_mock_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_writer_with_mock_compression.cpp -------------------------------------------------------------------------------- /test/t/io/test_writer_with_mock_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/io/test_writer_with_mock_encoder.cpp -------------------------------------------------------------------------------- /test/t/memory/test_buffer_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/memory/test_buffer_basics.cpp -------------------------------------------------------------------------------- /test/t/memory/test_buffer_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/memory/test_buffer_node.cpp -------------------------------------------------------------------------------- /test/t/memory/test_buffer_purge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/memory/test_buffer_purge.cpp -------------------------------------------------------------------------------- /test/t/memory/test_callback_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/memory/test_callback_buffer.cpp -------------------------------------------------------------------------------- /test/t/memory/test_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/memory/test_item.cpp -------------------------------------------------------------------------------- /test/t/memory/test_type_is_compatible.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/memory/test_type_is_compatible.cpp -------------------------------------------------------------------------------- /test/t/osm/test_area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_area.cpp -------------------------------------------------------------------------------- /test/t/osm/test_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_box.cpp -------------------------------------------------------------------------------- /test/t/osm/test_changeset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_changeset.cpp -------------------------------------------------------------------------------- /test/t/osm/test_crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_crc.cpp -------------------------------------------------------------------------------- /test/t/osm/test_entity_bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_entity_bits.cpp -------------------------------------------------------------------------------- /test/t/osm/test_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_location.cpp -------------------------------------------------------------------------------- /test/t/osm/test_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_metadata.cpp -------------------------------------------------------------------------------- /test/t/osm/test_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_node.cpp -------------------------------------------------------------------------------- /test/t/osm/test_node_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_node_ref.cpp -------------------------------------------------------------------------------- /test/t/osm/test_object_comparisons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_object_comparisons.cpp -------------------------------------------------------------------------------- /test/t/osm/test_relation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_relation.cpp -------------------------------------------------------------------------------- /test/t/osm/test_timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_timestamp.cpp -------------------------------------------------------------------------------- /test/t/osm/test_types_from_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_types_from_string.cpp -------------------------------------------------------------------------------- /test/t/osm/test_way.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/osm/test_way.cpp -------------------------------------------------------------------------------- /test/t/relations/data.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/relations/data.osm -------------------------------------------------------------------------------- /test/t/relations/dupl_member.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/relations/dupl_member.osm -------------------------------------------------------------------------------- /test/t/relations/missing_members.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/relations/missing_members.osm -------------------------------------------------------------------------------- /test/t/relations/test_members_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/relations/test_members_database.cpp -------------------------------------------------------------------------------- /test/t/relations/test_read_relations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/relations/test_read_relations.cpp -------------------------------------------------------------------------------- /test/t/relations/test_relations_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/relations/test_relations_database.cpp -------------------------------------------------------------------------------- /test/t/relations/test_relations_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/relations/test_relations_manager.cpp -------------------------------------------------------------------------------- /test/t/storage/test_item_stash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/storage/test_item_stash.cpp -------------------------------------------------------------------------------- /test/t/tags/test_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/tags/test_filter.cpp -------------------------------------------------------------------------------- /test/t/tags/test_operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/tags/test_operators.cpp -------------------------------------------------------------------------------- /test/t/tags/test_tag_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/tags/test_tag_list.cpp -------------------------------------------------------------------------------- /test/t/tags/test_tag_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/tags/test_tag_matcher.cpp -------------------------------------------------------------------------------- /test/t/tags/test_tags_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/tags/test_tags_filter.cpp -------------------------------------------------------------------------------- /test/t/thread/test_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/thread/test_pool.cpp -------------------------------------------------------------------------------- /test/t/thread/test_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/thread/test_queue.cpp -------------------------------------------------------------------------------- /test/t/thread/test_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/thread/test_util.cpp -------------------------------------------------------------------------------- /test/t/util/.gitattributes: -------------------------------------------------------------------------------- 1 | known_file_size text eol=lf 2 | -------------------------------------------------------------------------------- /test/t/util/known_file_size: -------------------------------------------------------------------------------- 1 | this file has size 22 2 | -------------------------------------------------------------------------------- /test/t/util/test_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_config.cpp -------------------------------------------------------------------------------- /test/t/util/test_delta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_delta.cpp -------------------------------------------------------------------------------- /test/t/util/test_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_double.cpp -------------------------------------------------------------------------------- /test/t/util/test_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_file.cpp -------------------------------------------------------------------------------- /test/t/util/test_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_memory.cpp -------------------------------------------------------------------------------- /test/t/util/test_memory_mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_memory_mapping.cpp -------------------------------------------------------------------------------- /test/t/util/test_minmax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_minmax.cpp -------------------------------------------------------------------------------- /test/t/util/test_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_misc.cpp -------------------------------------------------------------------------------- /test/t/util/test_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_options.cpp -------------------------------------------------------------------------------- /test/t/util/test_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_string.cpp -------------------------------------------------------------------------------- /test/t/util/test_string_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_string_matcher.cpp -------------------------------------------------------------------------------- /test/t/util/test_timer_disabled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_timer_disabled.cpp -------------------------------------------------------------------------------- /test/t/util/test_timer_enabled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/t/util/test_timer_enabled.cpp -------------------------------------------------------------------------------- /test/test_main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | -------------------------------------------------------------------------------- /test/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmcode/libosmium/HEAD/test/valgrind.supp --------------------------------------------------------------------------------