Skip to content
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

Drawing great circles and avoiding horizontal line wrap #2

Open
qwertytam opened this issue Nov 27, 2019 · 1 comment
Open

Drawing great circles and avoiding horizontal line wrap #2

qwertytam opened this issue Nov 27, 2019 · 1 comment

Comments

@qwertytam
Copy link

Hi, using this code for drawing great circle paths between locations where the longitude is greater than 180 degrees, produces horizontal lines when plotted where the line is in effect wrapping around - see here under the section 'Correcting gcIntermediate' for a resolution of a similar issue with gcIntermediate. I'm trying to think through how to resolve the similar problem with the approach outlined here, but haven't come up with anything yet.

@qwertytam
Copy link
Author

Looks like st_wrap_dateline to the rescue!
An extra line of code and then plotting the routes_sf_wrap looks to resolve the issue

# Wrap great circles to avoid horizontal lines when plotted
routes_sf_wrap <- st_wrap_dateline(routes_sf_tidy,
                                   options=c("WRAPDATELINE=YES",
                                             "DATELINEOFFSET=180"))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant