sedona_geos/lib.rs
1// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements. See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership. The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License. You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied. See the License for the
15// specific language governing permissions and limitations
16// under the License.
17mod binary_predicates;
18mod distance;
19mod executor;
20mod geos;
21mod geos_to_wkb;
22mod overlay;
23pub mod register;
24mod st_area;
25mod st_boundary;
26mod st_buffer;
27mod st_centroid;
28mod st_concavehull;
29mod st_convexhull;
30mod st_dwithin;
31mod st_isring;
32mod st_issimple;
33mod st_isvalid;
34mod st_isvalidreason;
35mod st_length;
36mod st_line_merge;
37mod st_makevalid;
38mod st_minimumclearance;
39mod st_minimumclearance_line;
40mod st_nrings;
41mod st_numinteriorrings;
42mod st_numpoints;
43mod st_perimeter;
44mod st_polygonize;
45mod st_polygonize_agg;
46mod st_simplify;
47mod st_simplifypreservetopology;
48mod st_snap;
49mod st_unaryunion;
50pub mod wkb_to_geos;