Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
New upstream version 2.3.6
· 6fb934f1
Bas Couwenberg
authored
Nov 29, 2018
6fb934f1
Merge tag 'upstream/2.3.6'
· a573d093
Bas Couwenberg
authored
Nov 29, 2018
Upstream version 2.3.6
a573d093
New upstream release.
· 1a86b523
Bas Couwenberg
authored
Nov 29, 2018
1a86b523
Remove documentation outside usr/share/doc.
· d5aa86c8
Bas Couwenberg
authored
Nov 29, 2018
d5aa86c8
Set distribution to unstable.
· 77122e8c
Bas Couwenberg
authored
Nov 29, 2018
77122e8c
Show whitespace changes
Inline
Side-by-side
NEWS
View file @
77122e8c
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.
...
...
debian/changelog
View file @
77122e8c
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 1
0
:4
1
:5
0
+0
2
00
-- Bas Couwenberg <sebastic@debian.org> Thu,
29 Nov
2018 1
2
:4
6
:5
3
+0
1
00
osm2pgrouting (2.3.5-1) unstable; urgency=medium
...
...
debian/rules
View file @
77122e8c
...
...
@@ -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
src/osm_elements/Way.cpp
View file @
77122e8c
...
...
@@ -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 == "sidewa
l
k" && value == "no")
|| (key == "foot" && value == "no")) {
m_pedestrian = "NO";
}
...
...
src/osm_elements/osm2pgrouting.cpp
View file @
77122e8c
...
...
@@ -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
;
}
...
...
src/utilities/prog_options.cpp
View file @
77122e8c
...
...
@@ -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
"
;
...
...