AJ Friend
AJ Friend
I also like the explicitness of `latlng`/`latLng`/`latlon`/`latLon`; you might notice the camel case bugging me here, but that's a separate issue :) More importantly, in terms of `lon` vs `lng`,...
I'm also in favor of `lng`. So it sounds like the current summary is that we'll be renaming `GeoPoint` to `LatLng`.
Here's a currently broken PR which shows the changes to the RFC and in `h3api.h`: https://github.com/uber/h3/pull/454
I wonder if we could automate that? Does the project still use doxygen? I see it referenced in the source code, but I can't tell if we're actually using it...
The plan is to benchmark `GeoMultiPolygon` versions of these functions against the existing `LinkedGeoPolygon` functions to see if the overhead of converting to `GeoMultiPolygon` is significant.
Interesting! I removed [0] because I couldn't find any references for the formula. I tested two alternatives described here: https://www.movable-type.co.uk/scripts/latlong.html We ended up with the "Haversine" formula [1] on that...
I'm just wondering if radians is a more natural unit for a general sphere, and that the area functions would simplify some of the math that you're doing manually in...
> Trying hard to follow :). Should this part: > > ``` > p(n) = 5*h(n-1) + p(n-1) > = 5*7^n + p(n-1) > ``` > > read > >...
Thanks for reporting this! This is a really interesting issue. I've been playing around with it on a recent PR for the version 4.0: https://github.com/uber/h3-py/pull/276 I wouldn't be surprised if...