Example #1
0
 /// <summary>
 /// Returns the GeoBoundary containing the coordinates of the edge
 /// </summary>
 public static void GetH3UnidirectionalEdgeBoundary(H3Index edge, out GeoBoundary gb)
 {
     gb = edge.UniEdgeToGeoBoundary();
 }
Example #2
0
 /// <summary>
 /// give the cell boundary in lat/lon coordinates for the cell h3
 /// </summary>
 public static void H3ToGeoBoundary(H3Index h3, out GeoBoundary gb)
 {
     gb = h3.ToGeoBoundary();
 }