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
* Constructs a Z2 index in WGS84 from either a Geometry, Extent, ProjectedRasterTile, or RasterSource. First the
38
+
* native extent is extracted or computed, and then center is used as the indexing location.
39
+
* This function is useful for [range partitioning](http://spark.apache.org/docs/latest/api/python/pyspark.sql.html?highlight=registerjava#pyspark.sql.DataFrame.repartitionByRange).
40
+
* Also see: https://www.geomesa.org/documentation/user/datastores/index_overview.html
41
+
*
42
+
* @paramleft geometry-like column
43
+
* @paramright CRS column
44
+
* @paramindexResolution resolution level of the space filling curve -
45
+
* i.e. how many times the space will be recursively quartered
46
+
* 1-31 is typical.
47
+
*/
48
+
@ExpressionDescription(
49
+
usage ="_FUNC_(geom, crs) - Constructs a Z2 index in WGS84/EPSG:4326",
50
+
arguments ="""
51
+
Arguments:
52
+
* geom - Geometry or item with Geometry: Extent, ProjectedRasterTile, or RasterSource
0 commit comments