-
Notifications
You must be signed in to change notification settings - Fork 157
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
[FEA] polyline
-> linestring
?
#520
Comments
Did "polyline" already exist in the codebase? |
Yes, in cpp:
in python:
|
|
This issue has been labeled |
I support this renaming. I think polyline is possibly older, and has moved toward linestring. Primarily I'm pretty sure it just heralds from a slightly different GIS community than ours. Linestring it is, for me. |
This issue has been labeled |
Replaces all uses of "polyline" (and abbreviations) globally in cuspatial with "linestring" for consistency. Fixes #520 Authors: - Mark Harris (https://github.com/harrism) Approvers: - Michael Wang (https://github.com/isVoid) URL: #788
In general,
polyline
andlinestring
both refers to a data structure that contains multiple points with the line segments that connect the points.Linestring
is standardized in GIS systems through OGC-SFS and provides a lot more relevant search results in google search as compared to search with polyline.After introduction of #510 there will be two different names of the same concept. I would propose naming
polyline
withlinestring
in the code base to avoid confusion.The text was updated successfully, but these errors were encountered: