Grid traversal functions
Grid traversal allows finding cells in the vicinity of an origin cell, and determining how to traverse the grid from one cell to another.
kRing
- C
- Python
- Java
- JavaScript (Live)
void kRing(H3Index origin, int k, H3Index* out);
h3.k_ring(origin, k)
List<Long> kRing(long origin, int k);
List<String> kRing(String origin, int k);
h3.kRing(origin, k)
k-rings produces indices within k distance of the origin index.
k-ring 0 is defined as the origin index, k-ring 1 is defined as k-ring 0 and all neighboring indices, and so on.
Output is placed in the provided array in no particular order. Elements of the output array may be left zero, as can happen when crossing a pentagon.
maxKringSize
- C
- Python
- Java
- JavaScript (Live)
int maxKringSize(int k);
This function exists for memory management and is not exposed.
This function exists for memory management and is not exposed.
This function exists for memory management and is not exposed.
Maximum number of indices that result from the kRing algorithm with the given k.
kRingDistances
- C
- Python
- Java
- JavaScript (Live)
void kRingDistances(H3Index origin, int k, H3Index* out, int* distances);
h3.k_ring_distances(origin, k)
List<List<Long>> kRingDistances(long origin, int k);
List<List<String>> kRingDistances(String origin, int k);
h3.kRingDistances(origin, k)
k-rings produces indices within k distance of the origin index.
k-ring 0 is defined as the origin index, k-ring 1 is defined as k-ring 0 and all neighboring indices, and so on.
Output is placed in the provided array in no particular order. Elements of the output array may be left zero, as can happen when crossing a pentagon.
hexRange
- C
- Python
- Java
- JavaScript (Live)
int hexRange(H3Index origin, int k, H3Index* out);
h3.hex_range(h, k)
List<List<Long>> hexRange(Long h3, int k) throws PentagonEncounteredException;
List<List<String>> hexRange(String h3Address, int k) throws PentagonEncounteredException;
This function is not exposed.
hexRange produces indexes within k distance of the origin index. Output behavior is undefined when one of the indexes returned by this function is a pentagon or is in the pentagon distortion area.
k-ring 0 is defined as the origin index, k-ring 1 is defined as k-ring 0 and all neighboring indexes, and so on.
Output is placed in the provided array in order of increasing distance from the origin.
Returns 0 if no pentagonal distortion is encountered.
hexRangeDistances
- C
- Python
- Java
- JavaScript (Live)
int hexRangeDistances(H3Index origin, int k, H3Index* out, int* distances);
h3.hex_range_distances(h, k)
This function is not exposed because the same functionality is exposed by hexRange
This function is not exposed.
hexRange produces indexes within k distance of the origin index. Output behavior is undefined when one of the indexes returned by this function is a pentagon or is in the pentagon distortion area.
k-ring 0 is defined as the origin index, k-ring 1 is defined as k-ring 0 and all neighboring indexes, and so on.
Output is placed in the provided array in order of increasing distance from the origin. The distances in hexagons is placed in the distances array at the same offset.
Returns 0 if no pentagonal distortion is encountered.
hexRanges
- C
- Python
- Java
- JavaScript (Live)
int hexRanges(H3Index* h3Set, int length, int k, H3Index* out);
h3.hex_ranges(h, k)
This function is not exposed because the same functionality is exposed by hexRange
This function is not exposed.
hexRanges takes an array of input hex IDs and a max k-ring and returns an array of hexagon IDs sorted first by the original hex IDs and then by the k-ring (0 to max), with no guaranteed sorting within each k-ring group.
Returns 0 if no pentagonal distortion was encountered. Otherwise, output is undefined
hexRing
- C
- Python
- Java
- JavaScript (Live)
int hexRing(H3Index origin, int k, H3Index* out);
h3.hex_ring(h, k)
List<Long> hexRing(long h3, int k) throws PentagonEncounteredException;
List<String> hexRing(String h3Address, int k) throws PentagonEncounteredException;
h3.hexRing(h3Index, k)
Produces the hollow hexagonal ring centered at origin with sides of length k.
Returns 0 if no pentagonal distortion was encountered.
h3Line
- C
- Python
- Java
- JavaScript (Live)
int h3Line(H3Index start, H3Index end, H3Index* out);
h3.h3_line(start, end)
List<Long> h3Line(long start, long end) throws LineUndefinedException
List<String> h3Line(String startAddress, String endAddress) throws LineUndefinedException
h3.h3Line(start, end)
Given two H3 indexes, return the line of indexes between them (inclusive).
This function may fail to find the line between two indexes, for example if they are very far apart. It may also fail when finding distances for indexes on opposite sides of a pentagon.
Notes:
The specific output of this function should not be considered stable across library versions. The only guarantees the library provides are that the line length will be
h3Distance(start, end) + 1
and that every index in the line will be a neighbor of the preceding index.Lines are drawn in grid space, and may not correspond exactly to either Cartesian lines or great arcs.
h3LineSize
- C
- Python
- Java
- JavaScript (Live)
int h3LineSize(H3Index start, H3Index end);
This function exists for memory management and is not exposed.
This function exists for memory management and is not exposed.
This function exists for memory management and is not exposed.
Number of indexes in a line from the start index to the end index, to be used for allocating memory. Returns a negative number if the line cannot be computed.
h3Distance
- C
- Python
- Java
- JavaScript (Live)
int h3Distance(H3Index origin, H3Index h3);
h3.h3_distance(h1, h2)
int h3Distance(long a, long b) throws DistanceUndefinedException;
int h3Distance(String a, String b) throws DistanceUndefinedException;
h3.h3Distance(a, b)
Returns the distance in grid cells between the two indexes.
Returns a negative number if finding the distance failed. Finding the distance can fail because the two indexes are not comparable (different resolutions), too far apart, or are separated by pentagonal distortion. This is the same set of limitations as the local IJ coordinate space functions.
experimentalH3ToLocalIj
- C
- Python
- Java
- JavaScript (Live)
int experimentalH3ToLocalIj(H3Index origin, H3Index h3, CoordIJ *out);
h3.experimental_h3_to_local_ij(origin, h)
CoordIJ experimentalH3ToLocalIj(long origin, long h3) throws PentagonEncounteredException, LocalIjUndefinedException;
CoordIJ experimentalH3ToLocalIj(String originAddress, String h3Address) throws PentagonEncounteredException, LocalIjUndefinedException;
h3.experimentalH3ToLocalIj(origin, h3)
Produces local IJ coordinates for an H3 index anchored by an origin.
This function is experimental, and its output is not guaranteed to be compatible across different versions of H3.
experimentalLocalIjToH3
- C
- Python
- Java
- JavaScript (Live)
int experimentalLocalIjToH3(H3Index origin, const CoordIJ *ij, H3Index *out);
h3.experimental_local_ij_to_h3(origin, i, j)
long experimentalLocalIjToH3(long origin, CoordIJ ij) throws LocalIjUndefinedException;
String experimentalLocalIjToH3(String originAddress, CoordIJ ij) throws LocalIjUndefinedException;
h3.experimentalLocalIjToH3(origin, coords)
Produces an H3 index from local IJ coordinates anchored by an origin.
This function is experimental, and its output is not guaranteed to be compatible across different versions of H3.