-
Notifications
You must be signed in to change notification settings - Fork 2.2k
#382: TopoJson.get_bounds() returns [lon,lat] instead of [lat,lon] #383
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
#382: TopoJson.get_bounds() returns [lon,lat] instead of [lat,lon] #383
Conversation
assert bounds == [[-124.56617536999985, 41.99187135900012], | ||
[-116.46422312599977, 46.28768217800006]], bounds | ||
assert bounds == [[41.99187135900012, -124.56617536999985,], | ||
[46.28768217800006, -116.46422312599977]], bounds |
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.
To pass the tests, you just need to remove extra comma after -124.56617536999985
.
@BibMartin thanks for catching that--I had only ensured that Seems unlikely(?) that this latest CI failure (https://travis-ci.org/python-visualization/folium/jobs/115804229) is related to this PR. Can someone trigger a re-run? |
Great work! Thanks for the PR! 👍
You are correct. The PR is fine and we need to fix that in another one. @BibMartin feel free to merge. I will prep a |
I relaunched the tests and they pass now -> Merging. Thanks again @eddies . |
#382: TopoJson.get_bounds() returns [lon,lat] instead of [lat,lon]
Fix heatmap.fit_bounds (same bug as #383)
…bounds python-visualization#382: TopoJson.get_bounds() returns [lon,lat] instead of [lat,lon]
Fix heatmap.fit_bounds (same bug as python-visualization#383)
Fixes #382