Uses of Class
com.uber.h3core.util.LatLng
Package | Description |
---|---|
com.uber.h3core |
-
Uses of LatLng in com.uber.h3core
Methods in com.uber.h3core that return LatLng Modifier and Type Method Description LatLng
H3Core. cellToLatLng(long h3)
Find the latitude, longitude (both in degrees) center point of the cell.LatLng
H3Core. cellToLatLng(String h3Address)
Find the latitude, longitude (degrees) center point of the cell.LatLng
H3CoreV3. h3ToGeo(long h3)
Find the latitude, longitude (both in degrees) center point of the cell.LatLng
H3CoreV3. h3ToGeo(String h3Address)
Find the latitude, longitude (degrees) center point of the cell.LatLng
H3Core. vertexToLatLng(long h3)
LatLng
H3Core. vertexToLatLng(String h3Address)
Methods in com.uber.h3core that return types with arguments of type LatLng Modifier and Type Method Description List<List<List<LatLng>>>
H3Core. cellAddressesToMultiPolygon(Collection<String> h3Addresses, boolean geoJson)
Create polygons from a set of contiguous indexesList<List<List<LatLng>>>
H3Core. cellsToMultiPolygon(Collection<Long> h3, boolean geoJson)
Create polygons from a set of contiguous indexesList<LatLng>
H3Core. cellToBoundary(long h3)
Find the cell boundary in latitude, longitude (degrees) coordinates for the cellList<LatLng>
H3Core. cellToBoundary(String h3Address)
Find the cell boundary in latitude, longitude (degrees) coordinates for the cellList<LatLng>
H3Core. directedEdgeToBoundary(long h3)
Returns a list of coordinates representing the given edge.List<LatLng>
H3Core. directedEdgeToBoundary(String h3)
Returns a list of coordinates representing the given edge.List<LatLng>
H3CoreV3. getH3UnidirectionalEdgeBoundary(long h3)
Returns a list of coordinates representing the given edge.List<LatLng>
H3CoreV3. getH3UnidirectionalEdgeBoundary(String h3)
Returns a list of coordinates representing the given edge.List<List<List<LatLng>>>
H3CoreV3. h3AddressSetToMultiPolygon(Collection<String> h3Addresses, boolean geoJson)
Create polygons from a set of contiguous indexesList<List<List<LatLng>>>
H3CoreV3. h3SetToMultiPolygon(Collection<Long> h3, boolean geoJson)
Create polygons from a set of contiguous indexesList<LatLng>
H3CoreV3. h3ToGeoBoundary(long h3)
Find the cell boundary in latitude, longitude (degrees) coordinates for the cellList<LatLng>
H3CoreV3. h3ToGeoBoundary(String h3Address)
Find the cell boundary in latitude, longitude (degrees) coordinates for the cellMethods in com.uber.h3core with parameters of type LatLng Modifier and Type Method Description double
H3Core. greatCircleDistance(LatLng a, LatLng b, LengthUnit unit)
Return the distance along the sphere between two points.double
H3CoreV3. pointDist(LatLng a, LatLng b, LengthUnit unit)
Return the distance along the sphere between two points.Method parameters in com.uber.h3core with type arguments of type LatLng Modifier and Type Method Description List<Long>
H3CoreV3. polyfill(List<LatLng> points, List<List<LatLng>> holes, int res)
Finds indexes within the given geofence.List<String>
H3CoreV3. polyfillAddress(List<LatLng> points, List<List<LatLng>> holes, int res)
Finds indexes within the given geofence.List<String>
H3Core. polygonToCellAddresses(List<LatLng> points, List<List<LatLng>> holes, int res)
Finds indexes within the given geofence.List<Long>
H3Core. polygonToCells(List<LatLng> points, List<List<LatLng>> holes, int res)
Finds indexes within the given geofence.