[osmium-tool] branch upstream updated (0b8f3bc -> abdb486)

Bas Couwenberg sebastic at debian.org
Tue Aug 15 17:44:35 UTC 2017


This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch upstream
in repository osmium-tool.

      from  0b8f3bc   Imported Upstream version 1.6.1
       new  abdb486   New upstream version 1.7.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.md                                       |   51 +-
 CMakeLists.txt                                     |    9 +-
 CONTRIBUTING.md                                    |    6 +
 README.md                                          |    4 +-
 cmake/FindOsmium.cmake                             |    4 +
 export-example-config/default-config.json          |   16 +
 export-example-config/example-config.json          |   16 +
 extract-example-config/karlsruhe.osm.bz2           |  Bin 16630 -> 16666 bytes
 man/common-options.md                              |    2 +-
 man/osmium-add-locations-to-ways.md                |   31 +-
 man/osmium-changeset-filter.md                     |    3 +
 man/osmium-check-refs.md                           |   12 +-
 man/osmium-diff.md                                 |    2 +-
 man/osmium-export.md                               |  282 +++++
 man/osmium-fileinfo.md                             |    5 +-
 man/osmium-getid.md                                |    9 +-
 man/osmium-index-types.md                          |   62 +
 man/osmium-merge.md                                |    8 +-
 man/osmium-renumber.md                             |    9 +-
 man/osmium-sort.md                                 |   13 +-
 man/osmium.md                                      |    6 +-
 src/CMakeLists.txt                                 |    2 +-
 src/command_add_locations_to_ways.cpp              |   11 +-
 src/command_add_locations_to_ways.hpp              |    6 +-
 src/command_apply_changes.cpp                      |    3 +-
 src/command_cat.hpp                                |    4 -
 src/command_changeset_filter.cpp                   |   10 +-
 src/command_changeset_filter.hpp                   |    1 +
 src/command_check_refs.cpp                         |   52 +-
 src/command_export.cpp                             |  427 +++++++
 src/command_export.hpp                             |   87 ++
 src/command_extract.cpp                            |   75 +-
 src/command_extract.hpp                            |    4 +-
 src/command_fileinfo.cpp                           |    5 +-
 src/command_getid.cpp                              |    2 +
 src/command_getid.hpp                              |    3 +-
 src/command_help.cpp                               |   12 +-
 src/command_renumber.cpp                           |   39 +-
 src/command_renumber.hpp                           |    7 +-
 src/command_show.cpp                               |    1 +
 src/command_show.hpp                               |    2 -
 src/command_tags_filter.cpp                        |   70 +-
 src/command_time_filter.cpp                        |    1 +
 src/commands.cpp                                   |    5 +
 .../extract.cpp => export/export_format.hpp}       |   61 +-
 src/export/export_format_json.cpp                  |  219 ++++
 src/export/export_format_json.hpp                  |   87 ++
 src/export/export_format_text.cpp                  |  200 ++++
 src/export/export_format_text.hpp                  |   71 ++
 src/export/export_handler.cpp                      |  127 ++
 src/export/export_handler.hpp                      |   82 ++
 src/{command_help.hpp => export/options.hpp}       |   46 +-
 src/extract/extract_bbox.cpp                       |    6 +-
 src/extract/extract_polygon.cpp                    |    2 +-
 src/extract/poly_file_parser.hpp                   |    2 +-
 src/extract/strategy_complete_ways.cpp             |    2 +-
 .../strategy_complete_ways_with_history.cpp        |    2 +-
 src/extract/strategy_simple.cpp                    |    2 +-
 src/extract/strategy_smart.cpp                     |    2 +-
 src/io.cpp                                         |    2 -
 src/main.cpp                                       |    5 +
 src/util.cpp                                       |   94 ++
 src/util.hpp                                       |   20 +-
 test/CMakeLists.txt                                |    3 +-
 test/export/CMakeLists.txt                         |   26 +
 .../input-incomplete-relation.osm}                 |   25 +-
 .../input-missing-node.osm}                        |   26 +-
 test/{tags-filter => export}/input.osm             |   26 +-
 test/export/output-incomplete-relation.geojson     |    5 +
 test/export/output-missing-node.geojson            |    5 +
 test/export/output.geojson                         |    6 +
 test/export/output.geojsonseq                      |    4 +
 test/getid/CMakeLists.txt                          |    2 +-
 test/getid/idfile                                  |    6 +-
 .../output-highway-r.osm => getid/output-file.osm} |    9 +-
 test/include/catch.hpp                             | 1222 +++++++++++++-------
 test/renumber/input-sorted.osm                     |    4 +-
 test/sort/CMakeLists.txt                           |    8 +-
 .../input1.osm => sort/input-neg.osm}              |   31 +-
 test/sort/{output-bounds.osm => output-neg.osm}    |   18 +-
 test/tags-filter/test_unit.cpp                     |   57 -
 test/util/test_unit.cpp                            |   85 ++
 zsh_completion/_osmium                             |   53 +-
 83 files changed, 3184 insertions(+), 848 deletions(-)
 create mode 100644 export-example-config/default-config.json
 create mode 100644 export-example-config/example-config.json
 create mode 100644 man/osmium-export.md
 create mode 100644 man/osmium-index-types.md
 create mode 100644 src/command_export.cpp
 create mode 100644 src/command_export.hpp
 copy src/{extract/extract.cpp => export/export_format.hpp} (52%)
 create mode 100644 src/export/export_format_json.cpp
 create mode 100644 src/export/export_format_json.hpp
 create mode 100644 src/export/export_format_text.cpp
 create mode 100644 src/export/export_format_text.hpp
 create mode 100644 src/export/export_handler.cpp
 create mode 100644 src/export/export_handler.hpp
 copy src/{command_help.hpp => export/options.hpp} (57%)
 create mode 100644 test/export/CMakeLists.txt
 copy test/{tags-filter/input.osm => export/input-incomplete-relation.osm} (68%)
 copy test/{getid/source-no-rr.osm => export/input-missing-node.osm} (62%)
 copy test/{tags-filter => export}/input.osm (68%)
 create mode 100644 test/export/output-incomplete-relation.geojson
 create mode 100644 test/export/output-missing-node.geojson
 create mode 100644 test/export/output.geojson
 create mode 100644 test/export/output.geojsonseq
 copy test/{tags-filter/output-highway-r.osm => getid/output-file.osm} (71%)
 copy test/{derive-changes/input1.osm => sort/input-neg.osm} (61%)
 copy test/sort/{output-bounds.osm => output-neg.osm} (61%)
 delete mode 100644 test/tags-filter/test_unit.cpp

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/osmium-tool.git



More information about the Pkg-grass-devel mailing list