Skip to content
Commits on Source (5)
osm2pgRouting 2.3.6
* Fix: Incorrect classification of one-ways.
* Fix: command line configuration in print outputs (db password removed).
* Other minor fixes.
osm2pgRouting 2.3.5
* Fix: zero division error when max_speed = 0.
......
osm2pgrouting (2.3.5-2) UNRELEASED; urgency=medium
osm2pgrouting (2.3.6-1) unstable; urgency=medium
[ Bas Couwenberg ]
* New upstream release.
* Bump Standards-Version to 4.2.1, no changes.
* Use ODbL-1.0 license shortname to match SPDX.
* Update watch file to limit matches to archive path.
* Remove documentation outside usr/share/doc.
[ Christoph Berg ]
* debian/tests: Do an actual import into PostgreSQL.
(The old installability test was not enough, see #904942.)
-- Bas Couwenberg <sebastic@debian.org> Thu, 05 Jul 2018 10:41:50 +0200
-- Bas Couwenberg <sebastic@debian.org> Thu, 29 Nov 2018 12:46:53 +0100
osm2pgrouting (2.3.5-1) unstable; urgency=medium
......
......@@ -34,5 +34,8 @@ override_dh_auto_install:
# Don't install extra license file
$(RM) debian/*/usr/share/osm2pgrouting/COPYING
# Remove documentation outside usr/share/doc
$(RM) debian/*/usr/share/osm2pgrouting/Readme.md
override_dh_install:
dh_install --list-missing
......@@ -201,9 +201,7 @@ Way::implied_oneWay(const Tag &tag) {
if (m_oneWay != "UNKNOWN") return;
if ((key == "junction" && value == "roundabout")
|| (key == "highway"
&& (value == "motorway"
|| value == "trunk") )) {
|| (key == "highway" && value == "motorway")) {
m_oneWay = "YES";
return;
}
......@@ -215,7 +213,7 @@ void
Way::pedestrian(const std::string &key, const std::string &value) {
// TODO(vicky) for 3.0
// m_pedestrian("UNKNOWN") <-- the default in the constructor
if ((key == "sidewak" && value == "no")
if ((key == "sidewalk" && value == "no")
|| (key == "foot" && value == "no")) {
m_pedestrian = "NO";
}
......
......@@ -98,7 +98,7 @@ int main(int argc, char* argv[]) {
}
if (vm.count("version")) {
std::cout << "This is osm2pgrouting Version 2.3.5\n";
std::cout << "This is osm2pgrouting Version 2.3.6\n";
return 0;
}
......
......@@ -98,7 +98,6 @@ process_command_line(po::variables_map &vm) {
std::cout << "port = " << vm["port"].as<std::string>() << "\n";
std::cout << "dbname = " << vm["dbname"].as<std::string>() << "\n";
std::cout << "username = " << vm["username"].as<std::string>() << "\n";
std::cout << "password = " << vm["password"].as<std::string>() << "\n";
std::cout << "schema= " << vm["schema"].as<std::string>() << "\n";
std::cout << "prefix = " << vm["prefix"].as<std::string>() << "\n";
std::cout << "suffix = " << vm["suffix"].as<std::string>() << "\n";
......