/* * Copyright 2019-2022 Bytes & Brains * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --| # PostGIS Indexing Functions --@ availability: 4.0.0 CREATE OR REPLACE FUNCTION h3_lat_lng_to_cell(geometry, resolution integer) RETURNS h3index AS $$ SELECT h3_lat_lng_to_cell($1::point, $2); $$ IMMUTABLE STRICT PARALLEL SAFE LANGUAGE SQL; COMMENT ON FUNCTION h3_lat_lng_to_cell(geometry, resolution integer) IS 'Indexes the location at the specified resolution.'; --@ availability: 4.0.0 CREATE OR REPLACE FUNCTION h3_lat_lng_to_cell(geography, resolution integer) RETURNS h3index AS $$ SELECT h3_lat_lng_to_cell($1::geometry, $2); $$ IMMUTABLE STRICT PARALLEL SAFE LANGUAGE SQL; COMMENT ON FUNCTION h3_lat_lng_to_cell(geometry, resolution integer) IS 'Indexes the location at the specified resolution.'; --@ availability: 4.0.0 CREATE OR REPLACE FUNCTION h3_cell_to_geometry(h3index) RETURNS geometry AS $$ SELECT ST_SetSRID(h3_cell_to_lat_lng($1)::geometry, 4326) $$ IMMUTABLE STRICT PARALLEL SAFE LANGUAGE SQL; COMMENT ON FUNCTION h3_cell_to_geometry(h3index) IS 'Finds the centroid of the index.'; --@ availability: 4.0.0 CREATE OR REPLACE FUNCTION h3_cell_to_geography(h3index) RETURNS geography AS $$ SELECT h3_cell_to_geometry($1)::geography $$ IMMUTABLE STRICT PARALLEL SAFE LANGUAGE SQL; COMMENT ON FUNCTION h3_cell_to_geography(h3index) IS 'Finds the centroid of the index.'; --@ availability: 4.0.0 CREATE OR REPLACE FUNCTION h3_cell_to_boundary_geometry(h3index) RETURNS geometry AS $$ SELECT h3_cell_to_boundary_wkb($1)::geometry $$ IMMUTABLE STRICT PARALLEL SAFE LANGUAGE SQL; COMMENT ON FUNCTION h3_cell_to_boundary_geometry(h3index) IS 'Finds the boundary of the index. Splits polygons when crossing 180th meridian.'; --@ availability: 4.0.0 CREATE OR REPLACE FUNCTION h3_cell_to_boundary_geography(h3index) RETURNS geography AS $$ SELECT h3_cell_to_boundary_wkb($1)::geography $$ IMMUTABLE STRICT PARALLEL SAFE LANGUAGE SQL; COMMENT ON FUNCTION h3_cell_to_boundary_geography(h3index) IS 'Finds the boundary of the index. Splits polygons when crossing 180th meridian.'; /* * Copyright 2018-2022 Bytes & Brains * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --| # PostGIS Grid Traversal Functions --@ availability: unreleased CREATE OR REPLACE FUNCTION h3_grid_path_cells_recursive(origin h3index, destination h3index) RETURNS SETOF h3index AS $$ BEGIN IF (SELECT origin != destination AND NOT h3_are_neighbor_cells(origin, destination) AND ((base1 != base2 AND NOT h3_are_neighbor_cells(base1, base2)) OR ((h3_is_pentagon(base1) OR h3_is_pentagon(base2)) AND NOT ( h3_get_icosahedron_faces(origin) && h3_get_icosahedron_faces(destination)))) FROM ( SELECT h3_cell_to_parent(origin, 0) AS base1, h3_cell_to_parent(destination, 0) AS base2) AS t) THEN RETURN QUERY WITH points AS ( SELECT h3_cell_to_geometry(origin) AS g1, h3_cell_to_geometry(destination) AS g2), cells AS ( SELECT h3_lat_lng_to_cell( ST_Centroid(ST_MakeLine(g1, g2)::geography), h3_get_resolution(origin)) AS middle FROM points) SELECT h3_grid_path_cells_recursive(origin, middle) FROM cells UNION SELECT h3_grid_path_cells_recursive(middle, destination) FROM cells; ELSE RETURN QUERY SELECT h3_grid_path_cells(origin, destination); END IF; END; $$ LANGUAGE 'plpgsql' IMMUTABLE STRICT PARALLEL SAFE; /* * Copyright 2019-2022 Bytes & Brains * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --| # PostGIS Region Functions --@ availability: 4.0.0 CREATE OR REPLACE FUNCTION h3_polygon_to_cells(multi geometry, resolution integer) RETURNS SETOF h3index AS $$ SELECT h3_polygon_to_cells(exterior, holes, resolution) FROM ( SELECT -- extract exterior ring of each polygon ST_MakePolygon(ST_ExteriorRing(poly))::polygon exterior, -- extract holes of each polygon (SELECT array_agg(hole) FROM ( SELECT ST_MakePolygon(ST_InteriorRingN( poly, generate_series(1, ST_NumInteriorRings(poly)) ))::polygon AS hole ) q_hole ) holes -- extract single polygons from multipolygon FROM ( select (st_dump(multi)).geom as poly ) q_poly GROUP BY poly ) h3_polygon_to_cells; $$ LANGUAGE SQL IMMUTABLE PARALLEL SAFE CALLED ON NULL INPUT; -- NOT STRICT --@ availability: 4.0.0 CREATE OR REPLACE FUNCTION h3_polygon_to_cells(multi geography, resolution integer) RETURNS SETOF h3index AS $$ SELECT h3_polygon_to_cells($1::geometry, $2) $$ LANGUAGE SQL IMMUTABLE PARALLEL SAFE CALLED ON NULL INPUT; -- NOT STRICT --@ availability: unreleased CREATE OR REPLACE FUNCTION h3_cells_to_multi_polygon_geometry(h3index[]) RETURNS geometry AS $$ SELECT h3_cells_to_multi_polygon_wkb($1)::geometry $$ IMMUTABLE STRICT PARALLEL SAFE LANGUAGE SQL; --@ availability: unreleased CREATE OR REPLACE FUNCTION h3_cells_to_multi_polygon_geography(h3index[]) RETURNS geography AS $$ SELECT h3_cells_to_multi_polygon_wkb($1)::geography $$ IMMUTABLE STRICT PARALLEL SAFE LANGUAGE SQL; --@ availability: unreleased CREATE OR REPLACE AGGREGATE h3_cells_to_multi_polygon_geometry(h3index) ( sfunc = array_append, stype = h3index[], finalfunc = h3_cells_to_multi_polygon_geometry, parallel = safe ); --@ availability: unreleased CREATE OR REPLACE AGGREGATE h3_cells_to_multi_polygon_geography(h3index) ( sfunc = array_append, stype = h3index[], finalfunc = h3_cells_to_multi_polygon_geography, parallel = safe ); /* * Copyright 2019-2022 Bytes & Brains * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ -- ---------- ---------- ---------- ---------- ---------- ---------- ---------- --| ## PostGIS casts --@ availability: 0.3.0 CREATE CAST (h3index AS geometry) WITH FUNCTION h3_cell_to_geometry(h3index); --@ availability: 0.3.0 CREATE CAST (h3index AS geography) WITH FUNCTION h3_cell_to_geography(h3index); /* * Copyright 2022 Bytes & Brains * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --@ availability: 4.0.0 CREATE OR REPLACE FUNCTION h3_cell_to_boundary_geometry(h3index, extend_antimeridian boolean) RETURNS geometry AS $$ SELECT ST_SetSRID(h3_cell_to_boundary($1, extend_antimeridian)::geometry, 4326) $$ IMMUTABLE STRICT PARALLEL SAFE LANGUAGE SQL; --@ availability: 4.0.0 CREATE OR REPLACE FUNCTION h3_cell_to_boundary_geography(h3index, extend_antimeridian boolean) RETURNS geography AS $$ SELECT ST_SetSRID(h3_cell_to_boundary($1, extend_antimeridian)::geometry, 4326) $$ IMMUTABLE STRICT PARALLEL SAFE LANGUAGE SQL;