-
-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GSoC 2023: Yige Huang Week 2 #299
Changes from 1 commit
3cbc379
c7e56ae
ef24f0f
8756440
7d3af8a
a7f46ef
dd845f7
184c357
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ CREATE FUNCTION pgr_withPointsDD( | |
FLOAT, -- distance (required) | ||
|
||
directed BOOLEAN DEFAULT true, | ||
driving_side CHAR DEFAULT 'b', | ||
driving_side CHAR DEFAULT 'r', | ||
details BOOLEAN DEFAULT false, | ||
|
||
OUT seq INTEGER, | ||
|
@@ -58,7 +58,7 @@ CREATE FUNCTION pgr_withPointsDD( | |
FLOAT, -- distance (required) | ||
|
||
directed BOOLEAN DEFAULT true, | ||
driving_side CHAR DEFAULT 'b', | ||
driving_side CHAR DEFAULT 'r', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a tricky change, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue for reminder: squarege#5 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See #300 |
||
details BOOLEAN DEFAULT false, | ||
equicost BOOLEAN DEFAULT false, | ||
|
||
|
@@ -90,7 +90,7 @@ IS 'pgr_withPointsDD(Single Vertex) | |
- Distance | ||
- Optional Parameters | ||
- directed := true | ||
- driving_side := b | ||
- driving_side := r | ||
- details := false | ||
- Documentation: | ||
- ${PROJECT_DOC_LINK}/pgr_withPointsDD.html | ||
|
@@ -107,7 +107,7 @@ IS 'pgr_withPointsDD(Multiple Vertices) | |
- Distance | ||
- Optional Parameters | ||
- directed := true | ||
- driving_side := b | ||
- driving_side := r | ||
- details := false | ||
- equicost := false | ||
- Documentation: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still like the default value to be
r
, About getting rid ofb
we need to discuss