You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* geographyExpr: A STRING expression representing a MULTILINESTRING geography in WKT format
870
+
* resolutionExpr: An INT expression, whose value is expected to be between 0 and 15 inclusive, specifying the resolution of the child H3 cell ID.
871
+
872
+
### Returns
873
+
Returns the H3 cell ID (as a LONG) corresponding to the provided MULTILINESTRING at the specified resolution.
874
+
875
+
### Error conditions
876
+
If geographyExpr is of type STRING and the value is either an invalid WKT or does not represent a point, the function returns -1
877
+
878
+
If resolutionExpr is smaller than 0 or larger than 15, the function returns -2
879
+
880
+
### Example
881
+
RETURN com.neo4jh3.multilineash3String('MULTILINESTRING((37.2713558667319 -121.91508032705622), (37.353926450852256 -121.86222328902491))',13) AS value
882
+
8d283409a69a6bf
883
+
884
+
RETURN com.neo4jh3.multilineash3String('zzz(37.8199 -122.4783)',13) AS value
885
+
-1
886
+
887
+
RETURN com.neo4jh3.multilineash3String('MULTILINESTRING((37.2713558667319 -121.91508032705622), (37.353926450852256 -121.86222328902491))',16) AS value
result = session.run("RETURN com.neo4jh3.multilineash3('MULTILINESTRING((37.2713558667319 -121.91508032705622), (37.353926450852256 -121.86222328902491))',13) AS value");
result = session.run("RETURN com.neo4jh3.multilineash3('MULTILINESTRING((40.736691045913472 73.99311953429248), (40.73733046783797 -73.99265431029018))',13) AS value");
0 commit comments