diff -Nru geos-3.10.2/benchmarks/algorithm/CMakeLists.txt geos-3.11.1/benchmarks/algorithm/CMakeLists.txt --- geos-3.10.2/benchmarks/algorithm/CMakeLists.txt 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/benchmarks/algorithm/CMakeLists.txt 2022-11-13 19:24:40.000000000 +0000 @@ -21,18 +21,18 @@ if (benchmark_FOUND) add_executable(perf_orientation OrientationIndexPerfTest.cpp - ${CMAKE_SOURCE_DIR}/src/algorithm/CGAlgorithmsDD.cpp - ${CMAKE_SOURCE_DIR}/src/math/DD.cpp) + ${PROJECT_SOURCE_DIR}/src/algorithm/CGAlgorithmsDD.cpp + ${PROJECT_SOURCE_DIR}/src/math/DD.cpp) target_include_directories(perf_orientation PUBLIC - $ - $) + $ + $) target_link_libraries(perf_orientation PRIVATE benchmark::benchmark geos_cxx_flags) add_executable(perf_line_intersector LineIntersectorPerfTest.cpp) target_include_directories(perf_line_intersector PUBLIC - $ - $) + $ + $) target_link_libraries(perf_line_intersector PRIVATE benchmark::benchmark geos) endif() diff -Nru geos-3.10.2/benchmarks/algorithm/locate/CMakeLists.txt geos-3.11.1/benchmarks/algorithm/locate/CMakeLists.txt --- geos-3.10.2/benchmarks/algorithm/locate/CMakeLists.txt 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/benchmarks/algorithm/locate/CMakeLists.txt 2022-11-13 19:24:40.000000000 +0000 @@ -14,8 +14,8 @@ if (benchmark_FOUND) add_executable(perf_indexed_point_in_area_locator IndexedPointInAreaLocatorPerfTest.cpp) target_include_directories(perf_indexed_point_in_area_locator PUBLIC - $ - $) + $ + $) target_link_libraries(perf_indexed_point_in_area_locator PRIVATE benchmark::benchmark geos) endif() diff -Nru geos-3.10.2/benchmarks/capi/CMakeLists.txt geos-3.11.1/benchmarks/capi/CMakeLists.txt --- geos-3.10.2/benchmarks/capi/CMakeLists.txt 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/benchmarks/capi/CMakeLists.txt 2022-11-13 19:24:40.000000000 +0000 @@ -13,8 +13,8 @@ # but geos_c only, so need explicit include directories. target_include_directories(perf_memleak_mp_prep PUBLIC - $ - $) + $ + $) target_link_libraries(perf_memleak_mp_prep PRIVATE geos_c) add_executable(perf_geospreparedcontains GEOSPreparedContainsPerfTest.cpp) @@ -29,9 +29,16 @@ if(benchmark_FOUND) add_executable(perf_capi_coordseq GEOSCoordSeqPerfTest.cpp) target_include_directories(perf_capi_coordseq PUBLIC - $ - $) + $ + $) target_link_libraries(perf_capi_coordseq PRIVATE benchmark::benchmark geos_c) endif() +if(benchmark_FOUND) + add_executable(perf_capi_transformxy GEOSGeom_transformXYPerfTest.cpp) + target_include_directories(perf_capi_transformxy PUBLIC + $ + $) + target_link_libraries(perf_capi_transformxy PRIVATE benchmark::benchmark geos_c) +endif() diff -Nru geos-3.10.2/benchmarks/capi/GEOSCoordSeqPerfTest.cpp geos-3.11.1/benchmarks/capi/GEOSCoordSeqPerfTest.cpp --- geos-3.10.2/benchmarks/capi/GEOSCoordSeqPerfTest.cpp 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/benchmarks/capi/GEOSCoordSeqPerfTest.cpp 2022-11-13 19:24:40.000000000 +0000 @@ -17,7 +17,7 @@ #include static std::vector create_buffer(std::size_t N, unsigned int dim) { - std::vector buf(2 * N); + std::vector buf(dim * N); double d = 0.0; for(auto& di : buf) { di = d; @@ -69,7 +69,10 @@ if (dim == 3) { double z = *ptr++; GEOSCoordSeq_setXYZ(seq, i, x, y, z); + benchmark::DoNotOptimize(z); } + benchmark::DoNotOptimize(x); + benchmark::DoNotOptimize(y); } GEOSCoordSeq_destroy(seq); @@ -79,13 +82,59 @@ } template +static void BM_CoordSeq_CopyByCoordinate(benchmark::State& state) { + initGEOS(nullptr, nullptr); + + auto buf = create_buffer(N, dim); + auto seq = GEOSCoordSeq_copyFromBuffer(buf.data(), N, dim == 3, false); + + for (auto _ : state) { + double x; + double y; + double z; + for (std::size_t i = 0; i < N; i++) { + if (dim == 2) { + GEOSCoordSeq_getXY(seq, i, &x, &y); + } + if (dim == 3) { + GEOSCoordSeq_getXYZ(seq, i, &x, &y, &z); + benchmark::DoNotOptimize(z); + } + benchmark::DoNotOptimize(x); + benchmark::DoNotOptimize(y); + } + } + + GEOSCoordSeq_destroy(seq); + + finishGEOS(); +} + +template +static void BM_CoordSeq_CopyToBuffer(benchmark::State& state) { + initGEOS(nullptr, nullptr); + + auto buf = create_buffer(N, dim); + auto seq = GEOSCoordSeq_copyFromBuffer(buf.data(), N, dim == 3, false); + + for (auto _ : state) { + GEOSCoordSeq_copyToBuffer(seq, buf.data(), dim == 3, false); + benchmark::DoNotOptimize(buf); + } + + GEOSCoordSeq_destroy(seq); + + finishGEOS(); +} + +template static void BM_CoordSeq_CopyFromBuffer(benchmark::State& state) { initGEOS(nullptr, nullptr); auto buf = create_buffer(N, dim); for (auto _ : state) { - auto seq = GEOSCoordSeq_copyFromBuffer(buf.data(), N, dim); + auto seq = GEOSCoordSeq_copyFromBuffer(buf.data(), N, dim == 3, false); GEOSCoordSeq_destroy(seq); } @@ -101,7 +150,13 @@ BENCHMARK_TEMPLATE(BM_CoordSeq_CreateByCoordinate, 10, 3); BENCHMARK_TEMPLATE(BM_CoordSeq_CopyFromBuffer, 10, 3); -// N = 1,0000 +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyByCoordinate, 10, 2); +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyToBuffer, 10, 2); + +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyByCoordinate, 10, 3); +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyToBuffer, 10, 3); + +// N = 1,000 BENCHMARK_TEMPLATE(BM_CoordSeq_CreateByOrdinate, 1000, 2); BENCHMARK_TEMPLATE(BM_CoordSeq_CreateByCoordinate, 1000, 2); BENCHMARK_TEMPLATE(BM_CoordSeq_CopyFromBuffer, 1000, 2); @@ -110,6 +165,12 @@ BENCHMARK_TEMPLATE(BM_CoordSeq_CreateByCoordinate, 1000, 3); BENCHMARK_TEMPLATE(BM_CoordSeq_CopyFromBuffer, 1000, 3); +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyByCoordinate, 1000, 2); +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyToBuffer, 1000, 2); + +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyByCoordinate, 1000, 3); +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyToBuffer, 1000, 3); + // N = 10,000 BENCHMARK_TEMPLATE(BM_CoordSeq_CreateByOrdinate, 10000, 2); BENCHMARK_TEMPLATE(BM_CoordSeq_CreateByCoordinate, 10000, 2); @@ -119,6 +180,12 @@ BENCHMARK_TEMPLATE(BM_CoordSeq_CreateByCoordinate, 10000, 3); BENCHMARK_TEMPLATE(BM_CoordSeq_CopyFromBuffer, 10000, 3); +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyByCoordinate, 10000, 2); +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyToBuffer, 10000, 2); + +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyByCoordinate, 10000, 3); +BENCHMARK_TEMPLATE(BM_CoordSeq_CopyToBuffer, 10000, 3); + BENCHMARK_MAIN(); diff -Nru geos-3.10.2/benchmarks/capi/GEOSGeom_transformXYPerfTest.cpp geos-3.11.1/benchmarks/capi/GEOSGeom_transformXYPerfTest.cpp --- geos-3.10.2/benchmarks/capi/GEOSGeom_transformXYPerfTest.cpp 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.11.1/benchmarks/capi/GEOSGeom_transformXYPerfTest.cpp 2022-11-13 19:24:40.000000000 +0000 @@ -0,0 +1,100 @@ +#include + +#include +#include + +static int SCALE_USER_DATA(double* x, double* y, void* userdata) { + double scale = *(double*)(userdata); + (*x) *= scale; + (*y) *= scale; + return 1; +} + +GEOSGeometry* create_polygon(size_t N) { + // create a linearring N coords long + std::vector buf(2 * (N + 1)); + double d = 0.0; + for (auto& di : buf) { + di = d; + d += 1.0; + } + + // close the ring + buf[N * 2] = buf[0]; + buf[(N * 2) + 1] = buf[1]; + + auto seq = GEOSCoordSeq_copyFromBuffer(buf.data(), N + 1, false, false); + assert(seq != nullptr); + auto ring = GEOSGeom_createLinearRing(seq); + return GEOSGeom_createPolygon(ring, nullptr, 0); +} + +template +static void BM_GEOSGeom_transformXY(benchmark::State& state) { + initGEOS(nullptr, nullptr); + + auto geom = create_polygon(N); + GEOSGeometry *out_geom; + + double scale = 2.0; + + for (auto _ : state) { + out_geom = GEOSGeom_transformXY(geom, SCALE_USER_DATA, (void*)(&scale)); + + // not really part of benchmark but need to cleanup geom + GEOSGeom_destroy(out_geom); + } + + GEOSGeom_destroy(geom); + finishGEOS(); +} + +template +static void BM_Geom_from_transformed_coords(benchmark::State& state) { + initGEOS(nullptr, nullptr); + + const GEOSCoordSequence *seq; + GEOSCoordSequence *out_seq; + unsigned int i, size; + double x, y, scale=2.0; + const GEOSGeometry *ring; + GEOSGeometry *out_ring, *out_geom; + + auto geom = create_polygon(N); + + for (auto _ : state) { + ring = GEOSGetExteriorRing(geom); + seq = GEOSGeom_getCoordSeq(ring); + GEOSCoordSeq_getSize(seq, &size); + out_seq = GEOSCoordSeq_create(size, 2); + + for (i = 0; i < size; i++) { + GEOSCoordSeq_getXY(seq, i, &x, &y); + SCALE_USER_DATA(&x, &y, (void *)(&scale)); + GEOSCoordSeq_setXY(out_seq, i, x, y); + } + + out_ring = GEOSGeom_createLinearRing(out_seq); + out_geom = GEOSGeom_createPolygon(out_ring, nullptr, 0); + + // not really part of benchmark but need to cleanup geom + GEOSGeom_destroy(out_geom); + } + + GEOSGeom_destroy(geom); + finishGEOS(); +} + +// N = 10 +BENCHMARK_TEMPLATE(BM_GEOSGeom_transformXY, 10); +BENCHMARK_TEMPLATE(BM_Geom_from_transformed_coords, 10); + +// N = 1,000 +BENCHMARK_TEMPLATE(BM_GEOSGeom_transformXY, 1000); +BENCHMARK_TEMPLATE(BM_Geom_from_transformed_coords, 1000); + +// N = 10,000 +BENCHMARK_TEMPLATE(BM_GEOSGeom_transformXY, 10000); +BENCHMARK_TEMPLATE(BM_Geom_from_transformed_coords, 10000); + +BENCHMARK_MAIN(); \ No newline at end of file diff -Nru geos-3.10.2/benchmarks/geom/CMakeLists.txt geos-3.11.1/benchmarks/geom/CMakeLists.txt --- geos-3.10.2/benchmarks/geom/CMakeLists.txt 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/benchmarks/geom/CMakeLists.txt 2022-11-13 19:24:40.000000000 +0000 @@ -12,10 +12,10 @@ IF(benchmark_FOUND) add_executable(perf_envelope EnvelopePerfTest.cpp - ${CMAKE_SOURCE_DIR}/src/geom/Envelope.cpp) + ${PROJECT_SOURCE_DIR}/src/geom/Envelope.cpp) target_include_directories(perf_envelope PUBLIC - $ - $) + $ + $) target_link_libraries(perf_envelope PRIVATE benchmark::benchmark geos_cxx_flags) endif() diff -Nru geos-3.10.2/benchmarks/index/chain/CMakeLists.txt geos-3.11.1/benchmarks/index/chain/CMakeLists.txt --- geos-3.10.2/benchmarks/index/chain/CMakeLists.txt 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/benchmarks/index/chain/CMakeLists.txt 2022-11-13 19:24:40.000000000 +0000 @@ -12,15 +12,15 @@ IF(benchmark_FOUND) add_executable(perf_monotone_chain MonotoneChainPerfTest.cpp) target_include_directories(perf_monotone_chain PUBLIC - $ - $) + $ + $) target_link_libraries(perf_monotone_chain PRIVATE benchmark::benchmark geos) add_executable(perf_monotone_chain_builder MonotoneChainBuilderPerfTest.cpp) target_include_directories(perf_monotone_chain_builder PUBLIC - $ - $) + $ + $) target_link_libraries(perf_monotone_chain_builder PRIVATE benchmark::benchmark geos) endif() diff -Nru geos-3.10.2/benchmarks/index/CMakeLists.txt geos-3.11.1/benchmarks/index/CMakeLists.txt --- geos-3.10.2/benchmarks/index/CMakeLists.txt 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/benchmarks/index/CMakeLists.txt 2022-11-13 19:24:40.000000000 +0000 @@ -14,8 +14,8 @@ IF(benchmark_FOUND) add_executable(perf_spatial_index SpatialIndexPerfTest.cpp) target_include_directories(perf_spatial_index PUBLIC - $ - $) + $ + $) target_link_libraries(perf_spatial_index PRIVATE benchmark::benchmark geos) endif() diff -Nru geos-3.10.2/benchmarks/operation/predicate/RectangleIntersectsPerfTest.cpp geos-3.11.1/benchmarks/operation/predicate/RectangleIntersectsPerfTest.cpp --- geos-3.10.2/benchmarks/operation/predicate/RectangleIntersectsPerfTest.cpp 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/benchmarks/operation/predicate/RectangleIntersectsPerfTest.cpp 2022-11-13 19:24:40.000000000 +0000 @@ -111,7 +111,7 @@ createRectangles(const Envelope& env, int nRect, double, std::vector& rectList) { - int nSide = 1 + (int)sqrt((double) nRect); + int nSide = 1 + (int)std::sqrt((double) nRect); double dx = env.getWidth() / nSide; double dy = env.getHeight() / nSide; diff -Nru geos-3.10.2/capi/CMakeLists.txt geos-3.11.1/capi/CMakeLists.txt --- geos-3.10.2/capi/CMakeLists.txt 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/capi/CMakeLists.txt 2022-11-13 19:24:40.000000000 +0000 @@ -18,6 +18,12 @@ $ $) +target_include_directories(geos_c + INTERFACE + $ + $ + $) + # Copy these over so they match the @VARIABLES@ used by autoconf # in geos_c.h.in set(VERSION ${GEOS_VERSION}) diff -Nru geos-3.10.2/capi/geos_c.cpp geos-3.11.1/capi/geos_c.cpp --- geos-3.10.2/capi/geos_c.cpp 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/capi/geos_c.cpp 2022-11-13 19:24:40.000000000 +0000 @@ -469,6 +469,42 @@ } Geometry* + GEOSConcaveHull(const Geometry* g, + double ratio, + unsigned int allowHoles) + + { + return GEOSConcaveHull_r(handle, g, ratio, allowHoles); + } + + Geometry* + GEOSPolygonHullSimplify(const Geometry* g, + unsigned int isOuter, + double vertexNumFraction) + { + return GEOSPolygonHullSimplify_r(handle, g, isOuter, vertexNumFraction); + } + + Geometry* + GEOSPolygonHullSimplifyMode(const Geometry* g, + unsigned int isOuter, + unsigned int parameterMode, + double parameter) + { + return GEOSPolygonHullSimplifyMode_r(handle, g, isOuter, parameterMode, parameter); + } + + Geometry* + GEOSConcaveHullOfPolygons(const Geometry* g, + double lengthRatio, + unsigned int isTight, + unsigned int isHolesAllowed) + { + return GEOSConcaveHullOfPolygons_r(handle, + g, lengthRatio, isTight, isHolesAllowed); + } + + Geometry* GEOSMinimumRotatedRectangle(const Geometry* g) { return GEOSMinimumRotatedRectangle_r(handle, g); @@ -590,6 +626,11 @@ } + Geometry* + GEOSGeom_transformXY(const GEOSGeometry* g, GEOSTransformXYCallback callback, void* userdata) { + return GEOSGeom_transformXY_r(handle, g, callback, userdata); + } + //------------------------------------------------------------------- // memory management functions @@ -758,6 +799,13 @@ return GEOSGetCentroid_r(handle, g); } + int + GEOSHilbertCode(const GEOSGeometry *geom, const GEOSGeometry* extent, + unsigned int level, unsigned int *code) + { + return GEOSHilbertCode_r(handle, geom, extent, level, code); + } + Geometry* GEOSMinimumBoundingCircle(const Geometry* g, double* radius, Geometry** center) { @@ -844,12 +892,26 @@ } Geometry* + GEOSRemoveRepeatedPoints( + const Geometry* g, + double tolerance) + { + return GEOSRemoveRepeatedPoints_r(handle, g, tolerance); + } + + Geometry* GEOSLineMerge(const Geometry* g) { return GEOSLineMerge_r(handle, g); } Geometry* + GEOSLineMergeDirected(const Geometry* g) + { + return GEOSLineMergeDirected_r(handle, g); + } + + Geometry* GEOSReverse(const Geometry* g) { return GEOSReverse_r(handle, g); @@ -1127,6 +1189,11 @@ return GEOSGeom_getYMax_r(handle, g, value); } + int GEOS_DLL GEOSGeom_getExtent(const GEOSGeometry* g, double* xmin, double* ymin, double* xmax, double* ymax) + { + return GEOSGeom_getExtent_r(handle, g, xmin, ymin, xmax, ymax); + } + Geometry* GEOSSimplify(const Geometry* g, double tolerance) { @@ -1153,6 +1220,11 @@ GEOSWKTReader_destroy_r(handle, reader); } + void + GEOSWKTReader_setFixStructure(WKTReader* reader, char doFix) + { + GEOSWKTReader_setFixStructure_r(handle, reader, doFix); + } Geometry* GEOSWKTReader_read(WKTReader* reader, const char* wkt) @@ -1222,6 +1294,11 @@ GEOSWKBReader_destroy_r(handle, reader); } + void + GEOSWKBReader_setFixStructure(WKBReader* reader, char doFix) + { + GEOSWKBReader_setFixStructure_r(handle, reader, doFix); + } Geometry* GEOSWKBReader_read(WKBReader* reader, const unsigned char* wkb, std::size_t size) @@ -1563,6 +1640,13 @@ return GEOSGeom_createEmptyPolygon_r(handle); } + geos::geom::Geometry* + GEOSGeom_createRectangle(double xmin, double ymin, double xmax, + double ymax) + { + return GEOSGeom_createRectangle_r(handle, xmin, ymin, xmax, ymax); + } + int GEOSOrientationIndex(double Ax, double Ay, double Bx, double By, double Px, double Py) diff -Nru geos-3.10.2/capi/geos_c.h.in geos-3.11.1/capi/geos_c.h.in --- geos-3.10.2/capi/geos_c.h.in 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/capi/geos_c.h.in 2022-11-13 19:24:40.000000000 +0000 @@ -14,6 +14,7 @@ /** * \file geos_c.h * \brief C API for the GEOS geometry algorithms library. +* \tableofcontents * * The C API is the preferred API to use when integration GEOS into * you program/language/etc. While the C++ API is available, the ABI @@ -30,7 +31,7 @@ * GEOSGeom objects to avoid memory leaks, and GEOSFree() * all returned char * (unless const). * - Functions ending with _r are thread safe (reentrant); -* see details in http://trac.osgeo.org/geos/wiki/RFC3. +* see details in https://libgeos.org/development/rfcs/rfc03. * To avoid accidental use of non-reentrant functions, * define GEOS_USE_ONLY_R_API before including geos_c.h. * @@ -273,6 +274,25 @@ double* distance, void* userdata); + +/** +* Callback function for use in GEOSGeom_transformXY. +* Allows custom function to be applied to x and y values for each coordinate +* in a geometry. Z values are unchanged by this function. +* Extra data for the calculation can be passed via the userdata. +* +* \param x coordinate value to be updated +* \param y coordinate value to be updated +* \param userdata extra data for the calculation +* +* \return 1 if calculation succeeded, 0 on failure +*/ +typedef int (*GEOSTransformXYCallback)( + double* x, + double* y, + void* userdata); + + /* ========== Interruption ========== */ /** @@ -704,6 +724,12 @@ extern GEOSGeometry GEOS_DLL *GEOSGeom_createEmptyCollection_r( GEOSContextHandle_t handle, int type); +/** \see GEOSGeom_createRectangle */ +extern GEOSGeometry GEOS_DLL *GEOSGeom_createRectangle_r( + GEOSContextHandle_t handle, + double xmin, double ymin, + double xmax, double ymax); + /** \see GEOSGeom_clone */ extern GEOSGeometry GEOS_DLL *GEOSGeom_clone_r( GEOSContextHandle_t handle, @@ -741,6 +767,36 @@ GEOSContextHandle_t handle, const GEOSGeometry* g); +/** \see GEOSConcaveHull */ +extern GEOSGeometry GEOS_DLL *GEOSConcaveHull_r( + GEOSContextHandle_t handle, + const GEOSGeometry* g, + double ratio, + unsigned int allowHoles); + +/** \see GEOSPolygonHullSimplify */ +extern GEOSGeometry GEOS_DLL *GEOSPolygonHullSimplify_r( + GEOSContextHandle_t handle, + const GEOSGeometry* g, + unsigned int isOuter, + double vertexNumFraction); + +/** \see GEOSPolygonHullSimplifyByArea */ +extern GEOSGeometry GEOS_DLL *GEOSPolygonHullSimplifyMode_r( + GEOSContextHandle_t handle, + const GEOSGeometry* g, + unsigned int isOuter, + unsigned int parameterMode, + double parameter); + +/** \see GEOSConcaveHullOfPolygons */ +extern GEOSGeometry GEOS_DLL *GEOSConcaveHullOfPolygons_r( + GEOSContextHandle_t handle, + const GEOSGeometry* g, + double lengthRatio, + unsigned int isTight, + unsigned int isHolesAllowed); + /** \see GEOSMinimumRotatedRectangle */ extern GEOSGeometry GEOS_DLL *GEOSMinimumRotatedRectangle_r( GEOSContextHandle_t handle, @@ -900,6 +956,11 @@ GEOSContextHandle_t handle, const GEOSGeometry* g); +/** \see GEOSLineMergeDirected */ +extern GEOSGeometry GEOS_DLL *GEOSLineMergeDirected_r( + GEOSContextHandle_t handle, + const GEOSGeometry* g); + /** \see GEOSReverse */ extern GEOSGeometry GEOS_DLL *GEOSReverse_r( GEOSContextHandle_t handle, @@ -1329,6 +1390,11 @@ const GEOSGeometry* g, const GEOSMakeValidParams* makeValidParams); +/** \see GEOSRemoveRepeatedPoints */ +extern GEOSGeometry GEOS_DLL *GEOSRemoveRepeatedPoints_r( + GEOSContextHandle_t handle, + const GEOSGeometry* g, + double tolerance); /* ========== Geometry info ========== */ @@ -1486,6 +1552,15 @@ const GEOSGeometry* g, double* value); +/** \see GEOSGeom_getExtent */ +extern int GEOS_DLL GEOSGeom_getExtent_r( + GEOSContextHandle_t handle, + const GEOSGeometry* g, + double* xmin, + double* ymin, + double* xmax, + double* ymax); + /** \see GEOSGeomGetPointN */ extern GEOSGeometry GEOS_DLL *GEOSGeomGetPointN_r( GEOSContextHandle_t handle, @@ -1566,6 +1641,16 @@ double densifyFrac, double *dist); + +/** \see GEOSHilbertCode */ +extern int GEOS_DLL GEOSHilbertCode_r( + GEOSContextHandle_t handle, + const GEOSGeometry *geom, + const GEOSGeometry* extent, + unsigned int level, + unsigned int *code +); + /** \see GEOSGeomGetLength */ extern int GEOS_DLL GEOSGeomGetLength_r( GEOSContextHandle_t handle, @@ -1578,6 +1663,12 @@ const GEOSGeometry* g1, const GEOSGeometry* g2); +/** \see GEOSGeom_transformXY */ +extern GEOSGeometry GEOS_DLL *GEOSGeom_transformXY_r( + GEOSContextHandle_t handle, + const GEOSGeometry* g, + GEOSTransformXYCallback callback, + void* userdata); /* ========= Algorithms ========= */ @@ -1653,6 +1744,12 @@ GEOSWKTReader* reader, const char *wkt); +/** \see GEOSWKTReader_setFixStructure */ +extern void GEOS_DLL GEOSWKTReader_setFixStructure_r( + GEOSContextHandle_t handle, + GEOSWKTReader *reader, + char doFix); + /* ========== WKT Writer ========== */ /** \see GEOSWKTReader_create */ @@ -1710,6 +1807,12 @@ GEOSContextHandle_t handle, GEOSWKBReader* reader); +/** \see GEOSWKBReader_setFixStructure */ +extern void GEOS_DLL GEOSWKBReader_setFixStructure_r( + GEOSContextHandle_t handle, + GEOSWKBReader *reader, + char doFix); + /** \see GEOSWKBReader_read */ extern GEOSGeometry GEOS_DLL *GEOSWKBReader_read_r( GEOSContextHandle_t handle, @@ -1724,6 +1827,7 @@ const unsigned char *hex, size_t size); + /* ========== WKB Writer ========== */ /** \see GEOSWKBWriter_create */ @@ -1801,7 +1905,7 @@ extern void GEOS_DLL GEOSGeoJSONReader_destroy_r(GEOSContextHandle_t handle, GEOSGeoJSONReader* reader); -/** \see GEOSWKTReader_read */ +/** \see GEOSGeoJSONReader_read */ extern GEOSGeometry GEOS_DLL *GEOSGeoJSONReader_readGeometry_r( GEOSContextHandle_t handle, GEOSGeoJSONReader* reader, @@ -1844,7 +1948,12 @@ */ #ifndef GEOS_USE_ONLY_R_API -/* ========== Initialization, cleanup, version ========== */ +/* ========== Initialization, cleanup ================================= */ +/** @name Library and Memory Management +* Functions to initialize and tear down the library, +* and deallocate memory. +*/ +///@{ /** * For non-reentrant code, set up an execution contact, and associate @@ -1867,7 +1976,22 @@ */ extern void GEOS_DLL finishGEOS(void); +/** +* Free strings and byte buffers returned by functions such +* as GEOSWKBWriter_write(), +* GEOSWKBWriter_writeHEX() and GEOSWKTWriter_write(), etc. +* \param buffer The memory to free +*/ +extern void GEOS_DLL GEOSFree(void *buffer); + +///@} + /* ========= Coordinate Sequence functions ========= */ +/** @name Coordinate Sequences +* A GEOSCoordSequence is an ordered list of coordinates. +* Coordinates are 2 (XY) or 3 (XYZ) dimensional. +*/ +///@{ /** * Create a coordinate sequence. @@ -2083,203 +2207,14 @@ const GEOSCoordSequence* s, char* is_ccw); -/* ========== Linear referencing functions */ - -/** -* Distance of point projected onto line from the start of the line. -* \param line linear target of projection -* \param point point to be projected onto 'g' -* \return distance along line that point projects to, -1 on exception -* -* \note Line parameter must be a LineString. -*/ -extern double GEOS_DLL GEOSProject(const GEOSGeometry* line, - const GEOSGeometry* point); - -/** -* Measuring from start of line, return point that is distance -* the start. Line parameter must be a LineString. -* \param line linear target of projection -* \param d distance from start of line to created point -* \return The point \ref GEOSGeometry that is distance from the start of line. -* Caller takes ownership of returned geometry. -*/ -extern GEOSGeometry GEOS_DLL *GEOSInterpolate(const GEOSGeometry* line, - double d); - -/** -* Project point to line and calculate the **proportion** of -* the line the point is from the start. For example, a point that -* projects to the middle of a line would be return 0.5. -* \param line linear target of projection -* \param point the point to project -* \return The proportion of the overall line length that the projected -* point falls at. -*/ -extern double GEOS_DLL GEOSProjectNormalized(const GEOSGeometry* line, - const GEOSGeometry* point); - -/** -* Measuring from start of line, return point that is a proportion -* the start. Line parameter must be a LineString. -* \param line linear target of projection -* \param proportion The proportion from the start of line to created point -* \return The point \ref GEOSGeometry that is distance from the start of line. -* Caller takes ownership of returned geometry. -*/ -extern GEOSGeometry GEOS_DLL *GEOSInterpolateNormalized( - const GEOSGeometry *line, - double proportion); - -/* ========== Buffer related functions ========== */ - -/** -* Buffer a geometry. -* \param g The input geometry to be buffered. -* \param width The distance by which to expand the geometry (or contract) -* if the value is negative. -* \param quadsegs The number of segments per quadrant to generate. More -* segments provides a more "precise" buffer at the expense of size. -* \return A \ref GEOSGeometry of the buffered result. -* NULL on exception. Caller is responsible for freeing with GEOSGeom_destroy(). -*/ -extern GEOSGeometry GEOS_DLL *GEOSBuffer(const GEOSGeometry* g, - double width, int quadsegs); - -/** -* Create a default GEOSBufferParams object for controlling the shape -* of buffered generated by \ref GEOSBuffer. -* \return A newly allocated GEOSBufferParams. NULL on exception. -* Caller is responsible for freeing with GEOSBufferParams_destroy(). -*/ -extern GEOSBufferParams GEOS_DLL *GEOSBufferParams_create(void); - -/** -* Destroy a GEOSBufferParams and free all associated memory. -* \param parms The object to destroy. -*/ -extern void GEOS_DLL GEOSBufferParams_destroy(GEOSBufferParams* parms); - -/** -* Set the end cap type of a GEOSBufferParams to the desired style, -* which must be one enumerated in \ref GEOSBufCapStyles. -* \return 0 on exception, 1 on success. -*/ -extern int GEOS_DLL GEOSBufferParams_setEndCapStyle( - GEOSBufferParams* p, - int style); - -/** -* Set the join type of a GEOSBufferParams to the desired style, -* which must be one enumerated in \ref GEOSBufJoinStyles. -* \return 0 on exception, 1 on success. -*/ -extern int GEOS_DLL GEOSBufferParams_setJoinStyle( - GEOSBufferParams* p, - int joinStyle); - -/** -* Set the mitre limit of a GEOSBufferParams to the desired size. -* For acute angles, a mitre join can extend very very far from -* the input geometry, which is probably not desired. The -* mitre limit places an upper bound on that. -* \param p The GEOSBufferParams to operate on -* \param mitreLimit The limit to set -* \return 0 on exception, 1 on success. -*/ -extern int GEOS_DLL GEOSBufferParams_setMitreLimit( - GEOSBufferParams* p, - double mitreLimit); - -/** -* Set the number of segments to use to stroke each quadrant -* of circular arcs generated by the buffering process. More -* segments means a smoother output, but with larger size. -* \param p The GEOSBufferParams to operate on -* \param quadSegs Number of segments per quadrant -* \return 0 on exception, 1 on success. -*/ -extern int GEOS_DLL GEOSBufferParams_setQuadrantSegments( - GEOSBufferParams* p, - int quadSegs); - -/** -* Sets whether the computed buffer should be single-sided. -* A single-sided buffer is constructed on only one side of each input line. -* \see geos::operation::buffer::BufferParameters::setSingleSided -* \param p The GEOSBufferParams to operate on -* \param singleSided Set to 1 for single-sided output 0 otherwise -* \return 0 on exception, 1 on success. -*/ -extern int GEOS_DLL GEOSBufferParams_setSingleSided( - GEOSBufferParams* p, - int singleSided); - -/** -* Generates a buffer using the special parameters in the GEOSBufferParams -* \param g The geometry to buffer -* \param p The parameters to apply to the buffer process -* \param width The buffer distance -* \return The buffered geometry, or NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -*/ -extern GEOSGeometry GEOS_DLL *GEOSBufferWithParams( - const GEOSGeometry* g, - const GEOSBufferParams* p, - double width); - -/** -* Generate a buffer using the provided style parameters. -* \param g The geometry to buffer -* \param width Width of the buffer -* \param quadsegs Number of segments per quadrant -* \param endCapStyle See \ref GEOSBufCapStyles -* \param joinStyle See \ref GEOSBufJoinStyles -* \param mitreLimit See GEOSBufferParams_setMitreLimit -* \return The buffered geometry, or NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -*/ -extern GEOSGeometry GEOS_DLL *GEOSBufferWithStyle( - const GEOSGeometry* g, - double width, - int quadsegs, - int endCapStyle, - int joinStyle, - double mitreLimit); - -/** -* Densifies a geometry using a given distance tolerance. -* Additional vertices will be added to every line segment -* that is greater this tolerance; these vertices will -* evenly subdivide that segment. -* Only linear components of input geometry are densified. -* \param g The geometry to densify -* \param tolerance the distance tolerance to densify -* \return The densified geometry, or NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -*/ -extern GEOSGeometry GEOS_DLL *GEOSDensify( - const GEOSGeometry* g, - double tolerance); - -/** -* Generates offset curve for linear geometry. -* Only LineStrings accepted as input. -* \param g The linear geometry to offset from -* \param width Distance to offset from the curve. -* Negative for a right-side offset. -* Positive for a left-side offset. -* \param quadsegs Number of segments per quadrant -* \param joinStyle See \ref GEOSBufJoinStyles -* \param mitreLimit See GEOSBufferParams_setMitreLimit -* \return The offset geometry. Returns NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::buffer::BufferBuilder::bufferLineSingleSided -*/ -extern GEOSGeometry GEOS_DLL *GEOSOffsetCurve(const GEOSGeometry* g, - double width, int quadsegs, int joinStyle, double mitreLimit); +///@} /* ========= Geometry Constructors ========= */ +/** @name Geometry Constructors +* Functions for creating and destroying geometries. +* Created geometries must be freed with GEOSGeom_destroy(). +*/ +///@{ /** * Creates a point geometry from a coordinate sequence. @@ -2378,6 +2313,18 @@ extern GEOSGeometry GEOS_DLL *GEOSGeom_createEmptyCollection(int type); /** +* Create a rectangular polygon from bounding coordinates. +* Will return a point geometry if width and height are 0. +* \param xmin Left bound of envelope +* \param ymin Lower bound of envelope +* \param xmax Right bound of envelope +* \param ymax Upper bound of envelope +*/ +extern GEOSGeometry GEOS_DLL *GEOSGeom_createRectangle( + double xmin, double ymin, + double xmax, double ymax); + +/** * Create a new copy of the input geometry. * \param g The geometry to copy * \return A newly allocated geometry. NULL on exception. @@ -2385,1374 +2332,1699 @@ */ extern GEOSGeometry GEOS_DLL *GEOSGeom_clone(const GEOSGeometry* g); -/* ========== Memory management ========== */ - /** * Release the memory associated with a geometry. * \param g The geometry to be destroyed. */ extern void GEOS_DLL GEOSGeom_destroy(GEOSGeometry* g); -/* ========== Topology Operations ========== */ +///@} + +/* ========== Geometry info ========== */ +/** @name Geometry Accessors +* Functions to provide information about geometries. +*/ +///@{ /** -* Returns minimum rectangular polygon that contains the geometry. -* \param g The geometry to calculate an envelope for -* \return A newly allocated polygonal envelope. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). +* Returns the geometry type string for this geometry. +* eg: "GeometryCollection", "LineString" +* \param g Input geometry +* \return A string with the geometry type. +* Caller must free with GEOSFree(). +* NULL on exception. */ -extern GEOSGeometry GEOS_DLL *GEOSEnvelope(const GEOSGeometry* g); +extern char GEOS_DLL *GEOSGeomType(const GEOSGeometry* g); /** -* Returns the intersection of two geometries: the set of points -* that fall within **both** geometries. -* \param g1 one of the geometries -* \param g2 the other geometry -* \return A newly allocated geometry of the intersection. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Returns the \ref GEOSGeomTypeId number for this geometry. +* \param g Input geometry +* \return The geometry type number, or -1 on exception. */ -extern GEOSGeometry GEOS_DLL *GEOSIntersection(const GEOSGeometry* g1, const GEOSGeometry* g2); +extern int GEOS_DLL GEOSGeomTypeId(const GEOSGeometry* g); /** -* Returns the intersection of two geometries: the set of points -* that fall within **both** geometries. All the vertices of the output -* geometry must fall on the grid defined by the gridSize, and the -* output will be a valid geometry. -* \param g1 one of the geometries -* \param g2 the other geometry -* \param gridSize the cell size of the precision grid -* \return A newly allocated geometry of the intersection. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Returns the "spatial reference id" (SRID) for this geometry. +* \param g Input geometry +* \return SRID number or 0 if unknown / not set. */ -extern GEOSGeometry GEOS_DLL *GEOSIntersectionPrec(const GEOSGeometry* g1, const GEOSGeometry* g2, double gridSize); +extern int GEOS_DLL GEOSGetSRID(const GEOSGeometry* g); /** -* Returns the difference of two geometries A and B: the set of points -* that fall within A but **not** within B. -* \param ga the base geometry -* \param gb the geometry to subtract from it -* \return A newly allocated geometry of the difference. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Return the anonymous "user data" for this geometry. +* User data must be managed by the caller, and freed before +* the geometry is freed. +* \param g Input geometry +* \return A void* to the user data, caller is responsible for +* casting to the appropriate type and freeing. */ -extern GEOSGeometry GEOS_DLL *GEOSDifference( - const GEOSGeometry* ga, - const GEOSGeometry* gb); +extern void GEOS_DLL *GEOSGeom_getUserData(const GEOSGeometry* g); /** -* Returns the difference of two geometries A and B: the set of points -* that fall within A but **not** within B. -* All the vertices of the output -* geometry must fall on the grid defined by the gridSize, and the -* output will be a valid geometry. -* \param ga one of the geometries -* \param gb the other geometry -* \param gridSize the cell size of the precision grid -* \return A newly allocated geometry of the difference. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Returns the number of sub-geometries immediately under a +* multi-geometry or collection or 1 for a simple geometry. +* For nested collections, remember to check if returned +* sub-geometries are **themselves** also collections. +* \param g Input geometry +* \return Number of direct children in this collection +* \warning For GEOS < 3.2 this function may crash when fed simple geometries */ -extern GEOSGeometry GEOS_DLL *GEOSDifferencePrec( - const GEOSGeometry* ga, - const GEOSGeometry* gb, - double gridSize); +extern int GEOS_DLL GEOSGetNumGeometries(const GEOSGeometry* g); /** -* Returns the symmetric difference of two geometries A and B: the set of points -* that fall in A but **not** within B and the set of points that fall in B but -* **not** in A. -* \param ga geometry A -* \param gb geometry B -* \return A newly allocated geometry of the symmetric difference. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Returns the specified sub-geometry of a collection. For +* a simple geometry, returns a pointer to the input. +* Returned object is a pointer to internal storage: +* it must NOT be destroyed directly. +* \param g Input geometry +* \param n Sub-geometry index, zero-base +* \return A const \ref GEOSGeometry, do not free! + It will be freed when the parent is freed. + Returns NULL on exception. +* \note Up to GEOS 3.2.0 the input geometry must be a Collection, in +* later versions it doesn't matter (getGeometryN(0) for a single will +* return the input). */ -extern GEOSGeometry GEOS_DLL *GEOSSymDifference( - const GEOSGeometry* ga, - const GEOSGeometry* gb); +extern const GEOSGeometry GEOS_DLL *GEOSGetGeometryN( + const GEOSGeometry* g, + int n); /** -* Returns the symmetric difference of two geometries A and B: the set of points -* that fall in A but **not** within B and the set of points that fall in B but -* **not** in A. -* All the vertices of the output -* geometry must fall on the grid defined by the gridSize, and the -* output will be a valid geometry. -* \param ga one of the geometries -* \param gb the other geometry -* \param gridSize the cell size of the precision grid -* \return A newly allocated geometry of the symmetric difference. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Read the currently set precision value from the +* geometry and returns the grid size if it is a fixed +* precision or 0.0 if it is full floating point precision. +* \param g Input geometry +* \return The grid size, or -1 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSSymDifferencePrec( - const GEOSGeometry* ga, - const GEOSGeometry* gb, - double gridSize); +extern double GEOS_DLL GEOSGeom_getPrecision(const GEOSGeometry *g); /** -* Returns the union of two geometries A and B: the set of points -* that fall in A **or** within B. -* \param ga geometry A -* \param gb geometry B -* \return A newly allocated geometry of the union. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Returns the number of interior rings, for a Polygon input, or +* an exception otherwise. +* \param g Input Polygon geometry +* \return Number of interior rings, -1 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSUnion( - const GEOSGeometry* ga, - const GEOSGeometry* gb); +extern int GEOS_DLL GEOSGetNumInteriorRings(const GEOSGeometry* g); /** -* Returns the union of two geometries A and B: the set of points -* that fall in A **or** within B. -* All the vertices of the output -* geometry must fall on the grid defined by the gridSize, and the -* output will be a valid geometry. -* \param ga one of the geometries -* \param gb the other geometry -* \param gridSize the cell size of the precision grid -* \return A newly allocated geometry of the union. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Returns the number of points, for a LineString input, or +* an exception otherwise. +* \param g Input LineString geometry +* \return Number of points, -1 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSUnionPrec( - const GEOSGeometry* ga, - const GEOSGeometry* gb, - double gridSize); +extern int GEOS_DLL GEOSGeomGetNumPoints(const GEOSGeometry* g); /** -* Returns the union of all components of a single geometry. Usually -* used to convert a collection into the smallest set of polygons -* that cover the same area. -* \param g The input geometry -* \return A newly allocated geometry of the union. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Returns the X coordinate, for a Point input, or an +* exception otherwise. +* \param[in] g Input Point geometry +* \param[out] x Pointer to hold return value +* \returns 1 on success, 0 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSUnaryUnion(const GEOSGeometry* g); +extern int GEOS_DLL GEOSGeomGetX(const GEOSGeometry *g, double *x); /** -* Returns the union of all components of a single geometry. Usually -* used to convert a collection into the smallest set of polygons -* that cover the same area. -* All the vertices of the output -* geometry must fall on the grid defined by the gridSize, and the -* output will be a valid geometry. -* \param g input geometry -* \param gridSize the cell size of the precision grid -* \return A newly allocated geometry of the union. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Returns the Y coordinate, for a Point input, or an +* exception otherwise. +* \param[in] g Input Point geometry +* \param[out] y Pointer to hold return value +* \returns 1 on success, 0 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSUnaryUnionPrec( - const GEOSGeometry* g, - double gridSize); +extern int GEOS_DLL GEOSGeomGetY(const GEOSGeometry *g, double *y); /** -* Returns the "boundary" of a geometry, as defined by the DE9IM: -* -* - the boundary of a polygon is the linear rings dividing the exterior -* from the interior -* - the boundary of a linestring is the end points -* - the boundary of a point is the point -* -* \param g The input geometry -* \return A newly allocated geometry of the boundary. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). +* Returns the Z coordinate, for a Point input, or an +* exception otherwise. +* \param[in] g Input Point geometry +* \param[out] z Pointer to hold return value +* \returns 1 on success, 0 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSBoundary(const GEOSGeometry* g); +extern int GEOS_DLL GEOSGeomGetZ(const GEOSGeometry *g, double *z); /** -* Returns convex hull of a geometry. The smallest convex Geometry -* that contains all the points in the input Geometry -* \param g The input geometry -* \return A newly allocated geometry of the convex hull. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::overlayng::OverlayNG +* Returns the N'th ring for a Polygon input. +* \note Returned object is a pointer to internal storage: +* it must NOT be destroyed directly. +* \param g Input Polygon geometry +* \param n Index of the desired ring +* \return LinearRing geometry. Owned by parent geometry, do not free. NULL on exception. */ -extern GEOSGeometry GEOS_DLL *GEOSConvexHull(const GEOSGeometry* g); +extern const GEOSGeometry GEOS_DLL *GEOSGetInteriorRingN( + const GEOSGeometry* g, + int n); /** -* Returns the minimum rotated rectangular POLYGON which encloses -* the input geometry. The rectangle has width equal to the -* minimum diameter, and a longer length. If the convex hill of -* the input is degenerate (a line or point) a linestring or point -* is returned. The minimum rotated rectangle can be used as an -* extremely generalized representation for the given geometry. -* \param g The input geometry -* \return A newly allocated geometry of the rotated envelope. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). +* Get the external ring of a Polygon. +* \note Returned object is a pointer to internal storage: +* it must NOT be destroyed directly. +* \param g Input Polygon geometry +* \return LinearRing geometry. Owned by parent geometry, do not free. NULL on exception. */ -extern GEOSGeometry GEOS_DLL *GEOSMinimumRotatedRectangle(const GEOSGeometry* g); +extern const GEOSGeometry GEOS_DLL *GEOSGetExteriorRing( + const GEOSGeometry* g); /** -* Constructs the "maximum inscribed circle" (MIC) for a polygonal geometry, -* up to a specified tolerance. -* The MIC is determined by a point in the interior of the area -* which has the farthest distance from the area boundary, along with a boundary point at that distance. -* In the context of geography the center of the MIC is known as the -* "pole of inaccessibility". A cartographic use case is to determine a suitable point -* to place a map label within a polygon. -* The radius length of the MIC is a measure of how "narrow" a polygon is. It is the -* distance at which the negative buffer becomes empty. -* The class supports polygons with holes and multipolygons. -* The implementation uses a successive-approximation technique over a grid of square cells covering the area geometry. -* The grid is refined using a branch-and-bound algorithm. Point containment and distance are computed in a performant -* way by using spatial indexes. -* Returns a two-point linestring, with one point at the center of the inscribed circle and the other -* on the boundary of the inscribed circle. +* Get the total number of points in a geometry, +* of any type. * \param g Input geometry -* \param tolerance Stop the algorithm when the search area is smaller than this tolerance -* \return A newly allocated geometry of the MIC. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::algorithm::construct::MaximumInscribedCircle +* \return Number of points in the geometry. -1 on exception. */ -extern GEOSGeometry GEOS_DLL *GEOSMaximumInscribedCircle( - const GEOSGeometry* g, - double tolerance); +extern int GEOS_DLL GEOSGetNumCoordinates( + const GEOSGeometry* g); /** -* Constructs the "largest empty circle" (LEC) for a set of obstacle geometries, up to a -* specified tolerance. The obstacles are point and line geometries. -* The LEC is the largest circle which has its center in the convex hull of the -* obstacles (the boundary), and whose interior does not intersect with any obstacle. -* The LEC center is the point in the interior of the boundary which has the farthest distance from -* the obstacles (up to tolerance). The LEC is determined by the center point and a point lying on an -* obstacle indicating the circle radius. -* The implementation uses a successive-approximation technique over a grid of square cells covering the obstacles and boundary. -* The grid is refined using a branch-and-bound algorithm. Point containment and distance are computed in a performant -* way by using spatial indexes. -* Returns a two-point linestring, with one point at the center of the inscribed circle and the other -* on the boundary of the inscribed circle. -* \param obstacles The geometries that the LEC must fit within without covering -* \param boundary The area within which the LEC must reside -* \param tolerance Stop the algorithm when the search area is smaller than this tolerance -* \return A newly allocated geometry of the LEC. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::algorithm::construct::LargestEmptyCircle +* Return the coordinate sequence underlying the +* given geometry (Must be a LineString, LinearRing or Point). +* Do not directly free the coordinate sequence, it is owned by +* the parent geometry. +* \param g Input geometry +* \return Coordinate sequence or NULL on exception. */ -extern GEOSGeometry GEOS_DLL *GEOSLargestEmptyCircle( - const GEOSGeometry* obstacles, - const GEOSGeometry* boundary, - double tolerance); +extern const GEOSCoordSequence GEOS_DLL *GEOSGeom_getCoordSeq( + const GEOSGeometry* g); /** -* Returns a linestring geometry which represents the minimum diameter of the geometry. -* The minimum diameter is defined to be the width of the smallest band that -* contains the geometry, where a band is a strip of the plane defined -* by two parallel lines. This can be thought of as the smallest hole that the geometry -* can be moved through, with a single rotation. -* \param g The input geometry -* \return A newly allocated geometry of the LEC. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::algorithm::MinimumDiameter +* Return the planar dimensionality of the geometry. +* +* - 0 for point, multipoint +* - 1 for linestring, multilinestring +* - 2 for polygon, multipolygon +* +* \see geos::geom::Dimension::DimensionType +* \param g Input geometry +* \return The dimensionality */ -extern GEOSGeometry GEOS_DLL *GEOSMinimumWidth(const GEOSGeometry* g); +extern int GEOS_DLL GEOSGeom_getDimensions( + const GEOSGeometry* g); /** -* Computes the minimum clearance of a geometry. The minimum clearance is the smallest amount by which -* a vertex could be move to produce an invalid polygon, a non-simple linestring, or a multipoint with -* repeated points. If a geometry has a minimum clearance of 'eps', it can be said that: -* -* - No two distinct vertices in the geometry are separated by less than 'eps' -* - No vertex is closer than 'eps' to a line segment of which it is not an endpoint. +* Return the cartesian dimension of the geometry. * -* If the minimum clearance cannot be defined for a geometry (such as with a single point, or a multipoint -* whose points are identical, a value of Infinity will be calculated. +* - 2 for XY data +* - 3 for XYZ data * -* \param g the input geometry -* \param d a double to which the result can be stored -* \return 0 if no exception occurred. -* 2 if an exception occurred. -* \see geos::precision::MinimumClearance +* \param g Input geometry +* \return The dimension */ -extern int GEOS_DLL GEOSMinimumClearance(const GEOSGeometry* g, double* d); +extern int GEOS_DLL GEOSGeom_getCoordinateDimension( + const GEOSGeometry* g); /** -* Returns a LineString whose endpoints define the minimum clearance of a geometry. -* If the geometry has no minimum clearance, an empty LineString will be returned. -* -* \param g the input geometry -* \return a linestring geometry, or NULL if an exception occurred. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::precision::MinimumClearance +* Finds the minimum X value in the geometry. +* \param[in] g Input geometry +* \param[out] value Pointer to place result +* \return 0 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSMinimumClearanceLine(const GEOSGeometry* g); - +extern int GEOS_DLL GEOSGeom_getXMin(const GEOSGeometry* g, double* value); /** -* Optimized union algorithm for polygonal inputs that are correctly -* noded and do not overlap. It will generate an error (return NULL) -* for inputs that do not satisfy this constraint. -* \param g The input geometry -* \return A geometry that covers all the points of the input geometry. -* Caller is responsible for freeing with GEOSGeom_destroy(). +* Finds the minimum Y value in the geometry. +* \param[in] g Input geometry +* \param[out] value Pointer to place result +* \return 0 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSCoverageUnion(const GEOSGeometry *g); +extern int GEOS_DLL GEOSGeom_getYMin(const GEOSGeometry* g, double* value); /** -* Returns a point that is inside the boundary of a polygonal geometry. -* \param g The input geometry -* \return A point that is inside the input -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::algorithm::InteriorPointArea +* Finds the maximum X value in the geometry. +* \param[in] g Input geometry +* \param[out] value Pointer to place result +* \return 0 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSPointOnSurface(const GEOSGeometry* g); +extern int GEOS_DLL GEOSGeom_getXMax(const GEOSGeometry* g, double* value); /** -* Returns a point at the center of mass of the input. -* \param g The input geometry -* \return A point at the center of mass of the input -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::algorithm::Centroid +* Finds the maximum Y value in the geometry. +* \param[in] g Input geometry +* \param[out] value Pointer to place result +* \return 0 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSGetCentroid(const GEOSGeometry* g); +extern int GEOS_DLL GEOSGeom_getYMax(const GEOSGeometry* g, double* value); /** -* Returns a geometry which represents the "minimum bounding circle", -* the smallest circle that contains the input. -* \param[in] g The input geometry -* \param[out] radius Pointer will be filled with output radius. -* \param[out] center Pointer will be filled with output circle center. Caller must free. -* \return The circle geometry or NULL on exception -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::algorithm::MinimumBoundingCircle::getCircle -*/ -extern GEOSGeometry GEOS_DLL *GEOSMinimumBoundingCircle( - const GEOSGeometry* g, - double* radius, - GEOSGeometry** center); +* Finds the extent (minimum and maximum X and Y value) of the geometry. +* Raises an exception for empty geometry input. +* +* \param[in] g Input geometry +* \param[out] xmin Pointer to place result for minimum X value +* \param[out] ymin Pointer to place result for minimum Y value +* \param[out] xmax Pointer to place result for maximum X value +* \param[out] ymax Pointer to place result for maximum Y value +* \return 1 on success, 0 on exception +*/ +extern int GEOS_DLL GEOSGeom_getExtent( + const GEOSGeometry* g, + double* xmin, + double* ymin, + double* xmax, + double* ymax); /** -* For linear inputs, returns a new geometry in which no lines cross -* each other, and all touching occurs at end points. -* \param g The input geometry -* \return The noded geometry or NULL on exception -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::noding::GeometryNoder::node +* Return the N'th point of a LineString +* \param g Input geometry, must be a LineString +* \param n Index of desired point (zero based) +* \return A Point geometry. +* Caller must free with GEOSGeom_destroy() +* NULL on exception. */ -extern GEOSGeometry GEOS_DLL *GEOSNode(const GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL *GEOSGeomGetPointN(const GEOSGeometry *g, int n); /** -* Intersection optimized for a rectangular clipping polygon. -* Supposed to be faster than using GEOSIntersection(). Not -* guaranteed to return valid results. -* \param g The input geometry to be clipped -* \param xmin Left bound of clipping rectangle -* \param ymin Lower bound of clipping rectangle -* \param xmax Right bound of clipping rectangle -* \param ymax Upper bound of clipping rectangle -* \return The clipped geometry or NULL on exception -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::intersection::RectangleIntersection +* Return the first point of a LineString +* \param g Input geometry, must be a LineString +* \return A Point geometry. +* Caller must free with GEOSGeom_destroy() +* NULL on exception. */ -extern GEOSGeometry GEOS_DLL *GEOSClipByRect( - const GEOSGeometry* g, - double xmin, double ymin, - double xmax, double ymax); +extern GEOSGeometry GEOS_DLL *GEOSGeomGetStartPoint(const GEOSGeometry *g); /** -* Polygonizes a set of Geometries which contain linework that -* represents the edges of a planar graph. -* -* All types of Geometry are accepted as input; the constituent -* linework is extracted as the edges to be polygonized. -* -* The edges must be correctly noded; that is, they must only meet -* at their endpoints. Polygonization will accept incorrectly noded -* input but will not form polygons from non-noded edges, and reports -* them as errors. -* -* The Polygonizer reports the following kinds of errors: -* -* - Dangles - edges which have one or both ends which are -* not incident on another edge endpoint -* - Cut Edges - edges which are connected at both ends but -* which do not form part of a polygon -* - Invalid Ring Lines - edges which form rings which are invalid -* (e.g. the component lines contain a self-intersection) -* -* Errors are reported to output parameters "cuts", "dangles" and -* "invalid" (if not-null). Formed polygons are returned as a -* collection. NULL is returned on exception. All returned -* geometries must be destroyed by caller. -* -* The GEOSPolygonize_valid() variant allows extracting only polygons -* which form a valid polygonal result. The set of extracted polygons -* is guaranteed to be edge-disjoint. This is useful when it is known -* that the input lines form a valid polygonal geometry (which may -* include holes or nested polygons). -* -* \param geoms Array of linear geometries to polygons. Caller retains ownersihp of both array container and objects. -* \param ngeoms Size of the geoms array. -* \return The polygonal output geometry. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::polygonize::Polygonizer +* Return the last point of a LineString +* \param g Input geometry, must be a LineString +* \return A Point geometry. +* Caller must free with GEOSGeom_destroy() +* NULL on exception. */ -extern GEOSGeometry GEOS_DLL *GEOSPolygonize( - const GEOSGeometry * const geoms[], - unsigned int ngeoms); +extern GEOSGeometry GEOS_DLL *GEOSGeomGetEndPoint(const GEOSGeometry *g); + /** -* Same polygonizing behavior as GEOSPolygonize(), but only returning results -* that are valid. -* -* \param geoms Array of linear geometries to polygons. Caller retains ownersihp of both array container and objects. -* \param ngeoms Size of the geoms array. -* \return The polygonal output geometry. -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::polygonize::Polygonizer +* Tests whether the input geometry is empty. If the geometry or any +* component is non-empty, the geometry is non-empty. An empty geometry +* has no boundary or interior. +* \param g The geometry to test +* \return 1 on true, 0 on false, 2 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSPolygonize_valid( - const GEOSGeometry * const geoms[], - unsigned int ngeoms); +extern char GEOS_DLL GEOSisEmpty(const GEOSGeometry* g); /** -* Perform the polygonization as GEOSPolygonize() but return only the -* "cut edges", the linear features that are connected at both ends, -* do *not* participate in the final polygon. -* -* \param geoms Array of linear geometries to polygons. Caller retains ownersihp of both array container and objects. -* \param ngeoms Size of the geoms array. -* \return The "cut edges" -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::polygonize::Polygonizer -*/ -extern GEOSGeometry GEOS_DLL *GEOSPolygonizer_getCutEdges( - const GEOSGeometry * const geoms[], - unsigned int ngeoms); - -/** -* Perform the polygonization as GEOSPolygonize() and return the -* polygonal result as well as all extra ouputs. -* -* \param[in] input A single geometry with all the input lines to polygonize. -* \param[out] cuts Pointer to hold "cut edges", connected on both ends but not part of output. Caller must free. -* \param[out] dangles Pointer to hold "dangles", connected one end but not part of output. Caller must free. -* \param[out] invalid Pointer to hold invalid outputs, polygons formed but not valid. Caller must free. -* \return The polygonal valid output -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::polygonize::Polygonizer +* Tests whether the input geometry is a ring. Rings are +* linestrings, without self-intersections, +* with start and end point being identical. +* \param g The geometry to test +* \return 1 on true, 0 on false, 2 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSPolygonize_full( - const GEOSGeometry* input, - GEOSGeometry** cuts, - GEOSGeometry** dangles, - GEOSGeometry** invalid); +extern char GEOS_DLL GEOSisRing(const GEOSGeometry* g); /** -* Perform a polygonization using all the linework, assuming that -* rings contained within rings are empty holes, rather then -* extra polygons. -* \param g The input linework -* \return The polygonal output -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::polygonize::BuildArea +* Tests whether the input geometry has z coordinates. +* \param g The geometry to test +* \return 1 on true, 0 on false, 2 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSBuildArea(const GEOSGeometry* g); +extern char GEOS_DLL GEOSHasZ(const GEOSGeometry* g); /** -* Sews together a set of fully noded LineStrings -* removing any cardinality 2 nodes in the linework. -* \param g The input linework -* \return The merged linework -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::linemerge::LineMerger +* Tests whether the input geometry is closed. +* A closed geometry is a linestring or multilinestring +* with the start and end points being the same. +* \param g The geometry to test +* \return 1 on true, 0 on false, 2 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSLineMerge(const GEOSGeometry* g); +extern char GEOS_DLL GEOSisClosed(const GEOSGeometry *g); -/** -* For geometries with coordinate sequences, reverses the order -* of the sequences. Converts CCW rings to CW. Reverses direction -* of LineStrings. -* \param g The input geometry -* \return The reversed geometry -* Caller is responsible for freeing with GEOSGeom_destroy(). -*/ -extern GEOSGeometry GEOS_DLL *GEOSReverse(const GEOSGeometry* g); +///@} -/** -* Apply the -* [Douglas/Peucker algorithm](https://en.wikipedia.org/wiki/Ramer–Douglas–Peucker_algorithm) -* to the coordinate sequences of the input geometry. -* Removes "unnecessary" vertices, vertices -* that are co-linear within the tolerance distance. -* \param g The input geometry -* \param tolerance The tolerance to apply. Larger tolerance leads to simpler output. -* \return The simplified geometry -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::simplify::DouglasPeuckerSimplifier +/* ==================================================================================== */ +/** @name Geometry Mutators +* Functions to change geometry information or content. */ -extern GEOSGeometry GEOS_DLL *GEOSSimplify( - const GEOSGeometry* g, - double tolerance); +///@{ /** -* Apply the -* [Douglas/Peucker algorithm](https://en.wikipedia.org/wiki/Ramer–Douglas–Peucker_algorithm) -* to the coordinate sequences of the input geometry. -* Removes "unnecessary" vertices, vertices -* that are co-linear within the tolerance distance. -* Returns a valid output geometry, checking for collapses, ring-intersections, etc -* and attempting to avoid. More computationally expensive than GEOSSimplify() -* \param g The input geometry -* \param tolerance The tolerance to apply. Larger tolerance leads to simpler output. -* \return The simplified geometry -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::simplify::DouglasPeuckerSimplifier +* Set the "spatial reference id" (SRID) for this geometry. +* \param g Input geometry +* \param SRID SRID number or 0 for unknown SRID. */ -extern GEOSGeometry GEOS_DLL *GEOSTopologyPreserveSimplify( - const GEOSGeometry* g, - double tolerance); +extern void GEOS_DLL GEOSSetSRID(GEOSGeometry* g, int SRID); /** -* Return all distinct vertices of input geometry as a MultiPoint. -* Note that only 2 dimensions of the vertices are considered when -* testing for equality. -* \param g The input geometry -* \return The distinct points -* Caller is responsible for freeing with GEOSGeom_destroy(). +* Set the anonymous "user data" for this geometry. +* Don't forget to free the user data before freeing the geometry. +* \param g Input geometry +* \param userData Void pointer to user data */ -extern GEOSGeometry GEOS_DLL *GEOSGeom_extractUniquePoints( - const GEOSGeometry* g); +extern void GEOS_DLL GEOSGeom_setUserData(GEOSGeometry* g, void* userData); /** -* Find paths shared between the two given lineal geometries. -* -* Returns a GeometryCollection having two elements: -* -* - first element is a MultiLineString containing shared paths -* having the _same_ direction on both inputs -* - second element is a MultiLineString containing shared paths -* having the _opposite_ direction on the two inputs +* Organize the elements, rings, and coordinate order +* of geometries in a consistent way, +* so that geometries that represent the same +* object can be easily compared. +* Modifies the geometry in-place. +* +* Normalization ensures the following: +* - Lines are oriented to have smallest coordinate first (apart from duplicate endpoints) +* - Rings start with their smallest coordinate +* (using XY ordering) +* - Polygon shell rings are oriented CW, and holes CCW +* - Collection elements are sorted by their first coordinate * -* \param g1 An input geometry -* \param g2 An input geometry -* \return The shared paths -* Caller is responsible for freeing with GEOSGeom_destroy(). -* \see geos::operation::sharedpaths::SharedPathsOp +* Use before calling \ref GEOSEqualsExact to avoid false "not equal" results. +* \param g Input geometry +* \return 0 on success or -1 on exception */ -extern GEOSGeometry GEOS_DLL *GEOSSharedPaths( - const GEOSGeometry* g1, - const GEOSGeometry* g2); +extern int GEOS_DLL GEOSNormalize(GEOSGeometry* g); -/** -* Snap first geometry onto second within the given tolerance. -* \param input An input geometry -* \param snap_target A geometry to snap the input to -* \param tolerance Snapping tolerance -* \return The snapped verion of the input. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). -*/ -extern GEOSGeometry GEOS_DLL *GEOSSnap( - const GEOSGeometry* input, - const GEOSGeometry* snap_target, - double tolerance); +///@} -/** -* Return a Delaunay triangulation of the vertices of the given geometry. -* -* \param g the input geometry whose vertices will be used as "sites" -* \param tolerance optional snapping tolerance to use for improved robustness -* \param onlyEdges if non-zero will return a MultiLineString, otherwise it will -* return a GeometryCollection containing triangular Polygons. -* -* \return A newly allocated geometry. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). +/* ========== Validity checking ============================================================ */ +/** @name Validation +* Functions to check and create topological validity, simplicity +and geometric quality. */ -extern GEOSGeometry GEOS_DLL * GEOSDelaunayTriangulation( - const GEOSGeometry *g, - double tolerance, - int onlyEdges); +///@{ /** -* Return a constrained Delaunay triangulation of the vertices of the -* given polygon(s). -* For non-polygonal inputs, returns an empty geometry collection. -* -* \param g the input geometry whose rings will be used as input -* \return A newly allocated geometry. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). +* Tests whether the input geometry is "simple". Mostly relevant for +* linestrings. A "simple" linestring has no self-intersections. +* \param g The geometry to test +* \return 1 on true, 0 on false, 2 on exception */ -extern GEOSGeometry GEOS_DLL * GEOSConstrainedDelaunayTriangulation( - const GEOSGeometry *g); +extern char GEOS_DLL GEOSisSimple(const GEOSGeometry* g); /** -* Returns the Voronoi polygons of the vertices of the given geometry. -* -* \param g the input geometry whose vertices will be used as sites. -* \param tolerance snapping tolerance to use for improved robustness -* \param onlyEdges whether to return only edges of the voronoi cells -* \param env clipping envelope for the returned diagram, automatically -* determined if env is NULL. -* The diagram will be clipped to the larger -* of this envelope or an envelope surrounding the sites. +* Check the validity of the provided geometry. +* - All points are valid. +* - All non-zero-length linestrings are valid. +* - Polygon rings must be non-self-intersecting, and interior rings +* contained within exterior rings. +* - Multi-polygon components may not touch or overlap. * -* \return A newly allocated geometry. NULL on exception. -* Caller is responsible for freeing with GEOSGeom_destroy(). +* \param g The geometry to test +* \return 1 on true, 0 on false, 2 on exception +* \see geos::operation::valid::isValidOp */ -extern GEOSGeometry GEOS_DLL * GEOSVoronoiDiagram( - const GEOSGeometry *g, - const GEOSGeometry *env, - double tolerance, - int onlyEdges); +extern char GEOS_DLL GEOSisValid(const GEOSGeometry* g); /** -* Computes the coordinate where two line segments intersect, if any -* -* \param[in] ax0 x-coordinate of 1st point in 1st segment -* \param[in] ay0 y-coordinate of 1st point in 1st segment -* \param[in] ax1 x-coordinate of 2nd point in 1st segment -* \param[in] ay1 y-coordinate of 2nd point in 1st segment -* \param[in] bx0 x-coordinate of 1st point in 2nd segment -* \param[in] by0 y-coordinate of 1st point in 2nd segment -* \param[in] bx1 x-coordinate of 2nd point in 2nd segment -* \param[in] by1 y-coordinate of 2nd point in 2nd segment -* \param[out] cx x-coordinate of intersection point -* \param[out] cy y-coordinate of intersection point -* -* \return 0 on error, 1 on success, -1 if segments do not intersect +* Return the human readable reason a geometry is invalid, +* "Valid Geometry" string otherwise, or NULL on exception. +* \param g The geometry to test +* \return A string with the reason, NULL on exception. + Caller must GEOSFree() their result. */ -extern int GEOS_DLL GEOSSegmentIntersection( - double ax0, double ay0, - double ax1, double ay1, - double bx0, double by0, - double bx1, double by1, - double* cx, double* cy); - -/* ========= Binary Predicates ========= */ +extern char GEOS_DLL *GEOSisValidReason(const GEOSGeometry *g); /** -* True if no point of either geometry touchess or is within the other. -* \param g1 Input geometry -* \param g2 Input geometry -* \returns 1 on true, 0 on false, 2 on exception -* \see geos::geom::Geometry::disjoint +* In one step, calculate and return the validity, the +* human readable validity reason and a point at which validity +* rules are broken. +* Caller has the responsibility to destroy 'reason' with GEOSFree() +* and 'location' with GEOSGeom_destroy() +* \param g The geometry to test +* \param flags A value from the \ref GEOSValidFlags enum +* \param reason A pointer in which the reason string will be places +* \param location A pointer in which the location GEOSGeometry will be placed +* \return 1 when valid, 0 when invalid, 2 on exception */ -extern char GEOS_DLL GEOSDisjoint(const GEOSGeometry* g1, const GEOSGeometry* g2); +extern char GEOS_DLL GEOSisValidDetail( + const GEOSGeometry* g, + int flags, + char** reason, + GEOSGeometry** location); /** -* True if geometries share boundaries at one or more points, but do -* not have interior overlaps. -* \param g1 Input geometry -* \param g2 Input geometry -* \returns 1 on true, 0 on false, 2 on exception -* \see geos::geom::Geometry::touches +* Repair an invalid geometry, returning a valid output. +* \param g The geometry to repair +* \return The repaired geometry. Caller must free with GEOSGeom_destroy(). */ -extern char GEOS_DLL GEOSTouches(const GEOSGeometry* g1, const GEOSGeometry* g2); +extern GEOSGeometry GEOS_DLL *GEOSMakeValid( + const GEOSGeometry* g); /** -* True if geometries are not disjoint. -* \param g1 Input geometry -* \param g2 Input geometry -* \returns 1 on true, 0 on false, 2 on exception -* \see geos::geom::Geometry::intersects -*/ -extern char GEOS_DLL GEOSIntersects(const GEOSGeometry* g1, const GEOSGeometry* g2); - -/** -* True if geometries interiors interact but their boundares do not. -* Most useful for finding line crosses cases. -* \param g1 Input geometry -* \param g2 Input geometry -* \returns 1 on true, 0 on false, 2 on exception -* \see geos::geom::Geometry::crosses +* Repair an invalid geometry, returning a valid output, using the +* indicated GEOSMakeValidMethods algorithm and options. +* \param g is the geometry to test. +* \param makeValidParams is a GEOSMakeValidParams with the desired parameters set on it. +* \return A repaired geometry. Caller must free with GEOSGeom_destroy(). +* \see GEOSMakeValidParams_create +* \see GEOSMakeValidParams_destroy +* \see GEOSMakeValidParams_setMethod +* \see GEOSMakeValidParams_setKeepCollapsed */ -extern char GEOS_DLL GEOSCrosses(const GEOSGeometry* g1, const GEOSGeometry* g2); +extern GEOSGeometry GEOS_DLL *GEOSMakeValidWithParams( + const GEOSGeometry* g, + const GEOSMakeValidParams *makeValidParams); /** -* True if geometry g1 is completely within g2, and not -* touching the boundary of g2. -* \param g1 Input geometry -* \param g2 Input geometry -* \returns 1 on true, 0 on false, 2 on exception -* \see geos::geom::Geometry::within +* Create a GEOSMakeValidParams to hold the desired parameters +* to control the algorithm and behavior of the validation process. +* \return a parameter object +* \see GEOSMakeValidWithParams */ -extern char GEOS_DLL GEOSWithin(const GEOSGeometry* g1, const GEOSGeometry* g2); +extern GEOSMakeValidParams GEOS_DLL *GEOSMakeValidParams_create(void); /** -* True if geometry g2 is completely within g1. -* \param g1 Input geometry -* \param g2 Input geometry -* \returns 1 on true, 0 on false, 2 on exception -* \see geos::geom::Geometry::contains +* Destroy a GEOSMakeValidParams. +* \param parms the object to destroy +* \see GEOSMakeValidWithParams */ -extern char GEOS_DLL GEOSContains(const GEOSGeometry* g1, const GEOSGeometry* g2); +extern void GEOS_DLL GEOSMakeValidParams_destroy(GEOSMakeValidParams* parms); /** -* True if geometries share interiors but are neither -* within nor contained. -* \param g1 Input geometry -* \param g2 Input geometry -* \returns 1 on true, 0 on false, 2 on exception -* \see geos::geom::Geometry::overlaps +* Set the GEOSMakeValidMethods to use in making the geometry +* valid. +* \return 0 on exception, 1 on success. +* \see GEOSMakeValidWithParams */ -extern char GEOS_DLL GEOSOverlaps(const GEOSGeometry* g1, const GEOSGeometry* g2); +extern int GEOS_DLL GEOSMakeValidParams_setMethod( + GEOSMakeValidParams* p, + enum GEOSMakeValidMethods method); /** -* True if geometries cover the same space on the place. -* \param g1 Input geometry -* \param g2 Input geometry -* \returns 1 on true, 0 on false, 2 on exception -* \see geos::geom::Geometry::equals +* When this parameter is nn-zero, the GEOS_MAKE_VALID_STRUCTURE method will keep +* components that have collapsed into a lower dimensionality. +* For example, a ring collapsing to a line, or a line collapsing +* to a point. +* \return 0 on exception, 1 on success. +* \see GEOSMakeValidWithParams */ -extern char GEOS_DLL GEOSEquals(const GEOSGeometry* g1, const GEOSGeometry* g2); +extern int GEOS_DLL GEOSMakeValidParams_setKeepCollapsed( + GEOSMakeValidParams* p, + int keepCollapsed); /** -* True if geometry g1 is completely within g2, including possibly -* touching the boundary of g2. -* \param g1 Input geometry -* \param g2 Input geometry -* \returns 1 on true, 0 on false, 2 on exception -* \see geos::geom::Geometry::covers +* Computes the minimum clearance of a geometry. The minimum clearance is the smallest amount by which +* a vertex could be move to produce an invalid polygon, a non-simple linestring, or a multipoint with +* repeated points. If a geometry has a minimum clearance of 'eps', it can be said that: +* +* - No two distinct vertices in the geometry are separated by less than 'eps' +* - No vertex is closer than 'eps' to a line segment of which it is not an endpoint. +* +* If the minimum clearance cannot be defined for a geometry (such as with a single point, or a multipoint +* whose points are identical, a value of Infinity will be calculated. +* +* \param g the input geometry +* \param d a double to which the result can be stored +* \return 0 if no exception occurred. +* 2 if an exception occurred. +* \see geos::precision::MinimumClearance */ -extern char GEOS_DLL GEOSCovers(const GEOSGeometry* g1, const GEOSGeometry* g2); +extern int GEOS_DLL GEOSMinimumClearance(const GEOSGeometry* g, double* d); /** -* True if geometry g2 is completely within g1, including possibly -* touching the boundary of g1. -* \param g1 Input geometry -* \param g2 Input geometry -* \returns 1 on true, 0 on false, 2 on exception -* \see geos::geom::Geometry::coveredby +* Returns a LineString whose endpoints define the minimum clearance of a geometry. +* If the geometry has no minimum clearance, an empty LineString will be returned. +* +* \param g the input geometry +* \return a linestring geometry, or NULL if an exception occurred. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::precision::MinimumClearance */ -extern char GEOS_DLL GEOSCoveredBy(const GEOSGeometry* g1, const GEOSGeometry* g2); +extern GEOSGeometry GEOS_DLL *GEOSMinimumClearanceLine(const GEOSGeometry* g); /** -* Determine pointwise equivalence of two geometries, by checking if each vertex of g2 is -* within tolerance of the corresponding vertex in g1. -* Unlike GEOSEquals(), geometries that are topologically equivalent but have different -* representations (e.g., LINESTRING (0 0, 1 1) and MULTILINESTRING ((0 0, 1 1)) ) are not -* considered equivalent by GEOSEqualsExact(). -* \param g1 Input geometry -* \param g2 Input geometry -* \param tolerance Tolerance to determine vertex equality -* \returns 1 on true, 0 on false, 2 on exception +* Works from start of each coordinate sequence in the +* geometry, retaining points that are further away from the +* previous retained point than the tolerance value. +* +* Removing repeated points with a non-zero tolerance may +* result in an invalid geometry being returned. Be sure +* to check and repair validity. +* +* \return A geometry with all points within the tolerance of each other removed. +* \param g The geometry to filter +* \param tolerance Remove all points within this distance of each other. Use 0.0 to remove only exactly repeated points. +* +* \see GEOSMakeValidWithParams */ -extern char GEOS_DLL GEOSEqualsExact( - const GEOSGeometry* g1, - const GEOSGeometry* g2, +extern GEOSGeometry GEOS_DLL *GEOSRemoveRepeatedPoints( + const GEOSGeometry* g, double tolerance); -/* ========== Prepared Geometry Binary predicates ========== */ +///@} -/** -* A \ref GEOSPreparedGeometry is a wrapper around \ref GEOSGeometry -* that adds in a spatial index on the edges of the geometry. This -* internal index allows spatial predicates to evaluate much faster, -* so for cases in which the same base geometry will be used over and -* over again for predicate tests, wrapping it in a \ref GEOSPreparedGeometry -* is a best practice. -* -* The caller retains ownership of the base geometry, and after -* processing is complete, must destroy **both** the prepared and the -* base geometry. (Ideally, destroy the prepared geometry first, as -* it has an internal reference to the base geometry.) -* -* \param g The base geometry to wrap in a prepared geometry. -* \return A prepared geometry. Caller is responsible for freeing with -* GEOSPreparedGeom_destroy() +/* ========= Metric functions ================================================== */ +/** @name Geometry Metrics +* Functions to compute geometry metrics. */ -extern const GEOSPreparedGeometry GEOS_DLL *GEOSPrepare(const GEOSGeometry* g); +///@{ /** -* Free the memory associated with a \ref GEOSPreparedGeometry. -* Caller must separately free the base \ref GEOSGeometry used -* to create the prepared geometry. -* \param g Prepared geometry to destroy. +* Calculate the area of a geometry. +* \param[in] g Input geometry +* \param[out] area Pointer to be filled in with area result +* \return 1 on success, 0 on exception. */ -extern void GEOS_DLL GEOSPreparedGeom_destroy(const GEOSPreparedGeometry* g); +extern int GEOS_DLL GEOSArea( + const GEOSGeometry* g, + double *area); /** -* Using a \ref GEOSPreparedGeometry do a high performance -* calculation of whether the provided geometry is contained. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \returns 1 on true, 0 on false, 2 on exception -* \see GEOSContains +* Calculate the length of a geometry. +* \param[in] g Input geometry +* \param[out] length Pointer to be filled in with length result +* \return 1 on success, 0 on exception. */ -extern char GEOS_DLL GEOSPreparedContains( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2); +extern int GEOS_DLL GEOSLength( + const GEOSGeometry* g, + double *length); /** -* Using a \ref GEOSPreparedGeometry do a high performance -* calculation of whether the provided geometry is contained properly. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \returns 1 on true, 0 on false, 2 on exception -* \see GEOSContainsProperly +* Calculate the length of a LineString. +* Only works for LineString inputs, returns exception otherwise. +* +* \param[in] g Input geometry +* \param[out] length Pointer to be filled in with length result +* \return 1 on success, 0 on exception. */ -extern char GEOS_DLL GEOSPreparedContainsProperly( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2); +extern int GEOS_DLL GEOSGeomGetLength( + const GEOSGeometry *g, + double *length); -/** -* Using a \ref GEOSPreparedGeometry do a high performance -* calculation of whether the provided geometry is covered by. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \returns 1 on true, 0 on false, 2 on exception -* \see GEOSCoveredBy +///@} + +/* ========== Distance functions ================================================ */ +/** @name Distance +* Functions to compute distances between geometries +* using various distance metrics. */ -extern char GEOS_DLL GEOSPreparedCoveredBy( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2); +///@{ /** -* Using a \ref GEOSPreparedGeometry do a high performance -* calculation of whether the provided geometry covers. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \returns 1 on true, 0 on false, 2 on exception -* \see GEOSCovers +* Calculate the distance between two geometries. +* \param[in] g1 Input geometry +* \param[in] g2 Input geometry +* \param[out] dist Pointer to be filled in with distance result +* \return 1 on success, 0 on exception. */ -extern char GEOS_DLL GEOSPreparedCovers( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2); +extern int GEOS_DLL GEOSDistance( + const GEOSGeometry* g1, + const GEOSGeometry* g2, + double *dist); /** -* Using a \ref GEOSPreparedGeometry do a high performance -* calculation of whether the provided geometry crosses. -* \param pg1 The prepared geometry -* \param g2 The geometry to test +* Test whether the distance between two geometries is +* within the given dist. +* \param g1 Input geometry +* \param g2 Input geometry +* \param dist The max distance * \returns 1 on true, 0 on false, 2 on exception -* \see GEOSCrosses */ -extern char GEOS_DLL GEOSPreparedCrosses( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2); +extern char GEOS_DLL GEOSDistanceWithin( + const GEOSGeometry* g1, + const GEOSGeometry* g2, + double dist); /** -* Using a \ref GEOSPreparedDisjoint do a high performance -* calculation of whether the provided geometry is disjoint. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \returns 1 on true, 0 on false, 2 on exception -* \see GEOSDisjoin +* Calculate the distance between two geometries, using the +* indexed facet distance, which first indexes the geometries +* internally, then calculates the distance. Useful when one +* or both geometries is very large. +* \param[in] g1 Input geometry +* \param[in] g2 Input geometry +* \param[out] dist Pointer to be filled in with distance result +* \return 1 on success, 0 on exception. +* \see geos::operation::distance:;IndexedFacetDistance */ -extern char GEOS_DLL GEOSPreparedDisjoint( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2); +extern int GEOS_DLL GEOSDistanceIndexed( + const GEOSGeometry* g1, + const GEOSGeometry* g2, + double *dist); /** -* Using a \ref GEOSPreparedDisjoint do a high performance -* calculation of whether the provided geometry is disjoint. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \returns 1 on true, 0 on false, 2 on exception -* \see GEOSDisjoin +* The closest points of the two geometries. +* The first point comes from g1 geometry and the second point comes from g2. +* +* \param[in] g1 Input geometry +* \param[in] g2 Input geometry +* \return A coordinate sequence with the two points, or NULL on exception. +* Caller must free with GEOSCoordSeq_destroy(). +*/ +extern GEOSCoordSequence GEOS_DLL *GEOSNearestPoints( + const GEOSGeometry* g1, + const GEOSGeometry* g2); + +/** +* Calculate the Hausdorff distance between two geometries. +* [Hausdorff distance](https://en.wikipedia.org/wiki/Hausdorff_distance) +* is the largest distance between two geometries. +* \param[in] g1 Input geometry +* \param[in] g2 Input geometry +* \param[out] dist Pointer to be filled in with distance result +* \return 1 on success, 0 on exception. +* \see geos::algorithm::distance::DiscreteHausdorffDistance +*/ +extern int GEOS_DLL GEOSHausdorffDistance( + const GEOSGeometry *g1, + const GEOSGeometry *g2, + double *dist); + +/** +* Calculate a more precise Hausdorff distance between two geometries, +* by densifying the inputs before computation. +* [Hausdorff distance](https://en.wikipedia.org/wiki/Hausdorff_distance) +* is the largest distance between two geometries. +* \param[in] g1 Input geometry +* \param[in] g2 Input geometry +* \param[in] densifyFrac The largest % of the overall line length that +* any given two-point segment should be +* \param[out] dist Pointer to be filled in with distance result +* \return 1 on success, 0 on exception. +* \see geos::algorithm::distance::DiscreteHausdorffDistance +*/ +extern int GEOS_DLL GEOSHausdorffDistanceDensify( + const GEOSGeometry *g1, + const GEOSGeometry *g2, + double densifyFrac, + double *dist); + +/** +* Calculate the +* [Frechet distance](https://en.wikipedia.org/wiki/Fr%C3%A9chet_distance) +* between two geometries, +* a similarity measure for linear features. +* \param[in] g1 Input geometry +* \param[in] g2 Input geometry +* \param[out] dist Pointer to be filled in with distance result +* \return 1 on success, 0 on exception. +* \see geos::algorithm::distance::DiscreteFrechetDistance +*/ +extern int GEOS_DLL GEOSFrechetDistance( + const GEOSGeometry *g1, + const GEOSGeometry *g2, + double *dist); + +/** +* Calculate the +* [Frechet distance](https://en.wikipedia.org/wiki/Fr%C3%A9chet_distance) +* between two geometries, +* a similarity measure for linear features. For more precision, first +* densify the inputs. +* \param[in] g1 Input geometry +* \param[in] g2 Input geometry +* \param[in] densifyFrac The largest % of the overall line length that +* any given two-point segment should be +* \param[out] dist Pointer to be filled in with distance result +* \return 1 on success, 0 on exception. +* \see geos::algorithm::distance::DiscreteFrechetDistance +*/ +extern int GEOS_DLL GEOSFrechetDistanceDensify( + const GEOSGeometry *g1, + const GEOSGeometry *g2, + double densifyFrac, + double *dist); + +///@} + +/* ========== Linear referencing functions */ +/** @name Linear Referencing +* Functions to operate on LineStrings using locations +* specified by distance along the line. +*/ +///@{ + +/** +* Distance of point projected onto line from the start of the line. +* \param line linear target of projection +* \param point point to be projected onto 'g' +* \return distance along line that point projects to, -1 on exception +* +* \note Line parameter must be a LineString. +*/ +extern double GEOS_DLL GEOSProject(const GEOSGeometry* line, + const GEOSGeometry* point); + +/** +* Measuring from start of line, return point that is distance +* the start. Line parameter must be a LineString. +* The returned point is not guaranteed to intersect the line due to limitations +* of floating point calculations. +* \param line linear target of projection +* \param d distance from start of line to created point +* \return The point \ref GEOSGeometry that is distance from the start of line. +* Caller takes ownership of returned geometry. +*/ +extern GEOSGeometry GEOS_DLL *GEOSInterpolate(const GEOSGeometry* line, + double d); + +/** +* Project point to line and calculate the **proportion** of +* the line the point is from the start. For example, a point that +* projects to the middle of a line would be return 0.5. +* \param line linear target of projection +* \param point the point to project +* \return The proportion of the overall line length that the projected +* point falls at. +*/ +extern double GEOS_DLL GEOSProjectNormalized(const GEOSGeometry* line, + const GEOSGeometry* point); + +/** +* Measuring from start of line, return point that is a proportion +* the start. Line parameter must be a LineString. +* \param line linear target of projection +* \param proportion The proportion from the start of line to created point +* \return The point \ref GEOSGeometry that is distance from the start of line. +* Caller takes ownership of returned geometry. +*/ +extern GEOSGeometry GEOS_DLL *GEOSInterpolateNormalized( + const GEOSGeometry *line, + double proportion); + +///@} + +/* ========== Overlay functions ========== */ +/** @name Overlay +* Functions for computing boolean set-theoretic +* values from overlay pairs of geometries. +*/ +///@{ + +/** +* Returns the intersection of two geometries: the set of points +* that fall within **both** geometries. +* \param g1 one of the geometries +* \param g2 the other geometry +* \return A newly allocated geometry of the intersection. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSIntersection(const GEOSGeometry* g1, const GEOSGeometry* g2); + +/** +* Returns the intersection of two geometries: the set of points +* that fall within **both** geometries. All the vertices of the output +* geometry must fall on the grid defined by the gridSize, and the +* output will be a valid geometry. +* \param g1 one of the geometries +* \param g2 the other geometry +* \param gridSize the cell size of the precision grid +* \return A newly allocated geometry of the intersection. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSIntersectionPrec(const GEOSGeometry* g1, const GEOSGeometry* g2, double gridSize); + +/** +* Returns the difference of two geometries A and B: the set of points +* that fall within A but **not** within B. +* \param ga the base geometry +* \param gb the geometry to subtract from it +* \return A newly allocated geometry of the difference. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSDifference( + const GEOSGeometry* ga, + const GEOSGeometry* gb); + +/** +* Returns the difference of two geometries A and B: the set of points +* that fall within A but **not** within B. +* All the vertices of the output +* geometry must fall on the grid defined by the gridSize, and the +* output will be a valid geometry. +* \param ga one of the geometries +* \param gb the other geometry +* \param gridSize the cell size of the precision grid +* \return A newly allocated geometry of the difference. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSDifferencePrec( + const GEOSGeometry* ga, + const GEOSGeometry* gb, + double gridSize); + +/** +* Returns the symmetric difference of two geometries A and B: the set of points +* that fall in A but **not** within B and the set of points that fall in B but +* **not** in A. +* \param ga geometry A +* \param gb geometry B +* \return A newly allocated geometry of the symmetric difference. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSSymDifference( + const GEOSGeometry* ga, + const GEOSGeometry* gb); + +/** +* Returns the symmetric difference of two geometries A and B: the set of points +* that fall in A but **not** within B and the set of points that fall in B but +* **not** in A. +* All the vertices of the output +* geometry must fall on the grid defined by the gridSize, and the +* output will be a valid geometry. +* \param ga one of the geometries +* \param gb the other geometry +* \param gridSize the cell size of the precision grid +* \return A newly allocated geometry of the symmetric difference. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSSymDifferencePrec( + const GEOSGeometry* ga, + const GEOSGeometry* gb, + double gridSize); + +/** +* Returns the union of two geometries A and B: the set of points +* that fall in A **or** within B. +* \param ga geometry A +* \param gb geometry B +* \return A newly allocated geometry of the union. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSUnion( + const GEOSGeometry* ga, + const GEOSGeometry* gb); + +/** +* Returns the union of two geometries A and B: the set of points +* that fall in A **or** within B. +* All the vertices of the output +* geometry must fall on the grid defined by the gridSize, and the +* output will be a valid geometry. +* \param ga one of the geometries +* \param gb the other geometry +* \param gridSize the cell size of the precision grid +* \return A newly allocated geometry of the union. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSUnionPrec( + const GEOSGeometry* ga, + const GEOSGeometry* gb, + double gridSize); + +/** +* Returns the union of all components of a single geometry. Usually +* used to convert a collection into the smallest set of polygons +* that cover the same area. +* \param g The input geometry +* \return A newly allocated geometry of the union. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSUnaryUnion(const GEOSGeometry* g); + +/** +* Returns the union of all components of a single geometry. Usually +* used to convert a collection into the smallest set of polygons +* that cover the same area. +* All the vertices of the output +* geometry must fall on the grid defined by the gridSize, and the +* output will be a valid geometry. +* \param g input geometry +* \param gridSize the cell size of the precision grid +* \return A newly allocated geometry of the union. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSUnaryUnionPrec( + const GEOSGeometry* g, + double gridSize); + +/** +* Optimized union algorithm for polygonal inputs that are correctly +* noded and do not overlap. It will generate an error (return NULL) +* for inputs that do not satisfy this constraint. +* \param g The input geometry +* \return A geometry that covers all the points of the input geometry. +* Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern char GEOS_DLL GEOSPreparedIntersects( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2); +extern GEOSGeometry GEOS_DLL *GEOSCoverageUnion(const GEOSGeometry *g); /** -* Using a \ref GEOSPreparedDisjoint do a high performance -* calculation of whether the provided geometry overlaps. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \returns 1 on true, 0 on false, 2 on exception -* \see GEOSOverlaps +* Intersection optimized for a rectangular clipping polygon. +* Supposed to be faster than using GEOSIntersection(). Not +* guaranteed to return valid results. +* \param g The input geometry to be clipped +* \param xmin Left bound of clipping rectangle +* \param ymin Lower bound of clipping rectangle +* \param xmax Right bound of clipping rectangle +* \param ymax Upper bound of clipping rectangle +* \return The clipped geometry or NULL on exception +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::intersection::RectangleIntersection */ -extern char GEOS_DLL GEOSPreparedOverlaps( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2); +extern GEOSGeometry GEOS_DLL *GEOSClipByRect( + const GEOSGeometry* g, + double xmin, double ymin, + double xmax, double ymax); /** -* Using a \ref GEOSPreparedDisjoint do a high performance -* calculation of whether the provided geometry touches. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \returns 1 on true, 0 on false, 2 on exception -* \see GEOSTouches +* Find paths shared between the two given lineal geometries. +* +* Returns a GeometryCollection having two elements: +* +* - first element is a MultiLineString containing shared paths +* having the _same_ direction on both inputs +* - second element is a MultiLineString containing shared paths +* having the _opposite_ direction on the two inputs +* +* \param g1 An input geometry +* \param g2 An input geometry +* \return The shared paths +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::sharedpaths::SharedPathsOp */ -extern char GEOS_DLL GEOSPreparedTouches( - const GEOSPreparedGeometry* pg1, +extern GEOSGeometry GEOS_DLL *GEOSSharedPaths( + const GEOSGeometry* g1, const GEOSGeometry* g2); +///@} + +/* ========== Buffer related functions ========== */ +/** @name Buffer and Offset Curves +* Functions for creating distance-based buffers and offset curves. +*/ +///@{ + /** -* Using a \ref GEOSPreparedDisjoint do a high performance -* calculation of whether the provided geometry is within. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \returns 1 on true, 0 on false, 2 on exception -* \see GEOSWithin +* Buffer a geometry. +* \param g The input geometry to be buffered. +* \param width The distance by which to expand the geometry (or contract) +* if the value is negative. +* \param quadsegs The number of segments per quadrant to generate. More +* segments provides a more "precise" buffer at the expense of size. +* \return A \ref GEOSGeometry of the buffered result. +* NULL on exception. Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern char GEOS_DLL GEOSPreparedWithin( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2); +extern GEOSGeometry GEOS_DLL *GEOSBuffer(const GEOSGeometry* g, + double width, int quadsegs); /** -* Using a \ref GEOSPreparedDisjoint do a high performance -* calculation to find the nearest points between the -* prepared and provided geometry. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \returns A coordinate sequence containing the nearest points, or NULL on exception. -* The first point in the sequence is from the prepared geometry, and the -* seconds is from the other argument. +* Create a default GEOSBufferParams object for controlling the shape +* of buffered generated by \ref GEOSBuffer. +* \return A newly allocated GEOSBufferParams. NULL on exception. +* Caller is responsible for freeing with GEOSBufferParams_destroy(). */ -extern GEOSCoordSequence GEOS_DLL *GEOSPreparedNearestPoints( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2); +extern GEOSBufferParams GEOS_DLL *GEOSBufferParams_create(void); /** -* Using a \ref GEOSPreparedDistance do a high performance -* calculation to find the distance points between the -* prepared and provided geometry. Useful for situations where -* one geometry is large and static and needs to be tested -* against a large number of other geometries. -* \param[in] pg1 The prepared geometry -* \param[in] g2 The geometry to test -* \param[out] dist Pointer to store the result in -* \return 1 on success +* Destroy a GEOSBufferParams and free all associated memory. +* \param parms The object to destroy. */ -extern int GEOS_DLL GEOSPreparedDistance( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2, - double *dist); +extern void GEOS_DLL GEOSBufferParams_destroy(GEOSBufferParams* parms); /** -* Using a \ref GEOSPreparedDistanceWithin do a high performance -* calculation to find whether the prepared and provided geometry -* are within the given max distance. -* Useful for situations where -* one geometry is large and static and needs to be tested -* against a large number of other geometries. -* \param pg1 The prepared geometry -* \param g2 The geometry to test -* \param dist The max distance -* \return 1 on success +* Set the end cap type of a GEOSBufferParams to the desired style, +* which must be one enumerated in \ref GEOSBufCapStyles. +* \return 0 on exception, 1 on success. */ -extern char GEOS_DLL GEOSPreparedDistanceWithin( - const GEOSPreparedGeometry* pg1, - const GEOSGeometry* g2, - double dist); +extern int GEOS_DLL GEOSBufferParams_setEndCapStyle( + GEOSBufferParams* p, + int style); -/* ========== STRtree functions ========== */ +/** +* Set the join type of a GEOSBufferParams to the desired style, +* which must be one enumerated in \ref GEOSBufJoinStyles. +* \return 0 on exception, 1 on success. +*/ +extern int GEOS_DLL GEOSBufferParams_setJoinStyle( + GEOSBufferParams* p, + int joinStyle); /** -* Create a new \ref GEOSSTRtree using the Sort-Tile-Recursive algorithm -* ([STRtree](https://en.wikipedia.org/wiki/R-tree)) -* for two-dimensional spatial data. -* -* \param nodeCapacity The maximum number of child nodes that a node may have. -* The minimum recommended capacity value is 4. -* If unsure, use a default node capacity of 10. -* \return a pointer to the created tree +* Set the mitre limit of a GEOSBufferParams to the desired size. +* For acute angles, a mitre join can extend very very far from +* the input geometry, which is probably not desired. The +* mitre limit places an upper bound on that. +* \param p The GEOSBufferParams to operate on +* \param mitreLimit The limit to set +* \return 0 on exception, 1 on success. */ -extern GEOSSTRtree GEOS_DLL *GEOSSTRtree_create(size_t nodeCapacity); +extern int GEOS_DLL GEOSBufferParams_setMitreLimit( + GEOSBufferParams* p, + double mitreLimit); /** -* Insert an item into an \ref GEOSSTRtree -* -* \param tree the \ref GEOSSTRtree in which the item should be inserted -* \param g a GEOSGeometry whose envelope corresponds to the extent of 'item'. As of GEOS 3.9, this envelope will be - * copied into the tree and the caller may destroy `g` while the tree is still in use. Before GEOS 3.9, `g` - * must be retained until the tree is destroyed. -* \param item the item to insert into the tree -* \note The tree does **not** take ownership of the geometry or the item. +* Set the number of segments to use to stroke each quadrant +* of circular arcs generated by the buffering process. More +* segments means a smoother output, but with larger size. +* \param p The GEOSBufferParams to operate on +* \param quadSegs Number of segments per quadrant +* \return 0 on exception, 1 on success. */ -extern void GEOS_DLL GEOSSTRtree_insert( - GEOSSTRtree *tree, - const GEOSGeometry *g, - void *item); +extern int GEOS_DLL GEOSBufferParams_setQuadrantSegments( + GEOSBufferParams* p, + int quadSegs); /** -* Query an \ref GEOSSTRtree for items intersecting a specified envelope -* -* \param tree the \ref GEOSSTRtree to search -* \param g a GEOSGeomety from which a query envelope will be extracted -* \param callback a function to be executed for each item in the tree whose envelope intersects -* the envelope of 'g'. The callback function should take two parameters: a void -* pointer representing the located item in the tree, and a void userdata pointer. -* \param userdata an optional pointer to pe passed to 'callback' as an argument +* Sets whether the computed buffer should be single-sided. +* A single-sided buffer is constructed on only one side of each input line. +* \see geos::operation::buffer::BufferParameters::setSingleSided +* \param p The GEOSBufferParams to operate on +* \param singleSided Set to 1 for single-sided output 0 otherwise +* \return 0 on exception, 1 on success. */ -extern void GEOS_DLL GEOSSTRtree_query( - GEOSSTRtree *tree, - const GEOSGeometry *g, - GEOSQueryCallback callback, - void *userdata); +extern int GEOS_DLL GEOSBufferParams_setSingleSided( + GEOSBufferParams* p, + int singleSided); /** -* Returns the nearest item in the \ref GEOSSTRtree to the supplied geometry. -* All items in the tree MUST be of type \ref GEOSGeometry. -* If this is not the case, use GEOSSTRtree_nearest_generic() instead. +* Generates a buffer using the special parameters in the GEOSBufferParams +* \param g The geometry to buffer +* \param p The parameters to apply to the buffer process +* \param width The buffer distance +* \return The buffered geometry, or NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +*/ +extern GEOSGeometry GEOS_DLL *GEOSBufferWithParams( + const GEOSGeometry* g, + const GEOSBufferParams* p, + double width); + +/** +* Generate a buffer using the provided style parameters. +* \param g The geometry to buffer +* \param width Width of the buffer +* \param quadsegs Number of segments per quadrant +* \param endCapStyle See \ref GEOSBufCapStyles +* \param joinStyle See \ref GEOSBufJoinStyles +* \param mitreLimit See GEOSBufferParams_setMitreLimit +* \return The buffered geometry, or NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +*/ +extern GEOSGeometry GEOS_DLL *GEOSBufferWithStyle( + const GEOSGeometry* g, + double width, + int quadsegs, + int endCapStyle, + int joinStyle, + double mitreLimit); + +/** +* Generates offset curve line(s) for a geometry. +* Handles all geometry types as input. * -* \param tree the \ref GEOSSTRtree to search -* \param geom the geometry with which the tree should be queried -* \return a const pointer to the nearest \ref GEOSGeometry in the tree to 'geom', or NULL in -* case of exception +* - For a LineString the result is a LineString. +* - For a Point the result is an empty LineString. +* - For a Polygon the result is the boundary lines(s) of the polygon buffered to the offset distance +* (which may be a MultiLineString). +* - For a collection the result is a collection of the element offset curves. +* \param g The linear geometry to offset from +* \param width Distance to offset from the curve. +* Negative for a right-side offset. +* Positive for a left-side offset. +* \param quadsegs Number of segments per quadrant +* \param joinStyle See \ref GEOSBufJoinStyles +* \param mitreLimit See GEOSBufferParams_setMitreLimit +* \return The offset geometry. Returns NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::buffer::BufferBuilder::bufferLineSingleSided +*/ +extern GEOSGeometry GEOS_DLL *GEOSOffsetCurve(const GEOSGeometry* g, + double width, int quadsegs, int joinStyle, double mitreLimit); + +///@} + +/* ========== Construction Operations ========== */ +/** @name Geometric Constructions +* Functions for computing geometric constructions. */ -extern const GEOSGeometry GEOS_DLL *GEOSSTRtree_nearest( - GEOSSTRtree *tree, - const GEOSGeometry* geom); +///@{ /** -* Returns the nearest item in the \ref GEOSSTRtree to the supplied item -* -* \param tree the STRtree to search -* \param item the item with which the tree should be queried -* \param itemEnvelope a GEOSGeometry having the bounding box of 'item' -* \param distancefn a function that can compute the distance between two items -* in the STRtree. The function should return zero in case of error, -* and should store the computed distance to the location pointed to by -* the 'distance' argument. The computed distance between two items -* must not exceed the Cartesian distance between their envelopes. -* \param userdata optional pointer to arbitrary data; will be passed to distancefn -* each time it is called. -* \return a const pointer to the nearest item in the tree to 'item', or NULL in -* case of exception +* Returns minimum rectangular polygon that contains the geometry. +* \param g The geometry to calculate an envelope for +* \return A newly allocated polygonal envelope. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern const void GEOS_DLL *GEOSSTRtree_nearest_generic( - GEOSSTRtree *tree, - const void* item, - const GEOSGeometry* itemEnvelope, - GEOSDistanceCallback distancefn, - void* userdata); +extern GEOSGeometry GEOS_DLL *GEOSEnvelope(const GEOSGeometry* g); /** -* Iterate over all items in the \ref GEOSSTRtree. +* Returns the "boundary" of a geometry, as defined by the DE9IM: * -* \param tree the STRtree over which to iterate -* \param callback a function to be executed for each item in the tree. -* \param userdata payload to pass the callback function. +* - the boundary of a polygon is the linear rings dividing the exterior +* from the interior +* - the boundary of a linestring is the end points +* - the boundary of a point is the point +* +* \param g The input geometry +* \return A newly allocated geometry of the boundary. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern void GEOS_DLL GEOSSTRtree_iterate( - GEOSSTRtree *tree, - GEOSQueryCallback callback, - void *userdata); +extern GEOSGeometry GEOS_DLL *GEOSBoundary(const GEOSGeometry* g); /** - * Removes an item from the \ref GEOSSTRtree - * - * \param tree the STRtree from which to remove an item - * \param g the envelope of the item to remove - * \param item the item to remove - * \return 0 if the item was not removed; - * 1 if the item was removed; - * 2 if an exception occurred - */ -extern char GEOS_DLL GEOSSTRtree_remove( - GEOSSTRtree *tree, - const GEOSGeometry *g, - void *item); +* Returns convex hull of a geometry. The smallest convex Geometry +* that contains all the points in the input Geometry +* \param g The input geometry +* \return A newly allocated geometry of the convex hull. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::overlayng::OverlayNG +*/ +extern GEOSGeometry GEOS_DLL *GEOSConvexHull(const GEOSGeometry* g); /** -* Frees all the memory associated with a \ref GEOSSTRtree. -* Only the tree is freed. The geometries and items fed into -* GEOSSTRtree_insert() are not owned by the tree, and are -* still left to the caller to manage. +* Returns "concave hull" of a geometry. The concave hull is fully +* contained within the convex hull and also contains all the +* points of the input, but in a smaller area. +* The area ratio is the ratio +* of the area of the convex hull and the concave hull. Frequently +* used to convert a multi-point into a polygonal area. +* that contains all the points in the input Geometry +* \param g The input geometry +* \param ratio The ratio value, between 0 and 1. +* \param allowHoles When non-zero, the polygonal output may contain holes. +* \return A newly allocated geometry of the concave hull. NULL on exception. +* The area ratio is the ratio of the concave hull area to the convex hull area. +* 1 produces the convex hull; 0 produces maximum concaveness. +* The Length Ratio is a fraction determining the length of the longest +* edge in the computed hull. 1 produces the convex hull; +* 0 produces a hull with maximum concaveness +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::algorithm::hull::ConcaveHull */ -extern void GEOS_DLL GEOSSTRtree_destroy(GEOSSTRtree *tree); - +extern GEOSGeometry GEOS_DLL *GEOSConcaveHull( + const GEOSGeometry* g, + double ratio, + unsigned int allowHoles); -/* ========= Unary predicates ========= */ /** -* Tests whether the input geometry is empty. If the geometry or any -* component is non-empty, the geometry is non-empty. An empty geometry -* has no boundary or interior. -* \param g The geometry to test -* \return 1 on true, 0 on false, 2 on exception +* Computes a boundary-respecting hull of a polygonal geometry, +* with hull shape determined by a target parameter +* specifying the fraction of the input vertices retained in the result. +* Larger values produce less concave results. +* A value of 1 produces the convex hull; a value of 0 produces the original geometry. +* An outer hull is computed if the parameter is positive, +* an inner hull is computed if it is negative. +* +* \param g the polygonal geometry to process +* \param isOuter indicates whether to compute an outer or inner hull (1 for outer hull, 0 for inner) +* \param vertexNumFraction the target fraction of the count of input vertices to retain in result +* \return A newly allocated geometry of the concave hull. NULL on exception. +* +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::simplify::PolygonHullSimplifier */ -extern char GEOS_DLL GEOSisEmpty(const GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL *GEOSPolygonHullSimplify( + const GEOSGeometry* g, + unsigned int isOuter, + double vertexNumFraction); + /** -* Tests whether the input geometry is "simple". Mostly relevant for -* linestrings. A "simple" linestring has no self-intersections. -* \param g The geometry to test -* \return 1 on true, 0 on false, 2 on exception +* Controls the behavior of the GEOSPolygonHullSimplify parameter. */ -extern char GEOS_DLL GEOSisSimple(const GEOSGeometry* g); +enum GEOSPolygonHullParameterModes { + /** See geos::simplify::PolygonHullSimplifier::hull() */ + GEOSHULL_PARAM_VERTEX_RATIO = 1, + /** See geos::simplify::PolygonHullSimplifier::hullByAreaDelta() */ + GEOSHULL_PARAM_AREA_RATIO = 2 +}; /** -* Tests whether the input geometry is a ring. Rings are -* linestrings, without self-intersections, -* with start and end point being identical. -* \param g The geometry to test -* \return 1 on true, 0 on false, 2 on exception +* Computes a topology-preserving simplified hull of a polygonal geometry, +* with hull shape determined by the parameter, controlled by a parameter +* mode, which is one defined in GEOSPolygonHullParameterModes. In general, +* larger values compute less concave results and value of 0 +* produces the original geometry. +* Either outer or inner hulls can be computed. +* +* \param g the polygonal geometry to process +* \param isOuter indicates whether to compute an outer or inner hull (1 for outer hull, 0 for inner) +* \param parameterMode the interpretation to apply to the parameter argument +* \param parameter the target ratio of area difference to original area +* \return A newly allocated geometry of the concave hull. NULL on exception. +* +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::simplify::PolygonHullSimplifier */ -extern char GEOS_DLL GEOSisRing(const GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL *GEOSPolygonHullSimplifyMode( + const GEOSGeometry* g, + unsigned int isOuter, + unsigned int parameterMode, + double parameter); /** -* Tests whether the input geometry has z coordinates. -* \param g The geometry to test -* \return 1 on true, 0 on false, 2 on exception +* Constructs a concave hull of a set of polygons, respecting +* the polygons as constraints. +* +* A concave hull is a possibly non-convex polygon containing all the input polygons. +* A given set of polygons has a sequence of hulls of increasing concaveness, +* determined by a numeric target parameter. +* The computed hull "fills the gap" between the polygons, +* and does not intersect their interior. +* +* The concave hull is constructed by removing the longest outer edges +* of the Delaunay Triangulation of the space between the polygons, +* until the target criterion parameter is reached. +* +* "Maximum Edge Length" constrains the length of the longest edge between the polygons to be no larger than this value. +* +* \param g the valid MultiPolygon geometry to process +* \param lengthRatio determine the Maximum Edge Length as a +* fraction of the difference between the longest and +* shortest edge lengths between the polygons. +* This normalizes the Maximum Edge Length to be scale-free. +* A value of 1 produces the convex hull; a value of 0 produces +* the original polygons. +* \param isHolesAllowed is the concave hull allowed to contain holes? +* \param isTight does the hull follow the outer boundaries of the input polygons. +* \return A newly allocated geometry of the concave hull. NULL on exception. +* +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::algorithm::hull::ConcaveHullOfPolygons +* +* The input polygons *must* form a *valid* MultiPolygon +* (i.e. they must be non-overlapping). */ -extern char GEOS_DLL GEOSHasZ(const GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL *GEOSConcaveHullOfPolygons( + const GEOSGeometry* g, + double lengthRatio, + unsigned int isTight, + unsigned int isHolesAllowed); /** -* Tests whether the input geometry is closed. -* A closed geometry is a linestring or multilinestring -* with the start and end points being the same. -* \param g The geometry to test -* \return 1 on true, 0 on false, 2 on exception +* Returns the minimum rotated rectangular POLYGON which encloses +* the input geometry. The rectangle has width equal to the +* minimum diameter, and a longer length. If the convex hill of +* the input is degenerate (a line or point) a linestring or point +* is returned. The minimum rotated rectangle can be used as an +* extremely generalized representation for the given geometry. +* \param g The input geometry +* \return A newly allocated geometry of the rotated envelope. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern char GEOS_DLL GEOSisClosed(const GEOSGeometry *g); - -/* ========= Dimensionally Extended 9 Intersection Model ========= */ +extern GEOSGeometry GEOS_DLL *GEOSMinimumRotatedRectangle(const GEOSGeometry* g); /** -* Calculate the DE9IM pattern for this geometry pair -* and compare against the provided pattern to check for -* consistency. If the result and pattern are consistent -* return true. The pattern may include glob "*" characters -* for portions that are allowed to match any value. -* \see geos::geom::Geometry::relate -* \param g1 First geometry in pair -* \param g2 Second geometry in pair -* \param pat DE9IM pattern to check -* \return 1 on true, 0 on false, 2 on exception +* Constructs the "maximum inscribed circle" (MIC) for a polygonal geometry, +* up to a specified tolerance. +* The MIC is determined by a point in the interior of the area +* which has the farthest distance from the area boundary, along with a boundary point at that distance. +* In the context of geography the center of the MIC is known as the +* "pole of inaccessibility". A cartographic use case is to determine a suitable point +* to place a map label within a polygon. +* The radius length of the MIC is a measure of how "narrow" a polygon is. It is the +* distance at which the negative buffer becomes empty. +* The class supports polygons with holes and multipolygons. +* The implementation uses a successive-approximation technique over a grid of square cells covering the area geometry. +* The grid is refined using a branch-and-bound algorithm. Point containment and distance are computed in a performant +* way by using spatial indexes. +* Returns a two-point linestring, with one point at the center of the inscribed circle and the other +* on the boundary of the inscribed circle. +* \param g Input geometry +* \param tolerance Stop the algorithm when the search area is smaller than this tolerance +* \return A newly allocated geometry of the MIC. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::algorithm::construct::MaximumInscribedCircle */ -extern char GEOS_DLL GEOSRelatePattern( - const GEOSGeometry* g1, - const GEOSGeometry* g2, - const char *pat); +extern GEOSGeometry GEOS_DLL *GEOSMaximumInscribedCircle( + const GEOSGeometry* g, + double tolerance); /** -* Calculate and return the DE9IM pattern for this geometry pair. -* \see geos::geom::Geometry::relate -* \param g1 First geometry in pair -* \param g2 Second geometry in pair -* \return DE9IM string. Caller is responsible for freeing with GEOSFree(). -* NULL on exception +* Constructs the "largest empty circle" (LEC) for a set of obstacle geometries, up to a +* specified tolerance. The obstacles are point and line geometries. Polygonal obstacles willl +* be treated as linear features. +* The LEC is the largest circle which has its **center** inside the boundary, +* and whose interior does not intersect with any obstacle. If no boundary is provided, the +* convex hull of the obstacles is used as the boundary. +* The LEC center is the point in the interior of the boundary which has the farthest distance from +* the obstacles (up to tolerance). The LEC is determined by the center point and a point lying on an +* obstacle indicating the circle radius. +* The implementation uses a successive-approximation technique over a grid of square cells covering the obstacles and boundary. +* The grid is refined using a branch-and-bound algorithm. Point containment and distance are computed in a performant +* way by using spatial indexes. +* Returns a two-point linestring, with the start point at the center of the inscribed circle and the end +* on the boundary of the inscribed circle. +* \param obstacles The geometries that the LEC must fit within without covering +* \param boundary The area within which the LEC must reside +* \param tolerance Stop the algorithm when the search area is smaller than this tolerance +* \return A newly allocated geometry of the LEC. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::algorithm::construct::LargestEmptyCircle */ -extern char GEOS_DLL *GEOSRelate( - const GEOSGeometry* g1, - const GEOSGeometry* g2); +extern GEOSGeometry GEOS_DLL *GEOSLargestEmptyCircle( + const GEOSGeometry* obstacles, + const GEOSGeometry* boundary, + double tolerance); /** -* Compare two DE9IM patterns and return true if they -* are consistent. -* \param mat Complete DE9IM string (does not have "*") -* \param pat Pattern to match to (may contain "*") -* \return 1 on true, 0 on false, 2 on exception +* Returns a linestring geometry which represents the minimum diameter of the geometry. +* The minimum diameter is defined to be the width of the smallest band that +* contains the geometry, where a band is a strip of the plane defined +* by two parallel lines. This can be thought of as the smallest hole that the geometry +* can be moved through, with a single rotation. +* \param g The input geometry +* \return A newly allocated geometry of the LEC. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::algorithm::MinimumDiameter */ -extern char GEOS_DLL GEOSRelatePatternMatch( - const char *mat, - const char *pat); +extern GEOSGeometry GEOS_DLL *GEOSMinimumWidth(const GEOSGeometry* g); + /** -* Calculate and return the DE9IM pattern for this geometry pair. -* Apply the supplied \ref GEOSRelateBoundaryNodeRules. -* \see geos::geom::Geometry::relate -* \see geos::algorithm::BoundaryNodeRule -* \param g1 First geometry in pair -* \param g2 Second geometry in pair -* \param bnr A member of the \ref GEOSRelateBoundaryNodeRules enum -* \return DE9IM string. Caller is responsible for freeing with GEOSFree(). -* NULL on exception +* Returns a point that is inside the boundary of a polygonal geometry. +* \param g The input geometry +* \return A point that is inside the input +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::algorithm::InteriorPointArea */ -extern char GEOS_DLL *GEOSRelateBoundaryNodeRule( - const GEOSGeometry* g1, - const GEOSGeometry* g2, - int bnr); +extern GEOSGeometry GEOS_DLL *GEOSPointOnSurface(const GEOSGeometry* g); +/** +* Returns a point at the center of mass of the input. +* \param g The input geometry +* \return A point at the center of mass of the input +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::algorithm::Centroid +*/ +extern GEOSGeometry GEOS_DLL *GEOSGetCentroid(const GEOSGeometry* g); -/* ========== Validity checking ========== */ +/** +* Returns a geometry which represents the "minimum bounding circle", +* the smallest circle that contains the input. +* \param[in] g The input geometry +* \param[out] radius Pointer will be filled with output radius. +* \param[out] center Pointer will be filled with output circle center. Caller must free. +* \return The circle geometry or NULL on exception +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::algorithm::MinimumBoundingCircle::getCircle +*/ +extern GEOSGeometry GEOS_DLL *GEOSMinimumBoundingCircle( + const GEOSGeometry* g, + double* radius, + GEOSGeometry** center); /** -* Check the validity of the provided geometry. -* - All points are valid. -* - All non-zero-length linestrings are valid. -* - Polygon rings must be non-self-intersecting, and interior rings -* contained within exterior rings. -* - Multi-polygon components may not touch or overlap. +* Return a Delaunay triangulation of the vertices of the given geometry. * -* \param g The geometry to test -* \return 1 on true, 0 on false, 2 on exception -* \see geos::operation::valid::isValidOp +* \param g the input geometry whose vertices will be used as "sites" +* \param tolerance optional snapping tolerance to use for improved robustness +* \param onlyEdges if non-zero will return a MultiLineString, otherwise it will +* return a GeometryCollection containing triangular Polygons. +* +* \return A newly allocated geometry. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern char GEOS_DLL GEOSisValid(const GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL * GEOSDelaunayTriangulation( + const GEOSGeometry *g, + double tolerance, + int onlyEdges); /** -* Return the human readable reason a geometry is invalid, -* "Valid Geometry" string otherwise, or NULL on exception. -* \param g The geometry to test -* \return A string with the reason, NULL on exception. - Caller must GEOSFree() their result. +* Return a constrained Delaunay triangulation of the vertices of the +* given polygon(s). +* For non-polygonal inputs, returns an empty geometry collection. +* +* \param g the input geometry whose rings will be used as input +* \return A newly allocated geometry. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern char GEOS_DLL *GEOSisValidReason(const GEOSGeometry *g); +extern GEOSGeometry GEOS_DLL * GEOSConstrainedDelaunayTriangulation( + const GEOSGeometry *g); /** -* In one step, calculate and return the validity, the -* human readable validity reason and a point at which validity -* rules are broken. -* Caller has the responsibility to destroy 'reason' with GEOSFree() -* and 'location' with GEOSGeom_destroy() -* \param g The geometry to test -* \param flags A value from the \ref GEOSValidFlags enum -* \param reason A pointer in which the reason string will be places -* \param location A pointer in which the location GEOSGeometry will be placed -* \return 1 when valid, 0 when invalid, 2 on exception +* Returns the Voronoi polygons of the vertices of the given geometry. +* +* \param g the input geometry whose vertices will be used as sites. +* \param tolerance snapping tolerance to use for improved robustness +* \param onlyEdges whether to return only edges of the voronoi cells +* \param env clipping envelope for the returned diagram, automatically +* determined if env is NULL. +* The diagram will be clipped to the larger +* of this envelope or an envelope surrounding the sites. +* +* \return A newly allocated geometry. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern char GEOS_DLL GEOSisValidDetail( - const GEOSGeometry* g, - int flags, - char** reason, - GEOSGeometry** location); +extern GEOSGeometry GEOS_DLL * GEOSVoronoiDiagram( + const GEOSGeometry *g, + const GEOSGeometry *env, + double tolerance, + int onlyEdges); + +///@} + +/* ============================================================== */ +/** @name Noding and Polygonization +* Functions computing noding of lines, and forming noded lines into polygons. +*/ +///@{ /** -* Repair an invalid geometry, returning a valid output. -* \param g The geometry to repair -* \return The repaired geometry. Caller must free with GEOSGeom_destroy(). +* For linear inputs, returns a new geometry in which no lines cross +* each other, and all touching occurs at end points. +* \param g The input geometry +* \return The noded geometry or NULL on exception +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::noding::GeometryNoder::node */ -extern GEOSGeometry GEOS_DLL *GEOSMakeValid( - const GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL *GEOSNode(const GEOSGeometry* g); /** -* Repair an invalid geometry, returning a valid output, using the -* indicated GEOSMakeValidMethods algorithm and options. -* \param g is the geometry to test. -* \param makeValidParams is a GEOSMakeValidParams with the desired parameters set on it. -* \return A repaired geometry. Caller must free with GEOSGeom_destroy(). -* \see GEOSMakeValidParams_create -* \see GEOSMakeValidParams_destroy -* \see GEOSMakeValidParams_setMethod -* \see GEOSMakeValidParams_setKeepCollapsed +* Polygonizes a set of Geometries which contain linework that +* represents the edges of a planar graph. +* +* All types of Geometry are accepted as input; the constituent +* linework is extracted as the edges to be polygonized. +* +* The edges must be correctly noded; that is, they must only meet +* at their endpoints and not overlap anywhere. If your edges are not +* already noded, run them through GEOSUnaryUnion() first. +* Polygonization will accept incorrectly noded +* input but will not form polygons from non-noded edges, and reports +* them as errors. +* +* The Polygonizer reports the following kinds of errors: +* +* - Dangles - edges which have one or both ends which are +* not incident on another edge endpoint +* - Cut Edges - edges which are connected at both ends but +* which do not form part of a polygon +* - Invalid Ring Lines - edges which form rings which are invalid +* (e.g. the component lines contain a self-intersection) +* +* Errors are reported to output parameters "cuts", "dangles" and +* "invalid" (if not-null). Formed polygons are returned as a +* collection. NULL is returned on exception. All returned +* geometries must be destroyed by caller. +* +* The GEOSPolygonize_valid() variant allows extracting only polygons +* which form a valid polygonal result. The set of extracted polygons +* is guaranteed to be edge-disjoint. This is useful when it is known +* that the input lines form a valid polygonal geometry (which may +* include holes or nested polygons). +* +* \param geoms Array of linear geometries to polygons. Caller retains ownersihp of both array container and objects. +* \param ngeoms Size of the geoms array. +* \return The polygonal output geometry. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::polygonize::Polygonizer */ -extern GEOSGeometry GEOS_DLL *GEOSMakeValidWithParams( - const GEOSGeometry* g, - const GEOSMakeValidParams *makeValidParams); +extern GEOSGeometry GEOS_DLL *GEOSPolygonize( + const GEOSGeometry * const geoms[], + unsigned int ngeoms); /** -* Create a GEOSMakeValidParams to hold the desired parameters -* to control the algorithm and behavior of the validation process. -* \return a parameter object -* \see GEOSMakeValidWithParams +* Same polygonizing behavior as GEOSPolygonize(), but only returning results +* that are valid. +* +* \param geoms Array of linear geometries to polygons. Caller retains ownersihp of both array container and objects. +* \param ngeoms Size of the geoms array. +* \return The polygonal output geometry. +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::polygonize::Polygonizer */ -extern GEOSMakeValidParams GEOS_DLL *GEOSMakeValidParams_create(void); +extern GEOSGeometry GEOS_DLL *GEOSPolygonize_valid( + const GEOSGeometry * const geoms[], + unsigned int ngeoms); /** -* Destroy a GEOSMakeValidParams. -* \param parms the object to destroy -* \see GEOSMakeValidWithParams +* Perform the polygonization as GEOSPolygonize() but return only the +* "cut edges", the linear features that are connected at both ends, +* do *not* participate in the final polygon. +* +* \param geoms Array of linear geometries to polygons. Caller retains ownersihp of both array container and objects. +* \param ngeoms Size of the geoms array. +* \return The "cut edges" +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::polygonize::Polygonizer */ -extern void GEOS_DLL GEOSMakeValidParams_destroy(GEOSMakeValidParams* parms); +extern GEOSGeometry GEOS_DLL *GEOSPolygonizer_getCutEdges( + const GEOSGeometry * const geoms[], + unsigned int ngeoms); /** -* Set the GEOSMakeValidMethods to use in making the geometry -* valid. -* \return 0 on exception, 1 on success. -* \see GEOSMakeValidWithParams +* Perform the polygonization as GEOSPolygonize() and return the +* polygonal result as well as all extra ouputs. +* +* \param[in] input A single geometry with all the input lines to polygonize. +* \param[out] cuts Pointer to hold "cut edges", connected on both ends but not part of output. Caller must free. +* \param[out] dangles Pointer to hold "dangles", connected one end but not part of output. Caller must free. +* \param[out] invalid Pointer to hold invalid outputs, polygons formed but not valid. Caller must free. +* \return The polygonal valid output +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::polygonize::Polygonizer */ -extern int GEOS_DLL GEOSMakeValidParams_setMethod( - GEOSMakeValidParams* p, - enum GEOSMakeValidMethods method); +extern GEOSGeometry GEOS_DLL *GEOSPolygonize_full( + const GEOSGeometry* input, + GEOSGeometry** cuts, + GEOSGeometry** dangles, + GEOSGeometry** invalid); /** -* When this parameter is not set to 0, the GEOS_MAKE_VALID_STRUCTURE method will drop -* any component that has collapsed into a lower dimensionality. -* For example, a ring collapsing to a line, or a line collapsing -* to a point. -* \return 0 on exception, 1 on success. -* \see GEOSMakeValidWithParams +* Perform a polygonization using all the linework, assuming that +* rings contained within rings are empty holes, rather then +* extra polygons. +* \param g The input linework +* \return The polygonal output +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::polygonize::BuildArea */ -extern int GEOS_DLL GEOSMakeValidParams_setKeepCollapsed( - GEOSMakeValidParams* p, - int keepCollapsed); +extern GEOSGeometry GEOS_DLL *GEOSBuildArea(const GEOSGeometry* g); +///@} -/* ========== Geometry info ========== */ +/* ============================================================== */ +/** @name Processing +* Functions performing various geometric processes. +*/ +///@{ /** -* Returns the geometry type string for this geometry. -* eg: "GeometryCollection", "LineString" -* \param g Input geometry -* \return A string with the geometry type. -* Caller must free with GEOSFree(). -* NULL on exception. +* Densifies a geometry using a given distance tolerance. +* Additional vertices will be added to every line segment +* that is greater this tolerance; these vertices will +* evenly subdivide that segment. +* Only linear components of input geometry are densified. +* \param g The geometry to densify +* \param tolerance the distance tolerance to densify +* \return The densified geometry, or NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern char GEOS_DLL *GEOSGeomType(const GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL *GEOSDensify( + const GEOSGeometry* g, + double tolerance); /** -* Returns the \ref GEOSGeomTypeId number for this geometry. -* \param g Input geometry -* \return The geometry type number, or -1 on exception. +* Sews together a set of fully noded LineStrings +* removing any cardinality 2 nodes in the linework. +* \param g The input linework +* \return The merged linework +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::linemerge::LineMerger */ -extern int GEOS_DLL GEOSGeomTypeId(const GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL *GEOSLineMerge(const GEOSGeometry* g); /** -* Returns the "spatial reference id" (SRID) for this geometry. -* \param g Input geometry -* \return SRID number or 0 if unknown / not set. +* Sews together a set of fully noded LineStrings +* removing any cardinality 2 nodes in the linework +* only if possible without changing order of points. +* \param g The input linework +* \return The merged linework +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::operation::linemerge::LineMerger */ -extern int GEOS_DLL GEOSGetSRID(const GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL *GEOSLineMergeDirected(const GEOSGeometry* g); /** -* Set the "spatial reference id" (SRID) for this geometry. -* \param g Input geometry -* \param SRID SRID number or 0 for unknown SRID. +* For geometries with coordinate sequences, reverses the order +* of the sequences. Converts CCW rings to CW. Reverses direction +* of LineStrings. +* \param g The input geometry +* \return The reversed geometry +* Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern void GEOS_DLL GEOSSetSRID(GEOSGeometry* g, int SRID); +extern GEOSGeometry GEOS_DLL *GEOSReverse(const GEOSGeometry* g); /** -* Return the anonymous "user data" for this geometry. -* User data must be managed by the caller, and freed before -* the geometry is freed. -* \param g Input geometry -* \return A void* to the user data, caller is responsible for -* casting to the appropriate type and freeing. +* Apply the +* [Douglas/Peucker algorithm](https://en.wikipedia.org/wiki/Ramer–Douglas–Peucker_algorithm) +* to the coordinate sequences of the input geometry. +* Removes "unnecessary" vertices, vertices +* that are co-linear within the tolerance distance. +* \param g The input geometry +* \param tolerance The tolerance to apply. Larger tolerance leads to simpler output. +* \return The simplified geometry +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::simplify::DouglasPeuckerSimplifier */ -extern void GEOS_DLL *GEOSGeom_getUserData(const GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL *GEOSSimplify( + const GEOSGeometry* g, + double tolerance); /** -* Set the anonymous "user data" for this geometry. -* Don't forget to free the user data before freeing the geometry. -* \param g Input geometry -* \param userData Void pointer to user data +* Apply the +* [Douglas/Peucker algorithm](https://en.wikipedia.org/wiki/Ramer–Douglas–Peucker_algorithm) +* to the coordinate sequences of the input geometry. +* Removes "unnecessary" vertices, vertices +* that are co-linear within the tolerance distance. +* Returns a valid output geometry, checking for collapses, ring-intersections, etc +* and attempting to avoid. More computationally expensive than GEOSSimplify() +* \param g The input geometry +* \param tolerance The tolerance to apply. Larger tolerance leads to simpler output. +* \return The simplified geometry +* Caller is responsible for freeing with GEOSGeom_destroy(). +* \see geos::simplify::DouglasPeuckerSimplifier */ -extern void GEOS_DLL GEOSGeom_setUserData(GEOSGeometry* g, void* userData); +extern GEOSGeometry GEOS_DLL *GEOSTopologyPreserveSimplify( + const GEOSGeometry* g, + double tolerance); +/** +* Return all distinct vertices of input geometry as a MultiPoint. +* Note that only 2 dimensions of the vertices are considered when +* testing for equality. +* \param g The input geometry +* \return The distinct points +* Caller is responsible for freeing with GEOSGeom_destroy(). +*/ +extern GEOSGeometry GEOS_DLL *GEOSGeom_extractUniquePoints( + const GEOSGeometry* g); /** -* Returns the number of sub-geometries immediately under a -* multi-geometry or collection or 1 for a simple geometry. -* For nested collections, remember to check if returned -* sub-geometries are **themselves** also collections. -* \param g Input geometry -* \return Number of direct children in this collection -* \warning For GEOS < 3.2 this function may crash when fed simple geometries +* Calculate the +* [Hilbert code](https://en.wikipedia.org/wiki/Hilbert_curve) +* of the centroid of a geometry relative to an extent. +* This allows sorting geometries in a deterministic way, such that similar Hilbert codes are +* likely to be near each other in two-dimensional space. +* The caller must ensure that the geometry is contained within the extent. +* \param[in] geom Input geometry, must be non-empty +* \param[in] extent Extent within which to calculate the Hilbert code for geom +* \param[in] level The level of precision of the Hilbert curve, up to 16 +* \param[out] code Pointer to be filled in with Hilbert code result +* \return 1 on success, 0 on exception. */ -extern int GEOS_DLL GEOSGetNumGeometries(const GEOSGeometry* g); +extern int GEOS_DLL GEOSHilbertCode( + const GEOSGeometry *geom, + const GEOSGeometry* extent, + unsigned int level, + unsigned int *code +); /** -* Returns the specified sub-geometry of a collection. For -* a simple geometry, returns a pointer to the input. -* Returned object is a pointer to internal storage: -* it must NOT be destroyed directly. -* \param g Input geometry -* \param n Sub-geometry index, zero-base -* \return A const \ref GEOSGeometry, do not free! - It will be freed when the parent is freed. - Returns NULL on exception. -* \note Up to GEOS 3.2.0 the input geometry must be a Collection, in -* later versions it doesn't matter (getGeometryN(0) for a single will -* return the input). +* Apply XY coordinate transform callback to all coordinates in a copy of +* input geometry. If the callback returns an error, returned geometry will be +* NULL. Z values, if present, are not modified by this function. +* \param[in] g Input geometry +* \param[in] callback a function to be executed for each coordinate in the + geometry. The callback takes 3 parameters: x and y coordinate + values to be updated and a void userdata pointer. +* \param userdata an optional pointer to pe passed to 'callback' as an argument +* \return a copy of the input geometry with transformed coordinates. +* Caller must free with GEOSGeom_destroy(). */ -extern const GEOSGeometry GEOS_DLL *GEOSGetGeometryN( +extern GEOSGeometry GEOS_DLL *GEOSGeom_transformXY( const GEOSGeometry* g, - int n); + GEOSTransformXYCallback callback, + void* userdata); /** -* Organize the sub-geometries, rings, and coordinate order -* of geometries, so that geometries that represent the same -* object can be easily compared. Starts rings from the same -* location, orients them in the same way, sorts geometry -* sub-components in the same way. Use before calling -* GEOSEqualsExact() to avoid false "not equal" results. -* \param g Input geometry -* \return 0 on success or -1 on exception +* Snap first geometry onto second within the given tolerance. +* \param input An input geometry +* \param snap_target A geometry to snap the input to +* \param tolerance Snapping tolerance +* \return The snapped verion of the input. NULL on exception. +* Caller is responsible for freeing with GEOSGeom_destroy(). */ -extern int GEOS_DLL GEOSNormalize(GEOSGeometry* g); +extern GEOSGeometry GEOS_DLL *GEOSSnap( + const GEOSGeometry* input, + const GEOSGeometry* snap_target, + double tolerance); /** -* Change the rounding precision on a geometry. This will +* Change the coordinate precision of a geometry. This will * affect the precision of the existing geometry as well as * any geometries derived from this geometry using overlay * functions. The output will be a valid \ref GEOSGeometry. @@ -3783,346 +4055,543 @@ double gridSize, int flags); +///@} + +/* ============================================================== */ +/** @name Spatial Predicates +* Functions computing binary spatial predicates using the DE-9IM topology model. +*/ +///@{ + /** -* Read the currently set precision value from the -* geometry and returns the grid size if it is a fixed -* precision or 0.0 if it is full floating point precision. -* \param g Input geometry -* \return The grid size, or -1 on exception +* True if no point of either geometry touchess or is within the other. +* \param g1 Input geometry +* \param g2 Input geometry +* \returns 1 on true, 0 on false, 2 on exception +* \see geos::geom::Geometry::disjoint */ -extern double GEOS_DLL GEOSGeom_getPrecision(const GEOSGeometry *g); +extern char GEOS_DLL GEOSDisjoint(const GEOSGeometry* g1, const GEOSGeometry* g2); /** -* Returns the number of interior rings, for a Polygon input, or -* an exception otherwise. -* \param g Input Polygon geometry -* \return Number of interior rings, -1 on exception +* True if geometries share boundaries at one or more points, but do +* not have interior overlaps. +* \param g1 Input geometry +* \param g2 Input geometry +* \returns 1 on true, 0 on false, 2 on exception +* \see geos::geom::Geometry::touches */ -extern int GEOS_DLL GEOSGetNumInteriorRings(const GEOSGeometry* g); +extern char GEOS_DLL GEOSTouches(const GEOSGeometry* g1, const GEOSGeometry* g2); /** -* Returns the number of points, for a LineString input, or -* an exception otherwise. -* \param g Input LineString geometry -* \return Number of points, -1 on exception +* True if geometries are not disjoint. +* \param g1 Input geometry +* \param g2 Input geometry +* \returns 1 on true, 0 on false, 2 on exception +* \see geos::geom::Geometry::intersects */ -extern int GEOS_DLL GEOSGeomGetNumPoints(const GEOSGeometry* g); +extern char GEOS_DLL GEOSIntersects(const GEOSGeometry* g1, const GEOSGeometry* g2); /** -* Returns the X coordinate, for a Point input, or an -* exception otherwise. -* \param[in] g Input Point geometry -* \param[out] x Pointer to hold return value -* \returns 1 on success, 0 on exception +* True if geometries interiors interact but their boundares do not. +* Most useful for finding line crosses cases. +* \param g1 Input geometry +* \param g2 Input geometry +* \returns 1 on true, 0 on false, 2 on exception +* \see geos::geom::Geometry::crosses */ -extern int GEOS_DLL GEOSGeomGetX(const GEOSGeometry *g, double *x); +extern char GEOS_DLL GEOSCrosses(const GEOSGeometry* g1, const GEOSGeometry* g2); /** -* Returns the Y coordinate, for a Point input, or an -* exception otherwise. -* \param[in] g Input Point geometry -* \param[out] y Pointer to hold return value -* \returns 1 on success, 0 on exception +* True if geometry g1 is completely within g2, and not +* touching the boundary of g2. +* \param g1 Input geometry +* \param g2 Input geometry +* \returns 1 on true, 0 on false, 2 on exception +* \see geos::geom::Geometry::within */ -extern int GEOS_DLL GEOSGeomGetY(const GEOSGeometry *g, double *y); +extern char GEOS_DLL GEOSWithin(const GEOSGeometry* g1, const GEOSGeometry* g2); /** -* Returns the Z coordinate, for a Point input, or an -* exception otherwise. -* \param[in] g Input Point geometry -* \param[out] z Pointer to hold return value -* \returns 1 on success, 0 on exception +* True if geometry g2 is completely within g1. +* \param g1 Input geometry +* \param g2 Input geometry +* \returns 1 on true, 0 on false, 2 on exception +* \see geos::geom::Geometry::contains +*/ +extern char GEOS_DLL GEOSContains(const GEOSGeometry* g1, const GEOSGeometry* g2); + +/** +* True if geometries share interiors but are neither +* within nor contained. +* \param g1 Input geometry +* \param g2 Input geometry +* \returns 1 on true, 0 on false, 2 on exception +* \see geos::geom::Geometry::overlaps +*/ +extern char GEOS_DLL GEOSOverlaps(const GEOSGeometry* g1, const GEOSGeometry* g2); + +/** +* True if geometries cover the same space on the place. +* \param g1 Input geometry +* \param g2 Input geometry +* \returns 1 on true, 0 on false, 2 on exception +* \see geos::geom::Geometry::equals +*/ +extern char GEOS_DLL GEOSEquals(const GEOSGeometry* g1, const GEOSGeometry* g2); + +/** +* True if geometry g1 is completely within g2, including possibly +* touching the boundary of g2. +* \param g1 Input geometry +* \param g2 Input geometry +* \returns 1 on true, 0 on false, 2 on exception +* \see geos::geom::Geometry::covers +*/ +extern char GEOS_DLL GEOSCovers(const GEOSGeometry* g1, const GEOSGeometry* g2); + +/** +* True if geometry g2 is completely within g1, including possibly +* touching the boundary of g1. +* \param g1 Input geometry +* \param g2 Input geometry +* \returns 1 on true, 0 on false, 2 on exception +* \see geos::geom::Geometry::coveredby +*/ +extern char GEOS_DLL GEOSCoveredBy(const GEOSGeometry* g1, const GEOSGeometry* g2); + +/** +* Determine pointwise equivalence of two geometries, by +* checking that they have identical structure +* and that each vertex of g2 is +* within the distance tolerance of the corresponding vertex in g1. +* Unlike GEOSEquals(), geometries that are topologically equivalent but have different +* representations (e.g., LINESTRING (0 0, 1 1) and MULTILINESTRING ((0 0, 1 1)) ) are not +* considered equal by GEOSEqualsExact(). +* \param g1 Input geometry +* \param g2 Input geometry +* \param tolerance Tolerance to determine vertex equality +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSNormalize() +*/ +extern char GEOS_DLL GEOSEqualsExact( + const GEOSGeometry* g1, + const GEOSGeometry* g2, + double tolerance); + +/** +* Calculate the DE9IM pattern for this geometry pair +* and compare against the provided pattern to check for +* consistency. If the result and pattern are consistent +* return true. The pattern may include glob "*" characters +* for portions that are allowed to match any value. +* \see geos::geom::Geometry::relate +* \param g1 First geometry in pair +* \param g2 Second geometry in pair +* \param pat DE9IM pattern to check +* \return 1 on true, 0 on false, 2 on exception +*/ +extern char GEOS_DLL GEOSRelatePattern( + const GEOSGeometry* g1, + const GEOSGeometry* g2, + const char *pat); + +/** +* Calculate and return the DE9IM pattern for this geometry pair. +* \see geos::geom::Geometry::relate +* \param g1 First geometry in pair +* \param g2 Second geometry in pair +* \return DE9IM string. Caller is responsible for freeing with GEOSFree(). +* NULL on exception +*/ +extern char GEOS_DLL *GEOSRelate( + const GEOSGeometry* g1, + const GEOSGeometry* g2); + +/** +* Compare two DE9IM patterns and return true if they +* are consistent. +* \param mat Complete DE9IM string (does not have "*") +* \param pat Pattern to match to (may contain "*") +* \return 1 on true, 0 on false, 2 on exception */ -extern int GEOS_DLL GEOSGeomGetZ(const GEOSGeometry *g, double *z); +extern char GEOS_DLL GEOSRelatePatternMatch( + const char *mat, + const char *pat); /** -* Returns the N'th ring for a Polygon input. -* \note Returned object is a pointer to internal storage: -* it must NOT be destroyed directly. -* \param g Input Polygon geometry -* \param n Index of the desired ring -* \return LinearRing geometry. Owned by parent geometry, do not free. NULL on exception. +* Calculate and return the DE9IM pattern for this geometry pair. +* Apply the supplied \ref GEOSRelateBoundaryNodeRules. +* \see geos::geom::Geometry::relate +* \see geos::algorithm::BoundaryNodeRule +* \param g1 First geometry in pair +* \param g2 Second geometry in pair +* \param bnr A member of the \ref GEOSRelateBoundaryNodeRules enum +* \return DE9IM string. Caller is responsible for freeing with GEOSFree(). +* NULL on exception */ -extern const GEOSGeometry GEOS_DLL *GEOSGetInteriorRingN( - const GEOSGeometry* g, - int n); +extern char GEOS_DLL *GEOSRelateBoundaryNodeRule( + const GEOSGeometry* g1, + const GEOSGeometry* g2, + int bnr); -/** -* Get the external ring of a Polygon. -* \note Returned object is a pointer to internal storage: -* it must NOT be destroyed directly. -* \param g Input Polygon geometry -* \return LinearRing geometry. Owned by parent geometry, do not free. NULL on exception. +///@} + +/* ========== Prepared Geometry Binary predicates ========== */ + +/** @name Prepared Geometry +* A \ref GEOSPreparedGeometry is a wrapper around \ref GEOSGeometry +* that includes spatial indexing on the edges of the geometry. This +* allows spatial predicates to evaluate much faster, +* so for cases in which the same base geometry will be used over and +* over again for predicate tests, wrapping it in a \ref GEOSPreparedGeometry +* is a best practice. +* +* Prepared Geometry supports some binary spatial predicates and distance calculations. */ -extern const GEOSGeometry GEOS_DLL *GEOSGetExteriorRing( - const GEOSGeometry* g); +///@{ /** -* Get the total number of points in a geometry, -* of any type. -* \param g Input geometry -* \return Number of points in the geometry. -1 on exception. +* Create a Prepared Geometry. +* The caller retains ownership of the base geometry, and after +* processing is complete, must free **both** the prepared and the +* base geometry. (Ideally, destroy the prepared geometry first, as +* it has an internal reference to the base geometry.) +* +* \param g The base geometry to wrap in a prepared geometry. +* \return A prepared geometry. Caller is responsible for freeing with +* GEOSPreparedGeom_destroy() */ -extern int GEOS_DLL GEOSGetNumCoordinates( - const GEOSGeometry* g); +extern const GEOSPreparedGeometry GEOS_DLL *GEOSPrepare(const GEOSGeometry* g); /** -* Return the coordinate sequence underlying the -* given geometry (Must be a LineString, LinearRing or Point). -* Do not directly free the coordinate sequence, it is owned by -* the parent geometry. -* \param g Input geometry -* \return Coordinate sequence or NULL on exception. +* Free the memory associated with a \ref GEOSPreparedGeometry. +* Caller must separately free the base \ref GEOSGeometry used +* to create the prepared geometry. +* \param g Prepared geometry to destroy. */ -extern const GEOSCoordSequence GEOS_DLL *GEOSGeom_getCoordSeq( - const GEOSGeometry* g); +extern void GEOS_DLL GEOSPreparedGeom_destroy(const GEOSPreparedGeometry* g); /** -* Return the planar dimensionality of the geometry. -* -* - 0 for point, multipoint -* - 1 for linestring, multilinestring -* - 2 for polygon, multipolygon -* -* \see geos::geom::Dimension::DimensionType -* \param g Input geometry -* \return The dimensionality +* Using a \ref GEOSPreparedGeometry do a high performance +* calculation of whether the provided geometry is contained. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSContains */ -extern int GEOS_DLL GEOSGeom_getDimensions( - const GEOSGeometry* g); +extern char GEOS_DLL GEOSPreparedContains( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Return the cartesian dimension of the geometry. -* -* - 2 for XY data -* - 3 for XYZ data -* -* \param g Input geometry -* \return The dimension +* Using a \ref GEOSPreparedGeometry do a high performance +* calculation of whether the provided geometry is contained properly. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSContainsProperly */ -extern int GEOS_DLL GEOSGeom_getCoordinateDimension( - const GEOSGeometry* g); +extern char GEOS_DLL GEOSPreparedContainsProperly( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Finds the minimum X value in the geometry. -* \param[in] g Input geometry -* \param[out] value Pointer to place result -* \return 0 on exception +* Using a \ref GEOSPreparedGeometry do a high performance +* calculation of whether the provided geometry is covered by. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSCoveredBy */ -extern int GEOS_DLL GEOSGeom_getXMin(const GEOSGeometry* g, double* value); +extern char GEOS_DLL GEOSPreparedCoveredBy( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Finds the minimum Y value in the geometry. -* \param[in] g Input geometry -* \param[out] value Pointer to place result -* \return 0 on exception +* Using a \ref GEOSPreparedGeometry do a high performance +* calculation of whether the provided geometry covers. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSCovers */ -extern int GEOS_DLL GEOSGeom_getYMin(const GEOSGeometry* g, double* value); +extern char GEOS_DLL GEOSPreparedCovers( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Finds the maximum X value in the geometry. -* \param[in] g Input geometry -* \param[out] value Pointer to place result -* \return 0 on exception +* Using a \ref GEOSPreparedGeometry do a high performance +* calculation of whether the provided geometry crosses. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSCrosses */ -extern int GEOS_DLL GEOSGeom_getXMax(const GEOSGeometry* g, double* value); +extern char GEOS_DLL GEOSPreparedCrosses( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Finds the maximum Y value in the geometry. -* \param[in] g Input geometry -* \param[out] value Pointer to place result -* \return 0 on exception +* Using a \ref GEOSPreparedDisjoint do a high performance +* calculation of whether the provided geometry is disjoint. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSDisjoin */ -extern int GEOS_DLL GEOSGeom_getYMax(const GEOSGeometry* g, double* value); +extern char GEOS_DLL GEOSPreparedDisjoint( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Return the N'th point of a LineString -* \param g Input geometry, must be a LineString -* \param n Index of desired point (zero based) -* \return A Point geometry. -* Caller must free with GEOSGeom_destroy() -* NULL on exception. +* Using a \ref GEOSPreparedDisjoint do a high performance +* calculation of whether the provided geometry is disjoint. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSDisjoin */ -extern GEOSGeometry GEOS_DLL *GEOSGeomGetPointN(const GEOSGeometry *g, int n); +extern char GEOS_DLL GEOSPreparedIntersects( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Return the first point of a LineString -* \param g Input geometry, must be a LineString -* \return A Point geometry. -* Caller must free with GEOSGeom_destroy() -* NULL on exception. +* Using a \ref GEOSPreparedDisjoint do a high performance +* calculation of whether the provided geometry overlaps. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSOverlaps */ -extern GEOSGeometry GEOS_DLL *GEOSGeomGetStartPoint(const GEOSGeometry *g); +extern char GEOS_DLL GEOSPreparedOverlaps( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Return the last point of a LineString -* \param g Input geometry, must be a LineString -* \return A Point geometry. -* Caller must free with GEOSGeom_destroy() -* NULL on exception. +* Using a \ref GEOSPreparedDisjoint do a high performance +* calculation of whether the provided geometry touches. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSTouches */ -extern GEOSGeometry GEOS_DLL *GEOSGeomGetEndPoint(const GEOSGeometry *g); - -/* ========= Misc functions ========= */ +extern char GEOS_DLL GEOSPreparedTouches( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Calculate the area of a geometry. -* \param[in] g Input geometry -* \param[out] area Pointer to be filled in with area result -* \return 1 on success, 0 on exception. +* Using a \ref GEOSPreparedDisjoint do a high performance +* calculation of whether the provided geometry is within. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns 1 on true, 0 on false, 2 on exception +* \see GEOSWithin */ -extern int GEOS_DLL GEOSArea( - const GEOSGeometry* g, - double *area); +extern char GEOS_DLL GEOSPreparedWithin( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Calculate the length of a geometry. -* \param[in] g Input geometry -* \param[out] length Pointer to be filled in with length result -* \return 1 on success, 0 on exception. +* Using a \ref GEOSPreparedDisjoint do a high performance +* calculation to find the nearest points between the +* prepared and provided geometry. +* \param pg1 The prepared geometry +* \param g2 The geometry to test +* \returns A coordinate sequence containing the nearest points, or NULL on exception. +* The first point in the sequence is from the prepared geometry, and the +* seconds is from the other argument. */ -extern int GEOS_DLL GEOSLength( - const GEOSGeometry* g, - double *length); +extern GEOSCoordSequence GEOS_DLL *GEOSPreparedNearestPoints( + const GEOSPreparedGeometry* pg1, + const GEOSGeometry* g2); /** -* Calculate the distance between two geometries. -* \param[in] g1 Input geometry -* \param[in] g2 Input geometry -* \param[out] dist Pointer to be filled in with distance result -* \return 1 on success, 0 on exception. +* Using a \ref GEOSPreparedDistance do a high performance +* calculation to find the distance points between the +* prepared and provided geometry. Useful for situations where +* one geometry is large and static and needs to be tested +* against a large number of other geometries. +* \param[in] pg1 The prepared geometry +* \param[in] g2 The geometry to test +* \param[out] dist Pointer to store the result in +* \return 1 on success */ -extern int GEOS_DLL GEOSDistance( - const GEOSGeometry* g1, +extern int GEOS_DLL GEOSPreparedDistance( + const GEOSPreparedGeometry* pg1, const GEOSGeometry* g2, double *dist); /** -* Test whether the distance between two geometries is -* within the given dist. -* \param g1 Input geometry -* \param g2 Input geometry +* Using a \ref GEOSPreparedDistanceWithin do a high performance +* calculation to find whether the prepared and provided geometry +* are within the given max distance. +* Useful for situations where +* one geometry is large and static and needs to be tested +* against a large number of other geometries. +* \param pg1 The prepared geometry +* \param g2 The geometry to test * \param dist The max distance -* \returns 1 on true, 0 on false, 2 on exception +* \return 1 on success */ -extern char GEOS_DLL GEOSDistanceWithin( - const GEOSGeometry* g1, +extern char GEOS_DLL GEOSPreparedDistanceWithin( + const GEOSPreparedGeometry* pg1, const GEOSGeometry* g2, double dist); +///@} + +/* ========== STRtree functions ========== */ +/** @name STRtree +* A \ref GEOSSTRtree is a R-tree spatial index structure for two dimensional data. +* It uses the [Sort-Tile-Recursive](https://en.wikipedia.org/wiki/R-tree) packing algorithm. +*/ +///@{ + /** -* Calculate the distance between two geometries, using the -* indexed facet distance, which first indexes the geometries -* internally, then calculates the distance. Useful when one -* or both geometries is very large. -* \param[in] g1 Input geometry -* \param[in] g2 Input geometry -* \param[out] dist Pointer to be filled in with distance result -* \return 1 on success, 0 on exception. -* \see geos::operation::distance:;IndexedFacetDistance +* Create a new \ref GEOSSTRtree using the Sort-Tile-Recursive algorithm +* ([STRtree](https://en.wikipedia.org/wiki/R-tree)) +* for two-dimensional spatial data. +* +* \param nodeCapacity The maximum number of child nodes that a node may have. +* The minimum recommended capacity value is 4. +* If unsure, use a default node capacity of 10. +* \return a pointer to the created tree */ -extern int GEOS_DLL GEOSDistanceIndexed( - const GEOSGeometry* g1, - const GEOSGeometry* g2, - double *dist); +extern GEOSSTRtree GEOS_DLL *GEOSSTRtree_create(size_t nodeCapacity); /** -* Calculate the Hausdorff distance between two geometries. -* [Hausdorff distance](https://en.wikipedia.org/wiki/Hausdorff_distance) -* is the largest distance between two geometries. -* \param[in] g1 Input geometry -* \param[in] g2 Input geometry -* \param[out] dist Pointer to be filled in with distance result -* \return 1 on success, 0 on exception. -* \see geos::algorithm::distance::DiscreteHausdorffDistance +* Insert an item into an \ref GEOSSTRtree +* +* \param tree the \ref GEOSSTRtree in which the item should be inserted +* \param g a GEOSGeometry whose envelope corresponds to the extent of 'item'. As of GEOS 3.9, this envelope will be + * copied into the tree and the caller may destroy `g` while the tree is still in use. Before GEOS 3.9, `g` + * must be retained until the tree is destroyed. +* \param item the item to insert into the tree +* \note The tree does **not** take ownership of the geometry or the item. */ -extern int GEOS_DLL GEOSHausdorffDistance( - const GEOSGeometry *g1, - const GEOSGeometry *g2, - double *dist); +extern void GEOS_DLL GEOSSTRtree_insert( + GEOSSTRtree *tree, + const GEOSGeometry *g, + void *item); /** -* Calculate a more precise Hausdorff distance between two geometries, -* by densifying the inputs before computation. -* [Hausdorff distance](https://en.wikipedia.org/wiki/Hausdorff_distance) -* is the largest distance between two geometries. -* \param[in] g1 Input geometry -* \param[in] g2 Input geometry -* \param[in] densifyFrac The largest % of the overall line length that -* any given two-point segment should be -* \param[out] dist Pointer to be filled in with distance result -* \return 1 on success, 0 on exception. -* \see geos::algorithm::distance::DiscreteHausdorffDistance +* Query an \ref GEOSSTRtree for items intersecting a specified envelope +* +* \param tree the \ref GEOSSTRtree to search +* \param g a GEOSGeomety from which a query envelope will be extracted +* \param callback a function to be executed for each item in the tree whose envelope intersects +* the envelope of 'g'. The callback function should take two parameters: a void +* pointer representing the located item in the tree, and a void userdata pointer. +* \param userdata an optional pointer to pe passed to 'callback' as an argument */ -extern int GEOS_DLL GEOSHausdorffDistanceDensify( - const GEOSGeometry *g1, - const GEOSGeometry *g2, - double densifyFrac, - double *dist); +extern void GEOS_DLL GEOSSTRtree_query( + GEOSSTRtree *tree, + const GEOSGeometry *g, + GEOSQueryCallback callback, + void *userdata); /** -* Calculate the -* [Frechet distance](https://en.wikipedia.org/wiki/Fr%C3%A9chet_distance) -* between two geometries, -* a similarity measure for linear features. -* \param[in] g1 Input geometry -* \param[in] g2 Input geometry -* \param[out] dist Pointer to be filled in with distance result -* \return 1 on success, 0 on exception. -* \see geos::algorithm::distance::DiscreteFrechetDistance +* Returns the nearest item in the \ref GEOSSTRtree to the supplied geometry. +* All items in the tree MUST be of type \ref GEOSGeometry. +* If this is not the case, use GEOSSTRtree_nearest_generic() instead. +* +* \param tree the \ref GEOSSTRtree to search +* \param geom the geometry with which the tree should be queried +* \return a const pointer to the nearest \ref GEOSGeometry in the tree to 'geom', or NULL in +* case of exception */ -extern int GEOS_DLL GEOSFrechetDistance( - const GEOSGeometry *g1, - const GEOSGeometry *g2, - double *dist); +extern const GEOSGeometry GEOS_DLL *GEOSSTRtree_nearest( + GEOSSTRtree *tree, + const GEOSGeometry* geom); /** -* Calculate the -* [Frechet distance](https://en.wikipedia.org/wiki/Fr%C3%A9chet_distance) -* between two geometries, -* a similarity measure for linear features. For more precision, first -* densify the inputs. -* \param[in] g1 Input geometry -* \param[in] g2 Input geometry -* \param[in] densifyFrac The largest % of the overall line length that -* any given two-point segment should be -* \param[out] dist Pointer to be filled in with distance result -* \return 1 on success, 0 on exception. -* \see geos::algorithm::distance::DiscreteFrechetDistance +* Returns the nearest item in the \ref GEOSSTRtree to the supplied item +* +* \param tree the STRtree to search +* \param item the item with which the tree should be queried +* \param itemEnvelope a GEOSGeometry having the bounding box of 'item' +* \param distancefn a function that can compute the distance between two items +* in the STRtree. The function should return zero in case of error, +* and should store the computed distance to the location pointed to by +* the 'distance' argument. The computed distance between two items +* must not exceed the Cartesian distance between their envelopes. +* \param userdata optional pointer to arbitrary data; will be passed to distancefn +* each time it is called. +* \return a const pointer to the nearest item in the tree to 'item', or NULL in +* case of exception */ -extern int GEOS_DLL GEOSFrechetDistanceDensify( - const GEOSGeometry *g1, - const GEOSGeometry *g2, - double densifyFrac, - double *dist); +extern const void GEOS_DLL *GEOSSTRtree_nearest_generic( + GEOSSTRtree *tree, + const void* item, + const GEOSGeometry* itemEnvelope, + GEOSDistanceCallback distancefn, + void* userdata); /** -* Calculate the length of a LineString. -* Only works for LineString inputs, returns exception otherwise. +* Iterate over all items in the \ref GEOSSTRtree. * -* \param[in] g Input geometry -* \param[out] length Pointer to be filled in with length result -* \return 1 on success, 0 on exception. +* \param tree the STRtree over which to iterate +* \param callback a function to be executed for each item in the tree. +* \param userdata payload to pass the callback function. */ -extern int GEOS_DLL GEOSGeomGetLength( +extern void GEOS_DLL GEOSSTRtree_iterate( + GEOSSTRtree *tree, + GEOSQueryCallback callback, + void *userdata); + +/** + * Removes an item from the \ref GEOSSTRtree + * + * \param tree the STRtree from which to remove an item + * \param g the envelope of the item to remove + * \param item the item to remove + * \return 0 if the item was not removed; + * 1 if the item was removed; + * 2 if an exception occurred + */ +extern char GEOS_DLL GEOSSTRtree_remove( + GEOSSTRtree *tree, const GEOSGeometry *g, - double *length); + void *item); /** -* The closest points of the two geometries. -* The first point comes from g1 geometry and the second point comes from g2. -* -* \param[in] g1 Input geometry -* \param[in] g2 Input geometry -* \return A coordinate sequence with the two points, or NULL on exception. -* Caller must free with GEOSCoordSeq_destroy(). +* Frees all the memory associated with a \ref GEOSSTRtree. +* Only the tree is freed. The geometries and items fed into +* GEOSSTRtree_insert() are not owned by the tree, and are +* still left to the caller to manage. */ -extern GEOSCoordSequence GEOS_DLL *GEOSNearestPoints( - const GEOSGeometry* g1, - const GEOSGeometry* g2); +extern void GEOS_DLL GEOSSTRtree_destroy(GEOSSTRtree *tree); + +///@} +/* ========== Algorithms ====================================================== */ +/** @name Geometric Algorithms +* Functions to compute basic geometric algorithms. +*/ +///@{ -/* ========== Algorithms ========== */ +/** +* Computes the coordinate where two line segments intersect, if any +* +* \param[in] ax0 x-coordinate of 1st point in 1st segment +* \param[in] ay0 y-coordinate of 1st point in 1st segment +* \param[in] ax1 x-coordinate of 2nd point in 1st segment +* \param[in] ay1 y-coordinate of 2nd point in 1st segment +* \param[in] bx0 x-coordinate of 1st point in 2nd segment +* \param[in] by0 y-coordinate of 1st point in 2nd segment +* \param[in] bx1 x-coordinate of 2nd point in 2nd segment +* \param[in] by1 y-coordinate of 2nd point in 2nd segment +* \param[out] cx x-coordinate of intersection point +* \param[out] cy y-coordinate of intersection point +* +* \return 0 on error, 1 on success, -1 if segments do not intersect +*/ +extern int GEOS_DLL GEOSSegmentIntersection( + double ax0, double ay0, + double ax1, double ay1, + double bx0, double by0, + double bx1, double by1, + double* cx, double* cy); /** * For the points formed by the six input ordinates, @@ -4142,8 +4611,14 @@ double Bx, double By, double Px, double Py); +///@} + /* ========= Reader and Writer APIs ========= */ +/** @name WKT Reader and Writer +* Functions for doing WKT I/O. +*/ +///@{ /* ========= WKT Reader ========= */ /** @@ -4169,6 +4644,16 @@ GEOSWKTReader* reader, const char *wkt); +/** +* Set the reader to automatically repair structural errors +* in the input (currently just unclosed rings) while reading. +* \param reader A WKT reader object, caller retains ownership +* \param doFix Set to 1 to repair, 0 for no repair (default). +*/ +extern void GEOS_DLL GEOSWKTReader_setFixStructure( + GEOSWKTReader *reader, + char doFix); + /* ========= WKT Writer ========= */ /** @@ -4245,9 +4730,15 @@ extern void GEOS_DLL GEOSWKTWriter_setOld3D( GEOSWKTWriter *writer, int useOld3D); +///@} -/* ========== WKB Reader ========== */ +/* ============================================================================== */ +/** @name WKB Reader and Writer +* Functions for doing WKB I/O. +*/ +///@{ +/* ========== WKB Reader ========== */ /** * Allocate a new \ref GEOSWKBReader. * \returns a new reader. Caller must free with GEOSWKBReader_destroy() @@ -4262,6 +4753,16 @@ GEOSWKBReader* reader); /** +* Set the reader to automatically repair structural errors +* in the input (currently just unclosed rings) while reading. +* \param reader A WKB reader object, caller retains ownership +* \param doFix Set to 1 to repair, 0 for no repair (default). +*/ +extern void GEOS_DLL GEOSWKBReader_setFixStructure( + GEOSWKBReader *reader, + char doFix); + +/** * Read a geometry from a well-known binary buffer. * \param reader A \ref GEOSWKBReader * \param wkb A pointer to the buffer to read from @@ -4408,14 +4909,13 @@ GEOSWKBWriter* writer, const char writeSRID); -/** -* Free strings and byte buffers returned by functions such -* as GEOSWKBWriter_write(), -* GEOSWKBWriter_writeHEX() and GEOSWKTWriter_write(), etc. -* \param buffer The memory to free -*/ -extern void GEOS_DLL GEOSFree(void *buffer); +///@} +/* ============================================================================= */ +/** @name GeoJSON Reader and Writer +* Functions for doing GeoJSON I/O. +*/ +///@{ /* ========= GeoJSON Reader ========= */ /** @@ -4469,12 +4969,20 @@ const GEOSGeometry* g, int indent); +///@} + #endif /* #ifndef GEOS_USE_ONLY_R_API */ /* ====================================================================== */ /* DEPRECATIONS */ /* ====================================================================== */ +/** @name DEPRECATED +* Deprecated Functions. +* See description for replacement. +*/ +///@{ + /** * \deprecated in 3.3.0, use GEOSOffsetCurve() instead */ @@ -4641,6 +5149,8 @@ GEOSContextHandle_t handle, const GEOSGeometry* g); +///@} + /* ====================================================================== */ /* END DEPRECATIONS */ /* ====================================================================== */ diff -Nru geos-3.10.2/capi/geos_ts_c.cpp geos-3.11.1/capi/geos_ts_c.cpp --- geos-3.10.2/capi/geos_ts_c.cpp 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/capi/geos_ts_c.cpp 2022-11-13 19:24:40.000000000 +0000 @@ -17,62 +17,64 @@ * ***********************************************************************/ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include +#include +#include +#include +#include #include -#include -#include #include -#include -#include -#include -#include -#include +#include +#include #include #include #include +#include +#include +#include +#include +#include #include -#include -#include -#include -#include -#include -#include +#include +#include #include #include -#include #include -#include +#include #include -#include #include +#include +#include #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include #include #include #include #include #include +#include #include #include #include +#include +#include #include #include #include #include #include #include -#include -#include #include #include #include @@ -81,8 +83,12 @@ #include #include #include +#include #include -#include +#include +#include +#include +#include #include #include #include @@ -157,6 +163,7 @@ using geos::geom::CoordinateSequence; using geos::geom::GeometryCollection; using geos::geom::GeometryFactory; +using geos::geom::Envelope; using geos::io::WKTReader; using geos::io::WKTWriter; @@ -167,9 +174,12 @@ using geos::algorithm::distance::DiscreteFrechetDistance; using geos::algorithm::distance::DiscreteHausdorffDistance; +using geos::algorithm::hull::ConcaveHull; +using geos::algorithm::hull::ConcaveHullOfPolygons; using geos::operation::buffer::BufferBuilder; using geos::operation::buffer::BufferParameters; +using geos::operation::buffer::OffsetCurve; using geos::operation::distance::IndexedFacetDistance; using geos::operation::geounion::CascadedPolygonUnion; using geos::operation::overlayng::OverlayNG; @@ -179,6 +189,8 @@ using geos::precision::GeometryPrecisionReducer; +using geos::simplify::PolygonHullSimplifier; + using geos::util::IllegalArgumentException; typedef std::unique_ptr GeomPtr; @@ -1166,13 +1178,8 @@ ); bp.setMitreLimit(mitreLimit); - bool isLeftSide = true; - if(width < 0) { - isLeftSide = false; - width = -width; - } - BufferBuilder bufBuilder(bp); - std::unique_ptr g3 = bufBuilder.bufferLineSingleSided(g1, width, isLeftSide); + OffsetCurve oc(*g1, width, bp); + std::unique_ptr g3 = oc.getCurve(); g3->setSRID(g1->getSRID()); return g3.release(); }); @@ -1214,6 +1221,76 @@ }); } + Geometry* + GEOSConcaveHull_r(GEOSContextHandle_t extHandle, + const Geometry* g1, + double ratio, + unsigned int allowHoles) + { + return execute(extHandle, [&]() { + ConcaveHull hull(g1); + hull.setMaximumEdgeLengthRatio(ratio); + hull.setHolesAllowed(allowHoles); + std::unique_ptr g3 = hull.getHull(); + g3->setSRID(g1->getSRID()); + return g3.release(); + }); + } + + Geometry* + GEOSPolygonHullSimplify_r(GEOSContextHandle_t extHandle, + const Geometry* g1, + unsigned int isOuter, + double vertexNumFraction) + { + return execute(extHandle, [&]() { + std::unique_ptr g3 = PolygonHullSimplifier::hull(g1, isOuter, vertexNumFraction); + g3->setSRID(g1->getSRID()); + return g3.release(); + }); + } + + Geometry* + GEOSPolygonHullSimplifyMode_r(GEOSContextHandle_t extHandle, + const Geometry* g1, + unsigned int isOuter, + unsigned int parameterMode, + double parameter) + { + return execute(extHandle, [&]() { + if (parameterMode == GEOSHULL_PARAM_AREA_RATIO) { + std::unique_ptr g3 = PolygonHullSimplifier::hullByAreaDelta(g1, isOuter, parameter); + g3->setSRID(g1->getSRID()); + return g3.release(); + } + else if (parameterMode == GEOSHULL_PARAM_VERTEX_RATIO) { + std::unique_ptr g3 = PolygonHullSimplifier::hull(g1, isOuter, parameter); + g3->setSRID(g1->getSRID()); + return g3.release(); + } + else { + throw IllegalArgumentException("GEOSPolygonHullSimplifyMode_r: Unknown parameterMode"); + } + }); + } + + Geometry* + GEOSConcaveHullOfPolygons_r(GEOSContextHandle_t extHandle, + const Geometry* g1, + double lengthRatio, + unsigned int isTight, + unsigned int isHolesAllowed) + { + return execute(extHandle, [&]() { + std::unique_ptr g3 = + ConcaveHullOfPolygons::concaveHullByLengthRatio( + g1, lengthRatio, + isTight > 0, + isHolesAllowed > 0); + g3->setSRID(g1->getSRID()); + return g3.release(); + }); + } Geometry* GEOSMinimumRotatedRectangle_r(GEOSContextHandle_t extHandle, const Geometry* g) @@ -1479,6 +1556,35 @@ }); } + Geometry* + GEOSGeom_transformXY_r(GEOSContextHandle_t handle, const GEOSGeometry* g, GEOSTransformXYCallback callback, void* userdata) { + + struct TransformFilter : public geos::geom::CoordinateFilter { + TransformFilter(GEOSTransformXYCallback p_callback, + void* p_userdata) : + m_callback(p_callback), + m_userdata(p_userdata) {} + + void filter_rw(geos::geom::Coordinate* c) const final { + if (!m_callback(&(c->x), &(c->y), m_userdata)) { + throw std::runtime_error(std::string("Failed to transform coordinates.")); + } + } + + GEOSTransformXYCallback m_callback; + void* m_userdata; + }; + + return execute(handle, [&]() { + TransformFilter filter(callback, userdata); + auto ret = g->clone(); + ret->apply_rw(&filter); + ret->geometryChanged(); + return ret.release(); + }); + } + + //------------------------------------------------------------------- // memory management functions //------------------------------------------------------------------ @@ -1795,6 +1901,21 @@ }); } + int + GEOSHilbertCode_r(GEOSContextHandle_t extHandle, const GEOSGeometry *geom, + const GEOSGeometry* extent, unsigned int level, + unsigned int *code) + { + using geos::shape::fractal::HilbertEncoder; + + return execute(extHandle, 0, [&]() { + geos::geom::Envelope e = *extent->getEnvelopeInternal(); + HilbertEncoder encoder(level, e); + *code = encoder.encode(geom->getEnvelopeInternal()); + return 1; + }); + } + Geometry* GEOSMinimumBoundingCircle_r(GEOSContextHandle_t extHandle, const Geometry* g, double* radius, Geometry** center) @@ -2025,6 +2146,21 @@ } Geometry* + GEOSRemoveRepeatedPoints_r( + GEOSContextHandle_t extHandle, + const Geometry* g, + double tolerance) + { + using geos::operation::valid::RepeatedPointRemover; + + return execute(extHandle, [&]() { + auto out = RepeatedPointRemover::removeRepeatedPoints(g, tolerance); + out->setSRID(g->getSRID()); + return out.release(); + }); + } + + Geometry* GEOSPolygonizer_getCutEdges_r(GEOSContextHandle_t extHandle, const Geometry* const* g, unsigned int ngeoms) { using geos::operation::polygonize::Polygonizer; @@ -2140,6 +2276,26 @@ } Geometry* + GEOSLineMergeDirected_r(GEOSContextHandle_t extHandle, const Geometry* g) + { + using geos::operation::linemerge::LineMerger; + + return execute(extHandle, [&]() { + GEOSContextHandleInternal_t* handle = reinterpret_cast(extHandle); + const GeometryFactory* gf = handle->geomFactory; + LineMerger lmrgr(true); + lmrgr.add(g); + + auto lines = lmrgr.getMergedLineStrings(); + + auto out = gf->buildGeometry(std::move(lines)); + out->setSRID(g->getSRID()); + + return out.release(); + }); + } + + Geometry* GEOSReverse_r(GEOSContextHandle_t extHandle, const Geometry* g) { return execute(extHandle, [&]() { @@ -2357,11 +2513,18 @@ class CoordinateBufferCopier : public geos::geom::CoordinateFilter { public: - CoordinateBufferCopier(double* p_buf, bool p_hasZ, bool p_hasM) : buf(p_buf), m(p_hasM), dim(2 + p_hasZ) {} + CoordinateBufferCopier(double* p_buf, bool p_hasZ, bool p_hasM) : buf(p_buf), m(p_hasM), z(p_hasZ) {} void filter_ro(const geos::geom::Coordinate* c) override { - std::memcpy(buf, c, dim * sizeof(double)); - buf += dim; + *buf = c->x; + buf++; + *buf = c->y; + buf++; + + if (z) { + *buf = c->z; + buf++; + } if (m) { *buf = std::numeric_limits::quiet_NaN(); @@ -2371,12 +2534,18 @@ private: double* buf; - bool m; - size_t dim; + const bool m; + const bool z; }; CoordinateBufferCopier cop(buf, hasZ, hasM); - cs->apply_ro(&cop); + // Speculatively check to see if our input is a CoordinateArraySequence. + // If so, gcc can inline the filter. + if (auto cas = dynamic_cast(cs)) { + cas->apply_ro(&cop); + } else { + cs->apply_ro(&cop); + } return 1; }); @@ -2672,6 +2841,19 @@ } Geometry* + GEOSGeom_createRectangle_r(GEOSContextHandle_t extHandle, + double xmin, double ymin, + double xmax, double ymax) + { + return execute(extHandle, [&]() { + GEOSContextHandleInternal_t* handle = reinterpret_cast(extHandle); + const GeometryFactory* gf = handle->geomFactory; + geos::geom::Envelope env(xmin, xmax, ymin, ymax); + return (gf->toGeometry(&env)).release(); + }); + } + + Geometry* GEOSGeom_clone_r(GEOSContextHandle_t extHandle, const Geometry* g) { return execute(extHandle, [&]() { @@ -2686,15 +2868,18 @@ using namespace geos::geom; return execute(extHandle, [&]() { - const PrecisionModel* pm = g->getPrecisionModel(); - double cursize = pm->isFloating() ? 0 : 1.0 / pm->getScale(); std::unique_ptr newpm; if(gridSize != 0) { - newpm.reset(new PrecisionModel(1.0 / std::abs(gridSize))); + // Use negative scale to indicate you actually want a gridSize + double scale = -1.0 * std::abs(gridSize); + newpm.reset(new PrecisionModel(scale)); } else { newpm.reset(new PrecisionModel()); } + + const PrecisionModel* pm = g->getPrecisionModel(); + double cursize = pm->isFloating() ? 0 : 1.0 / pm->getScale(); Geometry* ret; GeometryFactory::Ptr gf = GeometryFactory::create(newpm.get(), g->getSRID()); @@ -2794,6 +2979,22 @@ }); } + int + GEOSGeom_getExtent_r(GEOSContextHandle_t extHandle, const Geometry* g, double* xmin, double* ymin, double* xmax, double* ymax) + { + return execute(extHandle, 0, [&]() { + if(g->isEmpty()) { + return 0; + } + const Envelope* extent = g->getEnvelopeInternal(); + *xmin = extent->getMinX(); + *ymin = extent->getMinY(); + *xmax = extent->getMaxX(); + *ymax = extent->getMaxY(); + return 1; + }); + } + Geometry* GEOSSimplify_r(GEOSContextHandle_t extHandle, const Geometry* g1, double tolerance) { @@ -2839,6 +3040,14 @@ }); } + void + GEOSWKTReader_setFixStructure_r(GEOSContextHandle_t extHandle, WKTReader* reader, char doFix) + { + return execute(extHandle, [&]() { + return reader->setFixStructure(doFix); + }); + } + Geometry* GEOSWKTReader_read_r(GEOSContextHandle_t extHandle, WKTReader* reader, const char* wkt) { @@ -2938,6 +3147,14 @@ }); } + void + GEOSWKBReader_setFixStructure_r(GEOSContextHandle_t extHandle, WKBReader* reader, char doFix) + { + return execute(extHandle, [&]() { + return reader->setFixStructure(doFix); + }); + } + struct membuf : public std::streambuf { membuf(char* s, std::size_t n) { diff -Nru geos-3.10.2/cmake/Ccache.cmake geos-3.11.1/cmake/Ccache.cmake --- geos-3.10.2/cmake/Ccache.cmake 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.11.1/cmake/Ccache.cmake 2022-11-13 19:24:40.000000000 +0000 @@ -0,0 +1,64 @@ +# +# CMake module to support ccache (or clcache for MSVC) +# +# Copyright (c) 2022, Mike Taves +# +# Usage: +# Add "include(Ccache)" to CMakeLists.txt and enable +# using the option -D USE_CCACHE=ON + +cmake_minimum_required(VERSION 3.4) + + +option(USE_CCACHE + "Use ccache (or clcache for MSVC) to compile C/C++ objects" OFF) +if(NOT USE_CCACHE) + # stop here and return to including file + return() +endif() + +# Search priority: +# 1. ccache for many compilers except MSVC +# 2. clcache for MSVC + +find_program(CCACHE_PROGRAM NAMES ccache clcache) + +if(CCACHE_PROGRAM) + message(STATUS "GEOS: Configuring ccache with: ${CCACHE_PROGRAM}") + + if(CMAKE_GENERATOR STREQUAL "Xcode") + # see https://crascit.com/2016/04/09/using-ccache-with-cmake/ + set(C_LAUNCHER "${CCACHE_PROGRAM}") + set(CXX_LAUNCHER "${CCACHE_PROGRAM}") + set(CCACHE_LAUNCH_C ${CMAKE_BINARY_DIR}/ccache-c) + set(CCACHE_LAUNCH_CXX ${CMAKE_BINARY_DIR}/ccache-cxx) + file(WRITE "${CCACHE_LAUNCH_C}" "\ +#!/bin/sh +shift +exec \"${C_LAUNCHER}\" \"${CMAKE_C_COMPILER}\" \"$@\" +") + file(WRITE "${CCACHE_LAUNCH_CXX}" "\ +#!/bin/sh +shift +exec \"${CXX_LAUNCHER}\" \"${CMAKE_CXX_COMPILER}\" \"$@\" +") + # Note: file(CHMOD) introduced in CMake 3.19 + execute_process( + COMMAND chmod a+rx + "${CCACHE_LAUNCH_C}" + "${CCACHE_LAUNCH_CXX}" + ) + # Set Xcode project attributes to route compilation and linking + # through the wrapper scripts + set(CMAKE_XCODE_ATTRIBUTE_CC "${CCACHE_LAUNCH_C}") + set(CMAKE_XCODE_ATTRIBUTE_CXX "${CCACHE_LAUNCH_CXX}") + set(CMAKE_XCODE_ATTRIBUTE_LD "${CCACHE_LAUNCH_C}") + set(CMAKE_XCODE_ATTRIBUTE_LDPLUSPLUS "${CCACHE_LAUNCH_CXX}") + else() + # Most other generators (Unix Makefiles, Ninja, etc.) + set(CMAKE_C_COMPILER_LAUNCHER "${CCACHE_PROGRAM}") + set(CMAKE_CXX_COMPILER_LAUNCHER "${CCACHE_PROGRAM}") + endif() +else() + message(WARNING "GEOS: Ccache was requested, but no program was not found") +endif() diff -Nru geos-3.10.2/CMakeLists.txt geos-3.11.1/CMakeLists.txt --- geos-3.10.2/CMakeLists.txt 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/CMakeLists.txt 2022-11-13 19:24:40.000000000 +0000 @@ -13,65 +13,6 @@ # modes for specific C/C++ language standard levels, and object libraries. cmake_minimum_required(VERSION 3.13) -# Default to release build so packagers don't release debug builds -set(DEFAULT_BUILD_TYPE Release) - -# Require CMake 3.13+ with VS generator for complete support of VS versions -# and support by AppVeyor. -if(${CMAKE_GENERATOR} MATCHES "Visual Studio") - cmake_minimum_required(VERSION 3.13 FATAL_ERROR) -endif() - -list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") - -# TODO: Follow CMake detection of git and version tagging -# https://gitlab.kitware.com/cmake/cmake/blob/master/Source/CMakeVersionSource.cmake -if(EXISTS ${CMAKE_SOURCE_DIR}/.git) - set(GEOS_BUILD_FROM_GIT ON) -endif() - -# Make sure we know our build type -if(NOT CMAKE_BUILD_TYPE) - set(CMAKE_BUILD_TYPE ${DEFAULT_BUILD_TYPE}) - message(STATUS "GEOS: Using default build type: ${CMAKE_BUILD_TYPE}") -else() - message(STATUS "GEOS: Build type: ${CMAKE_BUILD_TYPE}") -endif() - -#----------------------------------------------------------------------------- -# Options -#----------------------------------------------------------------------------- -include(CMakeDependentOption) - -## CMake global variables -option(BUILD_SHARED_LIBS "Build GEOS with shared libraries" ON) -set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ standard version to use (default is 11)") - -## GEOS custom variables -option(BUILD_BENCHMARKS "Build GEOS benchmarks" OFF) -cmake_dependent_option(GEOS_BUILD_DEVELOPER - "Build with compilation flags useful for development" ON - "GEOS_BUILD_FROM_GIT" OFF) -mark_as_advanced(GEOS_BUILD_DEVELOPER) - -if (POLICY CMP0092) - # dont set /W3 warning flags by default, we already - # set /W4 anyway - cmake_policy(SET CMP0092 NEW) -endif() - -#----------------------------------------------------------------------------- -# Setup build directories -#----------------------------------------------------------------------------- -# Place executables and shared libraries in the same location for -# convenience of direct execution from common spot and for -# convenience in environments without RPATH support. -set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) -set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) -message(STATUS "GEOS: Run-time output: ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}") -message(STATUS "GEOS: Archives output: ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}") - #----------------------------------------------------------------------------- # Version #----------------------------------------------------------------------------- @@ -119,7 +60,7 @@ list(APPEND _project_info DESCRIPTION "GEOS - C++ port of the Java Topology Suite (JTS)") endif() if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.12) - list(APPEND _project_info HOMEPAGE_URL "http://geos.osgeo.org") + list(APPEND _project_info HOMEPAGE_URL "https://libgeos.org/") endif() project(GEOS VERSION "${_version_major}.${_version_minor}.${_version_patch}" @@ -142,6 +83,78 @@ message(STATUS "GEOS: C API Version ${CAPI_VERSION}") message(STATUS "GEOS: JTS port ${JTS_PORT}") +if(CMAKE_VERSION VERSION_LESS 3.21) + if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR) + set(PROJECT_IS_TOP_LEVEL ON) + else() + set(PROJECT_IS_TOP_LEVEL OFF) + endif() +endif() + +#----------------------------------------------------------------------------- +# Setup +#----------------------------------------------------------------------------- + +# Default to release build so packagers don't release debug builds +set(DEFAULT_BUILD_TYPE Release) + +# Require CMake 3.13+ with VS generator for complete support of VS versions +# and support by AppVeyor. +if(${CMAKE_GENERATOR} MATCHES "Visual Studio") + cmake_minimum_required(VERSION 3.13 FATAL_ERROR) +endif() + +list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") + +# TODO: Follow CMake detection of git and version tagging +# https://gitlab.kitware.com/cmake/cmake/blob/master/Source/CMakeVersionSource.cmake +if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git) + set(GEOS_BUILD_FROM_GIT ON) +endif() + +# Make sure we know our build type +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE ${DEFAULT_BUILD_TYPE}) + message(STATUS "GEOS: Using default build type: ${CMAKE_BUILD_TYPE}") +else() + message(STATUS "GEOS: Build type: ${CMAKE_BUILD_TYPE}") +endif() + +#----------------------------------------------------------------------------- +# Options +#----------------------------------------------------------------------------- +include(Ccache) +include(CMakeDependentOption) + +## CMake global variables +option(BUILD_SHARED_LIBS "Build GEOS with shared libraries" ON) +set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ standard version to use (default is 11)") + +## GEOS custom variables +option(BUILD_BENCHMARKS "Build GEOS benchmarks" OFF) +cmake_dependent_option(GEOS_BUILD_DEVELOPER + "Build with compilation flags useful for development" ON + "GEOS_BUILD_FROM_GIT;PROJECT_IS_TOP_LEVEL" OFF) +mark_as_advanced(GEOS_BUILD_DEVELOPER) + +if (POLICY CMP0092) + # dont set /W3 warning flags by default, we already + # set /W4 anyway + cmake_policy(SET CMP0092 NEW) +endif() + +#----------------------------------------------------------------------------- +# Setup build directories +#----------------------------------------------------------------------------- +# Place executables and shared libraries in the same location for +# convenience of direct execution from common spot and for +# convenience in environments without RPATH support. +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin) +message(STATUS "GEOS: Run-time output: ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}") +message(STATUS "GEOS: Archives output: ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}") + #----------------------------------------------------------------------------- # Install directories #----------------------------------------------------------------------------- @@ -182,38 +195,12 @@ $<$,$>:-ffloat-store> ) -#----------------------------------------------------------------------------- -# Target geos_cxx_flags: common compilation flags -#----------------------------------------------------------------------------- -option(DISABLE_GEOS_INLINE "Disable inlining" OFF) -if(NOT DISABLE_GEOS_INLINE) - target_compile_definitions(geos_cxx_flags INTERFACE GEOS_INLINE) - message(STATUS - "GEOS: Function inlining ENABLED") -else() - message(STATUS - "GEOS: Function inlining DISABLED") -endif() - # Make sure NDEBUG is defined so that assert() is disabled for # any non-debug build. Use a generator expression so that this # works with multi-configuration generators. target_compile_definitions(geos_cxx_flags INTERFACE $<$>:NDEBUG>) #----------------------------------------------------------------------------- -# Target geos_cxx_flags: overlayng code -#----------------------------------------------------------------------------- -#option(DISABLE_OVERLAYNG "Disable overlayng algorithms" OFF) -#if(DISABLE_OVERLAYNG) -# target_compile_definitions(geos_cxx_flags INTERFACE DISABLE_OVERLAYNG) -# message(STATUS -# "GEOS: OverlayNG DISABLED") -#else() -# message(STATUS -# "GEOS: OverlayNG ENABLED") -#endif() - -#----------------------------------------------------------------------------- # Target geos_developer_cxx_flags: developer mode compilation flags #----------------------------------------------------------------------------- # Do NOT install this target for end-users! @@ -268,24 +255,34 @@ # Target geos: C++ API library #----------------------------------------------------------------------------- add_library(geos "") +add_library(GEOS::geos ALIAS geos) target_link_libraries(geos PUBLIC geos_cxx_flags PRIVATE $) # ryu is an object library, nothing is actually being linked here. The BUILD_INTERFACE # switch was necessary to build on AppVeyor (CMake 3.16.2) but not locally (CMake 3.16.3) add_subdirectory(include) add_subdirectory(src) +# Some packagers would like the DLL files generated by MinGW to +# include version numbers in the file name. Others would rather +# they not (which is the cmake default). +option(VERSION_MINGW_SHARED_LIBS "Add version suffix to MinGW shared libraries" OFF) + if(BUILD_SHARED_LIBS) target_compile_definitions(geos PRIVATE $,GEOS_DLL_EXPORT,DLL_EXPORT>) set_target_properties(geos PROPERTIES VERSION ${GEOS_VERSION_NOPATCH}) set_target_properties(geos PROPERTIES SOVERSION ${GEOS_VERSION_NOPATCH}) + if(MINGW AND VERSION_MINGW_SHARED_LIBS) + set_target_properties(geos PROPERTIES SUFFIX "-${GEOS_VERSION_NOPATCH}${CMAKE_SHARED_LIBRARY_SUFFIX}") + endif() endif() #----------------------------------------------------------------------------- # Target geos_c: C API library #----------------------------------------------------------------------------- add_library(geos_c "") +add_library(GEOS::geos_c ALIAS geos_c) target_link_libraries(geos_c PRIVATE geos) if(BUILD_SHARED_LIBS) @@ -293,9 +290,12 @@ PRIVATE $,GEOS_DLL_EXPORT,DLL_EXPORT>) set_target_properties(geos_c PROPERTIES VERSION ${CAPI_VERSION}) - if(NOT WIN32) + if(NOT WIN32 OR MINGW) set_target_properties(geos_c PROPERTIES SOVERSION ${CAPI_VERSION_MAJOR}) endif() + if(MINGW AND VERSION_MINGW_SHARED_LIBS) + set_target_properties(geos_c PROPERTIES SUFFIX "-${CAPI_VERSION_MAJOR}${CMAKE_SHARED_LIBRARY_SUFFIX}") + endif() endif() add_subdirectory(capi) @@ -303,27 +303,42 @@ #----------------------------------------------------------------------------- # Tests #----------------------------------------------------------------------------- -include(CTest) -if(BUILD_TESTING) - add_subdirectory(tests) +if(PROJECT_IS_TOP_LEVEL) + include(CTest) + if(BUILD_TESTING) + add_subdirectory(tests) + endif() endif() #----------------------------------------------------------------------------- # Benchmarks #----------------------------------------------------------------------------- -if(BUILD_BENCHMARKS) +if(PROJECT_IS_TOP_LEVEL AND BUILD_BENCHMARKS) add_subdirectory(benchmarks) endif() #----------------------------------------------------------------------------- # Utils #----------------------------------------------------------------------------- -add_subdirectory(util) +if(PROJECT_IS_TOP_LEVEL) + add_subdirectory(util) +endif() #----------------------------------------------------------------------------- # Documentation/Examples #----------------------------------------------------------------------------- -add_subdirectory(doc) +if(PROJECT_IS_TOP_LEVEL) + add_subdirectory(doxygen) +endif() + +#----------------------------------------------------------------------------- +# Web Site +#----------------------------------------------------------------------------- +option(BUILD_WEBSITE "Build website" OFF) + +if(PROJECT_IS_TOP_LEVEL AND BUILD_WEBSITE) + add_subdirectory(web) +endif() #----------------------------------------------------------------------------- # Install and export targets - support 'make install' or equivalent @@ -373,83 +388,87 @@ "${CMAKE_CURRENT_BINARY_DIR}/include/geos" DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} FILES_MATCHING PATTERN "*.hpp") -if(NOT DISABLE_GEOS_INLINE) - install(DIRECTORY - "${CMAKE_CURRENT_LIST_DIR}/include/geos" - "${CMAKE_CURRENT_BINARY_DIR}/include/geos" - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} - FILES_MATCHING PATTERN "*.inl") -endif() install(FILES "${CMAKE_CURRENT_BINARY_DIR}/capi/geos_c.h" DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) +install(FILES "${CMAKE_CURRENT_LIST_DIR}/include/geos.h" + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) add_subdirectory(tools) #----------------------------------------------------------------------------- # Uninstall #----------------------------------------------------------------------------- - -configure_file("${PROJECT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in" - "${PROJECT_BINARY_DIR}/cmake/cmake_uninstall.cmake" - IMMEDIATE @ONLY) - -add_custom_target(uninstall - "${CMAKE_COMMAND}" -P "${PROJECT_BINARY_DIR}/cmake/cmake_uninstall.cmake") +if(PROJECT_IS_TOP_LEVEL) + configure_file("${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in" + "${CMAKE_CURRENT_BINARY_DIR}/cmake/cmake_uninstall.cmake" + IMMEDIATE @ONLY) + + add_custom_target(uninstall + "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake/cmake_uninstall.cmake") +endif() # PROJECT_IS_TOP_LEVEL #----------------------------------------------------------------------------- # "make dist" workalike #----------------------------------------------------------------------------- -get_property(_is_multi_config_generator GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) -if(NOT _is_multi_config_generator) - set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "GEOS Computational Geometry Library") - set(CPACK_PACKAGE_VENDOR "OSGeo") - set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README.md) - set(CPACK_SOURCE_GENERATOR "TBZ2") - set(CPACK_PACKAGE_VERSION_MAJOR ${GEOS_VERSION_MAJOR}) - set(CPACK_PACKAGE_VERSION_MINOR ${GEOS_VERSION_MINOR}) - set(CPACK_PACKAGE_VERSION_PATCH ${GEOS_VERSION_PATCH}) - set(CPACK_SOURCE_PACKAGE_FILE_NAME "geos-${GEOS_VERSION}") - - set(CPACK_SOURCE_IGNORE_FILES - "/\\\\.git" - "/autogen\\\\.sh" - "/tools/ci" - "/HOWTO_RELEASE" - "/autom4te\\\\.cache" - "\\\\.yml\$" - "\\\\.deps" - "/debian/" - "/php/" - "/.*build-.*/" - "cmake_install\\\\.cmake" - "/include/geos/version\\\\.h\$" - "/tools/geos-config\$" - "/tools/geos\\\\.pc\$" - ${PROJECT_BINARY_DIR} - ) +if(PROJECT_IS_TOP_LEVEL) + get_property(_is_multi_config_generator GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT _is_multi_config_generator) + set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "GEOS Computational Geometry Library") + set(CPACK_PACKAGE_VENDOR "OSGeo") + set(CPACK_PACKAGE_DESCRIPTION_FILE ${CMAKE_CURRENT_SOURCE_DIR}/README.md) + set(CPACK_SOURCE_GENERATOR "TBZ2") + set(CPACK_PACKAGE_VERSION_MAJOR ${GEOS_VERSION_MAJOR}) + set(CPACK_PACKAGE_VERSION_MINOR ${GEOS_VERSION_MINOR}) + set(CPACK_PACKAGE_VERSION_PATCH ${GEOS_VERSION_PATCH}) + set(CPACK_SOURCE_PACKAGE_FILE_NAME "geos-${GEOS_VERSION}") + + set(CPACK_SOURCE_IGNORE_FILES + "/\\\\.git" + "/autogen\\\\.sh" + "/tools/ci" + "/HOWTO_RELEASE" + "/autom4te\\\\.cache" + "\\\\.yml\$" + "\\\\.deps" + "/debian/" + "/php/" + "/.*build-.*/" + "cmake_install\\\\.cmake\$" + "/include/geos/version\\\\.h\$" + "/tools/geos-config\$" + "/tools/geos\\\\.pc\$" + "/bin/" + "/web/" + ${CMAKE_CURRENT_BINARY_DIR} + ) + + # message(STATUS "GEOS: CPACK_SOURCE_PACKAGE_FILE_NAME: ${CPACK_SOURCE_PACKAGE_FILE_NAME}") + # message(STATUS "GEOS: CPACK_SOURCE_IGNORE_FILES: ${CPACK_SOURCE_IGNORE_FILES}") + # message(STATUS "GEOS: CMAKE_MODULE_PATH: ${CMAKE_MODULE_PATH}") + include(CPack) + add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source) - # message(STATUS "GEOS: CPACK_SOURCE_PACKAGE_FILE_NAME: ${CPACK_SOURCE_PACKAGE_FILE_NAME}") - # message(STATUS "GEOS: CPACK_SOURCE_IGNORE_FILES: ${CPACK_SOURCE_IGNORE_FILES}") - # message(STATUS "GEOS: CMAKE_MODULE_PATH: ${CMAKE_MODULE_PATH}") - include(CPack) - add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source) - - message(STATUS "GEOS: Configured 'dist' target") -endif() + message(STATUS "GEOS: Configured 'dist' target") + endif() +endif() # PROJECT_IS_TOP_LEVEL #----------------------------------------------------------------------------- # "make check" workalike #----------------------------------------------------------------------------- -add_custom_target(check COMMAND ${CMAKE_BUILD_TOOL} test) +if(PROJECT_IS_TOP_LEVEL) + add_custom_target(check COMMAND ${CMAKE_BUILD_TOOL} test) +endif() #----------------------------------------------------------------------------- # "make distcheck" workalike #----------------------------------------------------------------------------- -if(NOT _is_multi_config_generator) - find_package(MakeDistCheck) - AddMakeDistCheck() - message(STATUS "GEOS: Configured 'distcheck' target") -endif() +if(PROJECT_IS_TOP_LEVEL) + if(NOT _is_multi_config_generator) + find_package(MakeDistCheck) + AddMakeDistCheck() + message(STATUS "GEOS: Configured 'distcheck' target") + endif() -unset(_is_multi_config_generator) + unset(_is_multi_config_generator) +endif() # PROJECT_IS_TOP_LEVEL diff -Nru geos-3.10.2/CODE_OF_CONDUCT.md geos-3.11.1/CODE_OF_CONDUCT.md --- geos-3.10.2/CODE_OF_CONDUCT.md 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.11.1/CODE_OF_CONDUCT.md 2022-11-13 19:24:40.000000000 +0000 @@ -0,0 +1,4 @@ +Code of Conduct +=============== + +See [the GEOS Code of Conduct](https://libgeos.org/project/coc/). diff -Nru geos-3.10.2/configure geos-3.11.1/configure --- geos-3.10.2/configure 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/configure 2022-11-13 19:24:40.000000000 +0000 @@ -24,7 +24,7 @@ cmd="${cmd} -DCMAKE_INSTALL_PREFIX:PATH=$1" ;; --enable-debug) - cmd="${cmd} -DCMAKE_BUILD_TYPE=Debug" + cmd="${cmd} -DCMAKE_BUILD_TYPE=RelWithDebInfo" ;; --help) usage diff -Nru geos-3.10.2/debian/changelog geos-3.11.1/debian/changelog --- geos-3.10.2/debian/changelog 2022-01-17 14:25:46.000000000 +0000 +++ geos-3.11.1/debian/changelog 2022-12-05 08:00:00.000000000 +0000 @@ -1,3 +1,88 @@ +geos (3.11.1-1~jammy0) jammy; urgency=medium + + * No change rebuild for Jammy. + + -- Angelos Tzotsos Mon, 05 Dec 2022 10:00:00 +0200 + +geos (3.11.1-1) unstable; urgency=medium + + * Update symbols for other architectures. + * Move from experimental to unstable. + + -- Bas Couwenberg Wed, 16 Nov 2022 06:12:17 +0100 + +geos (3.11.1-1~exp1) experimental; urgency=medium + + * New upstream release. + * Rename library package for SONAME bump. + * Drop doxygen 1.9.4 patch, fixed upstream. + * Update copyright file. + * Update lintian overrides. + * Update symbols for amd64. + + -- Bas Couwenberg Tue, 15 Nov 2022 05:25:47 +0100 + +geos (3.11.0-2) unstable; urgency=medium + + * Drop obsolete dh_strip override, dbgsym migration complete. + * Add patch to fix FTBFS with Doxygen 1.9.4. + (closes: #1015862) + + -- Bas Couwenberg Sun, 24 Jul 2022 18:03:03 +0200 + +geos (3.11.0-1) unstable; urgency=medium + + * New upstream release. + * Update symbols for other architectures. + * Move from experimental to unstable. + + -- Bas Couwenberg Fri, 01 Jul 2022 20:30:53 +0200 + +geos (3.11.0~rc0-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Bump Standards-Version to 4.6.1, no changes. + + -- Bas Couwenberg Thu, 30 Jun 2022 05:20:59 +0200 + +geos (3.11.0~beta2-1~exp1) experimental; urgency=medium + + * New upstream beta release. + * Revert web directory exclusion, fixed upstream. + * Update symbols for other architectures. + + -- Bas Couwenberg Mon, 20 Jun 2022 19:45:02 +0200 + +geos (3.11.0~beta1-1~exp1) experimental; urgency=medium + + * New upstream beta release. + * Rename library package for SONAME bump. + * Don't include .inl files in libgeos++-dev, removed upstream. + * Update copyright file. + * Exclude web directory from upstream tree. + * Update docs for renamed NEWS.md. + * Update symbols for amd64. + * Include geos.h in libgeos++-dev. + + -- Bas Couwenberg Mon, 13 Jun 2022 06:10:50 +0200 + +geos (3.10.3-1) unstable; urgency=medium + + * Update symbols for other architectures. + * Move from experimental to unstable. + + -- Bas Couwenberg Mon, 06 Jun 2022 08:06:45 +0200 + +geos (3.10.3-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update copyright file. + * Rename library package for SONAME bump. + * Include .inl files in libgeos++-dev. + * Update symbols for amd64. + + -- Bas Couwenberg Fri, 03 Jun 2022 18:59:19 +0200 + geos (3.10.2-1) unstable; urgency=medium * Update symbols for other architectures. diff -Nru geos-3.10.2/debian/control geos-3.11.1/debian/control --- geos-3.10.2/debian/control 2022-01-17 14:24:17.000000000 +0000 +++ geos-3.11.1/debian/control 2022-11-16 04:59:25.000000000 +0000 @@ -8,7 +8,7 @@ cmake, doxygen, pkg-kde-tools -Standards-Version: 4.6.0 +Standards-Version: 4.6.1 Vcs-Browser: https://salsa.debian.org/debian-gis-team/geos Vcs-Git: https://salsa.debian.org/debian-gis-team/geos.git Homepage: https://trac.osgeo.org/geos/ @@ -30,7 +30,7 @@ Package: libgeos++-dev Architecture: any Section: libdevel -Depends: libgeos3.10.2 (= ${binary:Version}), +Depends: libgeos3.11.1 (= ${binary:Version}), libgeos-dev, ${misc:Depends} Suggests: libgdal-doc @@ -69,7 +69,7 @@ . This package contains the C library. -Package: libgeos3.10.2 +Package: libgeos3.11.1 Architecture: any Multi-Arch: same Section: libs diff -Nru geos-3.10.2/debian/copyright geos-3.11.1/debian/copyright --- geos-3.10.2/debian/copyright 2021-11-10 17:30:10.000000000 +0000 +++ geos-3.11.1/debian/copyright 2022-11-16 04:59:18.000000000 +0000 @@ -24,9 +24,10 @@ 2009-2020, Sandro Santilli 2020, Crunchy Data 2016-2021, Daniel Baston - 2018-2021, Paul Ramsey - 2010-2012, 2019-2021, Martin Davis 2021, Jared Erickson + 2010-2012, 2019-2022, Martin Davis + 2018-2022, Paul Ramsey + 2022, ISciences LLC License: LGPL-2.1+ Comment: The upstream contributors are listed in the AUTHORS file. diff -Nru geos-3.10.2/debian/docs geos-3.11.1/debian/docs --- geos-3.10.2/debian/docs 2021-11-03 04:50:32.000000000 +0000 +++ geos-3.11.1/debian/docs 2022-07-01 17:32:18.000000000 +0000 @@ -1,3 +1,3 @@ AUTHORS -NEWS +NEWS.md README.md diff -Nru geos-3.10.2/debian/geos-bin.lintian-overrides geos-3.11.1/debian/geos-bin.lintian-overrides --- geos-3.10.2/debian/geos-bin.lintian-overrides 2021-11-03 04:50:32.000000000 +0000 +++ geos-3.11.1/debian/geos-bin.lintian-overrides 2022-11-16 04:59:18.000000000 +0000 @@ -1,3 +1,6 @@ # Upstream doesn't provide manpages. no-manual-page * +# Truncated changelog +debian-news-entry-has-unknown-version * + diff -Nru geos-3.10.2/debian/libgeos3.10.2.install geos-3.11.1/debian/libgeos3.10.2.install --- geos-3.10.2/debian/libgeos3.10.2.install 2022-01-17 14:24:10.000000000 +0000 +++ geos-3.11.1/debian/libgeos3.10.2.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -usr/lib/*/libgeos.so.* diff -Nru geos-3.10.2/debian/libgeos3.10.2.symbols geos-3.11.1/debian/libgeos3.10.2.symbols --- geos-3.10.2/debian/libgeos3.10.2.symbols 2022-01-17 14:25:29.000000000 +0000 +++ geos-3.11.1/debian/libgeos3.10.2.symbols 1970-01-01 00:00:00.000000000 +0000 @@ -1,5708 +0,0 @@ -# SymbolsHelper-Confirmed: 3.10.2 amd64 armel armhf hppa i386 m68k mipsel powerpc sh4 x32 -libgeos.so.3.10.2 #PACKAGE# #MINVER# -* Build-Depends-Package: libgeos++-dev - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE10json_value7destroyENS_6detail7value_tE@Base 3.10.0 - (optional=templinst|subst|arch=!amd64 !arm64 !hppa !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64 !x32)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE6createIS2_ISC_SaISC_EEJN9__gnu_cxx17__normal_iteratorIPKS2_IS2_ISt4pairIddESaISJ_EESaISL_EES2_ISN_SaISN_EEEESS_EEEPT_DpOT0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE6createIS2_ISC_SaISC_EEJN9__gnu_cxx17__normal_iteratorIPKS2_ISt4pairIddESaISJ_EES2_ISL_SaISL_EEEESQ_EEEPT_DpOT0_@Base 3.10.0 - (optional=templinst|arch=!amd64 !arm64|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE9push_backEOSC_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE9push_backERKSC_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC1ERKSC_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC1ESt16initializer_listINS_6detail8json_refISC_EEEbNSE_7value_tE@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC2ERKSC_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC2ESt16initializer_listINS_6detail8json_refISC_EEEbNSE_7value_tE@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEixERKS8_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEixIKcEERSC_PT_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE10json_value7destroyENS_6detail7value_tE@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE10json_valueC1ENS_6detail7value_tE@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE10json_valueC2ENS_6detail7value_tE@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE5eraseINS_6detail9iter_implISC_EELi0EEET_SH_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE5parseIRKS8_EESC_OT_St8functionIFbiNS_6detail13parse_event_tERSC_EEbb@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE6createIS8_JRKS8_EEEPT_DpOT0_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC1ERKSC_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC2ERKSC_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_escapedERKSA_b@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerIhLi0EEEvT_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerI{int64_t}Li0EEEvT_@Base 3.10.0 - (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !m68k !mipsel !powerpc|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerI{uint64_t}Li0EEEvT_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE4dumpERKSE_bbjj@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEED1Ev@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEED2Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail10type_error6createEiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - _ZN13geos_nlohmann6detail10type_errorD0Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail10type_errorD1Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail10type_errorD2Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail11other_error6createEiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - _ZN13geos_nlohmann6detail11other_errorD0Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail11other_errorD1Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail11other_errorD2Ev@Base 3.10.0 - (arch=!amd64 !arm64 !x32)_ZN13geos_nlohmann6detail11parse_error15position_stringB5cxx11ERKNS0_10position_tE@Base 3.10.0 - _ZN13geos_nlohmann6detail11parse_error6createEiRKNS0_10position_tERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - _ZN13geos_nlohmann6detail11parse_errorD0Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail11parse_errorD1Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail11parse_errorD2Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail12out_of_range6createEiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - _ZN13geos_nlohmann6detail12out_of_rangeD0Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail12out_of_rangeD1Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail12out_of_rangeD2Ev@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail13int_to_stringINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEvRT_{size_t}@Base 3.10.0 - _ZN13geos_nlohmann6detail16invalid_iterator6createEiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - _ZN13geos_nlohmann6detail16invalid_iteratorD0Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail16invalid_iteratorD1Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail16invalid_iteratorD2Ev@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN13geos_nlohmann6detail19json_sax_dom_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIDnEEPSE_OT_@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN13geos_nlohmann6detail19json_sax_dom_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIRdEEPSE_OT_@Base 3.10.0 - (optional=templinst|arch=ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN13geos_nlohmann6detail19json_sax_dom_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIRlEEPSE_OT_@Base 3.10.0 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN13geos_nlohmann6detail19json_sax_dom_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIDnEEPSE_OT_@Base 3.10.0 - (optional=templinst|arch=hppa sh4 x32)_ZN13geos_nlohmann6detail19json_sax_dom_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIRdEEPSE_OT_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail19json_sax_dom_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE11start_arrayE{size_t}@Base 3.10.0 - (optional=templinst|arch=hppa ia64 mips64el ppc64 ppc64el riscv64 s390x sh4 sparc64|subst)_ZN13geos_nlohmann6detail19json_sax_dom_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIR{uint64_t}EEPSE_OT_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail19json_sax_dom_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12start_objectE{size_t}@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN13geos_nlohmann6detail20external_constructorILNS0_7value_tE2EE9constructINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS_14adl_serializerES7_IhSaIhEEEES7_IS7_IS7_ISt4pairIddESaISJ_EESaISL_EESaISN_EELi0EEEvRT_RKT0_@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN13geos_nlohmann6detail20external_constructorILNS0_7value_tE2EE9constructINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS_14adl_serializerES7_IhSaIhEEEES7_IS7_ISt4pairIddESaISJ_EESaISL_EELi0EEEvRT_RKT0_@Base 3.10.0 - (optional=templinst|arch=hppa x32)_ZN13geos_nlohmann6detail20external_constructorILNS0_7value_tE2EE9constructINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS_14adl_serializerES7_IhSaIhEEEES7_IS7_IS7_ISt4pairIddESaISJ_EESaISL_EESaISN_EELi0EEEvRT_RKT0_@Base 3.10.0 - (optional=templinst|arch=hppa x32)_ZN13geos_nlohmann6detail20external_constructorILNS0_7value_tE2EE9constructINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS_14adl_serializerES7_IhSaIhEEEES7_IS7_ISt4pairIddESaISJ_EESaISL_EELi0EEEvRT_RKT0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc sh4)_ZN13geos_nlohmann6detail20external_constructorILNS0_7value_tE2EE9constructINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS_14adl_serializerES7_IhSaIhEEEES7_ISt4pairIddESaISJ_EELi0EEEvRT_RKT0_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail20get_arithmetic_valueINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEdLi0EEEvRKT_RT0_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail21iteration_proxy_valueINS0_9iter_implIKNS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES5_IhSaIhEEEEEEED1Ev@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail21iteration_proxy_valueINS0_9iter_implIKNS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES5_IhSaIhEEEEEEED2Ev@Base 3.10.0 - (optional=templinst)_ZN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE15write_characterEc@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE16write_charactersEPKc{size_t}@Base 3.10.0 - (optional=templinst)_ZN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED0Ev@Base 3.10.0 - (optional=templinst)_ZN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev@Base 3.10.0 - (optional=templinst)_ZN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE10end_objectEv@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE11start_arrayE{size_t}@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 hppa sh4 x32|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIDnEESt4pairIbPSE_EOT_b@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueINS0_7value_tEEESt4pairIbPSE_EOT_b@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIRSA_EESt4pairIbPSE_EOT_b@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIRbEESt4pairIbPSE_EOT_b@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIRdEESt4pairIbPSE_EOT_b@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIR{int64_t}EESt4pairIbPSE_EOT_b@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueIR{uint64_t}EESt4pairIbPSE_EOT_b@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12start_objectE{size_t}@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE3keyERSA_@Base 3.10.0 - (optional=templinst|arch=!amd64 !arm64 !hppa !sh4 !x32|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE4nullEv@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE9end_arrayEv@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEED1Ev@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEED2Ev@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE11scan_numberEv@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE11scan_stringEv@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE13get_codepointEv@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE18next_byte_in_rangeESt16initializer_listIiE@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE3getEv@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE4scanEv@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEED1Ev@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEED2Ev@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail6parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE17exception_messageENS0_10lexer_baseISE_E10token_typeERKSA_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail6parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE18sax_parse_internalINS0_19json_sax_dom_parserISE_EEEEbPT_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail6parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE18sax_parse_internalINS0_28json_sax_dom_callback_parserISE_EEEEbPT_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail6parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE5parseEbRSE_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail7to_jsonINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEddLi0EEEvRT_RKSt4pairIT0_T1_E@Base 3.10.0 - _ZN13geos_nlohmann6detail9dtoa_impl13format_bufferEPciiii@Base 3.10.0 - (arch=amd64 arm64 x32)_ZN13geos_nlohmann6detail9dtoa_impl16grisu2_digit_genEPcRiS3_NS1_5diyfpES4_S4_@Base 3.10.0 - (optional=templinst)_ZN13geos_nlohmann6detail9dtoa_impl6grisu2IdEEvPcRiS4_T_@Base 3.10.0 - _ZN13geos_nlohmann6detail9exception4nameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi@Base 3.10.0 - _ZN13geos_nlohmann6detail9exceptionD0Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail9exceptionD1Ev@Base 3.10.0 - _ZN13geos_nlohmann6detail9exceptionD2Ev@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEEEvRKT_RNSF_8string_tE@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEEEvRKT_RNSF_9boolean_tE@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEES4_IS4_IS4_IS4_IdSaIdEESaISG_EESaISI_EESaISK_EELi0EEEDTcmcmcl20from_json_array_implfp_fp0_cvNS0_12priority_tagILj3EEEilEEcldtfp_3getINT0_10value_typeEEEcvv_EERKT_RSP_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEES4_IS4_IS4_IdSaIdEESaISG_EESaISI_EELi0EEEDTcmcmcl20from_json_array_implfp_fp0_cvNS0_12priority_tagILj3EEEilEEcldtfp_3getINT0_10value_typeEEEcvv_EERKT_RSN_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEES4_IS4_IdSaIdEESaISG_EELi0EEEDTcmcmcl20from_json_array_implfp_fp0_cvNS0_12priority_tagILj3EEEilEEcldtfp_3getINT0_10value_typeEEEcvv_EERKT_RSL_@Base 3.10.0 - (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEES4_IdSaIdEELi0EEEDTcmcmcl20from_json_array_implfp_fp0_cvNS0_12priority_tagILj3EEEilEEcldtfp_3getINT0_10value_typeEEEcvv_EERKT_RSJ_@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 ia64 m68k mips64el ppc64el riscv64 sparc64 x32|subst)_ZN13geos_nlohmann6detail9iter_implIKNS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE9set_beginEv@Base 3.10.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos11planargraph11PlanarGraph17findNodesOfDegreeEj@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos11planargraph11PlanarGraph17findNodesOfDegreeEjRSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos11planargraph11PlanarGraph17findNodesOfDegreeEm@Base 3.7.0 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos11planargraph11PlanarGraph17findNodesOfDegreeEmRSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.7.0 - _ZN4geos11planargraph11PlanarGraph3addEPNS0_4EdgeE@Base 3.4.2 - _ZN4geos11planargraph11PlanarGraph6removeEPNS0_12DirectedEdgeE@Base 3.4.2 - _ZN4geos11planargraph11PlanarGraph6removeEPNS0_4EdgeE@Base 3.4.2 - _ZN4geos11planargraph11PlanarGraph6removeEPNS0_4NodeE@Base 3.4.2 - _ZN4geos11planargraph11PlanarGraphD0Ev@Base 3.4.2 - _ZN4geos11planargraph11PlanarGraphD1Ev@Base 3.4.2 - _ZN4geos11planargraph11PlanarGraphD2Ev@Base 3.4.2 - _ZN4geos11planargraph11pdeLessThanEPNS0_12DirectedEdgeES2_@Base 3.4.2 - _ZN4geos11planargraph12DirectedEdge6setSymEPS1_@Base 3.4.2 - _ZN4geos11planargraph12DirectedEdge7setEdgeEPNS0_4EdgeE@Base 3.4.2 - _ZN4geos11planargraph12DirectedEdge7toEdgesERSt6vectorIPS1_SaIS3_EE@Base 3.4.2 - _ZN4geos11planargraph12DirectedEdge7toEdgesERSt6vectorIPS1_SaIS3_EERS2_IPNS0_4EdgeESaIS8_EE@Base 3.4.2 - _ZN4geos11planargraph12DirectedEdgeC1EPNS0_4NodeES3_RKNS_4geom10CoordinateEb@Base 3.4.2 - _ZN4geos11planargraph12DirectedEdgeC2EPNS0_4NodeES3_RKNS_4geom10CoordinateEb@Base 3.4.2 - _ZN4geos11planargraph12DirectedEdgeD0Ev@Base 3.4.2 - _ZN4geos11planargraph12DirectedEdgeD1Ev@Base 3.4.2 - _ZN4geos11planargraph12DirectedEdgeD2Ev@Base 3.4.2 - _ZN4geos11planargraph14GraphComponent10setVisitedEb@Base 3.4.2 - _ZN4geos11planargraph14GraphComponent9setMarkedEb@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStar11getNextEdgeEPNS0_12DirectedEdgeE@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStar3addEPNS0_12DirectedEdgeE@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStar3endEv@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStar5beginEv@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStar6removeEPNS0_12DirectedEdgeE@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStar8getEdgesEv@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStar8getIndexEPKNS0_12DirectedEdgeE@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStar8getIndexEPKNS0_4EdgeE@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStarD0Ev@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStarD1Ev@Base 3.4.2 - _ZN4geos11planargraph16DirectedEdgeStarD2Ev@Base 3.4.2 - _ZN4geos11planargraph4Edge10getDirEdgeEPNS0_4NodeE@Base 3.4.2 - _ZN4geos11planargraph4Edge10getDirEdgeEi@Base 3.4.2 - _ZN4geos11planargraph4Edge15getOppositeNodeEPNS0_4NodeE@Base 3.4.2 - _ZN4geos11planargraph4Edge16setDirectedEdgesEPNS0_12DirectedEdgeES3_@Base 3.4.2 - _ZN4geos11planargraph4EdgeD0Ev@Base 3.4.2 - _ZN4geos11planargraph4EdgeD1Ev@Base 3.4.2 - _ZN4geos11planargraph4EdgeD2Ev@Base 3.4.2 - _ZN4geos11planargraph4Node15getEdgesBetweenEPS1_S2_@Base 3.4.2 - _ZN4geos11planargraph4NodeD0Ev@Base 3.4.2 - _ZN4geos11planargraph4NodeD1Ev@Base 3.4.2 - _ZN4geos11planargraph4NodeD2Ev@Base 3.4.2 - _ZN4geos11planargraph7NodeMap10getNodeMapEv@Base 3.4.2 - _ZN4geos11planargraph7NodeMap3addEPNS0_4NodeE@Base 3.4.2 - _ZN4geos11planargraph7NodeMap4findERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos11planargraph7NodeMap6removeERNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos11planargraph7NodeMap8getNodesERSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.4.2 - _ZN4geos11planargraph7NodeMapC1Ev@Base 3.4.2 - _ZN4geos11planargraph7NodeMapC2Ev@Base 3.4.2 - _ZN4geos11planargraph7NodeMapD0Ev@Base 3.4.2 - _ZN4geos11planargraph7NodeMapD1Ev@Base 3.4.2 - _ZN4geos11planargraph7NodeMapD2Ev@Base 3.4.2 - _ZN4geos11planargraph8Subgraph3addEPNS0_4EdgeE@Base 3.4.2 - _ZN4geos11planargraph9algorithm23ConnectedSubgraphFinder12addReachableEPNS0_4NodeEPNS0_8SubgraphE@Base 3.4.2 - _ZN4geos11planargraph9algorithm23ConnectedSubgraphFinder12findSubgraphEPNS0_4NodeE@Base 3.4.2 - _ZN4geos11planargraph9algorithm23ConnectedSubgraphFinder21getConnectedSubgraphsERSt6vectorIPNS0_8SubgraphESaIS5_EE@Base 3.4.2 - _ZN4geos11planargraph9algorithm23ConnectedSubgraphFinder8addEdgesEPNS0_4NodeERSt5stackIS4_St5dequeIS4_SaIS4_EEEPNS0_8SubgraphE@Base 3.4.2 - _ZN4geos11planargraphlsERSoRKNS0_12DirectedEdgeE@Base 3.4.2 - _ZN4geos11planargraphlsERSoRKNS0_4EdgeE@Base 3.4.2 - _ZN4geos11planargraphlsERSoRKNS0_4NodeE@Base 3.4.2 - _ZN4geos11triangulate21VoronoiDiagramBuilder10getDiagramERKNS_4geom15GeometryFactoryE@Base 3.5.0 - _ZN4geos11triangulate21VoronoiDiagramBuilder12setToleranceEd@Base 3.5.0 - _ZN4geos11triangulate21VoronoiDiagramBuilder14getSubdivisionEv@Base 3.5.0 - _ZN4geos11triangulate21VoronoiDiagramBuilder15getDiagramEdgesERKNS_4geom15GeometryFactoryE@Base 3.5.0 - _ZN4geos11triangulate21VoronoiDiagramBuilder15setClipEnvelopeEPKNS_4geom8EnvelopeE@Base 3.5.0 - _ZN4geos11triangulate21VoronoiDiagramBuilder22clipGeometryCollectionERSt6vectorISt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EESaIS8_EERKNS4_8EnvelopeE@Base 3.8.0 - _ZN4geos11triangulate21VoronoiDiagramBuilder6createEv@Base 3.5.0 - _ZN4geos11triangulate21VoronoiDiagramBuilder8setSitesERKNS_4geom18CoordinateSequenceE@Base 3.5.0 - _ZN4geos11triangulate21VoronoiDiagramBuilder8setSitesERKNS_4geom8GeometryE@Base 3.5.0 - _ZN4geos11triangulate21VoronoiDiagramBuilderC1Ev@Base 3.5.0 - _ZN4geos11triangulate21VoronoiDiagramBuilderC2Ev@Base 3.5.0 - _ZN4geos11triangulate28DelaunayTriangulationBuilder10toVerticesERKNS_4geom18CoordinateSequenceE@Base 3.8.0 - _ZN4geos11triangulate28DelaunayTriangulationBuilder12getTrianglesERKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos11triangulate28DelaunayTriangulationBuilder14getSubdivisionEv@Base 3.4.2 - _ZN4geos11triangulate28DelaunayTriangulationBuilder24extractUniqueCoordinatesERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos11triangulate28DelaunayTriangulationBuilder6createEv@Base 3.4.2 - _ZN4geos11triangulate28DelaunayTriangulationBuilder6uniqueEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 - _ZN4geos11triangulate28DelaunayTriangulationBuilder8envelopeERKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos11triangulate28DelaunayTriangulationBuilder8getEdgesERKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos11triangulate28DelaunayTriangulationBuilder8setSitesERKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos11triangulate28DelaunayTriangulationBuilder8setSitesERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos11triangulate28DelaunayTriangulationBuilderC1Ev@Base 3.4.2 - _ZN4geos11triangulate28DelaunayTriangulationBuilderC2Ev@Base 3.4.2 - _ZN4geos11triangulate31IncrementalDelaunayTriangulator10insertSiteERKNS0_8quadedge6VertexE@Base 3.4.2 - _ZN4geos11triangulate31IncrementalDelaunayTriangulator11insertSitesERKSt6vectorINS0_8quadedge6VertexESaIS4_EE@Base 3.8.0 - _ZN4geos11triangulate31IncrementalDelaunayTriangulatorC1EPNS0_8quadedge19QuadEdgeSubdivisionE@Base 3.4.2 - _ZN4geos11triangulate31IncrementalDelaunayTriangulatorC2EPNS0_8quadedge19QuadEdgeSubdivisionE@Base 3.4.2 - _ZN4geos11triangulate3tri20TriangulationBuilder11addAdjacentEPNS1_3TriES4_RKNS_4geom10CoordinateES8_@Base 3.10.0 - _ZN4geos11triangulate3tri20TriangulationBuilder3addEPNS1_3TriE@Base 3.10.0 - _ZN4geos11triangulate3tri20TriangulationBuilder5buildERNS1_7TriListE@Base 3.10.0 - _ZN4geos11triangulate3tri20TriangulationBuilderC1ERNS1_7TriListE@Base 3.10.0 - _ZN4geos11triangulate3tri20TriangulationBuilderC2ERNS1_7TriListE@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri11setAdjacentEPS2_S3_S3_@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri11setAdjacentERKNS_4geom10CoordinateEPS2_@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri14setCoordinatesERKNS_4geom10CoordinateES6_S6_@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri15getAdjacentTrisEPS2_ii@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri16validateAdjacentEi@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri4flipEPS2_iiRKNS_4geom10CoordinateES7_S7_S7_@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri4flipEi@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri4nextEi@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri4prevEi@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri6setTriEiPS2_@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri7oppEdgeEi@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri7replaceEPS2_S3_@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri8validateEv@Base 3.10.0 - _ZN4geos11triangulate3tri3Tri9oppVertexEi@Base 3.10.0 - _ZN4geos11triangulate3tri7TriEdge9normalizeEv@Base 3.10.0 - _ZN4geos11triangulate3tri7TriList10toGeometryEPKNS_4geom15GeometryFactoryERKSt6vectorISt10unique_ptrIS2_St14default_deleteIS2_EESaISB_EE@Base 3.10.0 - _ZN4geos11triangulate3tri7TriList3addERKNS_4geom10CoordinateES6_S6_@Base 3.10.0 - _ZN4geos11triangulate3tri7TriList6createERKNS_4geom10CoordinateES6_S6_@Base 3.10.0 - _ZN4geos11triangulate3trieqERKNS1_7TriEdgeES4_@Base 3.10.0 - _ZN4geos11triangulate3trilsERSoRKNS1_3TriE@Base 3.10.0 - _ZN4geos11triangulate3trilsERSoRKNS1_7TriEdgeE@Base 3.10.0 - _ZN4geos11triangulate3trilsERSoRNS1_7TriListE@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon17PolygonEarClipper10isValidEarE{size_t}RKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon17PolygonEarClipper10nextCornerERSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonEarClipper11triangulateERSt6vectorINS_4geom10CoordinateESaIS5_EERNS0_3tri7TriListE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonEarClipper12removeCornerEv@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonEarClipper15initCornerIndexEv@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonEarClipper18setSkipFlatCornersEb@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonEarClipper7computeERNS0_3tri7TriListE@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon17PolygonEarClipper8envelopeERKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonEarClipperC1ERSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonEarClipperC2ERSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonEarClipperD1Ev@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonEarClipperD2Ev@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner13joinAsPolygonEPKNS_4geom7PolygonE@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon17PolygonHoleJoiner14addHoleToShellE{size_t}PKNS_4geom18CoordinateSequenceE{size_t}@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner15ringCoordinatesEPKNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner17getLeftMostVertexEPKNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner18getLeftShellVertexERKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner18getShellCoordIndexERKNS_4geom10CoordinateES6_@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon17PolygonHoleJoiner22getShellCoordIndexSkipERKNS_4geom10CoordinateE{size_t}@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner24createPolygonIntersectorEPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner4joinEPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner7computeEv@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner8joinHoleEPKNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner9joinHolesEv@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoiner9sortHolesEPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoinerC1EPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoinerC2EPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoinerD1Ev@Base 3.10.0 - _ZN4geos11triangulate7polygon17PolygonHoleJoinerD2Ev@Base 3.10.0 - _ZN4geos11triangulate7polygon19PolygonTriangulator11triangulateEPKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos11triangulate7polygon19PolygonTriangulator18triangulatePolygonEPKNS_4geom7PolygonERNS0_3tri7TriListE@Base 3.10.0 - _ZN4geos11triangulate7polygon19PolygonTriangulator7computeEv@Base 3.10.0 - _ZN4geos11triangulate7polygon19TriDelaunayImprover10isDelaunayERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 - _ZN4geos11triangulate7polygon19TriDelaunayImprover10isInCircleERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 - _ZN4geos11triangulate7polygon19TriDelaunayImprover11improveScanERNS0_3tri7TriListE@Base 3.10.0 - _ZN4geos11triangulate7polygon19TriDelaunayImprover18improveNonDelaunayEPNS0_3tri3TriEi@Base 3.10.0 - _ZN4geos11triangulate7polygon19TriDelaunayImprover7improveERNS0_3tri7TriListE@Base 3.10.0 - _ZN4geos11triangulate7polygon19TriDelaunayImprover7improveEv@Base 3.10.0 - _ZN4geos11triangulate7polygon19TriDelaunayImprover8isConvexERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon25VertexSequencePackedRtree11ceilDivisorE{size_t}{size_t}@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon25VertexSequencePackedRtree11isNodeEmptyE{size_t}{size_t}@Base 3.10.0 - _ZN4geos11triangulate7polygon25VertexSequencePackedRtree12createBoundsEv@Base 3.10.0 - _ZN4geos11triangulate7polygon25VertexSequencePackedRtree14fillItemBoundsERSt6vectorINS_4geom8EnvelopeESaIS5_EE@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon25VertexSequencePackedRtree14levelNodeCountE{size_t}@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon25VertexSequencePackedRtree15fillLevelBoundsE{size_t}RSt6vectorINS_4geom8EnvelopeESaIS5_EE@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon25VertexSequencePackedRtree16isItemsNodeEmptyE{size_t}@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon25VertexSequencePackedRtree19computeItemEnvelopeERKSt6vectorINS_4geom10CoordinateESaIS5_EE{size_t}{size_t}@Base 3.10.0 - _ZN4geos11triangulate7polygon25VertexSequencePackedRtree19computeLevelOffsetsEv@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon25VertexSequencePackedRtree19computeNodeEnvelopeERKSt6vectorINS_4geom8EnvelopeESaIS5_EE{size_t}{size_t}@Base 3.10.0 - _ZN4geos11triangulate7polygon25VertexSequencePackedRtree5buildEv@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon25VertexSequencePackedRtree6removeE{size_t}@Base 3.10.0 - (subst)_ZN4geos11triangulate7polygon25VertexSequencePackedRtree8clampMaxE{size_t}{size_t}@Base 3.10.0 - _ZN4geos11triangulate7polygon25VertexSequencePackedRtree9getBoundsEv@Base 3.10.0 - _ZN4geos11triangulate7polygon25VertexSequencePackedRtreeC1ERKSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.10.0 - _ZN4geos11triangulate7polygon25VertexSequencePackedRtreeC2ERKSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.10.0 - _ZN4geos11triangulate7polygon31ConstrainedDelaunayTriangulator11triangulateEPKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos11triangulate7polygon31ConstrainedDelaunayTriangulator18triangulatePolygonEPKNS_4geom7PolygonERNS0_3tri7TriListE@Base 3.10.0 - _ZN4geos11triangulate7polygon31ConstrainedDelaunayTriangulator7computeEv@Base 3.10.0 - _ZN4geos11triangulate8quadedge17TrianglePredicate16isInCircleRobustERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 - _ZN4geos11triangulate8quadedge17TrianglePredicate19isInCircleNonRobustERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 - _ZN4geos11triangulate8quadedge17TrianglePredicate20isInCircleNormalizedERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 - _ZN4geos11triangulate8quadedge17TrianglePredicate7triAreaERKNS_4geom10CoordinateES6_S6_@Base 3.10.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision10initSubdivEv@Base 3.9.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision10insertSiteERKNS1_6VertexE@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision11createFrameERKNS_4geom8EnvelopeE@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision12getTrianglesERKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision12prepareVisitEv@Base 3.8.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision14visitTrianglesEPNS1_15TriangleVisitorEb@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision15getPrimaryEdgesEb@Base 3.5.1 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision16getTriangleEdgesERKNS1_8QuadEdgeEPPS4_@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision17getVoronoiDiagramERKNS_4geom15GeometryFactoryE@Base 3.5.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision18getVoronoiCellEdgeEPKNS1_8QuadEdgeERKNS_4geom15GeometryFactoryE@Base 3.8.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision19getVoronoiCellEdgesERKNS_4geom15GeometryFactoryE@Base 3.5.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision20fetchTriangleToVisitEPNS1_8QuadEdgeERSt5stackIS4_St5dequeIS4_SaIS4_EEEb@Base 3.8.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision20getVertexUniqueEdgesEb@Base 3.5.1 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision21getVoronoiCellPolygonEPKNS1_8QuadEdgeERKNS_4geom15GeometryFactoryE@Base 3.8.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision22getTriangleCoordinatesEPSt6vectorISt10unique_ptrINS_4geom18CoordinateSequenceESt14default_deleteIS6_EESaIS9_EEb@Base 3.8.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision22getVoronoiCellPolygonsERKNS_4geom15GeometryFactoryE@Base 3.5.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision22getVoronoiDiagramEdgesERKNS_4geom15GeometryFactoryE@Base 3.5.0 - (subst)_ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitor5visitERSt5arrayIPNS1_8QuadEdgeEL{size_t}3EE@Base 3.10.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD0Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD1Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD2Ev@Base 3.4.2 - (subst)_ZN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitor5visitERSt5arrayIPNS1_8QuadEdgeEL{size_t}3EE@Base 3.10.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorD0Ev@Base 3.5.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorD1Ev@Base 3.5.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorD2Ev@Base 3.5.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision6locateERKNS_4geom10CoordinateES6_@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision6removeERNS1_8QuadEdgeE@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision7connectERNS1_8QuadEdgeES4_@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision8getEdgesERKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision8makeEdgeERKNS1_6VertexES5_@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivisionC1ERKNS_4geom8EnvelopeEd@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivisionC2ERKNS_4geom8EnvelopeEd@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivisionD0Ev@Base 3.5.0 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivisionD1Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivisionD2Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge22LocateFailureExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos11triangulate8quadedge22LocateFailureExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos11triangulate8quadedge22LocateFailureExceptionD0Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge22LocateFailureExceptionD1Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge22LocateFailureExceptionD2Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocator4initEv@Base 3.4.2 - _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocator6locateERKNS1_6VertexE@Base 3.4.2 - _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocator8findEdgeEv@Base 3.4.2 - _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorC1EPNS1_19QuadEdgeSubdivisionE@Base 3.4.2 - _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorC2EPNS1_19QuadEdgeSubdivisionE@Base 3.4.2 - _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorD0Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorD1Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorD2Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge6Vertex12interpolateZERKNS_4geom10CoordinateES6_S6_@Base 3.4.2 - _ZN4geos11triangulate8quadedge6Vertex12interpolateZERKNS_4geom10CoordinateES6_S6_S6_@Base 3.4.2 - _ZN4geos11triangulate8quadedge6Vertex17circumRadiusRatioERKS2_S4_@Base 3.4.2 - _ZN4geos11triangulate8quadedge6Vertex8bisectorERKS2_S4_@Base 3.4.2 - _ZN4geos11triangulate8quadedge6Vertex8classifyERKS2_S4_@Base 3.4.2 - _ZN4geos11triangulate8quadedge6Vertex8midPointERKS2_@Base 3.4.2 - _ZN4geos11triangulate8quadedge6VertexC1ERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos11triangulate8quadedge6VertexC1Edd@Base 3.4.2 - _ZN4geos11triangulate8quadedge6VertexC1Eddd@Base 3.4.2 - _ZN4geos11triangulate8quadedge6VertexC1Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge6VertexC2ERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos11triangulate8quadedge6VertexC2Edd@Base 3.4.2 - _ZN4geos11triangulate8quadedge6VertexC2Eddd@Base 3.4.2 - _ZN4geos11triangulate8quadedge6VertexC2Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge8QuadEdge10getPrimaryEv@Base 3.9.0 - _ZN4geos11triangulate8quadedge8QuadEdge4swapERS2_@Base 3.4.2 - _ZN4geos11triangulate8quadedge8QuadEdge6removeEv@Base 3.4.2 - _ZN4geos11triangulate8quadedge8QuadEdge6spliceERS2_S3_@Base 3.4.2 - _ZN4geos11triangulate8quadedge8QuadEdge7connectERS2_S3_RSt5dequeINS1_15QuadEdgeQuartetESaIS5_EE@Base 3.9.0 - _ZN4geos11triangulate8quadedge8QuadEdge8makeEdgeERKNS1_6VertexES5_RSt5dequeINS1_15QuadEdgeQuartetESaIS7_EE@Base 3.9.0 - _ZN4geos11triangulate8quadedgelsERSoPKNS1_8QuadEdgeE@Base 3.9.0 - _ZN4geos2io10CLocalizerC1Ev@Base 3.4.2 - _ZN4geos2io10CLocalizerC2Ev@Base 3.4.2 - _ZN4geos2io10CLocalizerD1Ev@Base 3.4.2 - _ZN4geos2io10CLocalizerD2Ev@Base 3.4.2 - _ZN4geos2io12GeoJSONValue7cleanupEv@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC1ERKS1_@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC1ERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES1_St4lessIS8_ESaISt4pairIKS8_S1_EEE@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC1ERKSt6vectorIS1_SaIS1_EE@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC1Eb@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC1Ed@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC1Ev@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC2ERKS1_@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC2ERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES1_St4lessIS8_ESaISt4pairIKS8_S1_EEE@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC2ERKSt6vectorIS1_SaIS1_EE@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC2Eb@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC2Ed@Base 3.10.0 - _ZN4geos2io12GeoJSONValueC2Ev@Base 3.10.0 - _ZN4geos2io12GeoJSONValueD1Ev@Base 3.10.0 - _ZN4geos2io12GeoJSONValueD2Ev@Base 3.10.0 - _ZN4geos2io12GeoJSONValueaSERKS1_@Base 3.10.0 - _ZN4geos2io13GeoJSONReaderC1ERKNS_4geom15GeometryFactoryE@Base 3.10.0 - _ZN4geos2io13GeoJSONReaderC1Ev@Base 3.10.0 - _ZN4geos2io13GeoJSONReaderC2ERKNS_4geom15GeometryFactoryE@Base 3.10.0 - _ZN4geos2io13GeoJSONReaderC2Ev@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter11encodePointEPKNS_4geom5PointERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter13encodeFeatureEPKNS_4geom8GeometryERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter13encodeFeatureERKNS0_14GeoJSONFeatureERN13geos_nlohmann10basic_jsonINS5_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS5_14adl_serializerES8_IhSaIhEEEE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter13encodePolygonEPKNS_4geom7PolygonERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter14encodeGeometryEPKNS_4geom8GeometryERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 - _ZN4geos2io13GeoJSONWriter14writeFormattedB5cxx11EPKNS_4geom8GeometryENS0_11GeoJSONTypeEi@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter16encodeLineStringEPKNS_4geom10LineStringERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter16encodeMultiPointEPKNS_4geom10MultiPointERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 - _ZN4geos2io13GeoJSONWriter17convertCoordinateEPKNS_4geom10CoordinateE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter18encodeGeoJSONValueERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS0_12GeoJSONValueERN13geos_nlohmann10basic_jsonINSD_11ordered_mapESt6vectorS7_b{int64_t}{uint64_t}dSaNSD_14adl_serializerESG_IhSaIhEEEE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter18encodeMultiPolygonEPKNS_4geom12MultiPolygonERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter21encodeMultiLineStringEPKNS_4geom15MultiLineStringERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter23encodeFeatureCollectionEPKNS_4geom8GeometryERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter24encodeGeometryCollectionEPKNS_4geom18GeometryCollectionERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 - _ZN4geos2io13GeoJSONWriter25convertCoordinateSequenceEPKNS_4geom18CoordinateSequenceE@Base 3.10.0 - _ZN4geos2io13GeoJSONWriter5writeB5cxx11EPKNS_4geom8GeometryENS0_11GeoJSONTypeE@Base 3.10.0 - _ZN4geos2io13GeoJSONWriter5writeB5cxx11ERKNS0_14GeoJSONFeatureE@Base 3.10.0 - _ZN4geos2io13GeoJSONWriter5writeB5cxx11ERKNS0_24GeoJSONFeatureCollectionE@Base 3.10.0 - (subst)_ZN4geos2io13GeoJSONWriter6encodeEPKNS_4geom8GeometryENS0_11GeoJSONTypeERN13geos_nlohmann10basic_jsonINS7_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS7_14adl_serializerESA_IhSaIhEEEE@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureC1EOS1_@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureC1ERKS1_@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureC1ESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS4_EEOSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS0_12GeoJSONValueESt4lessISE_ESaISt4pairIKSE_SF_EEE@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureC1ESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS4_EERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS0_12GeoJSONValueESt4lessISE_ESaISt4pairIKSE_SF_EEE@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureC2EOS1_@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureC2ERKS1_@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureC2ESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS4_EEOSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS0_12GeoJSONValueESt4lessISE_ESaISt4pairIKSE_SF_EEE@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureC2ESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS4_EERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS0_12GeoJSONValueESt4lessISE_ESaISt4pairIKSE_SF_EEE@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureD1Ev@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureD2Ev@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureaSEOS1_@Base 3.10.0 - _ZN4geos2io14GeoJSONFeatureaSERKS1_@Base 3.10.0 - _ZN4geos2io14ParseException9stringifyB5cxx11Ed@Base 3.5.1 - _ZN4geos2io14ParseExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos2io14ParseExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 - _ZN4geos2io14ParseExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEd@Base 3.5.1 - _ZN4geos2io14ParseExceptionC1Ev@Base 3.4.2 - _ZN4geos2io14ParseExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos2io14ParseExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 - _ZN4geos2io14ParseExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEd@Base 3.5.1 - _ZN4geos2io14ParseExceptionC2Ev@Base 3.4.2 - _ZN4geos2io14ParseExceptionD0Ev@Base 3.4.2 - _ZN4geos2io14ParseExceptionD1Ev@Base 3.4.2 - _ZN4geos2io14ParseExceptionD2Ev@Base 3.4.2 - _ZN4geos2io15ByteOrderValues11getUnsignedEPKhi@Base 3.10.0 - _ZN4geos2io15ByteOrderValues11putUnsignedEjPhi@Base 3.10.0 - _ZN4geos2io15ByteOrderValues6getIntEPKhi@Base 3.4.2 - _ZN4geos2io15ByteOrderValues6putIntEiPhi@Base 3.4.2 - _ZN4geos2io15ByteOrderValues7getLongEPKhi@Base 3.4.2 - (subst)_ZN4geos2io15ByteOrderValues7putLongE{int64_t}Phi@Base 3.8.0 - _ZN4geos2io15ByteOrderValues9getDoubleEPKhi@Base 3.4.2 - _ZN4geos2io15ByteOrderValues9putDoubleEdPhi@Base 3.4.2 - _ZN4geos2io15StringTokenizer13peekNextTokenEv@Base 3.4.2 - _ZN4geos2io15StringTokenizer9nextTokenEv@Base 3.4.2 - _ZN4geos2io15StringTokenizerC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos2io15StringTokenizerC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos2io18strtod_with_vc_fixEPKcPPc@Base 3.5.0 - _ZN4geos2io24GeoJSONFeatureCollectionC1EOSt6vectorINS0_14GeoJSONFeatureESaIS3_EE@Base 3.10.0 - _ZN4geos2io24GeoJSONFeatureCollectionC1ERKSt6vectorINS0_14GeoJSONFeatureESaIS3_EE@Base 3.10.0 - _ZN4geos2io24GeoJSONFeatureCollectionC2EOSt6vectorINS0_14GeoJSONFeatureESaIS3_EE@Base 3.10.0 - _ZN4geos2io24GeoJSONFeatureCollectionC2ERKSt6vectorINS0_14GeoJSONFeatureESaIS3_EE@Base 3.10.0 - _ZN4geos2io6Unload7ReleaseEv@Base 3.4.2 - _ZN4geos2io6Writer5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos2io6Writer7reserveEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos2io6Writer7reserveEm@Base 3.7.0 - _ZN4geos2io6Writer8toStringB5cxx11Ev@Base 3.5.1 - _ZN4geos2io6WriterC1Ev@Base 3.4.2 - _ZN4geos2io6WriterC2Ev@Base 3.4.2 - (subst)_ZN4geos2io9WKBReader10minMemSizeEi{uint64_t}@Base 3.10.0 - _ZN4geos2io9WKBReader11readPolygonEv@Base 3.4.2 - _ZN4geos2io9WKBReader12readGeometryEv@Base 3.4.2 - _ZN4geos2io9WKBReader14readCoordinateEv@Base 3.4.2 - _ZN4geos2io9WKBReader14readLineStringEv@Base 3.4.2 - _ZN4geos2io9WKBReader14readLinearRingEv@Base 3.4.2 - _ZN4geos2io9WKBReader14readMultiPointEv@Base 3.4.2 - _ZN4geos2io9WKBReader16readMultiPolygonEv@Base 3.4.2 - _ZN4geos2io9WKBReader19readMultiLineStringEv@Base 3.4.2 - _ZN4geos2io9WKBReader22readCoordinateSequenceEj@Base 3.10.0 - _ZN4geos2io9WKBReader22readGeometryCollectionEv@Base 3.4.2 - (subst)_ZN4geos2io9WKBReader4readEPKh{size_t}@Base 3.10.0 - _ZN4geos2io9WKBReader4readERSi@Base 3.4.2 - _ZN4geos2io9WKBReader7readHEXERSi@Base 3.4.2 - _ZN4geos2io9WKBReader8printHEXERSiRSo@Base 3.4.2 - _ZN4geos2io9WKBReader9readPointEv@Base 3.4.2 - _ZN4geos2io9WKBReaderC1ERKNS_4geom15GeometryFactoryE@Base 3.9.0 - _ZN4geos2io9WKBReaderC1Ev@Base 3.4.2 - _ZN4geos2io9WKBReaderC2ERKNS_4geom15GeometryFactoryE@Base 3.9.0 - _ZN4geos2io9WKBReaderC2Ev@Base 3.4.2 - _ZN4geos2io9WKBWriter10writePointERKNS_4geom5PointE@Base 3.4.2 - _ZN4geos2io9WKBWriter12setByteOrderEi@Base 3.4.2 - _ZN4geos2io9WKBWriter12writePolygonERKNS_4geom7PolygonE@Base 3.4.2 - _ZN4geos2io9WKBWriter14writeByteOrderEv@Base 3.4.2 - (subst)_ZN4geos2io9WKBWriter15writeCoordinateERKNS_4geom18CoordinateSequenceE{size_t}b@Base 3.8.0 - _ZN4geos2io9WKBWriter15writeLineStringERKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos2io9WKBWriter15writePointEmptyERKNS_4geom5PointE@Base 3.9.0 - _ZN4geos2io9WKBWriter17writeGeometryTypeEii@Base 3.4.2 - _ZN4geos2io9WKBWriter18setOutputDimensionEh@Base 3.9.0 - _ZN4geos2io9WKBWriter23writeCoordinateSequenceERKNS_4geom18CoordinateSequenceEb@Base 3.4.2 - _ZN4geos2io9WKBWriter23writeGeometryCollectionERKNS_4geom18GeometryCollectionEi@Base 3.4.2 - _ZN4geos2io9WKBWriter5writeERKNS_4geom8GeometryERSo@Base 3.4.2 - _ZN4geos2io9WKBWriter8writeHEXERKNS_4geom8GeometryERSo@Base 3.4.2 - _ZN4geos2io9WKBWriter8writeIntEi@Base 3.4.2 - _ZN4geos2io9WKBWriter9setFlavorEi@Base 3.10.0 - _ZN4geos2io9WKBWriter9writeSRIDEi@Base 3.4.2 - _ZN4geos2io9WKBWriterC1Ehibi@Base 3.10.0 - _ZN4geos2io9WKBWriterC2Ehibi@Base 3.10.0 - _ZN4geos2io9WKTReader11getNextWordB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 - _ZN4geos2io9WKTReader12isNumberNextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader13getNextCloserB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 - _ZN4geos2io9WKTReader13getNextNumberEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader20getNextCloserOrCommaB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 - (subst)_ZN4geos2io9WKTReader20getNextEmptyOrOpenerB5cxx11EPNS0_15StringTokenizerER{size_t}@Base 3.9.0 - _ZN4geos2io9WKTWriter12toLineStringB5cxx11ERKNS_4geom10CoordinateES5_@Base 3.5.1 - _ZN4geos2io9WKTWriter12toLineStringB5cxx11ERKNS_4geom18CoordinateSequenceE@Base 3.5.1 - _ZN4geos2io9WKTWriter14writeFormattedB5cxx11EPKNS_4geom8GeometryE@Base 3.5.1 - _ZN4geos2io9WKTWriter14writeFormattedEPKNS_4geom8GeometryEPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter14writeFormattedEPKNS_4geom8GeometryEbPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter15appendPointTextEPKNS_4geom10CoordinateEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter16appendCoordinateEPKNS_4geom10CoordinateEPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter17appendPolygonTextEPKNS_4geom7PolygonEibPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter18setOutputDimensionEh@Base 3.9.0 - _ZN4geos2io9WKTWriter20appendLineStringTextEPKNS_4geom10LineStringEibPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter20appendMultiPointTextEPKNS_4geom10MultiPointEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter20setRoundingPrecisionEi@Base 3.4.2 - _ZN4geos2io9WKTWriter21appendPointTaggedTextEPKNS_4geom10CoordinateEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter22appendMultiPolygonTextEPKNS_4geom12MultiPolygonEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter23appendPolygonTaggedTextEPKNS_4geom7PolygonEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter24appendGeometryTaggedTextEPKNS_4geom8GeometryEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter25appendMultiLineStringTextEPKNS_4geom15MultiLineStringEibPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter26appendLineStringTaggedTextEPKNS_4geom10LineStringEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter26appendLinearRingTaggedTextEPKNS_4geom10LinearRingEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter26appendMultiPointTaggedTextEPKNS_4geom10MultiPointEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter28appendGeometryCollectionTextEPKNS_4geom18GeometryCollectionEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter28appendMultiPolygonTaggedTextEPKNS_4geom12MultiPolygonEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter31appendMultiLineStringTaggedTextEPKNS_4geom15MultiLineStringEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter34appendGeometryCollectionTaggedTextEPKNS_4geom18GeometryCollectionEiPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter5writeB5cxx11EPKNS_4geom8GeometryE@Base 3.5.1 - _ZN4geos2io9WKTWriter5writeEPKNS_4geom8GeometryEPNS0_6WriterE@Base 3.4.2 - _ZN4geos2io9WKTWriter7setTrimEb@Base 3.4.2 - _ZN4geos2io9WKTWriter7toPointB5cxx11ERKNS_4geom10CoordinateE@Base 3.5.1 - _ZN4geos2io9WKTWriterC1Ev@Base 3.4.2 - _ZN4geos2io9WKTWriterC2Ev@Base 3.4.2 - _ZN4geos4geom10Coordinate10_nullCoordE@Base 3.6.0 - _ZN4geos4geom10Coordinate7getNullEv@Base 3.4.2 - _ZN4geos4geom10LineString15normalizeClosedEv@Base 3.9.0 - _ZN4geos4geom10LineString18releaseCoordinatesEv@Base 3.10.0 - _ZN4geos4geom10LineString20validateConstructionEv@Base 3.4.2 - _ZN4geos4geom10LineString8apply_rwEPKNS0_16CoordinateFilterE@Base 3.4.2 - _ZN4geos4geom10LineString8apply_rwEPNS0_14GeometryFilterE@Base 3.4.2 - _ZN4geos4geom10LineString8apply_rwEPNS0_23GeometryComponentFilterE@Base 3.4.2 - _ZN4geos4geom10LineString8apply_rwERNS0_24CoordinateSequenceFilterE@Base 3.4.2 - _ZN4geos4geom10LineString9normalizeEv@Base 3.4.2 - _ZN4geos4geom10LineStringC1EOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom10LineStringC1EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom10LineStringC1ERKS1_@Base 3.4.2 - _ZN4geos4geom10LineStringC2EOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom10LineStringC2EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom10LineStringC2ERKS1_@Base 3.4.2 - _ZN4geos4geom10LineStringD0Ev@Base 3.4.2 - _ZN4geos4geom10LineStringD1Ev@Base 3.4.2 - _ZN4geos4geom10LineStringD2Ev@Base 3.4.2 - _ZN4geos4geom10LinearRing20validateConstructionEv@Base 3.4.2 - _ZN4geos4geom10LinearRing9setPointsEPKNS0_18CoordinateSequenceE@Base 3.8.0 - _ZN4geos4geom10LinearRingC1EOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom10LinearRingC1EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom10LinearRingC1ERKS1_@Base 3.4.2 - _ZN4geos4geom10LinearRingC2EOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom10LinearRingC2EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom10LinearRingC2ERKS1_@Base 3.4.2 - _ZN4geos4geom10LinearRingD0Ev@Base 3.4.2 - _ZN4geos4geom10LinearRingD1Ev@Base 3.4.2 - _ZN4geos4geom10LinearRingD2Ev@Base 3.4.2 - _ZN4geos4geom10MultiPointC1EOSt6vectorISt10unique_ptrINS0_5PointESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom10MultiPointC1EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom10MultiPointC1EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom10MultiPointC2EOSt6vectorISt10unique_ptrINS0_5PointESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom10MultiPointC2EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom10MultiPointC2EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom10MultiPointD0Ev@Base 3.4.2 - _ZN4geos4geom10MultiPointD1Ev@Base 3.4.2 - _ZN4geos4geom10MultiPointD2Ev@Base 3.4.2 - (optional=templinst)_ZN4geos4geom10commonTypeISt6vectorIPKNS0_8GeometryESaIS5_EEEENS0_14GeometryTypeIdERKT_@Base 3.8.0 - (optional=templinst)_ZN4geos4geom10commonTypeISt6vectorIPNS0_8GeometryESaIS4_EEEENS0_14GeometryTypeIdERKT_@Base 3.8.0 - (optional=templinst)_ZN4geos4geom10commonTypeISt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EEEENS0_14GeometryTypeIdERKT_@Base 3.8.0 - _ZN4geos4geom11LineSegment13closestPointsERKS1_@Base 3.4.2 - _ZN4geos4geom11LineSegment7reverseEv@Base 3.4.2 - _ZN4geos4geom11geosversionB5cxx11Ev@Base 3.5.1 - _ZN4geos4geom12MultiPolygonC1EOSt6vectorISt10unique_ptrINS0_7PolygonESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom12MultiPolygonC1EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom12MultiPolygonC1EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom12MultiPolygonC2EOSt6vectorISt10unique_ptrINS0_7PolygonESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom12MultiPolygonC2EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom12MultiPolygonC2EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom12MultiPolygonD0Ev@Base 3.4.2 - _ZN4geos4geom12MultiPolygonD1Ev@Base 3.4.2 - _ZN4geos4geom12MultiPolygonD2Ev@Base 3.4.2 - _ZN4geos4geom14GeometryFilter9filter_roEPKNS0_8GeometryE@Base 3.10.0 - _ZN4geos4geom14GeometryFilter9filter_rwEPNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom14PrecisionModel19maximumPreciseValueE@Base 3.4.2 - _ZN4geos4geom14PrecisionModel8setScaleEd@Base 3.4.2 - _ZN4geos4geom14PrecisionModelC1ENS1_4TypeE@Base 3.4.2 - _ZN4geos4geom14PrecisionModelC1Ed@Base 3.4.2 - _ZN4geos4geom14PrecisionModelC1Eddd@Base 3.4.2 - _ZN4geos4geom14PrecisionModelC1Ev@Base 3.4.2 - _ZN4geos4geom14PrecisionModelC2ENS1_4TypeE@Base 3.4.2 - _ZN4geos4geom14PrecisionModelC2Ed@Base 3.4.2 - _ZN4geos4geom14PrecisionModelC2Eddd@Base 3.4.2 - _ZN4geos4geom14PrecisionModelC2Ev@Base 3.4.2 - _ZN4geos4geom15GeometryFactory18getDefaultInstanceEv@Base 3.4.2 - _ZN4geos4geom15GeometryFactory6createEPKNS0_14PrecisionModelE@Base 3.6.0 - _ZN4geos4geom15GeometryFactory6createEPKNS0_14PrecisionModelEi@Base 3.6.0 - _ZN4geos4geom15GeometryFactory6createEPKNS0_14PrecisionModelEiPNS0_25CoordinateSequenceFactoryE@Base 3.6.0 - _ZN4geos4geom15GeometryFactory6createEPNS0_25CoordinateSequenceFactoryE@Base 3.6.0 - _ZN4geos4geom15GeometryFactory6createERKS1_@Base 3.6.0 - _ZN4geos4geom15GeometryFactory6createEv@Base 3.6.0 - _ZN4geos4geom15GeometryFactory7destroyEv@Base 3.6.0 - _ZN4geos4geom15GeometryFactoryC1EPKNS0_14PrecisionModelE@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC1EPKNS0_14PrecisionModelEi@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC1EPKNS0_14PrecisionModelEiPNS0_25CoordinateSequenceFactoryE@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC1EPNS0_25CoordinateSequenceFactoryE@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC1ERKS1_@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC1Ev@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC2EPKNS0_14PrecisionModelE@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC2EPKNS0_14PrecisionModelEi@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC2EPKNS0_14PrecisionModelEiPNS0_25CoordinateSequenceFactoryE@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC2EPNS0_25CoordinateSequenceFactoryE@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC2ERKS1_@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryC2Ev@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryD0Ev@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryD1Ev@Base 3.4.2 - _ZN4geos4geom15GeometryFactoryD2Ev@Base 3.4.2 - _ZN4geos4geom15MultiLineStringC1EOSt6vectorISt10unique_ptrINS0_10LineStringESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom15MultiLineStringC1EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom15MultiLineStringC1EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom15MultiLineStringC2EOSt6vectorISt10unique_ptrINS0_10LineStringESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom15MultiLineStringC2EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom15MultiLineStringC2EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom15MultiLineStringD0Ev@Base 3.4.2 - _ZN4geos4geom15MultiLineStringD1Ev@Base 3.4.2 - _ZN4geos4geom15MultiLineStringD2Ev@Base 3.4.2 - _ZN4geos4geom16CoordinateFilter9filter_roEPKNS0_10CoordinateE@Base 3.4.2 - _ZN4geos4geom16HeuristicOverlayEPKNS0_8GeometryES3_i@Base 3.9.0 - _ZN4geos4geom18CoordinateSequence17hasRepeatedPointsEPKS1_@Base 3.4.2 - _ZN4geos4geom18CoordinateSequence19increasingDirectionERKS1_@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom18CoordinateSequence28atLeastNCoordinatesOrNothingEjPS1_@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom18CoordinateSequence28atLeastNCoordinatesOrNothingEmPS1_@Base 3.7.0 - _ZN4geos4geom18CoordinateSequence6equalsEPKS1_S3_@Base 3.4.2 - _ZN4geos4geom18CoordinateSequence6isRingEPKS1_@Base 3.9.0 - _ZN4geos4geom18CoordinateSequence6scrollEPS1_PKNS0_10CoordinateE@Base 3.4.2 - _ZN4geos4geom18CoordinateSequence7indexOfEPKNS0_10CoordinateEPKS1_@Base 3.4.2 - _ZN4geos4geom18CoordinateSequence7reverseEPS1_@Base 3.4.2 - _ZN4geos4geom18GeometryCollection17releaseGeometriesEv@Base 3.10.0 - _ZN4geos4geom18GeometryCollection7setSRIDEi@Base 3.8.0 - _ZN4geos4geom18GeometryCollection8apply_rwEPKNS0_16CoordinateFilterE@Base 3.4.2 - _ZN4geos4geom18GeometryCollection8apply_rwEPNS0_14GeometryFilterE@Base 3.4.2 - _ZN4geos4geom18GeometryCollection8apply_rwEPNS0_23GeometryComponentFilterE@Base 3.4.2 - _ZN4geos4geom18GeometryCollection8apply_rwERNS0_24CoordinateSequenceFilterE@Base 3.4.2 - _ZN4geos4geom18GeometryCollection9normalizeEv@Base 3.4.2 - _ZN4geos4geom18GeometryCollectionC1EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom18GeometryCollectionC1EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom18GeometryCollectionC1ERKS1_@Base 3.4.2 - _ZN4geos4geom18GeometryCollectionC2EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom18GeometryCollectionC2EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom18GeometryCollectionC2ERKS1_@Base 3.4.2 - _ZN4geos4geom18GeometryCollectionD0Ev@Base 3.4.2 - _ZN4geos4geom18GeometryCollectionD1Ev@Base 3.4.2 - _ZN4geos4geom18GeometryCollectionD2Ev@Base 3.4.2 - _ZN4geos4geom18IntersectionMatrix10setAtLeastENS0_8LocationES2_i@Base 3.8.0 - _ZN4geos4geom18IntersectionMatrix10setAtLeastENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4geom18IntersectionMatrix17setAtLeastIfValidENS0_8LocationES2_i@Base 3.8.0 - _ZN4geos4geom18IntersectionMatrix3addEPS1_@Base 3.4.2 - _ZN4geos4geom18IntersectionMatrix3setENS0_8LocationES2_i@Base 3.8.0 - _ZN4geos4geom18IntersectionMatrix3setERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4geom18IntersectionMatrix6setAllEi@Base 3.4.2 - _ZN4geos4geom18IntersectionMatrix7matchesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 - _ZN4geos4geom18IntersectionMatrix7matchesEic@Base 3.4.2 - _ZN4geos4geom18IntersectionMatrix8firstDimE@Base 3.4.2 - _ZN4geos4geom18IntersectionMatrix9secondDimE@Base 3.4.2 - _ZN4geos4geom18IntersectionMatrix9transposeEv@Base 3.4.2 - _ZN4geos4geom18IntersectionMatrixC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4geom18IntersectionMatrixC1ERKS1_@Base 3.4.2 - _ZN4geos4geom18IntersectionMatrixC1Ev@Base 3.4.2 - _ZN4geos4geom18IntersectionMatrixC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4geom18IntersectionMatrixC2ERKS1_@Base 3.4.2 - _ZN4geos4geom18IntersectionMatrixC2Ev@Base 3.4.2 - _ZN4geos4geom19GeometryGreaterThenclEPKNS0_8GeometryES4_@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequence11setOrdinateEjjd@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequence11setOrdinateEmmd@Base 3.7.0 - _ZN4geos4geom23CoordinateArraySequence3addEPKNS0_18CoordinateSequenceEbb@Base 3.8.0 - _ZN4geos4geom23CoordinateArraySequence3addERKNS0_10CoordinateE@Base 3.4.2 - _ZN4geos4geom23CoordinateArraySequence3addERKNS0_10CoordinateEb@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequence3addEjRKNS0_10CoordinateEb@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequence3addEmRKNS0_10CoordinateEb@Base 3.7.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequence5setAtERKNS0_10CoordinateEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequence5setAtERKNS0_10CoordinateEm@Base 3.7.0 - _ZN4geos4geom23CoordinateArraySequence8apply_rwEPKNS0_16CoordinateFilterE@Base 3.4.2 - _ZN4geos4geom23CoordinateArraySequence9closeRingEv@Base 3.10.0 - _ZN4geos4geom23CoordinateArraySequence9setPointsERKSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.4.2 - (subst)_ZN4geos4geom23CoordinateArraySequenceC1EOSt6vectorINS0_10CoordinateESaIS3_EE{size_t}@Base 3.8.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequenceC1EPSt6vectorINS0_10CoordinateESaIS3_EEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequenceC1EPSt6vectorINS0_10CoordinateESaIS3_EEm@Base 3.7.0 - _ZN4geos4geom23CoordinateArraySequenceC1ERKNS0_18CoordinateSequenceE@Base 3.4.2 - _ZN4geos4geom23CoordinateArraySequenceC1ERKS1_@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequenceC1Ejj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequenceC1Emm@Base 3.7.0 - _ZN4geos4geom23CoordinateArraySequenceC1Ev@Base 3.4.2 - (subst)_ZN4geos4geom23CoordinateArraySequenceC2EOSt6vectorINS0_10CoordinateESaIS3_EE{size_t}@Base 3.8.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequenceC2EPSt6vectorINS0_10CoordinateESaIS3_EEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequenceC2EPSt6vectorINS0_10CoordinateESaIS3_EEm@Base 3.7.0 - _ZN4geos4geom23CoordinateArraySequenceC2ERKNS0_18CoordinateSequenceE@Base 3.4.2 - _ZN4geos4geom23CoordinateArraySequenceC2ERKS1_@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequenceC2Ejj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequenceC2Emm@Base 3.7.0 - _ZN4geos4geom23CoordinateArraySequenceC2Ev@Base 3.4.2 - _ZN4geos4geom23CoordinateArraySequenceD0Ev@Base 3.4.2 - _ZN4geos4geom23CoordinateArraySequenceD1Ev@Base 3.4.2 - _ZN4geos4geom23CoordinateArraySequenceD2Ev@Base 3.4.2 - _ZN4geos4geom23GeometryComponentFilter6isDoneEv@Base 3.8.0 - _ZN4geos4geom23GeometryComponentFilter9filter_roEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom23GeometryComponentFilter9filter_rwEPNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom23GeometryComponentFilterD0Ev@Base 3.4.2 - _ZN4geos4geom23GeometryComponentFilterD1Ev@Base 3.4.2 - _ZN4geos4geom23GeometryComponentFilterD2Ev@Base 3.4.2 - (subst)_ZN4geos4geom24CoordinateSequenceFilter9filter_roERKNS0_18CoordinateSequenceE{size_t}@Base 3.10.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom24CoordinateSequenceFilter9filter_rwERNS0_18CoordinateSequenceEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom24CoordinateSequenceFilter9filter_rwERNS0_18CoordinateSequenceEm@Base 3.7.0 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EE11setOrdinateEjjd@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EE5setAtERKNS0_10CoordinateEj@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EED0Ev@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EED1Ev@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EED2Ev@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EE11setOrdinateEmmd@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EE5setAtERKNS0_10CoordinateEm@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EED0Ev@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EED1Ev@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EED2Ev@Base 3.8.1 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EED0Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EED1Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EED2Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EED0Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EED1Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EED2Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EED0Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EED1Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EED2Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EED0Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EED1Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EED2Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EED0Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EED1Ev@Base 3.8.0 - (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EED2Ev@Base 3.8.0 - _ZN4geos4geom30CoordinateArraySequenceFactory8instanceEv@Base 3.4.2 - _ZN4geos4geom30CoordinateArraySequenceFactoryD0Ev@Base 3.4.2 - _ZN4geos4geom30CoordinateArraySequenceFactoryD1Ev@Base 3.4.2 - _ZN4geos4geom30CoordinateArraySequenceFactoryD2Ev@Base 3.4.2 - _ZN4geos4geom32DefaultCoordinateSequenceFactory8instanceEv@Base 3.8.0 - _ZN4geos4geom32DefaultCoordinateSequenceFactoryD0Ev@Base 3.8.0 - _ZN4geos4geom32DefaultCoordinateSequenceFactoryD1Ev@Base 3.8.0 - _ZN4geos4geom32DefaultCoordinateSequenceFactoryD2Ev@Base 3.8.0 - _ZN4geos4geom4prep13PreparedPointD0Ev@Base 3.4.2 - _ZN4geos4geom4prep13PreparedPointD1Ev@Base 3.4.2 - _ZN4geos4geom4prep13PreparedPointD2Ev@Base 3.4.2 - _ZN4geos4geom4prep15PreparedPolygonC1EPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep15PreparedPolygonC2EPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep15PreparedPolygonD0Ev@Base 3.4.2 - _ZN4geos4geom4prep15PreparedPolygonD1Ev@Base 3.4.2 - _ZN4geos4geom4prep15PreparedPolygonD2Ev@Base 3.4.2 - _ZN4geos4geom4prep18PreparedLineString21getIntersectionFinderEv@Base 3.4.2 - _ZN4geos4geom4prep18PreparedLineStringD0Ev@Base 3.4.2 - _ZN4geos4geom4prep18PreparedLineStringD1Ev@Base 3.4.2 - _ZN4geos4geom4prep18PreparedLineStringD2Ev@Base 3.4.2 - _ZN4geos4geom4prep21BasicPreparedGeometry11setGeometryEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep21BasicPreparedGeometry8toStringB5cxx11Ev@Base 3.5.1 - _ZN4geos4geom4prep21BasicPreparedGeometryC1EPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep21BasicPreparedGeometryC2EPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep21BasicPreparedGeometryD0Ev@Base 3.4.2 - _ZN4geos4geom4prep21BasicPreparedGeometryD1Ev@Base 3.4.2 - _ZN4geos4geom4prep21BasicPreparedGeometryD2Ev@Base 3.4.2 - _ZN4geos4geom4prep21PreparedPolygonCovers24fullTopologicalPredicateEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep21PreparedPolygonCoversD0Ev@Base 3.4.2 - _ZN4geos4geom4prep21PreparedPolygonCoversD1Ev@Base 3.4.2 - _ZN4geos4geom4prep21PreparedPolygonCoversD2Ev@Base 3.4.2 - _ZN4geos4geom4prep22LocationMatchingFilter6isDoneEv@Base 3.8.0 - _ZN4geos4geom4prep22LocationMatchingFilter9filter_roEPKNS0_8GeometryE@Base 3.8.0 - _ZN4geos4geom4prep22LocationMatchingFilterD0Ev@Base 3.8.0 - _ZN4geos4geom4prep22LocationMatchingFilterD1Ev@Base 3.8.0 - _ZN4geos4geom4prep22LocationMatchingFilterD2Ev@Base 3.8.0 - _ZN4geos4geom4prep23OutermostLocationFilter6isDoneEv@Base 3.8.0 - _ZN4geos4geom4prep23OutermostLocationFilter9filter_roEPKNS0_8GeometryE@Base 3.8.0 - _ZN4geos4geom4prep23OutermostLocationFilterD0Ev@Base 3.8.0 - _ZN4geos4geom4prep23OutermostLocationFilterD1Ev@Base 3.8.0 - _ZN4geos4geom4prep23OutermostLocationFilterD2Ev@Base 3.8.0 - _ZN4geos4geom4prep23PreparedPolygonContains24fullTopologicalPredicateEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep23PreparedPolygonContainsC1EPKNS1_15PreparedPolygonE@Base 3.4.2 - _ZN4geos4geom4prep23PreparedPolygonContainsC2EPKNS1_15PreparedPolygonE@Base 3.4.2 - _ZN4geos4geom4prep23PreparedPolygonContainsD0Ev@Base 3.4.2 - _ZN4geos4geom4prep23PreparedPolygonContainsD1Ev@Base 3.4.2 - _ZN4geos4geom4prep23PreparedPolygonContainsD2Ev@Base 3.4.2 - _ZN4geos4geom4prep25LocationNotMatchingFilter6isDoneEv@Base 3.8.0 - _ZN4geos4geom4prep25LocationNotMatchingFilter9filter_roEPKNS0_8GeometryE@Base 3.8.0 - _ZN4geos4geom4prep25LocationNotMatchingFilterD0Ev@Base 3.8.0 - _ZN4geos4geom4prep25LocationNotMatchingFilterD1Ev@Base 3.8.0 - _ZN4geos4geom4prep25LocationNotMatchingFilterD2Ev@Base 3.8.0 - _ZN4geos4geom4prep25PreparedPolygonIntersects10intersectsEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep25PreparedPolygonIntersectsD0Ev@Base 3.4.2 - _ZN4geos4geom4prep25PreparedPolygonIntersectsD1Ev@Base 3.4.2 - _ZN4geos4geom4prep25PreparedPolygonIntersectsD2Ev@Base 3.4.2 - _ZN4geos4geom4prep31AbstractPreparedPolygonContains13isSingleShellERKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep31AbstractPreparedPolygonContains17evalPointTestGeomEPKNS0_8GeometryENS0_8LocationE@Base 3.8.0 - _ZN4geos4geom4prep31AbstractPreparedPolygonContains28findAndClassifyIntersectionsEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep31AbstractPreparedPolygonContains48isProperIntersectionImpliesNotContainedSituationEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep31AbstractPreparedPolygonContains4evalEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep31PreparedPolygonContainsProperly16containsProperlyEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4prep31PreparedPolygonContainsProperlyD0Ev@Base 3.4.2 - _ZN4geos4geom4prep31PreparedPolygonContainsProperlyD1Ev@Base 3.4.2 - _ZN4geos4geom4prep31PreparedPolygonContainsProperlyD2Ev@Base 3.4.2 - _ZN4geos4geom4util13GeometryFixer16setKeepCollapsedEb@Base 3.10.0 - _ZN4geos4geom4util13GeometryFixer3fixEPKNS0_8GeometryE@Base 3.10.0 - _ZN4geos4geom4util14GeometryEditor11editPolygonEPKNS0_7PolygonEPNS1_23GeometryEditorOperationE@Base 3.4.2 - _ZN4geos4geom4util14GeometryEditor22editGeometryCollectionEPKNS0_18GeometryCollectionEPNS1_23GeometryEditorOperationE@Base 3.4.2 - _ZN4geos4geom4util14GeometryEditor4editEPKNS0_8GeometryEPNS1_23GeometryEditorOperationE@Base 3.4.2 - _ZN4geos4geom4util14GeometryEditorC1EPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom4util14GeometryEditorC1Ev@Base 3.4.2 - _ZN4geos4geom4util14GeometryEditorC2EPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom4util14GeometryEditorC2Ev@Base 3.4.2 - _ZN4geos4geom4util14PointExtracter9filter_roEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util14PointExtracter9filter_rwEPNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util14PointExtracter9getPointsERKNS0_8GeometryERSt6vectorIPKNS0_5PointESaIS9_EE@Base 3.5.0 - _ZN4geos4geom4util14PointExtracterC1ERSt6vectorIPKNS0_5PointESaIS6_EE@Base 3.5.0 - _ZN4geos4geom4util14PointExtracterC2ERSt6vectorIPKNS0_5PointESaIS6_EE@Base 3.5.0 - _ZN4geos4geom4util14PointExtracterD0Ev@Base 3.4.2 - _ZN4geos4geom4util14PointExtracterD1Ev@Base 3.4.2 - _ZN4geos4geom4util14PointExtracterD2Ev@Base 3.4.2 - _ZN4geos4geom4util16GeometryCombiner12setSkipEmptyEb@Base 3.10.0 - _ZN4geos4geom4util16GeometryCombiner7combineEOSt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EES8_@Base 3.10.0 - _ZN4geos4geom4util16GeometryCombiner7combineEOSt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EES8_S8_@Base 3.10.0 - _ZN4geos4geom4util16GeometryCombiner7combineEOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS5_EESaIS8_EE@Base 3.10.0 - _ZN4geos4geom4util16GeometryCombiner7combineEPKNS0_8GeometryES5_@Base 3.4.2 - _ZN4geos4geom4util16GeometryCombiner7combineEPKNS0_8GeometryES5_S5_@Base 3.4.2 - _ZN4geos4geom4util16GeometryCombiner7combineERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.0 - _ZN4geos4geom4util16GeometryCombiner7combineEv@Base 3.4.2 - _ZN4geos4geom4util16GeometryCombinerC1EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS5_EESaIS8_EE@Base 3.10.0 - _ZN4geos4geom4util16GeometryCombinerC1ERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.0 - _ZN4geos4geom4util16GeometryCombinerC2EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS5_EESaIS8_EE@Base 3.10.0 - _ZN4geos4geom4util16GeometryCombinerC2ERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.0 - _ZN4geos4geom4util16PolygonExtracter11getPolygonsERKNS0_8GeometryERSt6vectorIPKNS0_7PolygonESaIS9_EE@Base 3.5.0 - _ZN4geos4geom4util16PolygonExtracter9filter_roEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util16PolygonExtracter9filter_rwEPNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util16PolygonExtracterC1ERSt6vectorIPKNS0_7PolygonESaIS6_EE@Base 3.5.0 - _ZN4geos4geom4util16PolygonExtracterC2ERSt6vectorIPKNS0_7PolygonESaIS6_EE@Base 3.5.0 - _ZN4geos4geom4util16PolygonExtracterD0Ev@Base 3.4.2 - _ZN4geos4geom4util16PolygonExtracterD1Ev@Base 3.4.2 - _ZN4geos4geom4util16PolygonExtracterD2Ev@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEE9filter_roEPKNS0_8GeometryE@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEED0Ev@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEED1Ev@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEED2Ev@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEE9filter_roEPKNS0_8GeometryE@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEED0Ev@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEED1Ev@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEED2Ev@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEE9filter_roEPKNS0_8GeometryE@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEED0Ev@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEED1Ev@Base 3.4.2 - (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEED2Ev@Base 3.4.2 - _ZN4geos4geom4util19CoordinateOperation4editEPKNS0_8GeometryEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformer14transformPointEPKNS0_5PointEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformer16transformPolygonEPKNS0_7PolygonEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformer19transformLineStringEPKNS0_10LineStringEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformer19transformLinearRingEPKNS0_10LinearRingEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformer19transformMultiPointEPKNS0_10MultiPointEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformer20transformCoordinatesEPKNS0_18CoordinateSequenceEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformer21transformMultiPolygonEPKNS0_12MultiPolygonEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformer24createCoordinateSequenceESt10unique_ptrISt6vectorINS0_10CoordinateESaIS5_EESt14default_deleteIS7_EE@Base 3.7.0 - _ZN4geos4geom4util19GeometryTransformer24transformMultiLineStringEPKNS0_15MultiLineStringEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformer27transformGeometryCollectionEPKNS0_18GeometryCollectionEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformer38setSkipTransformedInvalidInteriorRingsEb@Base 3.6.1 - _ZN4geos4geom4util19GeometryTransformer9transformEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformerC1Ev@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformerC2Ev@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformerD0Ev@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformerD1Ev@Base 3.4.2 - _ZN4geos4geom4util19GeometryTransformerD2Ev@Base 3.4.2 - _ZN4geos4geom4util21NoOpGeometryOperation4editEPKNS0_8GeometryEPKNS0_15GeometryFactoryE@Base 3.10.0 - _ZN4geos4geom4util21NoOpGeometryOperationD0Ev@Base 3.10.0 - _ZN4geos4geom4util21NoOpGeometryOperationD1Ev@Base 3.10.0 - _ZN4geos4geom4util21NoOpGeometryOperationD2Ev@Base 3.10.0 - _ZN4geos4geom4util24LinearComponentExtracter8getLinesERKNS0_8GeometryERSt6vectorIPKNS0_10LineStringESaIS9_EE@Base 3.5.0 - _ZN4geos4geom4util24LinearComponentExtracter9filter_roEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util24LinearComponentExtracter9filter_rwEPNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util24LinearComponentExtracterC1ERSt6vectorIPKNS0_10LineStringESaIS6_EE@Base 3.5.0 - _ZN4geos4geom4util24LinearComponentExtracterC2ERSt6vectorIPKNS0_10LineStringESaIS6_EE@Base 3.5.0 - _ZN4geos4geom4util24LinearComponentExtracterD0Ev@Base 3.4.2 - _ZN4geos4geom4util24LinearComponentExtracterD1Ev@Base 3.4.2 - _ZN4geos4geom4util24LinearComponentExtracterD2Ev@Base 3.4.2 - _ZN4geos4geom4util28ComponentCoordinateExtracter14getCoordinatesERKNS0_8GeometryERSt6vectorIPKNS0_10CoordinateESaIS9_EE@Base 3.5.0 - _ZN4geos4geom4util28ComponentCoordinateExtracter9filter_roEPKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util28ComponentCoordinateExtracter9filter_rwEPNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util28ComponentCoordinateExtracterC1ERSt6vectorIPKNS0_10CoordinateESaIS6_EE@Base 3.5.0 - _ZN4geos4geom4util28ComponentCoordinateExtracterC2ERSt6vectorIPKNS0_10CoordinateESaIS6_EE@Base 3.5.0 - _ZN4geos4geom4util28ComponentCoordinateExtracterD0Ev@Base 3.4.2 - _ZN4geos4geom4util28ComponentCoordinateExtracterD1Ev@Base 3.4.2 - _ZN4geos4geom4util28ComponentCoordinateExtracterD2Ev@Base 3.4.2 - _ZN4geos4geom4util29ShortCircuitedGeometryVisitor7applyToERKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geom4util9Densifier13densifyPointsESt6vectorINS0_10CoordinateESaIS4_EEdPKNS0_14PrecisionModelE@Base 3.8.0 - _ZN4geos4geom4util9Densifier18DensifyTransformer15createValidAreaEPKNS0_8GeometryE@Base 3.8.0 - _ZN4geos4geom4util9Densifier18DensifyTransformer16transformPolygonEPKNS0_7PolygonEPKNS0_8GeometryE@Base 3.8.0 - _ZN4geos4geom4util9Densifier18DensifyTransformer20transformCoordinatesEPKNS0_18CoordinateSequenceEPKNS0_8GeometryE@Base 3.8.0 - _ZN4geos4geom4util9Densifier18DensifyTransformer21transformMultiPolygonEPKNS0_12MultiPolygonEPKNS0_8GeometryE@Base 3.8.0 - _ZN4geos4geom4util9Densifier18DensifyTransformerC1Ed@Base 3.8.0 - _ZN4geos4geom4util9Densifier18DensifyTransformerC2Ed@Base 3.8.0 - _ZN4geos4geom4util9Densifier18DensifyTransformerD0Ev@Base 3.8.0 - _ZN4geos4geom4util9Densifier18DensifyTransformerD1Ev@Base 3.8.0 - _ZN4geos4geom4util9Densifier18DensifyTransformerD2Ev@Base 3.8.0 - _ZN4geos4geom4util9Densifier20setDistanceToleranceEd@Base 3.8.0 - _ZN4geos4geom4util9Densifier7densifyEPKNS0_8GeometryEd@Base 3.8.0 - _ZN4geos4geom4util9DensifierC1EPKNS0_8GeometryE@Base 3.8.0 - _ZN4geos4geom4util9DensifierC2EPKNS0_8GeometryE@Base 3.8.0 - _ZN4geos4geom5Point8apply_rwEPKNS0_16CoordinateFilterE@Base 3.4.2 - _ZN4geos4geom5Point8apply_rwEPNS0_14GeometryFilterE@Base 3.4.2 - _ZN4geos4geom5Point8apply_rwEPNS0_23GeometryComponentFilterE@Base 3.4.2 - _ZN4geos4geom5Point8apply_rwERNS0_24CoordinateSequenceFilterE@Base 3.4.2 - _ZN4geos4geom5Point9normalizeEv@Base 3.4.2 - _ZN4geos4geom5PointC1EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom5PointC1ERKNS0_10CoordinateEPKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom5PointC1ERKS1_@Base 3.4.2 - _ZN4geos4geom5PointC2EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom5PointC2ERKNS0_10CoordinateEPKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom5PointC2ERKS1_@Base 3.4.2 - _ZN4geos4geom5PointD0Ev@Base 3.4.2 - _ZN4geos4geom5PointD1Ev@Base 3.4.2 - _ZN4geos4geom5PointD2Ev@Base 3.4.2 - _ZN4geos4geom6SnapOpEPKNS0_8GeometryES3_i@Base 3.9.0 - _ZN4geos4geom7Polygon19releaseExteriorRingEv@Base 3.10.0 - _ZN4geos4geom7Polygon20releaseInteriorRingsEv@Base 3.10.0 - _ZN4geos4geom7Polygon8apply_rwEPKNS0_16CoordinateFilterE@Base 3.4.2 - _ZN4geos4geom7Polygon8apply_rwEPNS0_14GeometryFilterE@Base 3.4.2 - _ZN4geos4geom7Polygon8apply_rwEPNS0_23GeometryComponentFilterE@Base 3.4.2 - _ZN4geos4geom7Polygon8apply_rwERNS0_24CoordinateSequenceFilterE@Base 3.4.2 - _ZN4geos4geom7Polygon9normalizeEPNS0_10LinearRingEb@Base 3.4.2 - _ZN4geos4geom7Polygon9normalizeEv@Base 3.4.2 - _ZN4geos4geom7PolygonC1EOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EEOSt6vectorIS6_SaIS6_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom7PolygonC1EOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom7PolygonC1EPNS0_10LinearRingEPSt6vectorIS3_SaIS3_EEPKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom7PolygonC1ERKS1_@Base 3.4.2 - _ZN4geos4geom7PolygonC2EOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EEOSt6vectorIS6_SaIS6_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom7PolygonC2EOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom7PolygonC2EPNS0_10LinearRingEPSt6vectorIS3_SaIS3_EEPKNS0_15GeometryFactoryE@Base 3.8.0 - _ZN4geos4geom7PolygonC2ERKS1_@Base 3.4.2 - _ZN4geos4geom7PolygonD0Ev@Base 3.4.2 - _ZN4geos4geom7PolygonD1Ev@Base 3.4.2 - _ZN4geos4geom7PolygonD2Ev@Base 3.4.2 - _ZN4geos4geom7jtsportB5cxx11Ev@Base 3.5.1 - _ZN4geos4geom8Envelope10intersectsERKNS0_10CoordinateES4_S4_@Base 3.4.2 - _ZN4geos4geom8Envelope5splitERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 - _ZN4geos4geom8Envelope8expandByEdd@Base 3.4.2 - _ZN4geos4geom8Envelope9translateEdd@Base 3.4.2 - _ZN4geos4geom8EnvelopeC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4geom8EnvelopeC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4geom8Geometry15geometryChangedEv@Base 3.4.2 - _ZN4geos4geom8Geometry15hasNullElementsEPKNS0_18CoordinateSequenceE@Base 3.4.2 - _ZN4geos4geom8Geometry21GeometryChangedFilter9filter_rwEPS1_@Base 3.4.2 - _ZN4geos4geom8Geometry21GeometryChangedFilterD0Ev@Base 3.4.2 - _ZN4geos4geom8Geometry21GeometryChangedFilterD1Ev@Base 3.4.2 - _ZN4geos4geom8Geometry21GeometryChangedFilterD2Ev@Base 3.4.2 - _ZN4geos4geom8Geometry21geometryChangedActionEv@Base 3.4.2 - _ZN4geos4geom8Geometry21geometryChangedFilterE@Base 3.4.2 - _ZN4geos4geom8Geometry26checkNotGeometryCollectionEPKS1_@Base 3.4.2 - _ZN4geos4geom8Geometry7setSRIDEi@Base 3.4.2 - _ZN4geos4geom8Geometry8apply_rwEPNS0_14GeometryFilterE@Base 3.4.2 - _ZN4geos4geom8Geometry8apply_rwEPNS0_23GeometryComponentFilterE@Base 3.4.2 - _ZN4geos4geom8GeometryC1EPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom8GeometryC1ERKS1_@Base 3.4.2 - _ZN4geos4geom8GeometryC2EPKNS0_15GeometryFactoryE@Base 3.4.2 - _ZN4geos4geom8GeometryC2ERKS1_@Base 3.4.2 - _ZN4geos4geom8GeometryD0Ev@Base 3.4.2 - _ZN4geos4geom8GeometryD1Ev@Base 3.4.2 - _ZN4geos4geom8GeometryD2Ev@Base 3.4.2 - _ZN4geos4geom8Position8oppositeEi@Base 3.9.0 - _ZN4geos4geom8Quadrant13isInHalfPlaneEii@Base 3.9.0 - _ZN4geos4geom8Quadrant15commonHalfPlaneEii@Base 3.9.0 - (arch=armel armhf x32)_ZN4geos4geom8Quadrant8quadrantERKNS0_10CoordinateES4_@Base 3.10.0 - _ZN4geos4geom8Quadrant8quadrantEdd@Base 3.9.0 - _ZN4geos4geom8Triangle10intersectsERKNS0_10CoordinateES4_S4_S4_@Base 3.10.0 - _ZN4geos4geom8Triangle10isIsocelesEv@Base 3.8.0 - _ZN4geos4geom8Triangle12circumcentreERKNS0_10CoordinateES4_S4_@Base 3.8.0 - _ZN4geos4geom8Triangle12circumcentreERNS0_10CoordinateE@Base 3.5.0 - _ZN4geos4geom8Triangle14circumcentreDDERNS0_10CoordinateE@Base 3.8.0 - _ZN4geos4geom8Triangle5isCCWERKNS0_10CoordinateES4_S4_@Base 3.10.0 - _ZN4geos4geom8Triangle7isAcuteERKNS0_10CoordinateES4_S4_@Base 3.10.0 - _ZN4geos4geom8Triangle8inCentreERNS0_10CoordinateE@Base 3.4.2 - _ZN4geos4geom9Dimension16toDimensionValueEc@Base 3.4.2 - _ZN4geos4geom9Dimension17toDimensionSymbolEi@Base 3.4.2 - _ZN4geos4geomeqERKNS0_14PrecisionModelES3_@Base 3.4.2 - _ZN4geos4geomeqERKNS0_18CoordinateSequenceES3_@Base 3.4.2 - _ZN4geos4geomeqERKNS0_8EnvelopeES3_@Base 3.4.2 - _ZN4geos4geomlsERSoRKNS0_10CoordinateE@Base 3.4.2 - _ZN4geos4geomlsERSoRKNS0_18CoordinateSequenceE@Base 3.4.2 - _ZN4geos4geomlsERSoRKNS0_18IntersectionMatrixE@Base 3.4.2 - _ZN4geos4geomlsERSoRKNS0_8EnvelopeE@Base 3.7.0 - _ZN4geos4geomlsERSoRKNS0_8GeometryE@Base 3.4.2 - _ZN4geos4geomlsERSoRKNS0_8LocationE@Base 3.8.0 - _ZN4geos4geomltERKNS0_8EnvelopeES3_@Base 3.10.0 - _ZN4geos4geomneERKNS0_18CoordinateSequenceES3_@Base 3.4.2 - _ZN4geos4math2DD10selfDivideERKS1_@Base 3.9.0 - _ZN4geos4math2DD10selfDivideEd@Base 3.9.0 - _ZN4geos4math2DD10selfDivideEdd@Base 3.9.0 - _ZN4geos4math2DD11determinantERKS1_S3_S3_S3_@Base 3.9.0 - _ZN4geos4math2DD11determinantEdddd@Base 3.9.0 - _ZN4geos4math2DD12selfMultiplyERKS1_@Base 3.9.0 - _ZN4geos4math2DD12selfMultiplyEd@Base 3.9.0 - _ZN4geos4math2DD12selfMultiplyEdd@Base 3.9.0 - _ZN4geos4math2DD12selfSubtractERKS1_@Base 3.9.0 - _ZN4geos4math2DD12selfSubtractEd@Base 3.9.0 - _ZN4geos4math2DD12selfSubtractEdd@Base 3.9.0 - _ZN4geos4math2DD3absERKS1_@Base 3.9.0 - _ZN4geos4math2DD3powERKS1_i@Base 3.9.0 - _ZN4geos4math2DD5truncERKS1_@Base 3.9.0 - _ZN4geos4math2DD7selfAddERKS1_@Base 3.9.0 - _ZN4geos4math2DD7selfAddEd@Base 3.9.0 - _ZN4geos4math2DD7selfAddEdd@Base 3.9.0 - _ZN4geos4mathdvERKNS0_2DDES3_@Base 3.9.0 - _ZN4geos4mathdvERKNS0_2DDEd@Base 3.9.0 - _ZN4geos4mathmiERKNS0_2DDES3_@Base 3.9.0 - _ZN4geos4mathmiERKNS0_2DDEd@Base 3.9.0 - _ZN4geos4mathmlERKNS0_2DDES3_@Base 3.9.0 - _ZN4geos4mathmlERKNS0_2DDEd@Base 3.9.0 - _ZN4geos4mathplERKNS0_2DDES3_@Base 3.9.0 - _ZN4geos4mathplERKNS0_2DDEd@Base 3.9.0 - _ZN4geos4util13GEOSExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 - _ZN4geos4util13GEOSExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 - _ZN4geos4util13GEOSExceptionD0Ev@Base 3.4.2 - _ZN4geos4util13GEOSExceptionD1Ev@Base 3.4.2 - _ZN4geos4util13GEOSExceptionD2Ev@Base 3.4.2 - _ZN4geos4util15java_math_roundEd@Base 3.4.2 - _ZN4geos4util17TopologyExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util17TopologyExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_4geom10CoordinateE@Base 3.5.1 - (arch=amd64 arm64 x32)_ZN4geos4util17TopologyExceptionC1Ev@Base 3.9.0 - _ZN4geos4util17TopologyExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util17TopologyExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_4geom10CoordinateE@Base 3.5.1 - (arch=amd64 arm64 x32)_ZN4geos4util17TopologyExceptionC2Ev@Base 3.9.0 - _ZN4geos4util17TopologyExceptionD0Ev@Base 3.4.2 - _ZN4geos4util17TopologyExceptionD1Ev@Base 3.4.2 - _ZN4geos4util17TopologyExceptionD2Ev@Base 3.4.2 - _ZN4geos4util20InterruptedExceptionC1Ev@Base 3.8.0 - _ZN4geos4util20InterruptedExceptionC2Ev@Base 3.8.0 - _ZN4geos4util20InterruptedExceptionD0Ev@Base 3.4.2 - _ZN4geos4util20InterruptedExceptionD1Ev@Base 3.4.2 - _ZN4geos4util20InterruptedExceptionD2Ev@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory10Dimensions7setBaseERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory10Dimensions7setSizeEd@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory10Dimensions8setWidthEd@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory10Dimensions9setCentreERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory10Dimensions9setHeightEd@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory10DimensionsC1Ev@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory10DimensionsC2Ev@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory12createCircleEv@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory12setNumPointsEj@Base 3.9.0 - _ZN4geos4util21GeometricShapeFactory15createRectangleEv@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory16createArcPolygonEdd@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory7setBaseERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory7setSizeEd@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory8setWidthEd@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory9createArcEdd@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory9setCentreERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactory9setHeightEd@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactoryC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactoryC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactoryD0Ev@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactoryD1Ev@Base 3.4.2 - _ZN4geos4util21GeometricShapeFactoryD2Ev@Base 3.4.2 - _ZN4geos4util21IllegalStateExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - _ZN4geos4util21IllegalStateExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - _ZN4geos4util21IllegalStateExceptionD0Ev@Base 3.4.2 - _ZN4geos4util21IllegalStateExceptionD1Ev@Base 3.4.2 - _ZN4geos4util21IllegalStateExceptionD2Ev@Base 3.4.2 - _ZN4geos4util24AssertionFailedExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.8.0 - _ZN4geos4util24AssertionFailedExceptionC1Ev@Base 3.8.0 - _ZN4geos4util24AssertionFailedExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.8.0 - _ZN4geos4util24AssertionFailedExceptionC2Ev@Base 3.8.0 - _ZN4geos4util24AssertionFailedExceptionD0Ev@Base 3.4.2 - _ZN4geos4util24AssertionFailedExceptionD1Ev@Base 3.4.2 - _ZN4geos4util24AssertionFailedExceptionD2Ev@Base 3.4.2 - _ZN4geos4util24IllegalArgumentExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util24IllegalArgumentExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util24IllegalArgumentExceptionD0Ev@Base 3.4.2 - _ZN4geos4util24IllegalArgumentExceptionD1Ev@Base 3.4.2 - _ZN4geos4util24IllegalArgumentExceptionD2Ev@Base 3.4.2 - _ZN4geos4util27UniqueCoordinateArrayFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos4util27UniqueCoordinateArrayFilterD0Ev@Base 3.4.2 - _ZN4geos4util27UniqueCoordinateArrayFilterD1Ev@Base 3.4.2 - _ZN4geos4util27UniqueCoordinateArrayFilterD2Ev@Base 3.4.2 - _ZN4geos4util29UnsupportedOperationExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util29UnsupportedOperationExceptionC1Ev@Base 3.4.2 - _ZN4geos4util29UnsupportedOperationExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util29UnsupportedOperationExceptionC2Ev@Base 3.4.2 - _ZN4geos4util29UnsupportedOperationExceptionD0Ev@Base 3.4.2 - _ZN4geos4util29UnsupportedOperationExceptionD1Ev@Base 3.4.2 - _ZN4geos4util29UnsupportedOperationExceptionD2Ev@Base 3.4.2 - _ZN4geos4util6Assert20shouldNeverReachHereERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util6Assert6equalsERKNS_4geom10CoordinateES5_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util6Assert6isTrueEbRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util7ProfileC1ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util7ProfileC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util7rint_vcEd@Base 3.4.2 - _ZN4geos4util8Profiler3getENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util8Profiler4stopENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util8Profiler5startENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4util8Profiler8instanceEv@Base 3.4.2 - _ZN4geos4util8ProfilerD1Ev@Base 3.4.2 - _ZN4geos4util8ProfilerD2Ev@Base 3.4.2 - _ZN4geos4util9Interrupt16registerCallbackEPFvvE@Base 3.4.2 - _ZN4geos4util9Interrupt5checkEv@Base 3.4.2 - _ZN4geos4util9Interrupt6cancelEv@Base 3.4.2 - _ZN4geos4util9Interrupt7processEv@Base 3.4.2 - _ZN4geos4util9Interrupt7requestEv@Base 3.4.2 - _ZN4geos4util9Interrupt9interruptEv@Base 3.4.2 - _ZN4geos4util9sym_roundEd@Base 3.4.2 - _ZN4geos4utillsERSoRKNS0_7ProfileE@Base 3.4.2 - _ZN4geos4utillsERSoRKNS0_8ProfilerE@Base 3.4.2 - _ZN4geos5index13intervalrtree21IntervalRTreeLeafNodeD0Ev@Base 3.4.2 - _ZN4geos5index13intervalrtree21IntervalRTreeLeafNodeD1Ev@Base 3.4.2 - _ZN4geos5index13intervalrtree21IntervalRTreeLeafNodeD2Ev@Base 3.4.2 - _ZN4geos5index13intervalrtree23IntervalRTreeBranchNodeD0Ev@Base 3.4.2 - _ZN4geos5index13intervalrtree23IntervalRTreeBranchNodeD1Ev@Base 3.4.2 - _ZN4geos5index13intervalrtree23IntervalRTreeBranchNodeD2Ev@Base 3.4.2 - _ZN4geos5index13intervalrtree25SortedPackedIntervalRTree10buildLevelERSt6vectorIPKNS1_17IntervalRTreeNodeESaIS6_EES9_@Base 3.8.0 - _ZN4geos5index13intervalrtree25SortedPackedIntervalRTree4initEv@Base 3.4.2 - _ZN4geos5index13intervalrtree25SortedPackedIntervalRTree5queryEddPNS0_11ItemVisitorE@Base 3.4.2 - _ZN4geos5index13intervalrtree25SortedPackedIntervalRTree9buildTreeEv@Base 3.4.2 - _ZN4geos5index5chain12ChainBuilder9filter_roEPKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos5index5chain12ChainBuilderD0Ev@Base 3.10.0 - _ZN4geos5index5chain12ChainBuilderD1Ev@Base 3.10.0 - _ZN4geos5index5chain12ChainBuilderD2Ev@Base 3.10.0 - _ZN4geos5index5chain13MonotoneChain8overlapsERKNS_4geom10CoordinateES6_S6_S6_d@Base 3.10.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index5chain13MonotoneChainC1ERKNS_4geom18CoordinateSequenceEjjPv@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index5chain13MonotoneChainC1ERKNS_4geom18CoordinateSequenceEmmPv@Base 3.7.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index5chain13MonotoneChainC2ERKNS_4geom18CoordinateSequenceEjjPv@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index5chain13MonotoneChainC2ERKNS_4geom18CoordinateSequenceEmmPv@Base 3.7.0 - _ZN4geos5index5chain20MonotoneChainBuilder9getChainsEPKNS_4geom18CoordinateSequenceEPvRSt6vectorINS1_13MonotoneChainESaIS9_EE@Base 3.10.0 - (subst)_ZN4geos5index5chain25MonotoneChainSelectAction6selectERKNS1_13MonotoneChainE{size_t}@Base 3.10.0 - (subst)_ZN4geos5index5chain26MonotoneChainOverlapAction7overlapERKNS1_13MonotoneChainE{size_t}S5_{size_t}@Base 3.10.0 - _ZN4geos5index5chain26MonotoneChainOverlapAction7overlapERKNS_4geom11LineSegmentES6_@Base 3.4.2 - _ZN4geos5index5chain26MonotoneChainOverlapActionD0Ev@Base 3.4.2 - _ZN4geos5index5chain26MonotoneChainOverlapActionD1Ev@Base 3.4.2 - _ZN4geos5index5chain26MonotoneChainOverlapActionD2Ev@Base 3.4.2 - _ZN4geos5index6kdtree6KdNodeC1ERKNS_4geom10CoordinateEPv@Base 3.9.0 - _ZN4geos5index6kdtree6KdNodeC1EddPv@Base 3.9.0 - _ZN4geos5index6kdtree6KdNodeC2ERKNS_4geom10CoordinateEPv@Base 3.9.0 - _ZN4geos5index6kdtree6KdNodeC2EddPv@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree10createNodeERKNS_4geom10CoordinateEPv@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree11insertExactERKNS_4geom10CoordinateEPv@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree13toCoordinatesERSt6vectorIPNS1_6KdNodeESaIS5_EE@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree13toCoordinatesERSt6vectorIPNS1_6KdNodeESaIS5_EEb@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree14queryNodePointEPNS1_6KdNodeERKNS_4geom10CoordinateEb@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree16BestMatchVisitor13queryEnvelopeEv@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree16BestMatchVisitor5visitEPNS1_6KdNodeE@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree16BestMatchVisitor7getNodeEv@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree16BestMatchVisitorC1ERKNS_4geom10CoordinateEd@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree16BestMatchVisitorC2ERKNS_4geom10CoordinateEd@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree17findBestMatchNodeERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree19AccumulatingVisitor5visitEPNS1_6KdNodeE@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree5queryERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree5queryERKNS_4geom8EnvelopeE@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree5queryERKNS_4geom8EnvelopeERNS1_13KdNodeVisitorE@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree5queryERKNS_4geom8EnvelopeERSt6vectorIPNS1_6KdNodeESaIS9_EE@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree6insertERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree6insertERKNS_4geom10CoordinateEPv@Base 3.9.0 - _ZN4geos5index6kdtree6KdTree9queryNodeEPNS1_6KdNodeERKNS_4geom8EnvelopeEbRNS1_13KdNodeVisitorE@Base 3.9.0 - _ZN4geos5index7bintree3Key10computeKeyEPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree3Key11getIntervalEv@Base 3.4.2 - _ZN4geos5index7bintree3Key12computeLevelEPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree3Key15computeIntervalEiPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree3Key8getLevelEv@Base 3.4.2 - _ZN4geos5index7bintree3Key8getPointEv@Base 3.4.2 - _ZN4geos5index7bintree3KeyC1EPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree3KeyC2EPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree3KeyD1Ev@Base 3.4.2 - _ZN4geos5index7bintree3KeyD2Ev@Base 3.4.2 - _ZN4geos5index7bintree4Node10createNodeEPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree4Node10getSubnodeEi@Base 3.4.2 - _ZN4geos5index7bintree4Node11getIntervalEv@Base 3.4.2 - _ZN4geos5index7bintree4Node13createSubnodeEi@Base 3.4.2 - _ZN4geos5index7bintree4Node13isSearchMatchEPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree4Node14createExpandedEPS2_PNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree4Node4findEPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree4Node6insertEPS2_@Base 3.4.2 - _ZN4geos5index7bintree4Node7getNodeEPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree4NodeC1EPNS1_8IntervalEi@Base 3.4.2 - _ZN4geos5index7bintree4NodeC2EPNS1_8IntervalEi@Base 3.4.2 - _ZN4geos5index7bintree4NodeD0Ev@Base 3.4.2 - _ZN4geos5index7bintree4NodeD1Ev@Base 3.4.2 - _ZN4geos5index7bintree4NodeD2Ev@Base 3.4.2 - _ZN4geos5index7bintree4Root13isSearchMatchEPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree4Root15insertContainedEPNS1_4NodeEPNS1_8IntervalEPv@Base 3.4.2 - _ZN4geos5index7bintree4Root6insertEPNS1_8IntervalEPv@Base 3.4.2 - _ZN4geos5index7bintree4Root6originE@Base 3.4.2 - _ZN4geos5index7bintree4RootD0Ev@Base 3.4.2 - _ZN4geos5index7bintree4RootD1Ev@Base 3.4.2 - _ZN4geos5index7bintree4RootD2Ev@Base 3.4.2 - _ZN4geos5index7bintree7Bintree12collectStatsEPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree7Bintree12ensureExtentEPKNS1_8IntervalEd@Base 3.4.2 - _ZN4geos5index7bintree7Bintree4sizeEv@Base 3.4.2 - _ZN4geos5index7bintree7Bintree5depthEv@Base 3.4.2 - _ZN4geos5index7bintree7Bintree5queryEPNS1_8IntervalE@Base 3.4.2 - _ZN4geos5index7bintree7Bintree5queryEPNS1_8IntervalEPSt6vectorIPvSaIS6_EE@Base 3.4.2 - _ZN4geos5index7bintree7Bintree5queryEd@Base 3.4.2 - _ZN4geos5index7bintree7Bintree6insertEPNS1_8IntervalEPv@Base 3.4.2 - _ZN4geos5index7bintree7Bintree8iteratorEv@Base 3.4.2 - _ZN4geos5index7bintree7Bintree8nodeSizeEv@Base 3.4.2 - _ZN4geos5index7bintree7BintreeC1Ev@Base 3.4.2 - _ZN4geos5index7bintree7BintreeC2Ev@Base 3.4.2 - _ZN4geos5index7bintree7BintreeD1Ev@Base 3.4.2 - _ZN4geos5index7bintree7BintreeD2Ev@Base 3.4.2 - _ZN4geos5index7bintree8Interval15expandToIncludeEPS2_@Base 3.4.2 - _ZN4geos5index7bintree8Interval4initEdd@Base 3.4.2 - _ZN4geos5index7bintree8IntervalC1EPKS2_@Base 3.4.2 - _ZN4geos5index7bintree8IntervalC1Edd@Base 3.4.2 - _ZN4geos5index7bintree8IntervalC1Ev@Base 3.4.2 - _ZN4geos5index7bintree8IntervalC2EPKS2_@Base 3.4.2 - _ZN4geos5index7bintree8IntervalC2Edd@Base 3.4.2 - _ZN4geos5index7bintree8IntervalC2Ev@Base 3.4.2 - _ZN4geos5index7bintree8NodeBase11addAllItemsEPSt6vectorIPvSaIS4_EE@Base 3.4.2 - _ZN4geos5index7bintree8NodeBase15getSubnodeIndexEPNS1_8IntervalEd@Base 3.4.2 - _ZN4geos5index7bintree8NodeBase26addAllItemsFromOverlappingEPNS1_8IntervalEPSt6vectorIPvSaIS6_EE@Base 3.4.2 - _ZN4geos5index7bintree8NodeBase3addEPv@Base 3.4.2 - _ZN4geos5index7bintree8NodeBase4sizeEv@Base 3.4.2 - _ZN4geos5index7bintree8NodeBase5depthEv@Base 3.4.2 - _ZN4geos5index7bintree8NodeBase8getItemsEv@Base 3.4.2 - _ZN4geos5index7bintree8NodeBase8nodeSizeEv@Base 3.4.2 - _ZN4geos5index7bintree8NodeBaseC1Ev@Base 3.4.2 - _ZN4geos5index7bintree8NodeBaseC2Ev@Base 3.4.2 - _ZN4geos5index7bintree8NodeBaseD0Ev@Base 3.4.2 - _ZN4geos5index7bintree8NodeBaseD1Ev@Base 3.4.2 - _ZN4geos5index7bintree8NodeBaseD2Ev@Base 3.4.2 - _ZN4geos5index7strtree12EnvelopeUtil15maximumDistanceEPKNS_4geom8EnvelopeES6_@Base 3.8.0 - _ZN4geos5index7strtree13BoundablePair11isCompositeEPKNS1_9BoundableE@Base 3.6.0 - _ZN4geos5index7strtree13BoundablePair13expandToQueueERSt14priority_queueIPS2_St6vectorIS4_SaIS4_EENS2_25BoundablePairQueueCompareEEd@Base 3.6.0 - _ZN4geos5index7strtree13BoundablePair15maximumDistanceEv@Base 3.8.0 - _ZN4geos5index7strtree13BoundablePair4areaEPKNS1_9BoundableE@Base 3.6.0 - _ZN4geos5index7strtree13BoundablePair6expandEPKNS1_9BoundableES5_bRSt14priority_queueIPS2_St6vectorIS7_SaIS7_EENS2_25BoundablePairQueueCompareEEd@Base 3.8.0 - _ZN4geos5index7strtree13BoundablePairC1EPKNS1_9BoundableES5_PNS1_12ItemDistanceE@Base 3.6.0 - _ZN4geos5index7strtree13BoundablePairC2EPKNS1_9BoundableES5_PNS1_12ItemDistanceE@Base 3.6.0 - _ZN4geos5index7strtree13ItemBoundableD0Ev@Base 3.4.2 - _ZN4geos5index7strtree13ItemBoundableD1Ev@Base 3.4.2 - _ZN4geos5index7strtree13ItemBoundableD2Ev@Base 3.4.2 - _ZN4geos5index7strtree13SimpleSTRnode10removeItemEPv@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRnode11removeChildEPS2_@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRnode12addChildNodeEPS2_@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRnodeD0Ev@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRnodeD1Ev@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRnodeD2Ev@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRpair15maximumDistanceEv@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRpair8distanceEv@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree10createNodeEi@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree10createNodeEiPKNS_4geom8EnvelopeEPv@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree10sortNodesXERSt6vectorIPNS1_13SimpleSTRnodeESaIS5_EE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree10sortNodesYERSt6vectorIPNS1_13SimpleSTRnodeESaIS5_EE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree16isWithinDistanceERS2_PNS1_12ItemDistanceEd@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree16nearestNeighbourEPKNS_4geom8EnvelopeEPKvPNS1_12ItemDistanceE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree16nearestNeighbourEPNS1_12ItemDistanceE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree16nearestNeighbourERS2_PNS1_12ItemDistanceE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree17createParentNodesERSt6vectorIPNS1_13SimpleSTRnodeESaIS5_EEi@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree18createHigherLevelsERSt6vectorIPNS1_13SimpleSTRnodeESaIS5_EEi@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree31addParentNodesFromVerticalSliceERSt6vectorIPNS1_13SimpleSTRnodeESaIS5_EEiS8_@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree5buildEv@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree5queryEPKNS_4geom8EnvelopeEPKNS1_13SimpleSTRnodeERNS0_11ItemVisitorE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree5queryEPKNS_4geom8EnvelopeEPKNS1_13SimpleSTRnodeERSt6vectorIPvSaISB_EE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaIS8_EE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree6insertEPKNS_4geom8EnvelopeEPv@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree6insertEPNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree6removeEPKNS_4geom8EnvelopeEPNS1_13SimpleSTRnodeEPv@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree6removeEPKNS_4geom8EnvelopeEPv@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtree7iterateERNS0_11ItemVisitorE@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtreeD0Ev@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtreeD1Ev@Base 3.9.0 - _ZN4geos5index7strtree13SimpleSTRtreeD2Ev@Base 3.9.0 - _ZN4geos5index7strtree15AbstractSTRtree10removeItemERNS1_12AbstractNodeEPv@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree15getNodeCapacityEv@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree15sortBoundablesYEPKSt6vectorIPNS1_9BoundableESaIS5_EE@Base 3.9.0 - _ZN4geos5index7strtree15AbstractSTRtree17boundablesAtLevelEi@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree17boundablesAtLevelEiPNS1_12AbstractNodeEPSt6vectorIPNS1_9BoundableESaIS7_EE@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree18createHigherLevelsEPSt6vectorIPNS1_9BoundableESaIS5_EEi@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree22createParentBoundablesEPSt6vectorIPNS1_9BoundableESaIS5_EEi@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree5buildEv@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree5queryEPKvPKNS1_12AbstractNodeEPSt6vectorIPvSaIS9_EE@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree5queryEPKvRKNS1_12AbstractNodeERNS0_11ItemVisitorE@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree5queryEPKvRNS0_11ItemVisitorE@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree5queryEPKvRSt6vectorIPvSaIS6_EE@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree6insertEPKvPv@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree6removeEPKvPv@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree6removeEPKvRNS1_12AbstractNodeEPv@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree7getRootEv@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree7iterateERNS0_11ItemVisitorE@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree8lastNodeEPSt6vectorIPNS1_9BoundableESaIS5_EE@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree9itemsTreeEPNS1_12AbstractNodeE@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtree9itemsTreeEv@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtreeD0Ev@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtreeD1Ev@Base 3.4.2 - _ZN4geos5index7strtree15AbstractSTRtreeD2Ev@Base 3.4.2 - _ZN4geos5index7strtree15SIRAbstractNodeD0Ev@Base 3.4.2 - _ZN4geos5index7strtree15SIRAbstractNodeD1Ev@Base 3.4.2 - _ZN4geos5index7strtree15SIRAbstractNodeD2Ev@Base 3.4.2 - _ZN4geos5index7strtree15STRAbstractNodeD0Ev@Base 3.4.2 - _ZN4geos5index7strtree15STRAbstractNodeD1Ev@Base 3.4.2 - _ZN4geos5index7strtree15STRAbstractNodeD2Ev@Base 3.4.2 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaISE_EE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE6insertEPKNS_4geom8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE6removeEPKNS_4geom8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERSt6vectorIPvSaISD_EE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE6insertEPKNS3_8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE6removeEPKNS3_8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERSt6vectorIPvSaISD_EE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE6insertEPKNS3_8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE6removeEPKNS3_8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERSt6vectorIPvSaISD_EE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE6insertEPKNS3_8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE6removeEPKNS3_8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaISF_EE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE6insertEPKNS_4geom8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE6removeEPKNS_4geom8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaISE_EE@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE6insertEPKNS_4geom8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE6removeEPKNS_4geom8EnvelopeEPv@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 - (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 - _ZN4geos5index7strtree17SimpleSTRdistance10createPairEPNS1_13SimpleSTRnodeES4_PNS1_12ItemDistanceE@Base 3.9.0 - _ZN4geos5index7strtree17SimpleSTRdistance13expandToQueueEPNS1_13SimpleSTRpairERSt14priority_queueIS4_St6vectorIS4_SaIS4_EENS2_19STRpairQueueCompareEEd@Base 3.9.0 - _ZN4geos5index7strtree17SimpleSTRdistance16isWithinDistanceEPNS1_13SimpleSTRpairEd@Base 3.9.0 - _ZN4geos5index7strtree17SimpleSTRdistance16isWithinDistanceEd@Base 3.9.0 - _ZN4geos5index7strtree17SimpleSTRdistance16nearestNeighbourEPNS1_13SimpleSTRpairE@Base 3.9.0 - _ZN4geos5index7strtree17SimpleSTRdistance16nearestNeighbourEPNS1_13SimpleSTRpairEd@Base 3.9.0 - _ZN4geos5index7strtree17SimpleSTRdistance16nearestNeighbourEv@Base 3.9.0 - _ZN4geos5index7strtree17SimpleSTRdistance6expandEPNS1_13SimpleSTRnodeES4_bRSt14priority_queueIPNS1_13SimpleSTRpairESt6vectorIS7_SaIS7_EENS2_19STRpairQueueCompareEEd@Base 3.9.0 - _ZN4geos5index7strtree17SimpleSTRdistanceC1EPNS1_13SimpleSTRnodeES4_PNS1_12ItemDistanceE@Base 3.9.0 - _ZN4geos5index7strtree17SimpleSTRdistanceC2EPNS1_13SimpleSTRnodeES4_PNS1_12ItemDistanceE@Base 3.9.0 - (optional=templinst|arch=!amd64)_ZN4geos5index7strtree19TemplateSTRtreeImplINS_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS1_14IntervalTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplINS_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS1_14IntervalTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 - (optional=templinst|arch=!amd64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 - (optional=templinst|arch=!amd64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 - (optional=templinst|arch=!amd64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 - (optional=templinst|arch=!amd64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 - (optional=templinst|arch=!amd64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS7_S8_EESt6vectorISD_SaISD_EEEEj@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS7_S8_EESt6vectorISD_SaISD_EEEEm@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 - (optional=templinst|arch=!amd64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 - _ZN4geos5index7strtree20GeometryItemDistance8distanceEPKNS1_13ItemBoundableES5_@Base 3.6.0 - _ZN4geos5index7strtree7SIRtree10createNodeEi@Base 3.4.2 - _ZN4geos5index7strtree7SIRtree14sortBoundablesEPKSt6vectorIPNS1_9BoundableESaIS5_EE@Base 3.4.2 - _ZN4geos5index7strtree7SIRtree15SIRIntersectsOp10intersectsEPKvS5_@Base 3.4.2 - _ZN4geos5index7strtree7SIRtree15SIRIntersectsOpD0Ev@Base 3.4.2 - _ZN4geos5index7strtree7SIRtree15SIRIntersectsOpD1Ev@Base 3.4.2 - _ZN4geos5index7strtree7SIRtree15SIRIntersectsOpD2Ev@Base 3.4.2 - _ZN4geos5index7strtree7SIRtree15getIntersectsOpEv@Base 3.4.2 - _ZN4geos5index7strtree7SIRtree22createParentBoundablesEPSt6vectorIPNS1_9BoundableESaIS5_EEi@Base 3.4.2 - _ZN4geos5index7strtree7SIRtree6insertEddPv@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree7SIRtreeC1Ej@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree7SIRtreeC1Em@Base 3.7.0 - _ZN4geos5index7strtree7SIRtreeC1Ev@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree7SIRtreeC2Ej@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree7SIRtreeC2Em@Base 3.7.0 - _ZN4geos5index7strtree7SIRtreeC2Ev@Base 3.4.2 - _ZN4geos5index7strtree7SIRtreeD0Ev@Base 3.4.2 - _ZN4geos5index7strtree7SIRtreeD1Ev@Base 3.4.2 - _ZN4geos5index7strtree7SIRtreeD2Ev@Base 3.4.2 - _ZN4geos5index7strtree7STRtree10createNodeEi@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree7STRtree14verticalSlicesEPSt6vectorIPNS1_9BoundableESaIS5_EEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree7STRtree14verticalSlicesEPSt6vectorIPNS1_9BoundableESaIS5_EEm@Base 3.7.0 - _ZN4geos5index7strtree7STRtree15STRIntersectsOp10intersectsEPKvS5_@Base 3.4.2 - _ZN4geos5index7strtree7STRtree15STRIntersectsOpD0Ev@Base 3.4.2 - _ZN4geos5index7strtree7STRtree15STRIntersectsOpD1Ev@Base 3.4.2 - _ZN4geos5index7strtree7STRtree15STRIntersectsOpD2Ev@Base 3.4.2 - _ZN4geos5index7strtree7STRtree15getIntersectsOpEv@Base 3.4.2 - _ZN4geos5index7strtree7STRtree15sortBoundablesXEPKSt6vectorIPNS1_9BoundableESaIS5_EE@Base 3.9.0 - _ZN4geos5index7strtree7STRtree15sortBoundablesYEPKSt6vectorIPNS1_9BoundableESaIS5_EE@Base 3.9.0 - _ZN4geos5index7strtree7STRtree16isWithinDistanceEPNS1_13BoundablePairEd@Base 3.8.0 - _ZN4geos5index7strtree7STRtree16isWithinDistanceEPS2_PNS1_12ItemDistanceEd@Base 3.8.0 - _ZN4geos5index7strtree7STRtree16nearestNeighbourEPKNS_4geom8EnvelopeEPKvPNS1_12ItemDistanceE@Base 3.6.0 - _ZN4geos5index7strtree7STRtree16nearestNeighbourEPNS1_12ItemDistanceE@Base 3.6.0 - _ZN4geos5index7strtree7STRtree16nearestNeighbourEPNS1_13BoundablePairE@Base 3.6.0 - _ZN4geos5index7strtree7STRtree16nearestNeighbourEPNS1_13BoundablePairEd@Base 3.6.0 - _ZN4geos5index7strtree7STRtree16nearestNeighbourEPS2_PNS1_12ItemDistanceE@Base 3.7.0 - _ZN4geos5index7strtree7STRtree22createParentBoundablesEPSt6vectorIPNS1_9BoundableESaIS5_EEi@Base 3.4.2 - _ZN4geos5index7strtree7STRtree39createParentBoundablesFromVerticalSliceEPSt6vectorIPNS1_9BoundableESaIS5_EEi@Base 3.4.2 - _ZN4geos5index7strtree7STRtree40createParentBoundablesFromVerticalSlicesEPSt6vectorIPS3_IPNS1_9BoundableESaIS5_EESaIS8_EEi@Base 3.4.2 - _ZN4geos5index7strtree7STRtree5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.4.2 - _ZN4geos5index7strtree7STRtree5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaIS8_EE@Base 3.4.2 - _ZN4geos5index7strtree7STRtree6insertEPKNS_4geom8EnvelopeEPv@Base 3.4.2 - _ZN4geos5index7strtree7STRtree6removeEPKNS_4geom8EnvelopeEPv@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree7STRtreeC1Ej@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree7STRtreeC1Em@Base 3.7.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree7STRtreeC2Ej@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree7STRtreeC2Em@Base 3.7.0 - _ZN4geos5index7strtree7STRtreeD0Ev@Base 3.4.2 - _ZN4geos5index7strtree7STRtreeD1Ev@Base 3.4.2 - _ZN4geos5index7strtree7STRtreeD2Ev@Base 3.4.2 - _ZN4geos5index7strtree9ItemsListD1Ev@Base 3.4.2 - _ZN4geos5index7strtree9ItemsListD2Ev@Base 3.4.2 - _ZN4geos5index7strtreelsERSoRKNS1_13SimpleSTRtreeE@Base 3.9.0 - _ZN4geos5index7strtreelsERSoRNS1_13SimpleSTRpairE@Base 3.9.0 - _ZN4geos5index8quadtree12IntervalSize11isZeroWidthEdd@Base 3.4.2 - _ZN4geos5index8quadtree3Key10computeKeyERKNS_4geom8EnvelopeE@Base 3.4.2 - _ZN4geos5index8quadtree3Key10computeKeyEiRKNS_4geom8EnvelopeE@Base 3.4.2 - _ZN4geos5index8quadtree3Key16computeQuadLevelERKNS_4geom8EnvelopeE@Base 3.4.2 - _ZN4geos5index8quadtree3KeyC1ERKNS_4geom8EnvelopeE@Base 3.4.2 - _ZN4geos5index8quadtree3KeyC2ERKNS_4geom8EnvelopeE@Base 3.4.2 - _ZN4geos5index8quadtree4Node10createNodeERKNS_4geom8EnvelopeE@Base 3.4.2 - _ZN4geos5index8quadtree4Node10getSubnodeEi@Base 3.4.2 - _ZN4geos5index8quadtree4Node10insertNodeESt10unique_ptrIS2_St14default_deleteIS2_EE@Base 3.7.0 - _ZN4geos5index8quadtree4Node13createSubnodeEi@Base 3.4.2 - _ZN4geos5index8quadtree4Node14createExpandedESt10unique_ptrIS2_St14default_deleteIS2_EERKNS_4geom8EnvelopeE@Base 3.7.0 - _ZN4geos5index8quadtree4Node4findEPKNS_4geom8EnvelopeE@Base 3.4.2 - _ZN4geos5index8quadtree4Node7getNodeEPKNS_4geom8EnvelopeE@Base 3.4.2 - _ZN4geos5index8quadtree4NodeD0Ev@Base 3.4.2 - _ZN4geos5index8quadtree4NodeD1Ev@Base 3.4.2 - _ZN4geos5index8quadtree4NodeD2Ev@Base 3.4.2 - _ZN4geos5index8quadtree4Root15insertContainedEPNS1_4NodeEPKNS_4geom8EnvelopeEPv@Base 3.4.2 - _ZN4geos5index8quadtree4Root6insertEPKNS_4geom8EnvelopeEPv@Base 3.4.2 - _ZN4geos5index8quadtree4Root6originE@Base 3.4.2 - _ZN4geos5index8quadtree4RootD0Ev@Base 3.4.2 - _ZN4geos5index8quadtree4RootD1Ev@Base 3.4.2 - _ZN4geos5index8quadtree4RootD2Ev@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBase10visitItemsEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBase15getSubnodeIndexEPKNS_4geom8EnvelopeERKNS3_10CoordinateE@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBase3addEPv@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBase5visitEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBase6removeEPKNS_4geom8EnvelopeEPv@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBase8getItemsEv@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBaseC1Ev@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBaseC2Ev@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBaseD0Ev@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBaseD1Ev@Base 3.4.2 - _ZN4geos5index8quadtree8NodeBaseD2Ev@Base 3.4.2 - _ZN4geos5index8quadtree8Quadtree12collectStatsERKNS_4geom8EnvelopeE@Base 3.4.2 - _ZN4geos5index8quadtree8Quadtree12ensureExtentEPKNS_4geom8EnvelopeEd@Base 3.4.2 - _ZN4geos5index8quadtree8Quadtree4sizeEv@Base 3.4.2 - _ZN4geos5index8quadtree8Quadtree5depthEv@Base 3.4.2 - _ZN4geos5index8quadtree8Quadtree5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.4.2 - _ZN4geos5index8quadtree8Quadtree5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaIS8_EE@Base 3.4.2 - _ZN4geos5index8quadtree8Quadtree6insertEPKNS_4geom8EnvelopeEPv@Base 3.4.2 - _ZN4geos5index8quadtree8Quadtree6removeEPKNS_4geom8EnvelopeEPv@Base 3.4.2 - _ZN4geos5index8quadtree8Quadtree8queryAllEv@Base 3.4.2 - _ZN4geos5index8quadtree8QuadtreeD0Ev@Base 3.4.2 - _ZN4geos5index8quadtree8QuadtreeD1Ev@Base 3.4.2 - _ZN4geos5index8quadtree8QuadtreeD2Ev@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineEvent11getIntervalEv@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineEvent14getInsertEventEv@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineEvent19getDeleteEventIndexEv@Base 3.4.2 - (subst)_ZN4geos5index9sweepline14SweepLineEvent19setDeleteEventIndexE{size_t}@Base 3.8.0 - _ZN4geos5index9sweepline14SweepLineEvent8isDeleteEv@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineEvent8isInsertEv@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineEventC1EdPS2_PNS1_17SweepLineIntervalE@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineEventC2EdPS2_PNS1_17SweepLineIntervalE@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineIndex10buildIndexEv@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineIndex15computeOverlapsEPNS1_22SweepLineOverlapActionE@Base 3.4.2 - (subst)_ZN4geos5index9sweepline14SweepLineIndex15processOverlapsE{size_t}{size_t}PNS1_17SweepLineIntervalEPNS1_22SweepLineOverlapActionE@Base 3.8.0 - _ZN4geos5index9sweepline14SweepLineIndex3addEPNS1_17SweepLineIntervalE@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineIndexC1Ev@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineIndexC2Ev@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineIndexD1Ev@Base 3.4.2 - _ZN4geos5index9sweepline14SweepLineIndexD2Ev@Base 3.4.2 - _ZN4geos5index9sweepline17SweepLineInterval6getMaxEv@Base 3.4.2 - _ZN4geos5index9sweepline17SweepLineInterval6getMinEv@Base 3.4.2 - _ZN4geos5index9sweepline17SweepLineInterval7getItemEv@Base 3.4.2 - _ZN4geos5index9sweepline17SweepLineIntervalC1EddPv@Base 3.4.2 - _ZN4geos5index9sweepline17SweepLineIntervalC2EddPv@Base 3.4.2 - _ZN4geos5shape7fractal10MortonCode10checkLevelEj@Base 3.9.0 - _ZN4geos5shape7fractal10MortonCode10interleaveEj@Base 3.9.0 - _ZN4geos5shape7fractal10MortonCode11maxOrdinateEj@Base 3.9.0 - _ZN4geos5shape7fractal10MortonCode12deinterleaveEj@Base 3.9.0 - _ZN4geos5shape7fractal10MortonCode5levelEj@Base 3.9.0 - _ZN4geos5shape7fractal10MortonCode6decodeEj@Base 3.9.0 - _ZN4geos5shape7fractal10MortonCode6encodeEii@Base 3.9.0 - _ZN4geos5shape7fractal10MortonCode9levelSizeEj@Base 3.9.0 - _ZN4geos5shape7fractal11HilbertCode10checkLevelEj@Base 3.10.0 - _ZN4geos5shape7fractal11HilbertCode10interleaveEj@Base 3.9.0 - _ZN4geos5shape7fractal11HilbertCode10prefixScanEj@Base 3.9.0 - _ZN4geos5shape7fractal11HilbertCode11maxOrdinateEj@Base 3.9.0 - _ZN4geos5shape7fractal11HilbertCode12deinterleaveEj@Base 3.9.0 - _ZN4geos5shape7fractal11HilbertCode5levelEj@Base 3.9.0 - _ZN4geos5shape7fractal11HilbertCode6decodeEjj@Base 3.9.0 - _ZN4geos5shape7fractal11HilbertCode6descanEj@Base 3.9.0 - _ZN4geos5shape7fractal11HilbertCode6encodeEjjj@Base 3.9.0 - _ZN4geos5shape7fractal11HilbertCode9levelSizeEj@Base 3.9.0 - _ZN4geos5shape7fractal14HilbertEncoder4sortERSt6vectorIPNS_4geom8GeometryESaIS6_EE@Base 3.9.0 - _ZN4geos5shape7fractal14HilbertEncoder6encodeEPKNS_4geom8EnvelopeE@Base 3.9.0 - _ZN4geos5shape7fractal14HilbertEncoderC1EjRNS_4geom8EnvelopeE@Base 3.9.0 - _ZN4geos5shape7fractal14HilbertEncoderC2EjRNS_4geom8EnvelopeE@Base 3.9.0 - (optional=templinst|subst)_ZN4geos6detail11make_uniqueISt6vectorINS_4geom10CoordinateESaIS4_EEJR{size_t}EEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@Base 3.9.0 - _ZN4geos6noding11ScaledNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 - _ZN4geos6noding11ScaledNoder6ScalerD0Ev@Base 3.4.2 - _ZN4geos6noding11ScaledNoder6ScalerD1Ev@Base 3.4.2 - _ZN4geos6noding11ScaledNoder6ScalerD2Ev@Base 3.4.2 - _ZN4geos6noding11ScaledNoder8ReScaler9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos6noding11ScaledNoder8ReScalerD0Ev@Base 3.4.2 - _ZN4geos6noding11ScaledNoder8ReScalerD1Ev@Base 3.4.2 - _ZN4geos6noding11ScaledNoder8ReScalerD2Ev@Base 3.4.2 - _ZN4geos6noding11ScaledNoderD0Ev@Base 3.4.2 - _ZN4geos6noding11ScaledNoderD1Ev@Base 3.4.2 - _ZN4geos6noding11ScaledNoderD2Ev@Base 3.4.2 - (subst)_ZN4geos6noding11SegmentNodeC1ERKNS0_18NodedSegmentStringERKNS_4geom10CoordinateE{size_t}i@Base 3.8.0 - (subst)_ZN4geos6noding11SegmentNodeC2ERKNS0_18NodedSegmentStringERKNS_4geom10CoordinateE{size_t}i@Base 3.8.0 - _ZN4geos6noding11SimpleNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 - _ZN4geos6noding11SimpleNoder17computeIntersectsEPNS0_13SegmentStringES3_@Base 3.4.2 - _ZN4geos6noding11SimpleNoderD0Ev@Base 3.4.2 - _ZN4geos6noding11SimpleNoderD1Ev@Base 3.4.2 - _ZN4geos6noding11SimpleNoderD2Ev@Base 3.4.2 - _ZN4geos6noding12MCIndexNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 - _ZN4geos6noding12MCIndexNoder15intersectChainsEv@Base 3.4.2 - (subst)_ZN4geos6noding12MCIndexNoder20SegmentOverlapAction7overlapERKNS_5index5chain13MonotoneChainE{size_t}S7_{size_t}@Base 3.10.0 - _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD0Ev@Base 3.4.2 - _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD1Ev@Base 3.4.2 - _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD2Ev@Base 3.4.2 - _ZN4geos6noding12MCIndexNoder3addEPNS0_13SegmentStringE@Base 3.4.2 - _ZN4geos6noding12MCIndexNoderD0Ev@Base 3.4.2 - _ZN4geos6noding12MCIndexNoderD1Ev@Base 3.4.2 - _ZN4geos6noding12MCIndexNoderD2Ev@Base 3.4.2 - _ZN4geos6noding13GeometryNoder10toGeometryERSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 - _ZN4geos6noding13GeometryNoder21extractSegmentStringsERKNS_4geom8GeometryERSt6vectorIPNS0_13SegmentStringESaIS8_EE@Base 3.4.2 - _ZN4geos6noding13GeometryNoder4nodeERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos6noding13GeometryNoder8getNodedEv@Base 3.4.2 - _ZN4geos6noding13GeometryNoder8getNoderEv@Base 3.4.2 - _ZN4geos6noding13GeometryNoderC1ERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos6noding13GeometryNoderC2ERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos6noding13IteratedNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 - _ZN4geos6noding13IteratedNoder4nodeEPSt6vectorIPNS0_13SegmentStringESaIS4_EERiRNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos6noding13IteratedNoderD0Ev@Base 3.4.2 - _ZN4geos6noding13IteratedNoderD1Ev@Base 3.4.2 - _ZN4geos6noding13IteratedNoderD2Ev@Base 3.4.2 - _ZN4geos6noding15NodingValidator10checkValidEv@Base 3.4.2 - _ZN4geos6noding15NodingValidator26checkInteriorIntersectionsERKNS0_13SegmentStringES4_@Base 3.4.2 - (subst)_ZN4geos6noding15NodingValidator26checkInteriorIntersectionsERKNS0_13SegmentStringE{size_t}S4_{size_t}@Base 3.8.0 - _ZN4geos6noding15NodingValidator26checkInteriorIntersectionsEv@Base 3.4.2 - _ZN4geos6noding15SegmentNodeList12addEndpointsEv@Base 3.4.2 - _ZN4geos6noding15SegmentNodeList13addSplitEdgesERSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 - _ZN4geos6noding15SegmentNodeList17addCollapsedNodesEv@Base 3.4.2 - (subst)_ZN4geos6noding15SegmentNodeList17findCollapseIndexERKNS0_11SegmentNodeES4_R{size_t}@Base 3.10.0 - _ZN4geos6noding15SegmentNodeList19getSplitCoordinatesEv@Base 3.9.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos6noding15SegmentNodeList3addERKNS_4geom10CoordinateEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos6noding15SegmentNodeList3addERKNS_4geom10CoordinateEm@Base 3.7.0 - _ZN4geos6noding15SinglePassNoder21setSegmentIntersectorEPNS0_18SegmentIntersectorE@Base 3.4.2 - _ZN4geos6noding15ValidatingNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.9.0 - _ZN4geos6noding15ValidatingNoder8validateEv@Base 3.9.0 - _ZN4geos6noding15ValidatingNoderD0Ev@Base 3.9.0 - _ZN4geos6noding15ValidatingNoderD1Ev@Base 3.9.0 - _ZN4geos6noding15ValidatingNoderD2Ev@Base 3.9.0 - (subst)_ZN4geos6noding17IntersectionAdder20processIntersectionsEPNS0_13SegmentStringE{size_t}S3_{size_t}@Base 3.8.0 - (subst)_ZN4geos6noding17IntersectionAdder21isTrivialIntersectionEPKNS0_13SegmentStringE{size_t}S4_{size_t}@Base 3.8.0 - _ZN4geos6noding17IntersectionAdderD0Ev@Base 3.4.2 - _ZN4geos6noding17IntersectionAdderD1Ev@Base 3.4.2 - _ZN4geos6noding17IntersectionAdderD2Ev@Base 3.4.2 - _ZN4geos6noding17SegmentStringUtil21extractSegmentStringsEPKNS_4geom8GeometryERSt6vectorIPKNS0_13SegmentStringESaIS9_EE@Base 3.9.0 - _ZN4geos6noding18BasicSegmentStringD0Ev@Base 3.4.2 - _ZN4geos6noding18BasicSegmentStringD1Ev@Base 3.4.2 - _ZN4geos6noding18BasicSegmentStringD2Ev@Base 3.4.2 - _ZN4geos6noding18NodedSegmentString11getNodeListEv@Base 3.4.2 - (subst)_ZN4geos6noding18NodedSegmentString15addIntersectionERKNS_4geom10CoordinateE{size_t}@Base 3.8.0 - _ZN4geos6noding18NodedSegmentString18getNodedSubstringsERKSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 - _ZN4geos6noding18NodedSegmentString18getNodedSubstringsERKSt6vectorIPNS0_13SegmentStringESaIS4_EEPS6_@Base 3.4.2 - _ZN4geos6noding18NodedSegmentString18releaseCoordinatesEv@Base 3.10.0 - _ZN4geos6noding18NodedSegmentString19getNodedCoordinatesEv@Base 3.9.0 - _ZN4geos6noding18NodedSegmentStringD0Ev@Base 3.4.2 - _ZN4geos6noding18NodedSegmentStringD1Ev@Base 3.4.2 - _ZN4geos6noding18NodedSegmentStringD2Ev@Base 3.4.2 - _ZN4geos6noding19FastNodingValidator10checkValidEv@Base 3.4.2 - _ZN4geos6noding19FastNodingValidator26checkInteriorIntersectionsEv@Base 3.4.2 - (arch=!amd64 !arm64 !hppa !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sh4 !sparc64 !x32)_ZN4geos6noding22SegmentPointComparator7compareEiRKNS_4geom10CoordinateES5_@Base 3.9.0 - (subst)_ZN4geos6noding23IntersectionFinderAdder20processIntersectionsEPNS0_13SegmentStringE{size_t}S3_{size_t}@Base 3.8.0 - _ZN4geos6noding23IntersectionFinderAdderD0Ev@Base 3.4.2 - _ZN4geos6noding23IntersectionFinderAdderD1Ev@Base 3.4.2 - _ZN4geos6noding23IntersectionFinderAdderD2Ev@Base 3.4.2 - _ZN4geos6noding23OrientedCoordinateArray11orientationERKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos6noding23OrientedCoordinateArray15compareOrientedERKNS_4geom18CoordinateSequenceEbS5_b@Base 3.4.2 - (subst)_ZN4geos6noding24NodingIntersectionFinder20processIntersectionsEPNS0_13SegmentStringE{size_t}S3_{size_t}@Base 3.8.0 - _ZN4geos6noding24NodingIntersectionFinderD0Ev@Base 3.8.0 - _ZN4geos6noding24NodingIntersectionFinderD1Ev@Base 3.8.0 - _ZN4geos6noding24NodingIntersectionFinderD2Ev@Base 3.8.0 - (subst)_ZN4geos6noding27SegmentIntersectionDetector20processIntersectionsEPNS0_13SegmentStringE{size_t}S3_{size_t}@Base 3.8.0 - _ZN4geos6noding27SegmentIntersectionDetectorD0Ev@Base 3.4.2 - _ZN4geos6noding27SegmentIntersectionDetectorD1Ev@Base 3.4.2 - _ZN4geos6noding27SegmentIntersectionDetectorD2Ev@Base 3.4.2 - _ZN4geos6noding32FastSegmentSetIntersectionFinder10intersectsEPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 - _ZN4geos6noding32FastSegmentSetIntersectionFinder10intersectsEPSt6vectorIPKNS0_13SegmentStringESaIS5_EEPNS0_27SegmentIntersectionDetectorE@Base 3.4.2 - _ZN4geos6noding32FastSegmentSetIntersectionFinderC1EPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 - _ZN4geos6noding32FastSegmentSetIntersectionFinderC2EPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector10addToIndexEPNS0_13SegmentStringE@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector15addToMonoChainsEPNS0_13SegmentStringE@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector15intersectChainsEv@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector15setBaseSegmentsEPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 - (subst)_ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapAction7overlapERKNS_5index5chain13MonotoneChainE{size_t}S7_{size_t}@Base 3.10.0 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD0Ev@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD1Ev@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD2Ev@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector7processEPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersectorD0Ev@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersectorD1Ev@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersectorD2Ev@Base 3.4.2 - _ZN4geos6noding4snap13SnappingNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.9.0 - _ZN4geos6noding4snap13SnappingNoder12snapVerticesEPNS0_13SegmentStringE@Base 3.9.0 - _ZN4geos6noding4snap13SnappingNoder12snapVerticesERSt6vectorIPNS0_13SegmentStringESaIS5_EES8_@Base 3.9.0 - _ZN4geos6noding4snap13SnappingNoder17snapIntersectionsERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.9.0 - _ZN4geos6noding4snap13SnappingNoder4snapEPNS_4geom18CoordinateSequenceE@Base 3.9.0 - _ZN4geos6noding4snap13SnappingNoderD0Ev@Base 3.9.0 - _ZN4geos6noding4snap13SnappingNoderD1Ev@Base 3.9.0 - _ZN4geos6noding4snap13SnappingNoderD2Ev@Base 3.9.0 - _ZN4geos6noding4snap18SnappingPointIndex4snapERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos6noding4snap18SnappingPointIndexC1Ed@Base 3.9.0 - _ZN4geos6noding4snap18SnappingPointIndexC2Ed@Base 3.9.0 - (subst)_ZN4geos6noding4snap25SnappingIntersectionAdder10isAdjacentEPNS0_13SegmentStringE{size_t}S4_{size_t}@Base 3.9.0 - (subst)_ZN4geos6noding4snap25SnappingIntersectionAdder17processNearVertexEPNS0_13SegmentStringE{size_t}RKNS_4geom10CoordinateES4_{size_t}S8_S8_@Base 3.9.0 - (subst)_ZN4geos6noding4snap25SnappingIntersectionAdder20processIntersectionsEPNS0_13SegmentStringE{size_t}S4_{size_t}@Base 3.9.0 - _ZN4geos6noding4snap25SnappingIntersectionAdderC1EdRNS1_18SnappingPointIndexE@Base 3.9.0 - _ZN4geos6noding4snap25SnappingIntersectionAdderC2EdRNS1_18SnappingPointIndexE@Base 3.9.0 - _ZN4geos6noding4snap25SnappingIntersectionAdderD0Ev@Base 3.9.0 - _ZN4geos6noding4snap25SnappingIntersectionAdderD1Ev@Base 3.9.0 - _ZN4geos6noding4snap25SnappingIntersectionAdderD2Ev@Base 3.9.0 - _ZN4geos6noding6Octant6octantERKNS_4geom10CoordinateES5_@Base 3.4.2 - _ZN4geos6noding6Octant6octantEdd@Base 3.4.2 - _ZN4geos6noding9snapround13HotPixelIndex3addEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 - _ZN4geos6noding9snapround13HotPixelIndex3addERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos6noding9snapround13HotPixelIndex3addERKSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.9.0 - _ZN4geos6noding9snapround13HotPixelIndex4findERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos6noding9snapround13HotPixelIndex5queryERKNS_4geom10CoordinateES6_RNS_5index6kdtree13KdNodeVisitorE@Base 3.9.0 - _ZN4geos6noding9snapround13HotPixelIndex5roundERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos6noding9snapround13HotPixelIndex8addNodesEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 - _ZN4geos6noding9snapround13HotPixelIndex8addNodesERKSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.9.0 - _ZN4geos6noding9snapround13HotPixelIndexC1EPKNS_4geom14PrecisionModelE@Base 3.9.0 - _ZN4geos6noding9snapround13HotPixelIndexC2EPKNS_4geom14PrecisionModelE@Base 3.9.0 - (subst)_ZN4geos6noding9snapround17SnapRoundingNoder11snapSegmentERNS_4geom10CoordinateES5_PNS0_18NodedSegmentStringE{size_t}@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoder12computeSnapsERKSt6vectorIPNS0_13SegmentStringESaIS5_EERS7_@Base 3.9.0 - (subst)_ZN4geos6noding9snapround17SnapRoundingNoder14snapVertexNodeERKNS_4geom10CoordinateEPNS0_18NodedSegmentStringE{size_t}@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoder15addVertexPixelsERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoder18addVertexNodeSnapsEPNS0_18NodedSegmentStringE@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoder19computeSegmentSnapsEPNS0_18NodedSegmentStringE@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoder21addIntersectionPixelsERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoder9snapRoundERSt6vectorIPNS0_13SegmentStringESaIS5_EES8_@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoderD0Ev@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoderD1Ev@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoderD2Ev@Base 3.9.0 - _ZN4geos6noding9snapround18HotPixelSnapAction6selectERKNS_4geom11LineSegmentE@Base 3.4.2 - (subst)_ZN4geos6noding9snapround18HotPixelSnapAction6selectERKNS_5index5chain13MonotoneChainE{size_t}@Base 3.10.0 - _ZN4geos6noding9snapround18HotPixelSnapActionD0Ev@Base 3.4.2 - _ZN4geos6noding9snapround18HotPixelSnapActionD1Ev@Base 3.4.2 - _ZN4geos6noding9snapround18HotPixelSnapActionD2Ev@Base 3.4.2 - _ZN4geos6noding9snapround18MCIndexSnapRounder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.4.2 - _ZN4geos6noding9snapround18MCIndexSnapRounder16checkCorrectnessERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.4.2 - _ZN4geos6noding9snapround18MCIndexSnapRounder18computeVertexSnapsEPNS0_18NodedSegmentStringE@Base 3.4.2 - _ZN4geos6noding9snapround18MCIndexSnapRounder18computeVertexSnapsERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.4.2 - _ZN4geos6noding9snapround18MCIndexSnapRounder24computeIntersectionSnapsERSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.4.2 - _ZN4geos6noding9snapround18MCIndexSnapRounder25findInteriorIntersectionsERNS0_12MCIndexNoderEPSt6vectorIPNS0_13SegmentStringESaIS7_EERS5_INS_4geom10CoordinateESaISC_EE@Base 3.4.2 - _ZN4geos6noding9snapround18MCIndexSnapRounder9snapRoundERNS0_12MCIndexNoderEPSt6vectorIPNS0_13SegmentStringESaIS7_EE@Base 3.4.2 - _ZN4geos6noding9snapround18MCIndexSnapRounderD0Ev@Base 3.4.2 - _ZN4geos6noding9snapround18MCIndexSnapRounderD1Ev@Base 3.4.2 - _ZN4geos6noding9snapround18MCIndexSnapRounderD2Ev@Base 3.4.2 - (subst)_ZN4geos6noding9snapround19MCIndexPointSnapper4snapERNS1_8HotPixelEPNS0_13SegmentStringE{size_t}@Base 3.8.0 - _ZN4geos6noding9snapround26MCIndexPointSnapperVisitor9visitItemEPv@Base 3.4.2 - _ZN4geos6noding9snapround26MCIndexPointSnapperVisitorD0Ev@Base 3.4.2 - _ZN4geos6noding9snapround26MCIndexPointSnapperVisitorD1Ev@Base 3.4.2 - _ZN4geos6noding9snapround26MCIndexPointSnapperVisitorD2Ev@Base 3.4.2 - (subst)_ZN4geos6noding9snapround29SnapRoundingIntersectionAdder17processNearVertexERKNS_4geom10CoordinateEPNS0_13SegmentStringE{size_t}S6_S6_@Base 3.9.0 - (subst)_ZN4geos6noding9snapround29SnapRoundingIntersectionAdder20processIntersectionsEPNS0_13SegmentStringE{size_t}S4_{size_t}@Base 3.9.0 - _ZN4geos6noding9snapround29SnapRoundingIntersectionAdderC1EPKNS_4geom14PrecisionModelE@Base 3.9.0 - _ZN4geos6noding9snapround29SnapRoundingIntersectionAdderC2EPKNS_4geom14PrecisionModelE@Base 3.9.0 - _ZN4geos6noding9snapround29SnapRoundingIntersectionAdderD0Ev@Base 3.9.0 - _ZN4geos6noding9snapround29SnapRoundingIntersectionAdderD1Ev@Base 3.9.0 - _ZN4geos6noding9snapround29SnapRoundingIntersectionAdderD2Ev@Base 3.9.0 - _ZN4geos6noding9snapround8HotPixelC1ERKNS_4geom10CoordinateEd@Base 3.9.0 - _ZN4geos6noding9snapround8HotPixelC2ERKNS_4geom10CoordinateEd@Base 3.9.0 - _ZN4geos6noding9snapround8HotPixellsERSo@Base 3.9.0 - _ZN4geos6nodinglsERSoRKNS0_11SegmentNodeE@Base 3.4.2 - _ZN4geos6nodinglsERSoRKNS0_13SegmentStringE@Base 3.4.2 - _ZN4geos6nodinglsERSoRKNS0_15SegmentNodeListE@Base 3.4.2 - _ZN4geos8simplify13DPTransformer15createValidAreaEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos8simplify13DPTransformer16transformPolygonEPKNS_4geom7PolygonEPKNS2_8GeometryE@Base 3.4.2 - _ZN4geos8simplify13DPTransformer19transformLinearRingEPKNS_4geom10LinearRingEPKNS2_8GeometryE@Base 3.10.0 - _ZN4geos8simplify13DPTransformer20transformCoordinatesEPKNS_4geom18CoordinateSequenceEPKNS2_8GeometryE@Base 3.4.2 - _ZN4geos8simplify13DPTransformer21transformMultiPolygonEPKNS_4geom12MultiPolygonEPKNS2_8GeometryE@Base 3.4.2 - _ZN4geos8simplify13DPTransformerC1Ed@Base 3.4.2 - _ZN4geos8simplify13DPTransformerC2Ed@Base 3.4.2 - _ZN4geos8simplify13DPTransformerD0Ev@Base 3.4.2 - _ZN4geos8simplify13DPTransformerD1Ev@Base 3.4.2 - _ZN4geos8simplify13DPTransformerD2Ev@Base 3.4.2 - _ZN4geos8simplify16LineSegmentIndex3addEPKNS_4geom11LineSegmentE@Base 3.4.2 - _ZN4geos8simplify16LineSegmentIndex3addERKNS0_16TaggedLineStringE@Base 3.4.2 - _ZN4geos8simplify16LineSegmentIndex5queryEPKNS_4geom11LineSegmentE@Base 3.8.0 - _ZN4geos8simplify16LineSegmentIndex6removeEPKNS_4geom11LineSegmentE@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify16TaggedLineString10getSegmentEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify16TaggedLineString10getSegmentEm@Base 3.7.0 - _ZN4geos8simplify16TaggedLineString11addToResultESt10unique_ptrINS0_17TaggedLineSegmentESt14default_deleteIS3_EE@Base 3.7.0 - _ZN4geos8simplify16TaggedLineString11getSegmentsEv@Base 3.4.2 - _ZN4geos8simplify16TaggedLineString18extractCoordinatesERKSt6vectorIPNS0_17TaggedLineSegmentESaIS4_EE@Base 3.4.2 - _ZN4geos8simplify16TaggedLineString4initEv@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify16TaggedLineStringC1EPKNS_4geom10LineStringEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify16TaggedLineStringC1EPKNS_4geom10LineStringEm@Base 3.7.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify16TaggedLineStringC2EPKNS_4geom10LineStringEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify16TaggedLineStringC2EPKNS_4geom10LineStringEm@Base 3.7.0 - _ZN4geos8simplify16TaggedLineStringD1Ev@Base 3.4.2 - _ZN4geos8simplify16TaggedLineStringD2Ev@Base 3.4.2 - _ZN4geos8simplify17TaggedLineSegmentC1ERKNS_4geom10CoordinateES5_@Base 3.4.2 - (subst)_ZN4geos8simplify17TaggedLineSegmentC1ERKNS_4geom10CoordinateES5_PKNS2_8GeometryE{size_t}@Base 3.8.0 - _ZN4geos8simplify17TaggedLineSegmentC1ERKS1_@Base 3.4.2 - _ZN4geos8simplify17TaggedLineSegmentC2ERKNS_4geom10CoordinateES5_@Base 3.4.2 - (subst)_ZN4geos8simplify17TaggedLineSegmentC2ERKNS_4geom10CoordinateES5_PKNS2_8GeometryE{size_t}@Base 3.8.0 - _ZN4geos8simplify17TaggedLineSegmentC2ERKS1_@Base 3.4.2 - _ZN4geos8simplify18LineSegmentVisitor9visitItemEPv@Base 3.4.2 - _ZN4geos8simplify18LineSegmentVisitorD0Ev@Base 3.4.2 - _ZN4geos8simplify18LineSegmentVisitorD1Ev@Base 3.4.2 - _ZN4geos8simplify18LineSegmentVisitorD2Ev@Base 3.4.2 - _ZN4geos8simplify21TaggedLinesSimplifier20setDistanceToleranceEd@Base 3.4.2 - _ZN4geos8simplify21TaggedLinesSimplifier8simplifyERNS0_16TaggedLineStringE@Base 3.4.2 - _ZN4geos8simplify21TaggedLinesSimplifierC1Ev@Base 3.4.2 - _ZN4geos8simplify21TaggedLinesSimplifierC2Ev@Base 3.4.2 - _ZN4geos8simplify24DouglasPeuckerSimplifier17getResultGeometryEv@Base 3.4.2 - _ZN4geos8simplify24DouglasPeuckerSimplifier20setDistanceToleranceEd@Base 3.4.2 - _ZN4geos8simplify24DouglasPeuckerSimplifier8simplifyEPKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos8simplify24DouglasPeuckerSimplifierC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos8simplify24DouglasPeuckerSimplifierC2EPKNS_4geom8GeometryE@Base 3.4.2 - (subst)_ZN4geos8simplify26TaggedLineStringSimplifier15isInLineSectionEPKNS0_16TaggedLineStringERKSt4pairI{size_t}{size_t}EPKNS0_17TaggedLineSegmentE@Base 3.8.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier15simplifySectionEjjj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier15simplifySectionEmmm@Base 3.7.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier17findFurthestPointEPKNS_4geom18CoordinateSequenceEjjRd@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier17findFurthestPointEPKNS_4geom18CoordinateSequenceEmmRd@Base 3.7.0 - (subst)_ZN4geos8simplify26TaggedLineStringSimplifier18hasBadIntersectionEPKNS0_16TaggedLineStringERKSt4pairI{size_t}{size_t}ERKNS_4geom11LineSegmentE@Base 3.8.0 - (subst)_ZN4geos8simplify26TaggedLineStringSimplifier23hasBadInputIntersectionEPKNS0_16TaggedLineStringERKSt4pairI{size_t}{size_t}ERKNS_4geom11LineSegmentE@Base 3.8.0 - _ZN4geos8simplify26TaggedLineStringSimplifier24hasBadOutputIntersectionERKNS_4geom11LineSegmentE@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier6removeEPKNS0_16TaggedLineStringEjj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier6removeEPKNS0_16TaggedLineStringEmm@Base 3.7.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier7flattenEjj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier7flattenEmm@Base 3.7.0 - _ZN4geos8simplify26TaggedLineStringSimplifier8simplifyEPNS0_16TaggedLineStringE@Base 3.4.2 - _ZN4geos8simplify26TaggedLineStringSimplifierC1EPNS0_16LineSegmentIndexES3_@Base 3.4.2 - _ZN4geos8simplify26TaggedLineStringSimplifierC2EPNS0_16LineSegmentIndexES3_@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify28DouglasPeuckerLineSimplifier15simplifySectionEjj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify28DouglasPeuckerLineSimplifier15simplifySectionEmm@Base 3.7.0 - _ZN4geos8simplify28DouglasPeuckerLineSimplifier20setDistanceToleranceEd@Base 3.4.2 - _ZN4geos8simplify28DouglasPeuckerLineSimplifier8simplifyERKSt6vectorINS_4geom10CoordinateESaIS4_EEd@Base 3.4.2 - _ZN4geos8simplify28DouglasPeuckerLineSimplifier8simplifyEv@Base 3.4.2 - _ZN4geos8simplify28DouglasPeuckerLineSimplifierC1ERKSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.4.2 - _ZN4geos8simplify28DouglasPeuckerLineSimplifierC2ERKSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.4.2 - _ZN4geos8simplify28TopologyPreservingSimplifier17getResultGeometryEv@Base 3.4.2 - _ZN4geos8simplify28TopologyPreservingSimplifier20setDistanceToleranceEd@Base 3.4.2 - _ZN4geos8simplify28TopologyPreservingSimplifier8simplifyEPKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos8simplify28TopologyPreservingSimplifierC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos8simplify28TopologyPreservingSimplifierC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull10grahamScanERKSt6vectorIPKNS_4geom10CoordinateESaIS6_EERS8_@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull13computeOctPtsERKSt6vectorIPKNS_4geom10CoordinateESaIS6_EERS8_@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull13getConvexHullEv@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull13lineOrPolygonERKSt6vectorIPKNS_4geom10CoordinateESaIS6_EE@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull14computeOctRingERKSt6vectorIPKNS_4geom10CoordinateESaIS6_EERS8_@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull20toCoordinateSequenceERSt6vectorIPKNS_4geom10CoordinateESaIS6_EE@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull6reduceERSt6vectorIPKNS_4geom10CoordinateESaIS6_EE@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull7preSortERSt6vectorIPKNS_4geom10CoordinateESaIS6_EE@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull9cleanRingERKSt6vectorIPKNS_4geom10CoordinateESaIS6_EERS8_@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull9isBetweenERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm10ConvexHull9padArray3ERSt6vectorIPKNS_4geom10CoordinateESaIS6_EE@Base 3.4.2 - _ZN4geos9algorithm11HCoordinate12intersectionERKNS_4geom10CoordinateES5_S5_S5_RS3_@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC1ERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC1ERKNS_4geom10CoordinateES5_@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC1ERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC1ERKS1_S3_@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC1Eddd@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC1Ev@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC2ERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC2ERKNS_4geom10CoordinateES5_@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC2ERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC2ERKS1_S3_@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC2Eddd@Base 3.4.2 - _ZN4geos9algorithm11HCoordinateC2Ev@Base 3.4.2 - _ZN4geos9algorithm11Orientation5indexERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 - _ZN4geos9algorithm11Orientation5isCCWEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9algorithm11Orientation9isCCWAreaEPKNS_4geom18CoordinateSequenceE@Base 3.9.1 - _ZN4geos9algorithm12Intersection12intersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.8.0 - _ZN4geos9algorithm12PointLocator15computeLocationERKNS_4geom10CoordinateEPKNS2_8GeometryE@Base 3.4.2 - _ZN4geos9algorithm12PointLocator18updateLocationInfoENS_4geom8LocationE@Base 3.8.0 - _ZN4geos9algorithm12PointLocator19locateInPolygonRingERKNS_4geom10CoordinateEPKNS2_10LinearRingE@Base 3.4.2 - _ZN4geos9algorithm12PointLocator6locateERKNS_4geom10CoordinateEPKNS2_10LineStringE@Base 3.4.2 - _ZN4geos9algorithm12PointLocator6locateERKNS_4geom10CoordinateEPKNS2_5PointE@Base 3.5.1 - _ZN4geos9algorithm12PointLocator6locateERKNS_4geom10CoordinateEPKNS2_7PolygonE@Base 3.4.2 - _ZN4geos9algorithm12PointLocator6locateERKNS_4geom10CoordinateEPKNS2_8GeometryE@Base 3.4.2 - _ZN4geos9algorithm13PointLocation12locateInRingERKNS_4geom10CoordinateERKNS2_18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9algorithm13PointLocation12locateInRingERKNS_4geom10CoordinateERKSt6vectorIPS4_SaIS7_EE@Base 3.8.0 - _ZN4geos9algorithm13PointLocation8isInRingERKNS_4geom10CoordinateEPKNS2_18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9algorithm13PointLocation8isInRingERKNS_4geom10CoordinateERKSt6vectorIPS4_SaIS7_EE@Base 3.8.0 - _ZN4geos9algorithm13PointLocation8isOnLineERKNS_4geom10CoordinateEPKNS2_18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9algorithm14CGAlgorithmsDD12intersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.8.0 - _ZN4geos9algorithm14CGAlgorithmsDD12signOfDet2x2ERKNS_4math2DDES5_S5_S5_@Base 3.9.0 - _ZN4geos9algorithm14CGAlgorithmsDD12signOfDet2x2Edddd@Base 3.8.0 - _ZN4geos9algorithm14CGAlgorithmsDD14circumcentreDDERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 - _ZN4geos9algorithm14CGAlgorithmsDD16orientationIndexERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 - _ZN4geos9algorithm14CGAlgorithmsDD16orientationIndexEdddddd@Base 3.9.0 - _ZN4geos9algorithm14CGAlgorithmsDD5detDDERKNS_4math2DDES5_S5_S5_@Base 3.9.0 - _ZN4geos9algorithm14CGAlgorithmsDD5detDDEdddd@Base 3.8.0 - _ZN4geos9algorithm15LineIntersector12interpolateZERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm15LineIntersector12zInterpolateERKNS_4geom10CoordinateES5_S5_@Base 3.9.0 - _ZN4geos9algorithm15LineIntersector12zInterpolateERKNS_4geom10CoordinateES5_S5_S5_S5_@Base 3.9.0 - _ZN4geos9algorithm15LineIntersector15hasIntersectionERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm15LineIntersector15nearestEndpointERKNS_4geom10CoordinateES5_S5_S5_@Base 3.9.0 - _ZN4geos9algorithm15LineIntersector16computeIntersectERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 - _ZN4geos9algorithm15LineIntersector19computeEdgeDistanceERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm15LineIntersector19computeIntLineIndexEv@Base 3.4.2 - (subst)_ZN4geos9algorithm15LineIntersector19computeIntLineIndexE{size_t}@Base 3.9.0 - _ZN4geos9algorithm15LineIntersector19computeIntersectionERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm15LineIntersector19computeIntersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 - (subst)_ZN4geos9algorithm15LineIntersector20getIndexAlongSegmentE{size_t}{size_t}@Base 3.9.0 - _ZN4geos9algorithm15LineIntersector20isSameSignAndNonZeroEdd@Base 3.4.2 - (subst)_ZN4geos9algorithm15LineIntersector27getIntersectionAlongSegmentE{size_t}{size_t}@Base 3.9.0 - _ZN4geos9algorithm15LineIntersector28computeCollinearIntersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameter11getDiameterEv@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameter12getNextIndexEPKNS_4geom18CoordinateSequenceEj@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameter18computeWidthConvexEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameter18getMinimumDiameterEPNS_4geom8GeometryE@Base 3.6.0 - _ZN4geos9algorithm15MinimumDiameter18getWidthCoordinateEv@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameter19findMaxPerpDistanceEPKNS_4geom18CoordinateSequenceEPKNS2_11LineSegmentEj@Base 3.8.0 - _ZN4geos9algorithm15MinimumDiameter19getMinimumRectangleEPNS_4geom8GeometryE@Base 3.6.0 - _ZN4geos9algorithm15MinimumDiameter19getMinimumRectangleEv@Base 3.6.0 - _ZN4geos9algorithm15MinimumDiameter20getSupportingSegmentEv@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameter21computeSegmentForLineEddd@Base 3.6.0 - _ZN4geos9algorithm15MinimumDiameter22computeMinimumDiameterEv@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameter28computeConvexRingMinDiameterEPKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameter8computeCEddRKNS_4geom10CoordinateE@Base 3.6.0 - _ZN4geos9algorithm15MinimumDiameter9getLengthEv@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameterC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameterC1EPKNS_4geom8GeometryEb@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameterC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm15MinimumDiameterC2EPKNS_4geom8GeometryEb@Base 3.4.2 - _ZN4geos9algorithm16BoundaryNodeRule17getBoundaryOGCSFSEv@Base 3.4.2 - _ZN4geos9algorithm16BoundaryNodeRule19getBoundaryEndPointEv@Base 3.4.2 - _ZN4geos9algorithm16BoundaryNodeRule19getBoundaryRuleMod2Ev@Base 3.4.2 - _ZN4geos9algorithm16BoundaryNodeRule29getBoundaryMonovalentEndPointEv@Base 3.4.2 - _ZN4geos9algorithm16BoundaryNodeRule30getBoundaryMultivalentEndPointEv@Base 3.4.2 - _ZN4geos9algorithm17InteriorPointArea14processPolygonEPKNS_4geom7PolygonE@Base 3.8.0 - _ZN4geos9algorithm17InteriorPointArea7processEPKNS_4geom8GeometryE@Base 3.8.0 - _ZN4geos9algorithm17InteriorPointAreaC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm17InteriorPointAreaC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm17InteriorPointLine11addInteriorEPKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9algorithm17InteriorPointLine11addInteriorEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm17InteriorPointLine12addEndpointsEPKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9algorithm17InteriorPointLine12addEndpointsEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm17InteriorPointLine3addERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm17InteriorPointLineC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm17InteriorPointLineC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm17RobustDeterminant12signOfDet2x2Edddd@Base 3.4.2 - _ZN4geos9algorithm17SimplePointInRing8isInsideERKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9algorithm17SimplePointInRingC1EPNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos9algorithm17SimplePointInRingC2EPNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos9algorithm17SimplePointInRingD0Ev@Base 3.10.0 - _ZN4geos9algorithm17SimplePointInRingD1Ev@Base 3.10.0 - _ZN4geos9algorithm17SimplePointInRingD2Ev@Base 3.10.0 - _ZN4geos9algorithm18InteriorPointPoint3addEPKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm18InteriorPointPoint3addEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm18InteriorPointPointC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm18InteriorPointPointC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm18RayCrossingCounter12countSegmentERKNS_4geom10CoordinateES5_@Base 3.4.2 - _ZN4geos9algorithm18RayCrossingCounter17locatePointInRingERKNS_4geom10CoordinateERKNS2_18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9algorithm18RayCrossingCounter17locatePointInRingERKNS_4geom10CoordinateERKSt6vectorIPS4_SaIS7_EE@Base 3.4.2 - _ZN4geos9algorithm20RayCrossingCounterDD11getLocationEv@Base 3.8.0 - _ZN4geos9algorithm20RayCrossingCounterDD12countSegmentERKNS_4geom10CoordinateES5_@Base 3.8.0 - _ZN4geos9algorithm20RayCrossingCounterDD16isPointInPolygonEv@Base 3.8.0 - _ZN4geos9algorithm20RayCrossingCounterDD16orientationIndexERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 - _ZN4geos9algorithm20RayCrossingCounterDD17locatePointInRingERKNS_4geom10CoordinateERKNS2_18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9algorithm20RayCrossingCounterDD17locatePointInRingERKNS_4geom10CoordinateERKSt6vectorIPS4_SaIS7_EE@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle11getDiameterEv@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle11lowestPointERSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle13computeCentreEv@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle14farthestPointsERSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.9.0 - _ZN4geos9algorithm21MinimumBoundingCircle17getExtremalPointsEv@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle18getMaximumDiameterEv@Base 3.9.0 - _ZN4geos9algorithm21MinimumBoundingCircle19computeCirclePointsEv@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle21pointWitMinAngleWithXERSt6vectorINS_4geom10CoordinateESaIS4_EERS4_@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle28pointWithMinAngleWithSegmentERSt6vectorINS_4geom10CoordinateESaIS4_EERS4_S8_@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle7computeEv@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle9getCentreEv@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle9getCircleEv@Base 3.8.0 - _ZN4geos9algorithm21MinimumBoundingCircle9getRadiusEv@Base 3.8.0 - _ZN4geos9algorithm25NotRepresentableExceptionC1ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos9algorithm25NotRepresentableExceptionC1Ev@Base 3.4.2 - _ZN4geos9algorithm25NotRepresentableExceptionC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos9algorithm25NotRepresentableExceptionC2Ev@Base 3.4.2 - _ZN4geos9algorithm25NotRepresentableExceptionD0Ev@Base 3.4.2 - _ZN4geos9algorithm25NotRepresentableExceptionD1Ev@Base 3.4.2 - _ZN4geos9algorithm25NotRepresentableExceptionD2Ev@Base 3.4.2 - _ZN4geos9algorithm4Area12ofRingSignedEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9algorithm4Area12ofRingSignedERKSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.8.0 - _ZN4geos9algorithm4Area6ofRingEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9algorithm4Area6ofRingERKSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.8.0 - _ZN4geos9algorithm5Angle12angleBetweenERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm5Angle13interiorAngleERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm5Angle17normalizePositiveEd@Base 3.4.2 - _ZN4geos9algorithm5Angle20angleBetweenOrientedERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm5Angle4diffEdd@Base 3.4.2 - _ZN4geos9algorithm5Angle5angleERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm5Angle5angleERKNS_4geom10CoordinateES5_@Base 3.4.2 - _ZN4geos9algorithm5Angle7getTurnEdd@Base 3.4.2 - _ZN4geos9algorithm5Angle7isAcuteERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm5Angle8isObtuseERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm5Angle9normalizeEd@Base 3.4.2 - _ZN4geos9algorithm5Angle9toDegreesEd@Base 3.4.2 - _ZN4geos9algorithm5Angle9toRadiansEd@Base 3.4.2 - _ZN4geos9algorithm6Length6ofLineEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9algorithm6locate24SimplePointInAreaLocator11isContainedERKNS_4geom10CoordinateEPKNS3_8GeometryE@Base 3.8.0 - _ZN4geos9algorithm6locate24SimplePointInAreaLocator16locateInGeometryERKNS_4geom10CoordinateEPKNS3_8GeometryE@Base 3.8.0 - _ZN4geos9algorithm6locate24SimplePointInAreaLocator20locatePointInPolygonERKNS_4geom10CoordinateEPKNS3_7PolygonE@Base 3.8.0 - _ZN4geos9algorithm6locate24SimplePointInAreaLocator6locateEPKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm6locate24SimplePointInAreaLocator6locateERKNS_4geom10CoordinateEPKNS3_8GeometryE@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator10buildIndexERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometry4initERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometry7addLineEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometryC1ERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometryC2ERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator6locateEPKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocatorC1ERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocatorC2ERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocatorD0Ev@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocatorD1Ev@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocatorD2Ev@Base 3.4.2 - _ZN4geos9algorithm8Centroid11addTriangleERKNS_4geom10CoordinateES5_S5_b@Base 3.4.2 - _ZN4geos9algorithm8Centroid11getCentroidERKNS_4geom8GeometryERNS2_10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm8Centroid15addLineSegmentsERKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9algorithm8Centroid16setAreaBasePointERKNS_4geom10CoordinateE@Base 3.8.0 - _ZN4geos9algorithm8Centroid3addERKNS_4geom7PolygonE@Base 3.4.2 - _ZN4geos9algorithm8Centroid3addERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm8Centroid5area2ERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZN4geos9algorithm8Centroid7addHoleERKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9algorithm8Centroid8addPointERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm8Centroid8addShellERKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9algorithm8Centroid9centroid3ERKNS_4geom10CoordinateES5_S5_RS3_@Base 3.4.2 - _ZN4geos9algorithm8Distance14pointToSegmentERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 - _ZN4geos9algorithm8Distance16segmentToSegmentERKNS_4geom10CoordinateES5_S5_S5_@Base 3.8.0 - _ZN4geos9algorithm8Distance20pointToSegmentStringERKNS_4geom10CoordinateEPKNS2_18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9algorithm8Distance24pointToLinePerpendicularERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 - _ZN4geos9algorithm8distance15DistanceToPoint15computeDistanceERKNS_4geom10LineStringERKNS3_10CoordinateERNS1_17PointPairDistanceE@Base 3.4.2 - _ZN4geos9algorithm8distance15DistanceToPoint15computeDistanceERKNS_4geom11LineSegmentERKNS3_10CoordinateERNS1_17PointPairDistanceE@Base 3.4.2 - _ZN4geos9algorithm8distance15DistanceToPoint15computeDistanceERKNS_4geom7PolygonERKNS3_10CoordinateERNS1_17PointPairDistanceE@Base 3.4.2 - _ZN4geos9algorithm8distance15DistanceToPoint15computeDistanceERKNS_4geom8GeometryERKNS3_10CoordinateERNS1_17PointPairDistanceE@Base 3.4.2 - (subst)_ZN4geos9algorithm8distance23DiscreteFrechetDistance12getSegmentAtERKNS_4geom18CoordinateSequenceE{size_t}@Base 3.10.0 - (subst)_ZN4geos9algorithm8distance23DiscreteFrechetDistance17getFrecheDistanceERSt6vectorIS3_INS1_17PointPairDistanceESaIS4_EESaIS6_EE{size_t}{size_t}RKNS_4geom18CoordinateSequenceESD_@Base 3.7.0 - _ZN4geos9algorithm8distance23DiscreteFrechetDistance18setDensifyFractionEd@Base 3.10.0 - _ZN4geos9algorithm8distance23DiscreteFrechetDistance7computeERKNS_4geom8GeometryES6_@Base 3.7.0 - _ZN4geos9algorithm8distance23DiscreteFrechetDistance8distanceERKNS_4geom8GeometryES6_@Base 3.7.0 - _ZN4geos9algorithm8distance23DiscreteFrechetDistance8distanceERKNS_4geom8GeometryES6_d@Base 3.7.0 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance18setDensifyFractionEd@Base 3.10.0 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterD0Ev@Base 3.4.2 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterD1Ev@Base 3.4.2 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterD2Ev@Base 3.4.2 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance23computeOrientedDistanceERKNS_4geom8GeometryES6_RNS1_17PointPairDistanceE@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilter9filter_roERKNS_4geom18CoordinateSequenceEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilter9filter_roERKNS_4geom18CoordinateSequenceEm@Base 3.7.0 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterD0Ev@Base 3.4.2 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterD1Ev@Base 3.4.2 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterD2Ev@Base 3.4.2 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance8distanceERKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9algorithm8distance25DiscreteHausdorffDistance8distanceERKNS_4geom8GeometryES6_d@Base 3.4.2 - _ZN4geos9algorithm9construct18LargestEmptyCircle13getRadiusLineEPKNS_4geom8GeometryEd@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircle13getRadiusLineEv@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircle14getRadiusPointEv@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircle17createInitialGridEPKNS_4geom8EnvelopeERSt14priority_queueINS2_4CellESt6vectorIS8_SaIS8_EESt4lessIS8_EE@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircle18createCentroidCellEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircle21distanceToConstraintsERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircle21distanceToConstraintsEdd@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircle22mayContainCircleCenterERKNS2_4CellES5_@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircle7computeEv@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircle9getCenterEPKNS_4geom8GeometryEd@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircle9getCenterEv@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircleC1EPKNS_4geom8GeometryES6_d@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircleC1EPKNS_4geom8GeometryEd@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircleC2EPKNS_4geom8GeometryES6_d@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircleC2EPKNS_4geom8GeometryEd@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircleD1Ev@Base 3.9.0 - _ZN4geos9algorithm9construct18LargestEmptyCircleD2Ev@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircle13getRadiusLineEPKNS_4geom8GeometryEd@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircle13getRadiusLineEv@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircle14getRadiusPointEv@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircle17createInitialGridEPKNS_4geom8EnvelopeERSt14priority_queueINS2_4CellESt6vectorIS8_SaIS8_EESt4lessIS8_EE@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircle18createCentroidCellEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircle18distanceToBoundaryERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircle18distanceToBoundaryEdd@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircle7computeEv@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircle9getCenterEPKNS_4geom8GeometryEd@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircle9getCenterEv@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircleC1EPKNS_4geom8GeometryEd@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircleC2EPKNS_4geom8GeometryEd@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircleD1Ev@Base 3.9.0 - _ZN4geos9algorithm9construct22MaximumInscribedCircleD2Ev@Base 3.9.0 - _ZN4geos9algorithmlsERSoRKNS0_11HCoordinateE@Base 3.4.2 - _ZN4geos9edgegraph12MarkHalfEdge11setMarkBothEPNS0_8HalfEdgeEb@Base 3.9.0 - _ZN4geos9edgegraph12MarkHalfEdge4markEPNS0_8HalfEdgeE@Base 3.9.0 - _ZN4geos9edgegraph12MarkHalfEdge7setMarkEPNS0_8HalfEdgeEb@Base 3.9.0 - _ZN4geos9edgegraph12MarkHalfEdge8isMarkedEPNS0_8HalfEdgeE@Base 3.9.0 - _ZN4geos9edgegraph12MarkHalfEdge8markBothEPNS0_8HalfEdgeE@Base 3.9.0 - _ZN4geos9edgegraph16EdgeGraphBuilder3addEPKNS_4geom10LineStringE@Base 3.9.0 - _ZN4geos9edgegraph16EdgeGraphBuilder3addEPKNS_4geom18GeometryCollectionE@Base 3.9.0 - _ZN4geos9edgegraph16EdgeGraphBuilder3addEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9edgegraph16EdgeGraphBuilder5buildEPKNS_4geom18GeometryCollectionE@Base 3.9.0 - _ZN4geos9edgegraph16EdgeGraphBuilder8getGraphEv@Base 3.9.0 - _ZN4geos9edgegraph25EdgeGraphLinestringFilterD0Ev@Base 3.9.0 - _ZN4geos9edgegraph25EdgeGraphLinestringFilterD1Ev@Base 3.9.0 - _ZN4geos9edgegraph25EdgeGraphLinestringFilterD2Ev@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdge11insertAfterEPS1_@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdge12toStringNodeEPKS1_RSo@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdge13insertionEdgeEPS1_@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdge4findERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdge4linkEPS1_@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdge6createERKNS_4geom10CoordinateES5_@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdge6degreeEv@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdge6insertEPS1_@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdge8prevNodeEv@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdgeD0Ev@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdgeD1Ev@Base 3.9.0 - _ZN4geos9edgegraph8HalfEdgeD2Ev@Base 3.9.0 - _ZN4geos9edgegraph9EdgeGraph10createEdgeERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos9edgegraph9EdgeGraph11isValidEdgeERKNS_4geom10CoordinateES5_@Base 3.9.0 - _ZN4geos9edgegraph9EdgeGraph14getVertexEdgesERSt6vectorIPKNS0_8HalfEdgeESaIS5_EE@Base 3.9.0 - _ZN4geos9edgegraph9EdgeGraph6createERKNS_4geom10CoordinateES5_@Base 3.9.0 - _ZN4geos9edgegraph9EdgeGraph6insertERKNS_4geom10CoordinateES5_PNS0_8HalfEdgeE@Base 3.9.0 - _ZN4geos9edgegraph9EdgeGraph7addEdgeERKNS_4geom10CoordinateES5_@Base 3.9.0 - _ZN4geos9edgegraph9EdgeGraph8findEdgeERKNS_4geom10CoordinateES5_@Base 3.9.0 - _ZN4geos9edgegraphlsERSoRKNS0_8HalfEdgeE@Base 3.9.0 - _ZN4geos9geomgraph11EdgeEndStar11getLocationEjRKNS_4geom10CoordinateEPSt6vectorIPNS0_13GeometryGraphESaIS8_EE@Base 3.9.0 - _ZN4geos9geomgraph11EdgeEndStar13getCoordinateEv@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar13insertEdgeEndEPNS0_7EdgeEndE@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar16computeLabellingEPSt6vectorIPNS0_13GeometryGraphESaIS4_EE@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar19propagateSideLabelsEj@Base 3.9.0 - _ZN4geos9geomgraph11EdgeEndStar20computeEdgeEndLabelsERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar22isAreaLabelsConsistentERKNS0_13GeometryGraphE@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar25checkAreaLabelsConsistentEj@Base 3.9.0 - _ZN4geos9geomgraph11EdgeEndStar3endEv@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar4findEPNS0_7EdgeEndE@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar4rendEv@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar5beginEv@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar6rbeginEv@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar8getEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar9getDegreeEv@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStar9getNextCWEPNS0_7EdgeEndE@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStarC1Ev@Base 3.4.2 - _ZN4geos9geomgraph11EdgeEndStarC2Ev@Base 3.4.2 - _ZN4geos9geomgraph11NodeFactory8instanceEv@Base 3.4.2 - _ZN4geos9geomgraph11NodeFactoryD0Ev@Base 3.4.2 - _ZN4geos9geomgraph11NodeFactoryD1Ev@Base 3.4.2 - _ZN4geos9geomgraph11NodeFactoryD2Ev@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph10getNodeMapEv@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph10insertEdgeEPNS0_4EdgeE@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph10printEdgesB5cxx11Ev@Base 3.5.1 - _ZN4geos9geomgraph11PlanarGraph11findEdgeEndEPNS0_4EdgeE@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph11getEdgeEndsEv@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph14isBoundaryNodeEhRKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9geomgraph11PlanarGraph15getEdgeIteratorEv@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph15getNodeIteratorEv@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph20linkAllDirectedEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph20matchInSameDirectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph23findEdgeInSameDirectionERKNS_4geom10CoordinateES5_@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph23linkResultDirectedEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph3addEPNS0_7EdgeEndE@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph4findERNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph7addNodeEPNS0_4NodeE@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph7addNodeERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph8addEdgesERKSt6vectorIPNS0_4EdgeESaIS4_EE@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph8findEdgeERKNS_4geom10CoordinateES5_@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraph8getNodesERSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraphC1ERKNS0_11NodeFactoryE@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraphC1Ev@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraphC2ERKNS0_11NodeFactoryE@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraphC2Ev@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraphD0Ev@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraphD1Ev@Base 3.4.2 - _ZN4geos9geomgraph11PlanarGraphD2Ev@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge10isLineEdgeEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge11depthFactorENS_4geom8LocationES3_@Base 3.8.0 - _ZN4geos9geomgraph12DirectedEdge13setEdgeDepthsEii@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge14setVisitedEdgeEb@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge18isInteriorAreaEdgeEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge20computeDirectedLabelEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge8setDepthEii@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge9printEdgeB5cxx11Ev@Base 3.5.1 - _ZN4geos9geomgraph12DirectedEdgeC1EPNS0_4EdgeEb@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdgeC2EPNS0_4EdgeEb@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdgeD0Ev@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdgeD1Ev@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdgeD2Ev@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph10addPolygonEPKNS_4geom7PolygonE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph11insertPointEhRKNS_4geom10CoordinateENS2_8LocationE@Base 3.10.0 - _ZN4geos9geomgraph13GeometryGraph12isInBoundaryEi@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph13addCollectionEPKNS_4geom18GeometryCollectionE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph13addLineStringEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph14addPolygonRingEPKNS_4geom10LinearRingENS2_8LocationES6_@Base 3.8.0 - _ZN4geos9geomgraph13GeometryGraph15getInvalidPointEv@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph15hasTooFewPointsEv@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph16computeSelfNodesERNS_9algorithm15LineIntersectorEbPKNS_4geom8EnvelopeE@Base 3.5.0 - _ZN4geos9geomgraph13GeometryGraph16computeSelfNodesERNS_9algorithm15LineIntersectorEbbPKNS_4geom8EnvelopeE@Base 3.5.1 - _ZN4geos9geomgraph13GeometryGraph16getBoundaryNodesEv@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph17computeSplitEdgesEPSt6vectorIPNS0_4EdgeESaIS4_EE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph17determineBoundaryERKNS_9algorithm16BoundaryNodeRuleEi@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph17determineBoundaryEi@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph17getBoundaryPointsEv@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph19insertBoundaryPointEhRKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9geomgraph13GeometryGraph23addSelfIntersectionNodeEhRKNS_4geom10CoordinateENS2_8LocationE@Base 3.10.0 - _ZN4geos9geomgraph13GeometryGraph24addSelfIntersectionNodesEh@Base 3.10.0 - _ZN4geos9geomgraph13GeometryGraph24computeEdgeIntersectionsEPS1_PNS_9algorithm15LineIntersectorEbPKNS_4geom8EnvelopeE@Base 3.5.0 - _ZN4geos9geomgraph13GeometryGraph24createEdgeSetIntersectorEv@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph3addEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph7addEdgeEPNS0_4EdgeE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph8addPointEPKNS_4geom5PointE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph8addPointERNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph8getEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraphC1EhPKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9geomgraph13GeometryGraphC1EhPKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.10.0 - _ZN4geos9geomgraph13GeometryGraphC2EhPKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9geomgraph13GeometryGraphC2EhPKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.10.0 - _ZN4geos9geomgraph13GeometryGraphD0Ev@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraphD1Ev@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraphD2Ev@Base 3.4.2 - _ZN4geos9geomgraph14GraphComponent10setCoveredEb@Base 3.4.2 - _ZN4geos9geomgraph14GraphComponent10setVisitedEb@Base 3.4.2 - _ZN4geos9geomgraph14GraphComponent11setInResultEb@Base 3.4.2 - _ZN4geos9geomgraph14GraphComponent8updateIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9geomgraph14GraphComponentC1ERKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph14GraphComponentC1Ev@Base 3.4.2 - _ZN4geos9geomgraph14GraphComponentC2ERKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph14GraphComponentC2Ev@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar13computeDepthsEPNS0_12DirectedEdgeE@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar13computeDepthsESt23_Rb_tree_const_iteratorIPNS0_7EdgeEndEES5_i@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar14mergeSymLabelsEv@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar15updateLabellingERKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar16computeLabellingEPSt6vectorIPNS0_13GeometryGraphESaIS4_EE@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar16getRightmostEdgeEv@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar17getOutgoingDegreeEPNS0_8EdgeRingE@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar17getOutgoingDegreeEv@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar18getResultAreaEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar20findCoveredLineEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar20linkAllDirectedEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar23linkResultDirectedEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar24linkMinimalDirectedEdgesEPNS0_8EdgeRingE@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStar6insertEPNS0_7EdgeEndE@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStarD0Ev@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStarD1Ev@Base 3.4.2 - _ZN4geos9geomgraph16DirectedEdgeStarD2Ev@Base 3.4.2 - _ZN4geos9geomgraph16TopologyLocation5mergeERKS1_@Base 3.4.2 - _ZN4geos9geomgraph19EdgeNodingValidator16toSegmentStringsERSt6vectorIPNS0_4EdgeESaIS4_EE@Base 3.4.2 - _ZN4geos9geomgraph19EdgeNodingValidatorD1Ev@Base 3.4.2 - _ZN4geos9geomgraph19EdgeNodingValidatorD2Ev@Base 3.4.2 - _ZN4geos9geomgraph20EdgeIntersectionList12addEndpointsEv@Base 3.4.2 - _ZN4geos9geomgraph20EdgeIntersectionList13addSplitEdgesEPSt6vectorIPNS0_4EdgeESaIS4_EE@Base 3.4.2 - _ZN4geos9geomgraph20EdgeIntersectionList15createSplitEdgeEPKNS0_16EdgeIntersectionES4_@Base 3.8.0 - (subst)_ZN4geos9geomgraph20EdgeIntersectionList3addERKNS_4geom10CoordinateE{size_t}d@Base 3.8.0 - _ZN4geos9geomgraph20EdgeIntersectionListC1EPKNS0_4EdgeE@Base 3.8.0 - _ZN4geos9geomgraph20EdgeIntersectionListC2EPKNS0_4EdgeE@Base 3.8.0 - (optional=templinst)_ZN4geos9geomgraph26collect_intersecting_edgesIN9__gnu_cxx17__normal_iteratorIPPNS0_4EdgeESt6vectorIS5_SaIS5_EEEES9_EEvPKNS_4geom8EnvelopeET_SF_RT0_@Base 3.5.0 - _ZN4geos9geomgraph4Edge11getEnvelopeEv@Base 3.4.2 - _ZN4geos9geomgraph4Edge11setIsolatedEb@Base 3.4.2 - _ZN4geos9geomgraph4Edge13setDepthDeltaEi@Base 3.4.2 - (subst)_ZN4geos9geomgraph4Edge15addIntersectionEPNS_9algorithm15LineIntersectorE{size_t}{size_t}{size_t}@Base 3.8.0 - (subst)_ZN4geos9geomgraph4Edge16addIntersectionsEPNS_9algorithm15LineIntersectorE{size_t}{size_t}@Base 3.8.0 - _ZN4geos9geomgraph4Edge16getCollapsedEdgeEv@Base 3.4.2 - _ZN4geos9geomgraph4Edge20getMonotoneChainEdgeEv@Base 3.4.2 - _ZN4geos9geomgraph4Edge23getEdgeIntersectionListEv@Base 3.4.2 - _ZN4geos9geomgraph4Edge8getDepthEv@Base 3.4.2 - _ZN4geos9geomgraph4Edge8updateIMERKNS0_5LabelERNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9geomgraph4Edge9computeIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9geomgraph4EdgeC1EPNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9geomgraph4EdgeC1EPNS_4geom18CoordinateSequenceERKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph4EdgeC2EPNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9geomgraph4EdgeC2EPNS_4geom18CoordinateSequenceERKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph4EdgeD0Ev@Base 3.4.2 - _ZN4geos9geomgraph4EdgeD1Ev@Base 3.4.2 - _ZN4geos9geomgraph4EdgeD2Ev@Base 3.4.2 - _ZN4geos9geomgraph4Node10mergeLabelERKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph4Node10mergeLabelERKS1_@Base 3.4.2 - _ZN4geos9geomgraph4Node16setLabelBoundaryEh@Base 3.10.0 - _ZN4geos9geomgraph4Node21computeMergedLocationERKNS0_5LabelEh@Base 3.10.0 - _ZN4geos9geomgraph4Node3addEPNS0_7EdgeEndE@Base 3.4.2 - _ZN4geos9geomgraph4Node4addZEd@Base 3.4.2 - _ZN4geos9geomgraph4Node5printB5cxx11Ev@Base 3.5.1 - _ZN4geos9geomgraph4Node8getEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph4Node8setLabelEhNS_4geom8LocationE@Base 3.10.0 - _ZN4geos9geomgraph4Node9computeIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9geomgraph4NodeC1ERKNS_4geom10CoordinateEPNS0_11EdgeEndStarE@Base 3.4.2 - _ZN4geos9geomgraph4NodeC2ERKNS_4geom10CoordinateEPNS0_11EdgeEndStarE@Base 3.4.2 - _ZN4geos9geomgraph4NodeD0Ev@Base 3.4.2 - _ZN4geos9geomgraph4NodeD1Ev@Base 3.4.2 - _ZN4geos9geomgraph4NodeD2Ev@Base 3.4.2 - _ZN4geos9geomgraph5Depth3addERKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph5Depth9normalizeEv@Base 3.4.2 - _ZN4geos9geomgraph5DepthD0Ev@Base 3.4.2 - _ZN4geos9geomgraph5DepthD1Ev@Base 3.4.2 - _ZN4geos9geomgraph5DepthD2Ev@Base 3.4.2 - _ZN4geos9geomgraph5index13MonotoneChainD0Ev@Base 3.4.2 - _ZN4geos9geomgraph5index13MonotoneChainD1Ev@Base 3.4.2 - _ZN4geos9geomgraph5index13MonotoneChainD2Ev@Base 3.4.2 - _ZN4geos9geomgraph5index14SweepLineEvent5printB5cxx11Ev@Base 3.5.1 - _ZN4geos9geomgraph5index14SweepLineEvent9compareToEPS2_@Base 3.4.2 - _ZN4geos9geomgraph5index14SweepLineEventC1EPvdPS2_PNS1_17SweepLineEventOBJE@Base 3.4.2 - _ZN4geos9geomgraph5index14SweepLineEventC2EPvdPS2_PNS1_17SweepLineEventOBJE@Base 3.4.2 - _ZN4geos9geomgraph5index16SweepLineSegment20computeIntersectionsEPS2_PNS1_18SegmentIntersectorE@Base 3.4.2 - _ZN4geos9geomgraph5index16SweepLineSegment7getMaxXEv@Base 3.4.2 - _ZN4geos9geomgraph5index16SweepLineSegment7getMinXEv@Base 3.4.2 - (subst)_ZN4geos9geomgraph5index16SweepLineSegmentC1EPNS0_4EdgeE{size_t}@Base 3.8.0 - (subst)_ZN4geos9geomgraph5index16SweepLineSegmentC2EPNS0_4EdgeE{size_t}@Base 3.8.0 - _ZN4geos9geomgraph5index16SweepLineSegmentD0Ev@Base 3.4.2 - _ZN4geos9geomgraph5index16SweepLineSegmentD1Ev@Base 3.4.2 - _ZN4geos9geomgraph5index16SweepLineSegmentD2Ev@Base 3.4.2 - _ZN4geos9geomgraph5index17MonotoneChainEdge14getCoordinatesEv@Base 3.4.2 - _ZN4geos9geomgraph5index17MonotoneChainEdge15getStartIndexesEv@Base 3.4.2 - _ZN4geos9geomgraph5index17MonotoneChainEdge17computeIntersectsERKS2_RNS1_18SegmentIntersectorE@Base 3.4.2 - (subst)_ZN4geos9geomgraph5index17MonotoneChainEdge25computeIntersectsForChainE{size_t}RKS2_{size_t}RNS1_18SegmentIntersectorE@Base 3.8.0 - (subst)_ZN4geos9geomgraph5index17MonotoneChainEdge25computeIntersectsForChainE{size_t}{size_t}RKS2_{size_t}{size_t}RNS1_18SegmentIntersectorE@Base 3.8.0 - (subst)_ZN4geos9geomgraph5index17MonotoneChainEdge7getMaxXE{size_t}@Base 3.8.0 - (subst)_ZN4geos9geomgraph5index17MonotoneChainEdge7getMinXE{size_t}@Base 3.8.0 - (subst)_ZN4geos9geomgraph5index17MonotoneChainEdge8overlapsE{size_t}{size_t}RKS2_{size_t}{size_t}@Base 3.8.0 - _ZN4geos9geomgraph5index17MonotoneChainEdgeC1EPNS0_4EdgeE@Base 3.4.2 - _ZN4geos9geomgraph5index17MonotoneChainEdgeC2EPNS0_4EdgeE@Base 3.4.2 - _ZN4geos9geomgraph5index18SegmentIntersector15isBoundaryPointEPNS_9algorithm15LineIntersectorEPSt6vectorIPNS0_4NodeESaIS8_EE@Base 3.4.2 - (subst)_ZN4geos9geomgraph5index18SegmentIntersector16addIntersectionsEPNS0_4EdgeE{size_t}S4_{size_t}@Base 3.8.0 - (subst)_ZN4geos9geomgraph5index18SegmentIntersector21isTrivialIntersectionEPNS0_4EdgeE{size_t}S4_{size_t}@Base 3.8.0 - _ZN4geos9geomgraph5index18SegmentIntersectorD0Ev@Base 3.4.2 - _ZN4geos9geomgraph5index18SegmentIntersectorD1Ev@Base 3.4.2 - _ZN4geos9geomgraph5index18SegmentIntersectorD2Ev@Base 3.4.2 - (subst)_ZN4geos9geomgraph5index20MonotoneChainIndexer12findChainEndEPKNS_4geom18CoordinateSequenceE{size_t}@Base 3.8.0 - (subst)_ZN4geos9geomgraph5index20MonotoneChainIndexer20getChainStartIndicesEPKNS_4geom18CoordinateSequenceERSt6vectorI{size_t}SaI{size_t}EE@Base 3.8.0 - _ZN4geos9geomgraph5index24SimpleEdgeSetIntersector17computeIntersectsEPNS0_4EdgeES4_PNS1_18SegmentIntersectorE@Base 3.4.2 - _ZN4geos9geomgraph5index24SimpleEdgeSetIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EEPNS1_18SegmentIntersectorEb@Base 3.4.2 - _ZN4geos9geomgraph5index24SimpleEdgeSetIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EES8_PNS1_18SegmentIntersectorE@Base 3.4.2 - _ZN4geos9geomgraph5index24SimpleEdgeSetIntersectorC1Ev@Base 3.4.2 - _ZN4geos9geomgraph5index24SimpleEdgeSetIntersectorC2Ev@Base 3.4.2 - _ZN4geos9geomgraph5index24SimpleEdgeSetIntersectorD0Ev@Base 3.4.2 - _ZN4geos9geomgraph5index24SimpleEdgeSetIntersectorD1Ev@Base 3.4.2 - _ZN4geos9geomgraph5index24SimpleEdgeSetIntersectorD2Ev@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersector13prepareEventsEv@Base 3.4.2 - (subst)_ZN4geos9geomgraph5index26SimpleSweepLineIntersector15processOverlapsE{size_t}{size_t}PNS1_14SweepLineEventEPNS1_18SegmentIntersectorE@Base 3.8.0 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersector20computeIntersectionsEPNS1_18SegmentIntersectorE@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EEPNS1_18SegmentIntersectorEb@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EES8_PNS1_18SegmentIntersectorE@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersector3addEPNS0_4EdgeEPv@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersector3addEPSt6vectorIPNS0_4EdgeESaIS5_EE@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersector3addEPSt6vectorIPNS0_4EdgeESaIS5_EEPv@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersectorC1Ev@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersectorC2Ev@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersectorD0Ev@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersectorD1Ev@Base 3.4.2 - _ZN4geos9geomgraph5index26SimpleSweepLineIntersectorD2Ev@Base 3.4.2 - _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector13prepareEventsEv@Base 3.4.2 - (subst)_ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector15processOverlapsE{size_t}{size_t}PNS1_14SweepLineEventEPNS1_18SegmentIntersectorE@Base 3.8.0 - _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector20computeIntersectionsEPNS1_18SegmentIntersectorE@Base 3.4.2 - _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EEPNS1_18SegmentIntersectorEb@Base 3.4.2 - _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EES8_PNS1_18SegmentIntersectorE@Base 3.4.2 - _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector3addEPNS0_4EdgeEPv@Base 3.4.2 - _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector3addEPSt6vectorIPNS0_4EdgeESaIS5_EE@Base 3.4.2 - _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector3addEPSt6vectorIPNS0_4EdgeESaIS5_EEPv@Base 3.4.2 - _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersectorD0Ev@Base 3.4.2 - _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersectorD1Ev@Base 3.4.2 - _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersectorD2Ev@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEnd11getQuadrantEv@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEnd12computeLabelERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEnd13getCoordinateEv@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEnd21getDirectedCoordinateEv@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEnd4initERKNS_4geom10CoordinateES5_@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEnd5getDxEv@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEnd5getDyEv@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEnd7getNodeEv@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEnd7setNodeEPNS0_4NodeE@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndC1EPNS0_4EdgeE@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndC1EPNS0_4EdgeERKNS_4geom10CoordinateES7_@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndC1EPNS0_4EdgeERKNS_4geom10CoordinateES7_RKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndC1Ev@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndC2EPNS0_4EdgeE@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndC2EPNS0_4EdgeERKNS_4geom10CoordinateES7_@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndC2EPNS0_4EdgeERKNS_4geom10CoordinateES7_RKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndC2Ev@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndD0Ev@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndD1Ev@Base 3.4.2 - _ZN4geos9geomgraph7EdgeEndD2Ev@Base 3.4.2 - _ZN4geos9geomgraph7NodeMap3addEPNS0_7EdgeEndE@Base 3.4.2 - _ZN4geos9geomgraph7NodeMap7addNodeEPNS0_4NodeE@Base 3.4.2 - _ZN4geos9geomgraph7NodeMap7addNodeERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9geomgraph7NodeMapC1ERKNS0_11NodeFactoryE@Base 3.4.2 - _ZN4geos9geomgraph7NodeMapC2ERKNS0_11NodeFactoryE@Base 3.4.2 - _ZN4geos9geomgraph7NodeMapD0Ev@Base 3.4.2 - _ZN4geos9geomgraph7NodeMapD1Ev@Base 3.4.2 - _ZN4geos9geomgraph7NodeMapD2Ev@Base 3.4.2 - _ZN4geos9geomgraph8EdgeList3addEPNS0_4EdgeE@Base 3.4.2 - (subst)_ZN4geos9geomgraph8EdgeList3getE{size_t}@Base 3.10.0 - _ZN4geos9geomgraph8EdgeList5printB5cxx11Ev@Base 3.5.1 - _ZN4geos9geomgraph8EdgeList6addAllERKSt6vectorIPNS0_4EdgeESaIS4_EE@Base 3.4.2 - _ZN4geos9geomgraph8EdgeList9clearListEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeListD0Ev@Base 3.4.2 - _ZN4geos9geomgraph8EdgeListD1Ev@Base 3.4.2 - _ZN4geos9geomgraph8EdgeListD2Ev@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing10isIsolatedEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing10mergeLabelERKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing10mergeLabelERKNS0_5LabelEh@Base 3.10.0 - _ZN4geos9geomgraph8EdgeRing11computeRingEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing11setInResultEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing13computePointsEPNS0_12DirectedEdgeE@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing13containsPointERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing13getLinearRingEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing16getMaxNodeDegreeEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing20computeMaxNodeDegreeEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing6isHoleEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing7addHoleEPS1_@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing7isShellEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing8getEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing8getLabelEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing8getShellEv@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing8setShellEPS1_@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing9addPointsEPNS0_4EdgeEbb@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRing9toPolygonEPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRingC1EPNS0_12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRingC2EPNS0_12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRingD0Ev@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRingD1Ev@Base 3.4.2 - _ZN4geos9geomgraph8EdgeRingD2Ev@Base 3.4.2 - _ZN4geos9geomgraphlsERSoRKNS0_11EdgeEndStarE@Base 3.6.0 - _ZN4geos9geomgraphlsERSoRKNS0_16TopologyLocationE@Base 3.4.2 - _ZN4geos9geomgraphlsERSoRKNS0_20EdgeIntersectionListE@Base 3.4.2 - _ZN4geos9geomgraphlsERSoRKNS0_4EdgeE@Base 3.4.2 - _ZN4geos9geomgraphlsERSoRKNS0_4NodeE@Base 3.4.2 - _ZN4geos9geomgraphlsERSoRKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraphlsERSoRKNS0_7EdgeEndE@Base 3.4.2 - _ZN4geos9geomgraphlsERSoRKNS0_8EdgeListE@Base 3.4.2 - _ZN4geos9geomgraphlsERSoRKNS0_8EdgeRingE@Base 3.4.2 - _ZN4geos9linearref14LinearIterator15loadCurrentLineEv@Base 3.4.2 - _ZN4geos9linearref14LinearIterator21segmentEndVertexIndexERKNS0_14LinearLocationE@Base 3.4.2 - _ZN4geos9linearref14LinearIterator4nextEv@Base 3.4.2 - _ZN4geos9linearref14LinearIteratorC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref14LinearIteratorC1EPKNS_4geom8GeometryERKNS0_14LinearLocationE@Base 3.4.2 - (subst)_ZN4geos9linearref14LinearIteratorC1EPKNS_4geom8GeometryE{size_t}{size_t}@Base 3.8.0 - _ZN4geos9linearref14LinearIteratorC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref14LinearIteratorC2EPKNS_4geom8GeometryERKNS0_14LinearLocationE@Base 3.4.2 - (subst)_ZN4geos9linearref14LinearIteratorC2EPKNS_4geom8GeometryE{size_t}{size_t}@Base 3.8.0 - _ZN4geos9linearref14LinearLocation12snapToVertexEPKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos9linearref14LinearLocation14getEndLocationEPKNS_4geom8GeometryE@Base 3.4.2 - (subst)_ZN4geos9linearref14LinearLocation21compareLocationValuesE{size_t}{size_t}d{size_t}{size_t}d@Base 3.8.0 - _ZN4geos9linearref14LinearLocation27pointAlongSegmentByFractionERKNS_4geom10CoordinateES5_d@Base 3.4.2 - _ZN4geos9linearref14LinearLocation5clampEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref14LinearLocation8setToEndEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref14LinearLocation9normalizeEv@Base 3.4.2 - (subst)_ZN4geos9linearref14LinearLocationC1E{size_t}d@Base 3.8.0 - (subst)_ZN4geos9linearref14LinearLocationC1E{size_t}{size_t}d@Base 3.8.0 - (subst)_ZN4geos9linearref14LinearLocationC2E{size_t}d@Base 3.8.0 - (subst)_ZN4geos9linearref14LinearLocationC2E{size_t}{size_t}d@Base 3.8.0 - _ZN4geos9linearref17LengthIndexedLineC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref17LengthIndexedLineC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref17LengthLocationMap9getLengthEPKNS_4geom8GeometryERKNS0_14LinearLocationE@Base 3.4.2 - _ZN4geos9linearref17LengthLocationMapC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref17LengthLocationMapC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref18LengthIndexOfPoint12indexOfAfterEPKNS_4geom8GeometryERKNS2_10CoordinateEd@Base 3.4.2 - _ZN4geos9linearref18LengthIndexOfPoint7indexOfEPKNS_4geom8GeometryERKNS2_10CoordinateE@Base 3.4.2 - _ZN4geos9linearref18LengthIndexOfPointC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref18LengthIndexOfPointC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref19LocationIndexOfLine9indicesOfEPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9linearref19LocationIndexOfLineC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref19LocationIndexOfLineC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref20LocationIndexOfPoint12indexOfAfterEPKNS_4geom8GeometryERKNS2_10CoordinateEPKNS0_14LinearLocationE@Base 3.4.2 - _ZN4geos9linearref20LocationIndexOfPoint7indexOfEPKNS_4geom8GeometryERKNS2_10CoordinateE@Base 3.4.2 - _ZN4geos9linearref20LocationIndexOfPointC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref20LocationIndexOfPointC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref21ExtractLineByLocation11computeLineERKNS0_14LinearLocationES4_@Base 3.4.2 - _ZN4geos9linearref21ExtractLineByLocation13computeLinearERKNS0_14LinearLocationES4_@Base 3.4.2 - _ZN4geos9linearref21ExtractLineByLocation7extractEPKNS_4geom8GeometryERKNS0_14LinearLocationES8_@Base 3.4.2 - _ZN4geos9linearref21ExtractLineByLocation7extractERKNS0_14LinearLocationES4_@Base 3.4.2 - _ZN4geos9linearref21ExtractLineByLocation7reverseEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref21ExtractLineByLocationC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref21ExtractLineByLocationC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9linearref21LinearGeometryBuilder11getGeometryEv@Base 3.4.2 - _ZN4geos9linearref21LinearGeometryBuilder18setFixInvalidLinesEb@Base 3.4.2 - _ZN4geos9linearref21LinearGeometryBuilder21setIgnoreInvalidLinesEb@Base 3.4.2 - _ZN4geos9linearref21LinearGeometryBuilder3addERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9linearref21LinearGeometryBuilder3addERKNS_4geom10CoordinateEb@Base 3.4.2 - _ZN4geos9linearref21LinearGeometryBuilder7endLineEv@Base 3.4.2 - _ZN4geos9linearref21LinearGeometryBuilderC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9linearref21LinearGeometryBuilderC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9linearref21LinearGeometryBuilderD1Ev@Base 3.4.2 - _ZN4geos9linearref21LinearGeometryBuilderD2Ev@Base 3.4.2 - _ZN4geos9linearreflsERSoRKNS0_14LinearLocationE@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer10getDanglesEv@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer10hasDanglesEv@Base 3.8.0 - _ZN4geos9operation10polygonize11Polygonizer10polygonizeEv@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer11getCutEdgesEv@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer11getPolygonsEv@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer11hasCutEdgesEv@Base 3.8.0 - _ZN4geos9operation10polygonize11Polygonizer14findValidRingsERKSt6vectorIPNS1_8EdgeRingESaIS5_EERS7_RS3_ISt10unique_ptrINS_4geom10LineStringESt14default_deleteISD_EESaISG_EE@Base 3.8.0 - _ZN4geos9operation10polygonize11Polygonizer15LineStringAdder9filter_roEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer15LineStringAdderC1EPS2_@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer15LineStringAdderC2EPS2_@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer15LineStringAdderD0Ev@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer15LineStringAdderD1Ev@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer15LineStringAdderD2Ev@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer15extractPolygonsERSt6vectorIPNS1_8EdgeRingESaIS5_EEb@Base 3.8.0 - _ZN4geos9operation10polygonize11Polygonizer15findOuterShellsERSt6vectorIPNS1_8EdgeRingESaIS5_EE@Base 3.8.0 - _ZN4geos9operation10polygonize11Polygonizer18findDisjointShellsEv@Base 3.8.0 - _ZN4geos9operation10polygonize11Polygonizer18findShellsAndHolesERKSt6vectorIPNS1_8EdgeRingESaIS5_EE@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer19getInvalidRingLinesEv@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer19hasInvalidRingLinesEv@Base 3.8.0 - _ZN4geos9operation10polygonize11Polygonizer21allInputsFormPolygonsEv@Base 3.8.0 - _ZN4geos9operation10polygonize11Polygonizer3addEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer3addEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer3addEPNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer3addEPSt6vectorIPKNS_4geom8GeometryESaIS7_EE@Base 3.4.2 - _ZN4geos9operation10polygonize11Polygonizer3addEPSt6vectorIPNS_4geom8GeometryESaIS6_EE@Base 3.4.2 - _ZN4geos9operation10polygonize11PolygonizerC1Eb@Base 3.8.0 - _ZN4geos9operation10polygonize11PolygonizerC2Eb@Base 3.8.0 - _ZN4geos9operation10polygonize11PolygonizerD1Ev@Base 3.4.2 - _ZN4geos9operation10polygonize11PolygonizerD2Ev@Base 3.4.2 - _ZN4geos9operation10polygonize12HoleAssigner10buildIndexEv@Base 3.8.0 - _ZN4geos9operation10polygonize12HoleAssigner10findShellsERKNS_4geom8EnvelopeE@Base 3.8.0 - _ZN4geos9operation10polygonize12HoleAssigner17assignHoleToShellEPNS1_8EdgeRingE@Base 3.8.0 - _ZN4geos9operation10polygonize12HoleAssigner19assignHolesToShellsERSt6vectorIPNS1_8EdgeRingESaIS5_EE@Base 3.8.0 - _ZN4geos9operation10polygonize12HoleAssigner19assignHolesToShellsERSt6vectorIPNS1_8EdgeRingESaIS5_EES8_@Base 3.8.0 - _ZN4geos9operation10polygonize12HoleAssigner22findEdgeRingContainingEPNS1_8EdgeRingE@Base 3.8.0 - _ZN4geos9operation10polygonize14PolygonizeEdge7getLineEv@Base 3.4.2 - _ZN4geos9operation10polygonize14PolygonizeEdgeC1EPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation10polygonize14PolygonizeEdgeC2EPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation10polygonize14PolygonizeEdgeD0Ev@Base 3.4.2 - _ZN4geos9operation10polygonize14PolygonizeEdgeD1Ev@Base 3.4.2 - _ZN4geos9operation10polygonize14PolygonizeEdgeD2Ev@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph12findEdgeRingEPNS1_22PolygonizeDirectedEdgeE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph12getEdgeRingsERSt6vectorIPNS1_8EdgeRingESaIS5_EE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph13deleteDanglesERSt6vectorIPKNS_4geom10LineStringESaIS7_EE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph14deleteAllEdgesEPNS_11planargraph4NodeE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph14deleteCutEdgesERSt6vectorIPKNS_4geom10LineStringESaIS7_EE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph18computeNextCWEdgesEPNS_11planargraph4NodeE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph18computeNextCWEdgesEv@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph19computeNextCCWEdgesEPNS_11planargraph4NodeEl@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph19getDegreeNonDeletedEPNS_11planargraph4NodeE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph20findLabeledEdgeRingsERSt6vectorIPNS_11planargraph12DirectedEdgeESaIS6_EERS3_IPNS1_22PolygonizeDirectedEdgeESaISB_EE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph21findIntersectionNodesEPNS1_22PolygonizeDirectedEdgeElRSt6vectorIPNS_11planargraph4NodeESaIS8_EE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph32convertMaximalToMinimalEdgeRingsERSt6vectorIPNS1_22PolygonizeDirectedEdgeESaIS5_EE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph5labelERSt6vectorIPNS1_22PolygonizeDirectedEdgeESaIS5_EEl@Base 3.8.0 - _ZN4geos9operation10polygonize15PolygonizeGraph5labelERSt6vectorIPNS_11planargraph12DirectedEdgeESaIS6_EEl@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph7addEdgeEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph7getNodeERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraph9getDegreeEPNS_11planargraph4NodeEl@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraphC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraphC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraphD0Ev@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraphD1Ev@Base 3.4.2 - _ZN4geos9operation10polygonize15PolygonizeGraphD2Ev@Base 3.4.2 - _ZN4geos9operation10polygonize22PolygonizeDirectedEdge7setNextEPS2_@Base 3.4.2 - _ZN4geos9operation10polygonize22PolygonizeDirectedEdge7setRingEPNS1_8EdgeRingE@Base 3.4.2 - _ZN4geos9operation10polygonize22PolygonizeDirectedEdge8setLabelEl@Base 3.4.2 - _ZN4geos9operation10polygonize22PolygonizeDirectedEdgeC1EPNS_11planargraph4NodeES5_RKNS_4geom10CoordinateEb@Base 3.4.2 - _ZN4geos9operation10polygonize22PolygonizeDirectedEdgeC2EPNS_11planargraph4NodeES5_RKNS_4geom10CoordinateEb@Base 3.4.2 - _ZN4geos9operation10polygonize22PolygonizeDirectedEdgeD0Ev@Base 3.4.2 - _ZN4geos9operation10polygonize22PolygonizeDirectedEdgeD1Ev@Base 3.4.2 - _ZN4geos9operation10polygonize22PolygonizeDirectedEdgeD2Ev@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRing10getPolygonEv@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRing11computeHoleEv@Base 3.8.0 - _ZN4geos9operation10polygonize8EdgeRing11ptNotInListEPKNS_4geom18CoordinateSequenceES6_@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRing13getLineStringEv@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRing14getCoordinatesEv@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRing15getRingInternalEv@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRing16getRingOwnershipEv@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRing18findDirEdgesInRingEPNS1_22PolygonizeDirectedEdgeE@Base 3.8.0 - _ZN4geos9operation10polygonize8EdgeRing22findEdgeRingContainingERKSt6vectorIPS2_SaIS4_EE@Base 3.8.0 - _ZN4geos9operation10polygonize8EdgeRing23updateIncludedRecursiveEv@Base 3.8.0 - _ZN4geos9operation10polygonize8EdgeRing3addEPKNS1_22PolygonizeDirectedEdgeE@Base 3.8.0 - _ZN4geos9operation10polygonize8EdgeRing5buildEPNS1_22PolygonizeDirectedEdgeE@Base 3.8.0 - _ZN4geos9operation10polygonize8EdgeRing7addEdgeEPKNS_4geom18CoordinateSequenceEbPNS3_23CoordinateArraySequenceE@Base 3.8.0 - _ZN4geos9operation10polygonize8EdgeRing7addHoleEPNS_4geom10LinearRingE@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRing7addHoleEPS2_@Base 3.8.0 - _ZN4geos9operation10polygonize8EdgeRing7isValidEv@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRing8isInListERKNS_4geom10CoordinateEPKNS3_18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRingC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation10polygonize8EdgeRingC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation10polygonize9BuildArea5buildEPKNS_4geom8GeometryE@Base 3.8.0 - _ZN4geos9operation11sharedpaths13SharedPathsOp10clearEdgesERSt6vectorIPNS_4geom10LineStringESaIS6_EE@Base 3.4.2 - _ZN4geos9operation11sharedpaths13SharedPathsOp13sharedPathsOpERKNS_4geom8GeometryES6_RSt6vectorIPNS3_10LineStringESaIS9_EESC_@Base 3.4.2 - _ZN4geos9operation11sharedpaths13SharedPathsOp14getSharedPathsERSt6vectorIPNS_4geom10LineStringESaIS6_EES9_@Base 3.4.2 - _ZN4geos9operation11sharedpaths13SharedPathsOp16checkLinealInputERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation11sharedpaths13SharedPathsOp23findLinearIntersectionsERSt6vectorIPNS_4geom10LineStringESaIS6_EE@Base 3.4.2 - _ZN4geos9operation11sharedpaths13SharedPathsOp9isForwardERKNS_4geom10LineStringERKNS3_8GeometryE@Base 3.4.2 - _ZN4geos9operation11sharedpaths13SharedPathsOpC1ERKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation11sharedpaths13SharedPathsOpC2ERKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation12intersection13clip_to_edgesERdS2_ddRKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection14normalize_ringERSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.5.0 - (subst)_ZN4geos9operation12intersection14reverse_pointsERSt6vectorINS_4geom10CoordinateESaIS4_EE{size_t}{size_t}@Base 3.8.0 - _ZN4geos9operation12intersection21RectangleIntersection10clip_pointEPKNS_4geom5PointERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection12clipBoundaryERKNS_4geom8GeometryERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection12clipBoundaryEv@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection12clip_polygonEPKNS_4geom7PolygonERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleEb@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection15clip_linestringEPKNS_4geom10LineStringERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection15clip_multipointEPKNS_4geom10MultiPointERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection17clip_multipolygonEPKNS_4geom12MultiPolygonERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleEb@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection20clip_multilinestringEPKNS_4geom15MultiLineStringERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection21clip_linestring_partsEPKNS_4geom10LineStringERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection23clip_geometrycollectionEPKNS_4geom18GeometryCollectionERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleEb@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection24clip_polygon_to_polygonsEPKNS_4geom7PolygonERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection27clip_polygon_to_linestringsEPKNS_4geom7PolygonERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection4clipERKNS_4geom8GeometryERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection4clipEv@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersection9clip_geomEPKNS_4geom8GeometryERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleEb@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersectionC1ERKNS_4geom8GeometryERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection21RectangleIntersectionC2ERKNS_4geom8GeometryERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder10close_ringERKNS1_9RectangleEPSt6vectorINS_4geom10CoordinateESaIS8_EE@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder12reverseLinesEv@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder14close_boundaryERKNS1_9RectangleEPSt6vectorINS_4geom10CoordinateESaIS8_EEdddd@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder17reconnectPolygonsERKNS1_9RectangleE@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder3addEPNS_4geom10LineStringE@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder3addEPNS_4geom5PointE@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder3addEPNS_4geom7PolygonE@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder5buildEv@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder5clearEv@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder7releaseERS2_@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilder9reconnectEv@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilderD1Ev@Base 3.5.0 - _ZN4geos9operation12intersection28RectangleIntersectionBuilderD2Ev@Base 3.5.0 - _ZN4geos9operation12intersection8distanceERKNS1_9RectangleERKSt6vectorINS_4geom10CoordinateESaIS7_EE@Base 3.5.0 - _ZN4geos9operation12intersection8distanceERKNS1_9RectangleERKSt6vectorINS_4geom10CoordinateESaIS7_EEPKNS6_10LineStringE@Base 3.5.0 - _ZN4geos9operation12intersection8distanceERKNS1_9RectangleEdddd@Base 3.5.0 - _ZN4geos9operation12intersection9RectangleC1Edddd@Base 3.5.0 - _ZN4geos9operation12intersection9RectangleC2Edddd@Base 3.5.0 - _ZN4geos9operation22GeometryGraphOperation23setComputationPrecisionEPKNS_4geom14PrecisionModelE@Base 3.4.2 - _ZN4geos9operation22GeometryGraphOperationC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation22GeometryGraphOperationC1EPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9operation22GeometryGraphOperationC1EPKNS_4geom8GeometryES5_RKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9operation22GeometryGraphOperationC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation22GeometryGraphOperationC2EPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9operation22GeometryGraphOperationC2EPKNS_4geom8GeometryES5_RKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9operation22GeometryGraphOperationD0Ev@Base 3.4.2 - _ZN4geos9operation22GeometryGraphOperationD1Ev@Base 3.4.2 - _ZN4geos9operation22GeometryGraphOperationD2Ev@Base 3.4.2 - _ZN4geos9operation5valid10IsSimpleOp13computeSimpleERKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp17isSimplePolygonalERKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp18isSimpleMultiPointERKNS_4geom10MultiPointE@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp19setFindAllLocationsEb@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp20getNonSimpleLocationERKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp20getNonSimpleLocationEv@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp21extractSegmentStringsERKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp21getNonSimpleLocationsEv@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp22isSimpleLinearGeometryERKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp26isSimpleGeometryCollectionERKNS_4geom8GeometryE@Base 3.10.0 - (subst)_ZN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder16findIntersectionEPNS_6noding13SegmentStringE{size_t}S6_{size_t}RKNS_4geom10CoordinateESA_SA_SA_@Base 3.10.0 - (subst)_ZN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder20processIntersectionsEPNS_6noding13SegmentStringE{size_t}S6_{size_t}@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderD0Ev@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderD1Ev@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderD2Ev@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp7computeEv@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp8isSimpleERKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9operation5valid10IsSimpleOp8isSimpleEv@Base 3.10.0 - _ZN4geos9operation5valid11PolygonNode10isCrossingEPKNS_4geom10CoordinateES6_S6_S6_S6_@Base 3.10.0 - _ZN4geos9operation5valid11PolygonNode14isAngleGreaterEPKNS_4geom10CoordinateES6_S6_@Base 3.10.0 - _ZN4geos9operation5valid11PolygonNode17isInteriorSegmentEPKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 - _ZN4geos9operation5valid11PolygonNode8quadrantEPKNS_4geom10CoordinateES6_@Base 3.10.0 - _ZN4geos9operation5valid11PolygonNode9isBetweenEPKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 - _ZN4geos9operation5valid11PolygonRing12addSelfTouchERKNS_4geom10CoordinateEPS5_S7_S7_S7_@Base 3.10.0 - _ZN4geos9operation5valid11PolygonRing16scanForHoleCycleEPNS1_16PolygonRingTouchEPS2_RSt5stackIS4_St5dequeIS4_SaIS4_EEE@Base 3.10.0 - _ZN4geos9operation5valid11PolygonRing20findInteriorSelfNodeESt6vectorIPS2_SaIS4_EE@Base 3.10.0 - _ZN4geos9operation5valid11PolygonRing20findInteriorSelfNodeEv@Base 3.10.0 - _ZN4geos9operation5valid11PolygonRing21findHoleCycleLocationESt6vectorIPS2_SaIS4_EE@Base 3.10.0 - _ZN4geos9operation5valid11PolygonRing21findHoleCycleLocationEv@Base 3.10.0 - _ZN4geos9operation5valid11PolygonRing4initEPS2_RSt5stackIPNS1_16PolygonRingTouchESt5dequeIS6_SaIS6_EEE@Base 3.10.0 - _ZN4geos9operation5valid11PolygonRing7isShellEPKS2_@Base 3.10.0 - _ZN4geos9operation5valid11PolygonRing8addTouchEPS2_RKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9operation5valid11PolygonRing8addTouchEPS2_S3_RKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9operation5valid19RepeatedPointFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9operation5valid19RepeatedPointFilterD0Ev@Base 3.10.0 - _ZN4geos9operation5valid19RepeatedPointFilterD1Ev@Base 3.10.0 - _ZN4geos9operation5valid19RepeatedPointFilterD2Ev@Base 3.10.0 - _ZN4geos9operation5valid19RepeatedPointTester13getCoordinateEv@Base 3.4.2 - _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom12MultiPolygonE@Base 3.4.2 - _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom15MultiLineStringE@Base 3.4.2 - _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom18GeometryCollectionE@Base 3.4.2 - _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom7PolygonE@Base 3.4.2 - _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation5valid20ConsistentAreaTester15getInvalidPointEv@Base 3.4.2 - _ZN4geos9operation5valid20ConsistentAreaTester17hasDuplicateRingsEv@Base 3.4.2 - _ZN4geos9operation5valid20ConsistentAreaTester20isNodeConsistentAreaEv@Base 3.4.2 - _ZN4geos9operation5valid20ConsistentAreaTester30isNodeEdgeAreaLabelsConsistentEv@Base 3.4.2 - _ZN4geos9operation5valid20ConsistentAreaTesterC1EPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid20ConsistentAreaTesterC2EPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid20RepeatedPointRemover20removeRepeatedPointsEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 - _ZN4geos9operation5valid20RepeatedPointRemover30removeRepeatedAndInvalidPointsEPKNS_4geom18CoordinateSequenceE@Base 3.10.0 - _ZN4geos9operation5valid23ConnectedInteriorTester13getCoordinateEv@Base 3.4.2 - _ZN4geos9operation5valid23ConnectedInteriorTester14buildEdgeRingsEPSt6vectorIPNS_9geomgraph7EdgeEndESaIS6_EERS3_IPNS4_8EdgeRingESaISB_EE@Base 3.4.2 - _ZN4geos9operation5valid23ConnectedInteriorTester17visitInteriorRingEPKNS_4geom10LineStringERNS_9geomgraph11PlanarGraphE@Base 3.4.2 - _ZN4geos9operation5valid23ConnectedInteriorTester18findDifferentPointEPKNS_4geom18CoordinateSequenceERKNS3_10CoordinateE@Base 3.4.2 - _ZN4geos9operation5valid23ConnectedInteriorTester19visitShellInteriorsEPKNS_4geom8GeometryERNS_9geomgraph11PlanarGraphE@Base 3.4.2 - _ZN4geos9operation5valid23ConnectedInteriorTester20isInteriorsConnectedEv@Base 3.4.2 - _ZN4geos9operation5valid23ConnectedInteriorTester21hasUnvisitedShellEdgeEPSt6vectorIPNS_9geomgraph8EdgeRingESaIS6_EE@Base 3.4.2 - _ZN4geos9operation5valid23ConnectedInteriorTester24setInteriorEdgesInResultERNS_9geomgraph11PlanarGraphE@Base 3.4.2 - _ZN4geos9operation5valid23ConnectedInteriorTester24visitLinkedDirectedEdgesEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 - _ZN4geos9operation5valid23ConnectedInteriorTesterC1ERNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid23ConnectedInteriorTesterC2ERNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid23IndexedNestedHoleTester8isNestedEv@Base 3.10.0 - _ZN4geos9operation5valid23IndexedNestedHoleTester9loadIndexEv@Base 3.10.0 - (subst)_ZN4geos9operation5valid23PolygonTopologyAnalyzer13ringIndexPrevEPKNS_4geom18CoordinateSequenceE{size_t}@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer15createSegStringEPKNS_4geom10LinearRingEPKNS1_11PolygonRingE@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer15getPolygonRingsERKSt6vectorIPNS_6noding13SegmentStringESaIS6_EE@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer15isSegmentInRingEPKNS_4geom10CoordinateES6_PKNS3_10LinearRingE@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer17createPolygonRingEPKNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer17createPolygonRingEPKNS_4geom10LinearRingEiPNS1_11PolygonRingE@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer20createSegmentStringsEPKNS_4geom8GeometryEb@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer20findSelfIntersectionEPKNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer20intersectingSegIndexEPKNS_4geom18CoordinateSequenceEPKNS3_10CoordinateE@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer22isInteriorDisconnectedEv@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer23isIncidentSegmentInRingEPKNS_4geom10CoordinateES6_PKNS3_18CoordinateSequenceE@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer36checkInteriorDisconnectedByHoleCycleEv@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzer36checkInteriorDisconnectedBySelfTouchEv@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzerC1EPKNS_4geom8GeometryEb@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzerC2EPKNS_4geom8GeometryEb@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzerD1Ev@Base 3.10.0 - _ZN4geos9operation5valid23PolygonTopologyAnalyzerD2Ev@Base 3.10.0 - _ZN4geos9operation5valid23TopologyValidationError6errMsgE@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationErrorC1Ei@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationErrorC1EiRKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationErrorC2Ei@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationErrorC2EiRKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation5valid26IndexedNestedPolygonTester10getLocatorEPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos9operation5valid26IndexedNestedPolygonTester15findNestedPointEPKNS_4geom10LinearRingEPKNS3_7PolygonERNS_9algorithm6locate25IndexedPointInAreaLocatorERNS3_10CoordinateE@Base 3.10.0 - _ZN4geos9operation5valid26IndexedNestedPolygonTester20findSegmentInPolygonEPKNS_4geom10LinearRingEPKNS3_7PolygonERNS3_10CoordinateE@Base 3.10.0 - _ZN4geos9operation5valid26IndexedNestedPolygonTester8isNestedEv@Base 3.10.0 - _ZN4geos9operation5valid26IndexedNestedPolygonTester9loadIndexEv@Base 3.10.0 - _ZN4geos9operation5valid26IndexedNestedPolygonTesterC1EPKNS_4geom12MultiPolygonE@Base 3.10.0 - _ZN4geos9operation5valid26IndexedNestedPolygonTesterC2EPKNS_4geom12MultiPolygonE@Base 3.10.0 - _ZN4geos9operation5valid26RepeatedInvalidPointFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9operation5valid26RepeatedInvalidPointFilterD0Ev@Base 3.10.0 - _ZN4geos9operation5valid26RepeatedInvalidPointFilterD1Ev@Base 3.10.0 - _ZN4geos9operation5valid26RepeatedInvalidPointFilterD2Ev@Base 3.10.0 - _ZN4geos9operation5valid27PolygonIntersectionAnalyzer12addSelfTouchEPKNS_6noding13SegmentStringERKNS_4geom10CoordinateEPS9_SB_SB_SB_@Base 3.10.0 - _ZN4geos9operation5valid27PolygonIntersectionAnalyzer14addDoubleTouchEPKNS_6noding13SegmentStringES6_RKNS_4geom10CoordinateE@Base 3.10.0 - (subst)_ZN4geos9operation5valid27PolygonIntersectionAnalyzer20processIntersectionsEPNS_6noding13SegmentStringE{size_t}S5_{size_t}@Base 3.10.0 - (subst)_ZN4geos9operation5valid27PolygonIntersectionAnalyzer23findInvalidIntersectionEPKNS_6noding13SegmentStringE{size_t}S6_{size_t}@Base 3.10.0 - _ZN4geos9operation5valid27PolygonIntersectionAnalyzerD0Ev@Base 3.10.0 - _ZN4geos9operation5valid27PolygonIntersectionAnalyzerD1Ev@Base 3.10.0 - _ZN4geos9operation5valid27PolygonIntersectionAnalyzerD2Ev@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp10logInvalidEiPKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp15isValidGeometryEPKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp16checkHolesNestedEPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp17checkShellsNestedEPKNS_4geom12MultiPolygonE@Base 3.10.0 - (subst)_ZN4geos9operation5valid9IsValidOp17checkTooFewPointsEPKNS_4geom10LineStringE{size_t}@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp18checkRingNotClosedEPKNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp18getValidationErrorEv@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp19checkRingsNotClosedEPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp21checkRingTooFewPointsEPKNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp22checkAreaIntersectionsERNS1_23PolygonTopologyAnalyzerE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp22checkCoordinateInvalidEPKNS_4geom18CoordinateSequenceE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp22checkCoordinateInvalidEPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp22checkHolesOutsideShellEPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp22checkRingsTooFewPointsEPKNS_4geom7PolygonE@Base 3.10.0 - (subst)_ZN4geos9operation5valid9IsValidOp24isNonRepeatedSizeAtLeastEPKNS_4geom10LineStringE{size_t}@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp25checkInteriorDisconnectedERNS1_23PolygonTopologyAnalyzerE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp25checkSelfIntersectingRingEPKNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp25findHoleOutsideShellPointEPKNS_4geom10LinearRingES6_@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom10LineStringE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom10LinearRingE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom10MultiPointE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom12MultiPolygonE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom18GeometryCollectionE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom5PointE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom7PolygonE@Base 3.10.0 - _ZN4geos9operation5valid9IsValidOp7isValidEv@Base 3.4.2 - _ZN4geos9operation5valid9MakeValid5buildEPKNS_4geom8GeometryE@Base 3.8.0 - _ZN4geos9operation6buffer13BufferBuilder10depthDeltaERKNS_9geomgraph5LabelE@Base 3.4.2 - _ZN4geos9operation6buffer13BufferBuilder14buildSubgraphsERKSt6vectorIPNS1_14BufferSubgraphESaIS5_EERNS0_7overlay14PolygonBuilderE@Base 3.4.2 - _ZN4geos9operation6buffer13BufferBuilder15createSubgraphsEPNS_9geomgraph11PlanarGraphERSt6vectorIPNS1_14BufferSubgraphESaIS8_EE@Base 3.4.2 - _ZN4geos9operation6buffer13BufferBuilder16insertUniqueEdgeEPNS_9geomgraph4EdgeE@Base 3.4.2 - _ZN4geos9operation6buffer13BufferBuilder17computeNodedEdgesERSt6vectorIPNS_6noding13SegmentStringESaIS6_EEPKNS_4geom14PrecisionModelE@Base 3.4.2 - _ZN4geos9operation6buffer13BufferBuilder21bufferLineSingleSidedEPKNS_4geom8GeometryEdb@Base 3.4.2 - _ZN4geos9operation6buffer13BufferBuilder6bufferEPKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos9operation6buffer13BufferBuilder8getNoderEPKNS_4geom14PrecisionModelE@Base 3.4.2 - _ZN4geos9operation6buffer13BufferBuilderD1Ev@Base 3.4.2 - _ZN4geos9operation6buffer13BufferBuilderD2Ev@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph11getEnvelopeEv@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph12addReachableEPNS_9geomgraph4NodeE@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph12computeDepthEi@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph13computeDepthsEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph13copySymDepthsEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph15findResultEdgesEv@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph16computeNodeDepthEPNS_9geomgraph4NodeE@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph17clearVisitedEdgesEv@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph3addEPNS_9geomgraph4NodeEPSt6vectorIS5_SaIS5_EE@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph6createEPNS_9geomgraph4NodeE@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph8containsERSt3setIPNS_9geomgraph4NodeESt4lessIS6_ESaIS6_EES6_@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraph9compareToEPS2_@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraphC1Ev@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraphC2Ev@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraphD1Ev@Base 3.4.2 - _ZN4geos9operation6buffer14BufferSubgraphD2Ev@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParameters19DEFAULT_MITRE_LIMITE@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParameters19bufferDistanceErrorEi@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParameters19setQuadrantSegmentsEi@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParametersC1Ei@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParametersC1EiNS2_11EndCapStyleE@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParametersC1EiNS2_11EndCapStyleENS2_9JoinStyleEd@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParametersC1Ev@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParametersC2Ei@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParametersC2EiNS2_11EndCapStyleE@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParametersC2EiNS2_11EndCapStyleENS2_9JoinStyleEd@Base 3.4.2 - _ZN4geos9operation6buffer16BufferParametersC2Ev@Base 3.4.2 - _ZN4geos9operation6buffer16BufferSubgraphGTEPNS1_14BufferSubgraphES3_@Base 3.4.2 - _ZN4geos9operation6buffer18OffsetCurveBuilder12getLineCurveEPKNS_4geom18CoordinateSequenceEdRSt6vectorIPS4_SaIS8_EE@Base 3.4.2 - _ZN4geos9operation6buffer18OffsetCurveBuilder12getRingCurveEPKNS_4geom18CoordinateSequenceEidRSt6vectorIPS4_SaIS8_EE@Base 3.4.2 - _ZN4geos9operation6buffer18OffsetCurveBuilder15SIMPLIFY_FACTORE@Base 3.4.2 - _ZN4geos9operation6buffer18OffsetCurveBuilder17computePointCurveERKNS_4geom10CoordinateERNS1_22OffsetSegmentGeneratorE@Base 3.4.2 - _ZN4geos9operation6buffer18OffsetCurveBuilder17isLineOffsetEmptyEd@Base 3.9.0 - _ZN4geos9operation6buffer18OffsetCurveBuilder17simplifyToleranceEd@Base 3.4.2 - _ZN4geos9operation6buffer18OffsetCurveBuilder22computeLineBufferCurveERKNS_4geom18CoordinateSequenceERNS1_22OffsetSegmentGeneratorE@Base 3.4.2 - _ZN4geos9operation6buffer18OffsetCurveBuilder22computeRingBufferCurveERKNS_4geom18CoordinateSequenceEiRNS1_22OffsetSegmentGeneratorE@Base 3.4.2 - _ZN4geos9operation6buffer18OffsetCurveBuilder23getSingleSidedLineCurveEPKNS_4geom18CoordinateSequenceEdRSt6vectorIPS4_SaIS8_EEbb@Base 3.4.2 - _ZN4geos9operation6buffer18OffsetCurveBuilder29computeSingleSidedBufferCurveERKNS_4geom18CoordinateSequenceEbRNS1_22OffsetSegmentGeneratorE@Base 3.4.2 - _ZN4geos9operation6buffer18OffsetCurveBuilder9getSegGenEd@Base 3.4.2 - (arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZN4geos9operation6buffer19OffsetSegmentString5addPtERKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9operation6buffer19RightmostEdgeFinder16getRightmostSideEPNS_9geomgraph12DirectedEdgeEi@Base 3.4.2 - _ZN4geos9operation6buffer19RightmostEdgeFinder23findRightmostEdgeAtNodeEv@Base 3.4.2 - _ZN4geos9operation6buffer19RightmostEdgeFinder25findRightmostEdgeAtVertexEv@Base 3.4.2 - _ZN4geos9operation6buffer19RightmostEdgeFinder25getRightmostSideOfSegmentEPNS_9geomgraph12DirectedEdgeEi@Base 3.4.2 - _ZN4geos9operation6buffer19RightmostEdgeFinder27checkForRightmostCoordinateEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 - _ZN4geos9operation6buffer19RightmostEdgeFinder8findEdgeEPSt6vectorIPNS_9geomgraph12DirectedEdgeESaIS6_EE@Base 3.4.2 - _ZN4geos9operation6buffer19RightmostEdgeFinderC1Ev@Base 3.4.2 - _ZN4geos9operation6buffer19RightmostEdgeFinderC2Ev@Base 3.4.2 - _ZN4geos9operation6buffer20SubgraphDepthLocater19findStabbedSegmentsERKNS_4geom10CoordinateEPNS_9geomgraph12DirectedEdgeERSt6vectorIPNS1_12DepthSegmentESaISC_EE@Base 3.4.2 - _ZN4geos9operation6buffer20SubgraphDepthLocater19findStabbedSegmentsERKNS_4geom10CoordinateEPSt6vectorIPNS_9geomgraph12DirectedEdgeESaISA_EERS7_IPNS1_12DepthSegmentESaISF_EE@Base 3.4.2 - _ZN4geos9operation6buffer20SubgraphDepthLocater19findStabbedSegmentsERKNS_4geom10CoordinateERSt6vectorIPNS1_12DepthSegmentESaIS9_EE@Base 3.4.2 - _ZN4geos9operation6buffer20SubgraphDepthLocater8getDepthERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder10addPolygonEPKNS_4geom7PolygonE@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder11addRingSideEPKNS_4geom18CoordinateSequenceEdiNS3_8LocationES7_@Base 3.9.0 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder11maxDistanceEPKNS_4geom18CoordinateSequenceES6_@Base 3.10.0 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder13addCollectionEPKNS_4geom18GeometryCollectionE@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder13addLineStringEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder16addRingBothSidesEPKNS_4geom18CoordinateSequenceEd@Base 3.9.0 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder18isErodedCompletelyEPKNS_4geom10LinearRingEd@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder19isRingCurveInvertedEPKNS_4geom18CoordinateSequenceEdS6_@Base 3.10.0 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder26isTriangleErodedCompletelyEPKNS_4geom18CoordinateSequenceEd@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder3addERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder8addCurveEPNS_4geom18CoordinateSequenceENS3_8LocationES6_@Base 3.8.0 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder8addPointEPKNS_4geom5PointE@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder9addCurvesERKSt6vectorIPNS_4geom18CoordinateSequenceESaIS6_EENS4_8LocationESB_@Base 3.8.0 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder9getCurvesEv@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilderC1ERKNS_4geom8GeometryEdRNS1_18OffsetCurveBuilderE@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilderC2ERKNS_4geom8GeometryEdRNS1_18OffsetCurveBuilderE@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilderD1Ev@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilderD2Ev@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator12addBevelJoinERKNS_4geom11LineSegmentES6_@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator12addCollinearEb@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator12addMitreJoinERKNS_4geom10CoordinateERKNS3_11LineSegmentES9_d@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator12createCircleERKNS_4geom10CoordinateEd@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator12createSquareERKNS_4geom10CoordinateEd@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator13addInsideTurnEib@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator13addLineEndCapERKNS_4geom10CoordinateES6_@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator14addNextSegmentERKNS_4geom10CoordinateEb@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator14addOutsideTurnEib@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator15SIMPLIFY_FACTORE@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator16initSideSegmentsERKNS_4geom10CoordinateES6_i@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator17addDirectedFilletERKNS_4geom10CoordinateES6_S6_id@Base 3.9.0 - _ZN4geos9operation6buffer22OffsetSegmentGenerator17addDirectedFilletERKNS_4geom10CoordinateEddid@Base 3.9.0 - _ZN4geos9operation6buffer22OffsetSegmentGenerator19addLimitedMitreJoinERKNS_4geom11LineSegmentES6_dd@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator20computeOffsetSegmentERKNS_4geom11LineSegmentEidRS4_@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator32OFFSET_SEGMENT_SEPARATION_FACTORE@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator33CURVE_VERTEX_SNAP_DISTANCE_FACTORE@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator39INSIDE_TURN_VERTEX_SNAP_DISTANCE_FACTORE@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGenerator4initEd@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGeneratorC1EPKNS_4geom14PrecisionModelERKNS1_16BufferParametersEd@Base 3.4.2 - _ZN4geos9operation6buffer22OffsetSegmentGeneratorC2EPKNS_4geom14PrecisionModelERKNS1_16BufferParametersEd@Base 3.4.2 - _ZN4geos9operation6buffer25BufferInputLineSimplifier24deleteShallowConcavitiesEv@Base 3.4.2 - _ZN4geos9operation6buffer25BufferInputLineSimplifier8simplifyERKNS_4geom18CoordinateSequenceEd@Base 3.4.2 - _ZN4geos9operation6buffer25BufferInputLineSimplifier8simplifyEd@Base 3.4.2 - _ZN4geos9operation6buffer25BufferInputLineSimplifierC1ERKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9operation6buffer25BufferInputLineSimplifierC2ERKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9operation6buffer8BufferOp12bufferByZeroEPKNS_4geom8GeometryEb@Base 3.10.0 - _ZN4geos9operation6buffer8BufferOp15computeGeometryEv@Base 3.4.2 - _ZN4geos9operation6buffer8BufferOp15extractPolygonsEPNS_4geom8GeometryERSt6vectorISt10unique_ptrIS4_St14default_deleteIS4_EESaISA_EE@Base 3.10.0 - _ZN4geos9operation6buffer8BufferOp17getResultGeometryEd@Base 3.4.2 - _ZN4geos9operation6buffer8BufferOp20bufferFixedPrecisionERKNS_4geom14PrecisionModelE@Base 3.4.2 - _ZN4geos9operation6buffer8BufferOp20precisionScaleFactorEPKNS_4geom8GeometryEdi@Base 3.4.2 - _ZN4geos9operation6buffer8BufferOp22bufferReducedPrecisionEi@Base 3.4.2 - _ZN4geos9operation6buffer8BufferOp22bufferReducedPrecisionEv@Base 3.4.2 - _ZN4geos9operation6buffer8BufferOp23bufferOriginalPrecisionEv@Base 3.4.2 - _ZN4geos9operation6buffer8BufferOp8bufferOpEPKNS_4geom8GeometryEdii@Base 3.4.2 - _ZN4geos9operation6buffer8BufferOpD1Ev@Base 3.10.0 - _ZN4geos9operation6buffer8BufferOpD2Ev@Base 3.10.0 - _ZN4geos9operation6bufferlsERSoRKNS1_14BufferSubgraphE@Base 3.4.2 - _ZN4geos9operation6relate10RelateNode17updateIMFromEdgesERNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9operation6relate10RelateNode9computeIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9operation6relate10RelateNodeC1ERKNS_4geom10CoordinateEPNS_9geomgraph11EdgeEndStarE@Base 3.4.2 - _ZN4geos9operation6relate10RelateNodeC2ERKNS_4geom10CoordinateEPNS_9geomgraph11EdgeEndStarE@Base 3.4.2 - _ZN4geos9operation6relate10RelateNodeD0Ev@Base 3.4.2 - _ZN4geos9operation6relate10RelateNodeD1Ev@Base 3.4.2 - _ZN4geos9operation6relate10RelateNodeD2Ev@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundle11getEdgeEndsEv@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundle12computeLabelERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundle14computeLabelOnEhRKNS_9algorithm16BoundaryNodeRuleE@Base 3.10.0 - _ZN4geos9operation6relate13EdgeEndBundle16computeLabelSideEhj@Base 3.10.0 - _ZN4geos9operation6relate13EdgeEndBundle17computeLabelSidesEh@Base 3.10.0 - _ZN4geos9operation6relate13EdgeEndBundle6insertEPNS_9geomgraph7EdgeEndE@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundle8updateIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundleC1EPNS_9geomgraph7EdgeEndE@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundleC2EPNS_9geomgraph7EdgeEndE@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundleD0Ev@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundleD1Ev@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundleD2Ev@Base 3.4.2 - _ZN4geos9operation6relate14EdgeEndBuilder15computeEdgeEndsEPNS_9geomgraph4EdgeEPSt6vectorIPNS3_7EdgeEndESaIS8_EE@Base 3.4.2 - _ZN4geos9operation6relate14EdgeEndBuilder15computeEdgeEndsEPSt6vectorIPNS_9geomgraph4EdgeESaIS6_EE@Base 3.4.2 - _ZN4geos9operation6relate14EdgeEndBuilder20createEdgeEndForNextEPNS_9geomgraph4EdgeEPSt6vectorIPNS3_7EdgeEndESaIS8_EEPKNS3_16EdgeIntersectionESE_@Base 3.8.0 - _ZN4geos9operation6relate14EdgeEndBuilder20createEdgeEndForPrevEPNS_9geomgraph4EdgeEPSt6vectorIPNS3_7EdgeEndESaIS8_EEPKNS3_16EdgeIntersectionESE_@Base 3.8.0 - _ZN4geos9operation6relate14RelateComputer14insertEdgeEndsEPSt6vectorIPNS_9geomgraph7EdgeEndESaIS6_EE@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer14labelNodeEdgesEv@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer17computeDisjointIMEPNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer17labelIsolatedEdgeEPNS_9geomgraph4EdgeEhPKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9operation6relate14RelateComputer17labelIsolatedNodeEPNS_9geomgraph4NodeEh@Base 3.10.0 - _ZN4geos9operation6relate14RelateComputer18copyNodesAndLabelsEh@Base 3.10.0 - _ZN4geos9operation6relate14RelateComputer18labelIsolatedEdgesEhh@Base 3.10.0 - _ZN4geos9operation6relate14RelateComputer18labelIsolatedNodesEv@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer22labelIntersectionNodesEh@Base 3.10.0 - _ZN4geos9operation6relate14RelateComputer24computeIntersectionNodesEh@Base 3.10.0 - _ZN4geos9operation6relate14RelateComputer27computeProperIntersectionIMEPNS_9geomgraph5index18SegmentIntersectorEPNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer8updateIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer9computeIMEv@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputerC1EPSt6vectorIPNS_9geomgraph13GeometryGraphESaIS6_EE@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputerC2EPSt6vectorIPNS_9geomgraph13GeometryGraphESaIS6_EE@Base 3.4.2 - _ZN4geos9operation6relate15RelateNodeGraph10getNodeMapEv@Base 3.4.2 - _ZN4geos9operation6relate15RelateNodeGraph14insertEdgeEndsEPSt6vectorIPNS_9geomgraph7EdgeEndESaIS6_EE@Base 3.4.2 - _ZN4geos9operation6relate15RelateNodeGraph18copyNodesAndLabelsEPNS_9geomgraph13GeometryGraphEh@Base 3.10.0 - _ZN4geos9operation6relate15RelateNodeGraph24computeIntersectionNodesEPNS_9geomgraph13GeometryGraphEh@Base 3.10.0 - _ZN4geos9operation6relate15RelateNodeGraph5buildEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation6relate15RelateNodeGraphC1Ev@Base 3.4.2 - _ZN4geos9operation6relate15RelateNodeGraphC2Ev@Base 3.4.2 - _ZN4geos9operation6relate15RelateNodeGraphD0Ev@Base 3.4.2 - _ZN4geos9operation6relate15RelateNodeGraphD1Ev@Base 3.4.2 - _ZN4geos9operation6relate15RelateNodeGraphD2Ev@Base 3.4.2 - _ZN4geos9operation6relate17EdgeEndBundleStar6insertEPNS_9geomgraph7EdgeEndE@Base 3.4.2 - _ZN4geos9operation6relate17EdgeEndBundleStar8updateIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 - _ZN4geos9operation6relate17EdgeEndBundleStarD0Ev@Base 3.4.2 - _ZN4geos9operation6relate17EdgeEndBundleStarD1Ev@Base 3.4.2 - _ZN4geos9operation6relate17EdgeEndBundleStarD2Ev@Base 3.4.2 - _ZN4geos9operation6relate17RelateNodeFactory8instanceEv@Base 3.4.2 - _ZN4geos9operation6relate17RelateNodeFactoryD0Ev@Base 3.4.2 - _ZN4geos9operation6relate17RelateNodeFactoryD1Ev@Base 3.4.2 - _ZN4geos9operation6relate17RelateNodeFactoryD2Ev@Base 3.4.2 - _ZN4geos9operation6relate8RelateOp21getIntersectionMatrixEv@Base 3.4.2 - _ZN4geos9operation6relate8RelateOp6relateEPKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation6relate8RelateOp6relateEPKNS_4geom8GeometryES6_RKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9operation6relate8RelateOpC1EPKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation6relate8RelateOpC1EPKNS_4geom8GeometryES6_RKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9operation6relate8RelateOpC2EPKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation6relate8RelateOpC2EPKNS_4geom8GeometryES6_RKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9operation6relate8RelateOpD0Ev@Base 3.4.2 - _ZN4geos9operation6relate8RelateOpD1Ev@Base 3.4.2 - _ZN4geos9operation6relate8RelateOpD2Ev@Base 3.4.2 - _ZN4geos9operation7overlay11LineBuilder10buildLinesENS1_9OverlayOp6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay11LineBuilder10propagateZEPNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9operation7overlay11LineBuilder12collectLinesENS1_9OverlayOp6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay11LineBuilder15collectLineEdgeEPNS_9geomgraph12DirectedEdgeENS1_9OverlayOp6OpCodeEPSt6vectorIPNS3_4EdgeESaISA_EE@Base 3.4.2 - _ZN4geos9operation7overlay11LineBuilder17labelIsolatedLineEPNS_9geomgraph4EdgeEh@Base 3.10.0 - _ZN4geos9operation7overlay11LineBuilder18labelIsolatedLinesEPSt6vectorIPNS_9geomgraph4EdgeESaIS6_EE@Base 3.4.2 - _ZN4geos9operation7overlay11LineBuilder20findCoveredLineEdgesEv@Base 3.4.2 - _ZN4geos9operation7overlay11LineBuilder24collectBoundaryTouchEdgeEPNS_9geomgraph12DirectedEdgeENS1_9OverlayOp6OpCodeEPSt6vectorIPNS3_4EdgeESaISA_EE@Base 3.4.2 - _ZN4geos9operation7overlay11LineBuilder5buildENS1_9OverlayOp6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay11LineBuilderC1EPNS1_9OverlayOpEPKNS_4geom15GeometryFactoryEPNS_9algorithm12PointLocatorE@Base 3.4.2 - _ZN4geos9operation7overlay11LineBuilderC2EPNS1_9OverlayOpEPKNS_4geom15GeometryFactoryEPNS_9algorithm12PointLocatorE@Base 3.4.2 - _ZN4geos9operation7overlay12EdgeSetNoder13getNodedEdgesEv@Base 3.4.2 - _ZN4geos9operation7overlay12EdgeSetNoder8addEdgesEPSt6vectorIPNS_9geomgraph4EdgeESaIS6_EE@Base 3.4.2 - _ZN4geos9operation7overlay12PointBuilder24filterCoveredNodeToPointEPKNS_9geomgraph4NodeE@Base 3.4.2 - _ZN4geos9operation7overlay12PointBuilder28extractNonCoveredResultNodesENS1_9OverlayOp6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay12PointBuilder5buildENS1_9OverlayOp6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilder11getPolygonsEv@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilder14placeFreeHolesERSt6vectorINS2_11FastPIPRingESaIS4_EERS3_IPNS_9geomgraph8EdgeRingESaISA_EE@Base 3.8.0 - _ZN4geos9operation7overlay14PolygonBuilder15computePolygonsERSt6vectorIPNS_9geomgraph8EdgeRingESaIS6_EE@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilder17placePolygonHolesEPNS_9geomgraph8EdgeRingEPSt6vectorIPNS1_15MinimalEdgeRingESaIS8_EE@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilder18sortShellsAndHolesERSt6vectorIPNS1_15MaximalEdgeRingESaIS5_EERS3_IPNS_9geomgraph8EdgeRingESaISB_EESE_@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilder21buildMaximalEdgeRingsEPKSt6vectorIPNS_9geomgraph12DirectedEdgeESaIS6_EERS3_IPNS1_15MaximalEdgeRingESaISC_EE@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilder21buildMinimalEdgeRingsERSt6vectorIPNS1_15MaximalEdgeRingESaIS5_EERS3_IPNS_9geomgraph8EdgeRingESaISB_EESE_S8_@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilder22findEdgeRingContainingEPNS_9geomgraph8EdgeRingERSt6vectorINS2_11FastPIPRingESaIS7_EE@Base 3.8.0 - _ZN4geos9operation7overlay14PolygonBuilder3addEPKSt6vectorIPNS_9geomgraph12DirectedEdgeESaIS6_EEPKS3_IPNS4_4NodeESaISC_EE@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilder3addEPNS_9geomgraph11PlanarGraphE@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilder9findShellEPSt6vectorIPNS1_15MinimalEdgeRingESaIS5_EE@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilderC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilderC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilderD1Ev@Base 3.4.2 - _ZN4geos9operation7overlay14PolygonBuilderD2Ev@Base 3.4.2 - _ZN4geos9operation7overlay15ElevationMatrix3addEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation7overlay15ElevationMatrix3addERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation7overlay15ElevationMatrix7getCellERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation7overlay15ElevationMatrixC1ERKNS_4geom8EnvelopeEjj@Base 3.4.2 - _ZN4geos9operation7overlay15ElevationMatrixC2ERKNS_4geom8EnvelopeEjj@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRing11setEdgeRingEPNS_9geomgraph12DirectedEdgeEPNS3_8EdgeRingE@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRing17buildMinimalRingsERSt6vectorIPNS1_15MinimalEdgeRingESaIS5_EE@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRing17buildMinimalRingsERSt6vectorIPNS_9geomgraph8EdgeRingESaIS6_EE@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRing17buildMinimalRingsEv@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRing36linkDirectedEdgesForMinimalEdgeRingsEv@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRing7getNextEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRingC1EPNS_9geomgraph12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRingC2EPNS_9geomgraph12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRingD0Ev@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRingD1Ev@Base 3.4.2 - _ZN4geos9operation7overlay15MaximalEdgeRingD2Ev@Base 3.4.2 - _ZN4geos9operation7overlay15MinimalEdgeRing11setEdgeRingEPNS_9geomgraph12DirectedEdgeEPNS3_8EdgeRingE@Base 3.4.2 - _ZN4geos9operation7overlay15MinimalEdgeRing7getNextEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 - _ZN4geos9operation7overlay15MinimalEdgeRingC1EPNS_9geomgraph12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation7overlay15MinimalEdgeRingC2EPNS_9geomgraph12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation7overlay15MinimalEdgeRingD0Ev@Base 3.4.2 - _ZN4geos9operation7overlay15MinimalEdgeRingD1Ev@Base 3.4.2 - _ZN4geos9operation7overlay15MinimalEdgeRingD2Ev@Base 3.4.2 - _ZN4geos9operation7overlay18OverlayNodeFactory8instanceEv@Base 3.4.2 - _ZN4geos9operation7overlay18OverlayNodeFactoryD0Ev@Base 3.4.2 - _ZN4geos9operation7overlay18OverlayNodeFactoryD1Ev@Base 3.4.2 - _ZN4geos9operation7overlay18OverlayNodeFactoryD2Ev@Base 3.4.2 - _ZN4geos9operation7overlay19ElevationMatrixCell3addERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation7overlay19ElevationMatrixCell3addEd@Base 3.4.2 - _ZN4geos9operation7overlay19ElevationMatrixCellC1Ev@Base 3.4.2 - _ZN4geos9operation7overlay19ElevationMatrixCellC2Ev@Base 3.4.2 - _ZN4geos9operation7overlay21ElevationMatrixFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation7overlay21ElevationMatrixFilterC1ERNS1_15ElevationMatrixE@Base 3.4.2 - _ZN4geos9operation7overlay21ElevationMatrixFilterC2ERNS1_15ElevationMatrixE@Base 3.4.2 - _ZN4geos9operation7overlay21ElevationMatrixFilterD0Ev@Base 3.4.2 - _ZN4geos9operation7overlay21ElevationMatrixFilterD1Ev@Base 3.4.2 - _ZN4geos9operation7overlay21ElevationMatrixFilterD2Ev@Base 3.4.2 - _ZN4geos9operation7overlay4snap13SnapOverlayOp13prepareResultERNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation7overlay4snap13SnapOverlayOp16removeCommonBitsERKNS_4geom8GeometryES7_RNS4_11GeomPtrPairE@Base 3.4.2 - _ZN4geos9operation7overlay4snap13SnapOverlayOp17getResultGeometryENS1_9OverlayOp6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay4snap13SnapOverlayOp20computeSnapToleranceEv@Base 3.4.2 - _ZN4geos9operation7overlay4snap13SnapOverlayOp4snapERNS_4geom11GeomPtrPairE@Base 3.4.2 - _ZN4geos9operation7overlay4snap15GeometrySnapper10snapToSelfERKNS_4geom8GeometryEdb@Base 3.4.2 - _ZN4geos9operation7overlay4snap15GeometrySnapper10snapToSelfEdb@Base 3.4.2 - _ZN4geos9operation7overlay4snap15GeometrySnapper19snapPrecisionFactorE@Base 3.4.2 - _ZN4geos9operation7overlay4snap15GeometrySnapper24extractTargetCoordinatesERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation7overlay4snap15GeometrySnapper27computeOverlaySnapToleranceERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation7overlay4snap15GeometrySnapper27computeOverlaySnapToleranceERKNS_4geom8GeometryES7_@Base 3.4.2 - _ZN4geos9operation7overlay4snap15GeometrySnapper29computeSizeBasedSnapToleranceERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation7overlay4snap15GeometrySnapper4snapERKNS_4geom8GeometryES7_dRNS4_11GeomPtrPairE@Base 3.4.2 - _ZN4geos9operation7overlay4snap15GeometrySnapper6snapToERKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos9operation7overlay4snap15SnapTransformer20transformCoordinatesEPKNS_4geom18CoordinateSequenceEPKNS4_8GeometryE@Base 3.4.2 - (arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZN4geos9operation7overlay4snap15SnapTransformer8snapLineEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 - _ZN4geos9operation7overlay4snap15SnapTransformerD0Ev@Base 3.4.2 - _ZN4geos9operation7overlay4snap15SnapTransformerD1Ev@Base 3.4.2 - _ZN4geos9operation7overlay4snap15SnapTransformerD2Ev@Base 3.4.2 - _ZN4geos9operation7overlay4snap17LineStringSnapper12snapSegmentsERNS_4geom14CoordinateListERKSt6vectorIPKNS4_10CoordinateESaISA_EE@Base 3.4.2 - _ZN4geos9operation7overlay4snap17LineStringSnapper12snapVerticesERNS_4geom14CoordinateListERKSt6vectorIPKNS4_10CoordinateESaISA_EE@Base 3.4.2 - _ZN4geos9operation7overlay4snap17LineStringSnapper16findVertexToSnapERKNS_4geom10CoordinateESt14_List_iteratorIS5_ES9_@Base 3.4.2 - _ZN4geos9operation7overlay4snap17LineStringSnapper17findSegmentToSnapERKNS_4geom10CoordinateESt14_List_iteratorIS5_ES9_@Base 3.4.2 - _ZN4geos9operation7overlay4snap17LineStringSnapper17findSnapForVertexERKNS_4geom10CoordinateERKSt6vectorIPS6_SaIS9_EE@Base 3.4.2 - _ZN4geos9operation7overlay4snap17LineStringSnapper6snapToERKSt6vectorIPKNS_4geom10CoordinateESaIS8_EE@Base 3.4.2 - _ZN4geos9operation7overlay8validate17FuzzyPointLocator11getLineWorkERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation7overlay8validate17FuzzyPointLocator11getLocationERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation7overlay8validate17FuzzyPointLocator15extractLineWorkERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation7overlay8validate17FuzzyPointLocatorC1ERKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos9operation7overlay8validate17FuzzyPointLocatorC2ERKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos9operation7overlay8validate20OffsetPointGenerator13extractPointsEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation7overlay8validate20OffsetPointGenerator14computeOffsetsERKNS_4geom10CoordinateES7_@Base 3.4.2 - _ZN4geos9operation7overlay8validate20OffsetPointGenerator9getPointsEv@Base 3.4.2 - _ZN4geos9operation7overlay8validate20OffsetPointGeneratorC1ERKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos9operation7overlay8validate20OffsetPointGeneratorC2ERKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos9operation7overlay8validate22OverlayResultValidator10addTestPtsERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation7overlay8validate22OverlayResultValidator11addVerticesERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation7overlay8validate22OverlayResultValidator13isValidResultENS1_9OverlayOp6OpCodeERSt6vectorINS_4geom8LocationESaIS8_EE@Base 3.8.0 - _ZN4geos9operation7overlay8validate22OverlayResultValidator32computeBoundaryDistanceToleranceERKNS_4geom8GeometryES7_@Base 3.4.2 - _ZN4geos9operation7overlay8validate22OverlayResultValidator7isValidENS1_9OverlayOp6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay8validate22OverlayResultValidator7isValidERKNS_4geom8GeometryES7_NS1_9OverlayOp6OpCodeES7_@Base 3.4.2 - _ZN4geos9operation7overlay8validate22OverlayResultValidator9testValidENS1_9OverlayOp6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay8validate22OverlayResultValidator9testValidENS1_9OverlayOp6OpCodeERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation7overlay8validate22OverlayResultValidatorC1ERKNS_4geom8GeometryES7_S7_@Base 3.4.2 - _ZN4geos9operation7overlay8validate22OverlayResultValidatorC2ERKNS_4geom8GeometryES7_S7_@Base 3.4.2 - _ZN4geos9operation7overlay8validate22OverlayResultValidatorD1Ev@Base 3.8.1 - _ZN4geos9operation7overlay8validate22OverlayResultValidatorD2Ev@Base 3.8.1 - _ZN4geos9operation7overlay9OverlayOp10copyPointsEhPKNS_4geom8EnvelopeE@Base 3.10.0 - _ZN4geos9operation7overlay9OverlayOp11getAverageZEPKNS_4geom7PolygonE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp11getAverageZEh@Base 3.10.0 - _ZN4geos9operation7overlay9OverlayOp12isCoveredByAERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp12isResultOfOpENS_4geom8LocationES4_NS2_6OpCodeE@Base 3.8.0 - _ZN4geos9operation7overlay9OverlayOp12isResultOfOpERKNS_9geomgraph5LabelENS2_6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp13isCoveredByLAERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp14computeOverlayENS2_6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp14mergeSymLabelsEv@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp15computeGeometryEPSt6vectorIPNS_4geom5PointESaIS6_EEPS3_IPNS4_10LineStringESaISB_EEPS3_IPNS4_7PolygonESaISG_EENS2_6OpCodeE@Base 3.8.0 - _ZN4geos9operation7overlay9OverlayOp15resultDimensionENS2_6OpCodeEPKNS_4geom8GeometryES7_@Base 3.8.0 - _ZN4geos9operation7overlay9OverlayOp16computeLabellingEv@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp16insertUniqueEdgeEPNS_9geomgraph4EdgeE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp17createEmptyResultENS2_6OpCodeEPKNS_4geom8GeometryES7_PKNS4_15GeometryFactoryE@Base 3.8.0 - _ZN4geos9operation7overlay9OverlayOp17getResultGeometryENS2_6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp17insertUniqueEdgesEPSt6vectorIPNS_9geomgraph4EdgeESaIS6_EEPKNS_4geom8EnvelopeE@Base 3.5.0 - _ZN4geos9operation7overlay9OverlayOp19findResultAreaEdgesENS2_6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp19labelIncompleteNodeEPNS_9geomgraph4NodeEh@Base 3.10.0 - _ZN4geos9operation7overlay9OverlayOp19updateNodeLabellingEv@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp20labelIncompleteNodesEv@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp21replaceCollapsedEdgesEv@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp23computeLabelsFromDepthsEv@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp25checkObviouslyWrongResultENS2_6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp26cancelDuplicateResultEdgesEv@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp9isCoveredERKNS_4geom10CoordinateEPSt6vectorIPNS3_10LineStringESaIS9_EE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp9isCoveredERKNS_4geom10CoordinateEPSt6vectorIPNS3_7PolygonESaIS9_EE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp9isCoveredERKNS_4geom10CoordinateEPSt6vectorIPNS3_8GeometryESaIS9_EE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp9overlayOpEPKNS_4geom8GeometryES6_NS2_6OpCodeE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOpC1EPKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOpC2EPKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOpD0Ev@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOpD1Ev@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOpD2Ev@Base 3.4.2 - (subst)_ZN4geos9operation8distance10DistanceOp13computeInsideERSt6vectorISt10unique_ptrINS1_16GeometryLocationESt14default_deleteIS5_EESaIS8_EERKS3_IPKNS_4geom7PolygonESaISF_EERSt5arrayIS8_L{size_t}2EE@Base 3.8.0 - _ZN4geos9operation8distance10DistanceOp13nearestPointsEPKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOp13nearestPointsEv@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOp16isWithinDistanceERKNS_4geom8GeometryES6_d@Base 3.4.2 - (subst)_ZN4geos9operation8distance10DistanceOp17updateMinDistanceERSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteIS5_EEL{size_t}2EEb@Base 3.8.0 - (subst)_ZN4geos9operation8distance10DistanceOp18computeMinDistanceEPKNS_4geom10LineStringEPKNS3_5PointERSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteISC_EEL{size_t}2EE@Base 3.8.0 - (subst)_ZN4geos9operation8distance10DistanceOp18computeMinDistanceEPKNS_4geom10LineStringES6_RSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteIS9_EEL{size_t}2EE@Base 3.8.0 - _ZN4geos9operation8distance10DistanceOp18computeMinDistanceEv@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOp20computeFacetDistanceEv@Base 3.4.2 - (subst)_ZN4geos9operation8distance10DistanceOp23computeMinDistanceLinesERKSt6vectorIPKNS_4geom10LineStringESaIS7_EESB_RSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteISE_EEL{size_t}2EE@Base 3.8.0 - (subst)_ZN4geos9operation8distance10DistanceOp24computeMinDistancePointsERKSt6vectorIPKNS_4geom5PointESaIS7_EESB_RSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteISE_EEL{size_t}2EE@Base 3.8.0 - _ZN4geos9operation8distance10DistanceOp26computeContainmentDistanceEv@Base 3.4.2 - (subst)_ZN4geos9operation8distance10DistanceOp29computeMinDistanceLinesPointsERKSt6vectorIPKNS_4geom10LineStringESaIS7_EERKS3_IPKNS4_5PointESaISE_EERSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteISL_EEL{size_t}2EE@Base 3.8.0 - _ZN4geos9operation8distance10DistanceOp8distanceEPKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOp8distanceERKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOp8distanceEv@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOpC1EPKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOpC1ERKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOpC1ERKNS_4geom8GeometryES6_d@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOpC2EPKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOpC2ERKNS_4geom8GeometryES6_@Base 3.4.2 - _ZN4geos9operation8distance10DistanceOpC2ERKNS_4geom8GeometryES6_d@Base 3.4.2 - _ZN4geos9operation8distance13FacetSequence15computeEnvelopeEv@Base 3.6.0 - (subst)_ZN4geos9operation8distance13FacetSequenceC1EPKNS_4geom18CoordinateSequenceE{size_t}{size_t}@Base 3.6.0 - (subst)_ZN4geos9operation8distance13FacetSequenceC1EPKNS_4geom8GeometryEPKNS3_18CoordinateSequenceE{size_t}{size_t}@Base 3.8.0 - (subst)_ZN4geos9operation8distance13FacetSequenceC2EPKNS_4geom18CoordinateSequenceE{size_t}{size_t}@Base 3.6.0 - (subst)_ZN4geos9operation8distance13FacetSequenceC2EPKNS_4geom8GeometryEPKNS3_18CoordinateSequenceE{size_t}{size_t}@Base 3.8.0 - _ZN4geos9operation8distance16GeometryLocation12isInsideAreaEv@Base 3.4.2 - _ZN4geos9operation8distance16GeometryLocation13getCoordinateEv@Base 3.4.2 - _ZN4geos9operation8distance16GeometryLocation15getSegmentIndexEv@Base 3.4.2 - _ZN4geos9operation8distance16GeometryLocation20getGeometryComponentEv@Base 3.4.2 - _ZN4geos9operation8distance16GeometryLocation8toStringB5cxx11Ev@Base 3.8.0 - _ZN4geos9operation8distance16GeometryLocationC1EPKNS_4geom8GeometryERKNS3_10CoordinateE@Base 3.4.2 - (subst)_ZN4geos9operation8distance16GeometryLocationC1EPKNS_4geom8GeometryE{size_t}RKNS3_10CoordinateE@Base 3.8.0 - _ZN4geos9operation8distance16GeometryLocationC2EPKNS_4geom8GeometryERKNS3_10CoordinateE@Base 3.4.2 - (subst)_ZN4geos9operation8distance16GeometryLocationC2EPKNS_4geom8GeometryE{size_t}RKNS3_10CoordinateE@Base 3.8.0 - _ZN4geos9operation8distance20IndexedFacetDistance13nearestPointsEPKNS_4geom8GeometryES6_@Base 3.8.0 - _ZN4geos9operation8distance20IndexedFacetDistance8distanceEPKNS_4geom8GeometryES6_@Base 3.7.0 - _ZN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeC1EOSt6vectorINS1_13FacetSequenceESaIS5_EE@Base 3.10.0 - _ZN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeC2EOSt6vectorINS1_13FacetSequenceESaIS5_EE@Base 3.10.0 - _ZN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeD0Ev@Base 3.9.0 - _ZN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeD1Ev@Base 3.9.0 - _ZN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeD2Ev@Base 3.9.0 - _ZN4geos9operation8distance24FacetSequenceTreeBuilder17addFacetSequencesEPKNS_4geom8GeometryEPKNS3_18CoordinateSequenceERSt6vectorINS1_13FacetSequenceESaISB_EE@Base 3.9.0 - _ZN4geos9operation8distance24FacetSequenceTreeBuilder21computeFacetSequencesEPKNS_4geom8GeometryE@Base 3.6.0 - _ZN4geos9operation8distance24FacetSequenceTreeBuilder5buildEPKNS_4geom8GeometryE@Base 3.6.0 - _ZN4geos9operation8distance27ConnectedElementPointFilter14getCoordinatesEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation8distance27ConnectedElementPointFilter9filter_roEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation8distance27ConnectedElementPointFilterD0Ev@Base 3.4.2 - _ZN4geos9operation8distance27ConnectedElementPointFilterD1Ev@Base 3.4.2 - _ZN4geos9operation8distance27ConnectedElementPointFilterD2Ev@Base 3.4.2 - _ZN4geos9operation8distance30ConnectedElementLocationFilter12getLocationsEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation8distance30ConnectedElementLocationFilter9filter_roEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation8distance30ConnectedElementLocationFilter9filter_rwEPNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation8distance30ConnectedElementLocationFilterD0Ev@Base 3.4.2 - _ZN4geos9operation8distance30ConnectedElementLocationFilterD1Ev@Base 3.4.2 - _ZN4geos9operation8distance30ConnectedElementLocationFilterD2Ev@Base 3.4.2 - _ZN4geos9operation8geounion12OverlapUnion11unionBufferEPKNS_4geom8GeometryES6_@Base 3.8.0 - _ZN4geos9operation8geounion12OverlapUnion15overlapEnvelopeEPKNS_4geom8GeometryES6_@Base 3.8.0 - _ZN4geos9operation8geounion12OverlapUnion17extractByEnvelopeERKNS_4geom8EnvelopeEPKNS3_8GeometryERSt6vectorISt10unique_ptrIS7_St14default_deleteIS7_EESaISE_EE@Base 3.8.0 - _ZN4geos9operation8geounion12OverlapUnion20isBorderSegmentsSameEPKNS_4geom8GeometryERKNS3_8EnvelopeE@Base 3.8.0 - _ZN4geos9operation8geounion12OverlapUnion21extractBorderSegmentsEPKNS_4geom8GeometryERKNS3_8EnvelopeERSt6vectorINS3_11LineSegmentESaISB_EE@Base 3.8.1 - _ZN4geos9operation8geounion12OverlapUnion21extractBorderSegmentsEPKNS_4geom8GeometryES6_RKNS3_8EnvelopeE@Base 3.8.0 - _ZN4geos9operation8geounion12OverlapUnion7combineERSt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EERSt6vectorIS8_SaIS8_EE@Base 3.8.0 - _ZN4geos9operation8geounion12OverlapUnion7doUnionEv@Base 3.8.0 - _ZN4geos9operation8geounion12OverlapUnion7isEqualERSt6vectorINS_4geom11LineSegmentESaIS5_EES8_@Base 3.8.1 - _ZN4geos9operation8geounion12OverlapUnion9unionFullEPKNS_4geom8GeometryES6_@Base 3.8.0 - (optional=templinst)_ZN4geos9operation8geounion12UnaryUnionOp12extractGeomsISt6vectorIPKNS_4geom8GeometryESaIS8_EEEEvRKT_@Base 3.10.0 - _ZN4geos9operation8geounion12UnaryUnionOp13unionWithNullESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EES8_@Base 3.7.0 - _ZN4geos9operation8geounion12UnaryUnionOp5UnionEv@Base 3.4.2 - _ZN4geos9operation8geounion12UnaryUnionOp7extractERKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation8geounion13CoverageUnion10polygonizeEPKNS_4geom15GeometryFactoryE@Base 3.8.0 - _ZN4geos9operation8geounion13CoverageUnion15extractSegmentsEPKNS_4geom10LineStringE@Base 3.8.0 - _ZN4geos9operation8geounion13CoverageUnion15extractSegmentsEPKNS_4geom7PolygonE@Base 3.8.0 - _ZN4geos9operation8geounion13CoverageUnion15extractSegmentsEPKNS_4geom8GeometryE@Base 3.8.0 - _ZN4geos9operation8geounion13CoverageUnion5UnionEPKNS_4geom8GeometryE@Base 3.8.0 - _ZN4geos9operation8geounion13UnionStrategy5UnionEOSt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EES9_@Base 3.10.0 - _ZN4geos9operation8geounion18PointGeometryUnion5UnionERKNS_4geom8GeometryES6_@Base 3.8.0 - _ZN4geos9operation8geounion18PointGeometryUnionC1ERKNS_4geom8GeometryES6_@Base 3.8.0 - _ZN4geos9operation8geounion18PointGeometryUnionC2ERKNS_4geom8GeometryES6_@Base 3.8.0 - (subst)_ZN4geos9operation8geounion20CascadedPolygonUnion11binaryUnionERKSt6vectorIPKNS_4geom8GeometryESaIS7_EE{size_t}{size_t}@Base 3.10.0 - _ZN4geos9operation8geounion20CascadedPolygonUnion18restrictToPolygonsESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EE@Base 3.7.0 - _ZN4geos9operation8geounion20CascadedPolygonUnion5UnionEPKNS_4geom12MultiPolygonE@Base 3.4.2 - _ZN4geos9operation8geounion20CascadedPolygonUnion5UnionEPSt6vectorIPNS_4geom7PolygonESaIS6_EE@Base 3.4.2 - _ZN4geos9operation8geounion20CascadedPolygonUnion5UnionEPSt6vectorIPNS_4geom7PolygonESaIS6_EEPNS1_13UnionStrategyE@Base 3.9.0 - _ZN4geos9operation8geounion20CascadedPolygonUnion5UnionEv@Base 3.4.2 - _ZN4geos9operation8geounion20CascadedPolygonUnion9unionSafeEOSt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EES9_@Base 3.10.0 - _ZN4geos9operation8geounion20ClassicUnionStrategy21unionPolygonsByBufferEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation8geounion20ClassicUnionStrategy5UnionEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation8geounion20ClassicUnionStrategyD0Ev@Base 3.9.0 - _ZN4geos9operation8geounion20ClassicUnionStrategyD1Ev@Base 3.9.0 - _ZN4geos9operation8geounion20ClassicUnionStrategyD2Ev@Base 3.9.0 - _ZN4geos9operation9linemerge10EdgeString12toLineStringEv@Base 3.4.2 - _ZN4geos9operation9linemerge10EdgeString14getCoordinatesEv@Base 3.4.2 - _ZN4geos9operation9linemerge10EdgeString3addEPNS1_21LineMergeDirectedEdgeE@Base 3.4.2 - _ZN4geos9operation9linemerge10EdgeStringC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation9linemerge10EdgeStringC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMerger20getMergedLineStringsEv@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMerger26buildEdgeStringsStartingAtEPNS_11planargraph4NodeE@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMerger27buildEdgeStringStartingWithEPNS1_21LineMergeDirectedEdgeE@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMerger32buildEdgeStringsForIsolatedLoopsEv@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMerger34buildEdgeStringsForNonDegree2NodesEv@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMerger35buildEdgeStringsForUnprocessedNodesEv@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMerger36buildEdgeStringsForObviousStartNodesEv@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMerger3addEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMerger3addEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMerger3addEPSt6vectorIPKNS_4geom8GeometryESaIS7_EE@Base 3.8.0 - _ZN4geos9operation9linemerge10LineMerger5mergeEv@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMergerC1Ev@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMergerC2Ev@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMergerD1Ev@Base 3.4.2 - _ZN4geos9operation9linemerge10LineMergerD2Ev@Base 3.4.2 - _ZN4geos9operation9linemerge13LineMergeEdgeC1EPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation9linemerge13LineMergeEdgeC2EPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation9linemerge13LineMergeEdgeD0Ev@Base 3.4.2 - _ZN4geos9operation9linemerge13LineMergeEdgeD1Ev@Base 3.4.2 - _ZN4geos9operation9linemerge13LineMergeEdgeD2Ev@Base 3.4.2 - _ZN4geos9operation9linemerge13LineSequencer11hasSequenceERNS_11planargraph8SubgraphE@Base 3.4.2 - _ZN4geos9operation9linemerge13LineSequencer11isSequencedEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation9linemerge13LineSequencer12findSequenceB5cxx11ERNS_11planargraph8SubgraphE@Base 3.5.1 - _ZN4geos9operation9linemerge13LineSequencer13findSequencesB5cxx11Ev@Base 3.5.1 - _ZN4geos9operation9linemerge13LineSequencer15computeSequenceEv@Base 3.4.2 - _ZN4geos9operation9linemerge13LineSequencer17addReverseSubpathEPKNS_11planargraph12DirectedEdgeERNSt7__cxx114listIPS4_SaIS9_EEESt14_List_iteratorIS9_Eb@Base 3.5.1 - _ZN4geos9operation9linemerge13LineSequencer20findLowestDegreeNodeERKNS_11planargraph8SubgraphE@Base 3.4.2 - _ZN4geos9operation9linemerge13LineSequencer22buildSequencedGeometryERKSt6vectorIPNSt7__cxx114listIPNS_11planargraph12DirectedEdgeESaIS8_EEESaISB_EE@Base 3.5.1 - _ZN4geos9operation9linemerge13LineSequencer27findUnvisitedBestOrientedDEEPKNS_11planargraph4NodeE@Base 3.4.2 - _ZN4geos9operation9linemerge13LineSequencer6delAllERSt6vectorIPNSt7__cxx114listIPNS_11planargraph12DirectedEdgeESaIS8_EEESaISB_EE@Base 3.5.1 - _ZN4geos9operation9linemerge13LineSequencer6orientEPNSt7__cxx114listIPNS_11planargraph12DirectedEdgeESaIS7_EEE@Base 3.5.1 - _ZN4geos9operation9linemerge13LineSequencer7addLineEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation9linemerge13LineSequencer7reverseERNSt7__cxx114listIPNS_11planargraph12DirectedEdgeESaIS7_EEE@Base 3.5.1 - _ZN4geos9operation9linemerge14LineMergeGraph7addEdgeEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation9linemerge14LineMergeGraph7getNodeERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation9linemerge14LineMergeGraphD0Ev@Base 3.4.2 - _ZN4geos9operation9linemerge14LineMergeGraphD1Ev@Base 3.4.2 - _ZN4geos9operation9linemerge14LineMergeGraphD2Ev@Base 3.4.2 - _ZN4geos9operation9linemerge21LineMergeDirectedEdge7getNextEv@Base 3.4.2 - _ZN4geos9operation9linemerge21LineMergeDirectedEdgeC1EPNS_11planargraph4NodeES5_RKNS_4geom10CoordinateEb@Base 3.4.2 - _ZN4geos9operation9linemerge21LineMergeDirectedEdgeC2EPNS_11planargraph4NodeES5_RKNS_4geom10CoordinateEb@Base 3.4.2 - _ZN4geos9operation9linemerge21LineMergeDirectedEdgeD0Ev@Base 3.4.2 - _ZN4geos9operation9linemerge21LineMergeDirectedEdgeD1Ev@Base 3.4.2 - _ZN4geos9operation9linemerge21LineMergeDirectedEdgeD2Ev@Base 3.4.2 - _ZN4geos9operation9linemerge25LMGeometryComponentFilterD0Ev@Base 3.4.2 - _ZN4geos9operation9linemerge25LMGeometryComponentFilterD1Ev@Base 3.4.2 - _ZN4geos9operation9linemerge25LMGeometryComponentFilterD2Ev@Base 3.4.2 - _ZN4geos9operation9overlayng10EdgeMerger5mergeERSt6vectorIPNS1_4EdgeESaIS5_EE@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder13degreeOfLinesEPNS1_11OverlayEdgeE@Base 3.10.0 - _ZN4geos9operation9overlayng11LineBuilder14addResultLinesEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder15markResultLinesEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder17effectiveLocationEPKNS1_12OverlayLabelEh@Base 3.10.0 - _ZN4geos9operation9overlayng11LineBuilder19addResultLinesRingsEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder20addResultLinesMergedEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder21nextLineEdgeUnvisitedEPNS1_11OverlayEdgeE@Base 3.10.0 - _ZN4geos9operation9overlayng11LineBuilder22addResultLinesForNodesEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder8getLinesEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder9buildLineEPNS1_11OverlayEdgeE@Base 3.9.0 - _ZN4geos9operation9overlayng11LineLimiter10addOutsideEPKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos9operation9overlayng11LineLimiter12startSectionEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineLimiter13finishSectionEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineLimiter13isSectionOpenEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineLimiter25isLastSegmentIntersectingEPKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos9operation9overlayng11LineLimiter5limitEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 - _ZN4geos9operation9overlayng11LineLimiter8addPointEPKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge22getCoordinatesOrientedEv@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdgeD0Ev@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdgeD1Ev@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdgeD2Ev@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil10isDisjointEPKNS_4geom8EnvelopeES6_PKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil10isFloatingEPKNS_4geom14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil13isEmptyResultEiPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil13isEnvDisjointEPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil14resultEnvelopeEiPKNS1_13InputGeometryEPKNS_4geom14PrecisionModelERNS6_8EnvelopeE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil15resultDimensionEiii@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil16clippingEnvelopeEiPKNS1_13InputGeometryEPKNS_4geom14PrecisionModelERNS6_8EnvelopeE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil17createEmptyResultEiPKNS_4geom15GeometryFactoryE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil18safeExpandDistanceEPKNS_4geom8EnvelopeEPKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil20createResultGeometryERSt6vectorISt10unique_ptrINS_4geom7PolygonESt14default_deleteIS6_EESaIS9_EERS3_IS4_INS5_10LineStringES7_ISD_EESaISF_EERS3_IS4_INS5_5PointES7_ISJ_EESaISL_EEPKNS5_15GeometryFactoryE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil5roundEPKNS_4geom5PointEPKNS3_14PrecisionModelERNS3_10CoordinateE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil7isEmptyEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil7safeEnvEPKNS_4geom8EnvelopeEPKNS3_14PrecisionModelERS4_@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayUtil7toLinesEPNS1_12OverlayGraphEbPKNS_4geom15GeometryFactoryE@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraph12getNodeEdgesEv@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraph14createEdgePairEPKNS_4geom18CoordinateSequenceEPNS1_12OverlayLabelE@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraph17createOverlayEdgeEPKNS_4geom18CoordinateSequenceEPNS1_12OverlayLabelEb@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraph18createOverlayLabelEPKNS1_4EdgeE@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraph18getResultAreaEdgesEv@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraph6insertEPNS1_11OverlayEdgeE@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraph7addEdgeEPNS1_4EdgeE@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraph8getEdgesEv@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraphC1Ev@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraphC2Ev@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraphD1Ev@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayGraphD2Ev@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayLabel11initNotPartEh@Base 3.10.0 - _ZN4geos9operation9overlayng12OverlayLabel12initBoundaryEhNS_4geom8LocationES4_b@Base 3.10.0 - _ZN4geos9operation9overlayng12OverlayLabel12initCollapseEhb@Base 3.10.0 - _ZN4geos9operation9overlayng12OverlayLabel14setLocationAllEhNS_4geom8LocationE@Base 3.10.0 - _ZN4geos9operation9overlayng12OverlayLabel15setLocationLineEhNS_4geom8LocationE@Base 3.10.0 - _ZN4geos9operation9overlayng12OverlayLabel19setLocationCollapseEh@Base 3.10.0 - _ZN4geos9operation9overlayng12OverlayLabel8initLineEh@Base 3.10.0 - _ZN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategy5UnionEPKNS_4geom8GeometryES7_@Base 3.9.0 - _ZN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyD0Ev@Base 3.9.0 - _ZN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyD1Ev@Base 3.9.0 - _ZN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyD2Ev@Base 3.9.0 - _ZN4geos9operation9overlayng12UnaryUnionNG5UnionEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng12UnaryUnionNG5UnionEPKNS_4geom8GeometryERKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng13InputGeometry10getLocatorEh@Base 3.10.0 - _ZN4geos9operation9overlayng13InputGeometry12setCollapsedEhb@Base 3.10.0 - _ZN4geos9operation9overlayng13InputGeometry17locatePointInAreaEhRKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9operation9overlayng13InputGeometryC1EPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng13InputGeometryC2EPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng13OverlayPoints12computeUnionERSt3mapINS_4geom10CoordinateESt10unique_ptrINS4_5PointESt14default_deleteIS7_EESt4lessIS5_ESaISt4pairIKS5_SA_EEESI_RSt6vectorISA_SaISA_EE@Base 3.9.0 - _ZN4geos9operation9overlayng13OverlayPoints13buildPointMapEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng13OverlayPoints17computeDifferenceERSt3mapINS_4geom10CoordinateESt10unique_ptrINS4_5PointESt14default_deleteIS7_EESt4lessIS5_ESaISt4pairIKS5_SA_EEESI_RSt6vectorISA_SaISA_EE@Base 3.9.0 - _ZN4geos9operation9overlayng13OverlayPoints19computeIntersectionERSt3mapINS_4geom10CoordinateESt10unique_ptrINS4_5PointESt14default_deleteIS7_EESt4lessIS5_ESaISt4pairIKS5_SA_EEESI_RSt6vectorISA_SaISA_EE@Base 3.9.0 - _ZN4geos9operation9overlayng13OverlayPoints7overlayEiPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng13OverlayPoints9getResultEv@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil11robustScaleEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil11robustScaleEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil11robustScaleEdd@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil13inherentScaleEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil13inherentScaleEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil13inherentScaleEd@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil14precisionScaleEdi@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil16numberOfDecimalsEd@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil17maxBoundMagnitudeEPKNS_4geom8EnvelopeE@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterD0Ev@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterD1Ev@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterD2Ev@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil8robustPMEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil8robustPMEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil9safeScaleEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil9safeScaleEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng13PrecisionUtil9safeScaleEd@Base 3.9.0 - _ZN4geos9operation9overlayng14EdgeComparatorEPKNS1_4EdgeES4_@Base 3.9.0 - _ZN4geos9operation9overlayng14EdgeSourceInfoC1Eh@Base 3.10.0 - _ZN4geos9operation9overlayng14EdgeSourceInfoC1Ehib@Base 3.10.0 - _ZN4geos9operation9overlayng14EdgeSourceInfoC2Eh@Base 3.10.0 - _ZN4geos9operation9overlayng14EdgeSourceInfoC2Ehib@Base 3.10.0 - _ZN4geos9operation9overlayng14ElevationModel16DEFAULT_CELL_NUME@Base 3.9.0 - _ZN4geos9operation9overlayng14ElevationModel3addERKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng14ElevationModel3addEddd@Base 3.9.0 - _ZN4geos9operation9overlayng14ElevationModel4getZEdd@Base 3.9.0 - _ZN4geos9operation9overlayng14ElevationModel4initEv@Base 3.9.0 - _ZN4geos9operation9overlayng14ElevationModel6createERKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng14ElevationModel6createERKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng14ElevationModel7getCellEdd@Base 3.9.0 - _ZN4geos9operation9overlayng14ElevationModel9populateZERNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng14ElevationModelC1ERKNS_4geom8EnvelopeEii@Base 3.9.0 - _ZN4geos9operation9overlayng14ElevationModelC2ERKNS_4geom8EnvelopeEii@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder10buildRingsERKSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.10.0 - _ZN4geos9operation9overlayng14PolygonBuilder11assignHolesEPNS1_15OverlayEdgeRingERKSt6vectorIS4_SaIS4_EE@Base 3.10.0 - _ZN4geos9operation9overlayng14PolygonBuilder15findSingleShellERKSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.10.0 - _ZN4geos9operation9overlayng14PolygonBuilder17buildMaximalRingsERKSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.10.0 - _ZN4geos9operation9overlayng14PolygonBuilder17buildMinimalRingsERKSt6vectorISt10unique_ptrINS1_15MaximalEdgeRingESt14default_deleteIS5_EESaIS8_EE@Base 3.10.0 - _ZN4geos9operation9overlayng14PolygonBuilder17storeMinimalRingsERSt6vectorISt10unique_ptrINS1_15OverlayEdgeRingESt14default_deleteIS5_EESaIS8_EE@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder20assignShellsAndHolesERKSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.10.0 - _ZN4geos9operation9overlayng14PolygonBuilder22linkResultAreaEdgesMaxERKSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.10.0 - _ZN4geos9operation9overlayng14PolygonBuilderD1Ev@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilderD2Ev@Base 3.9.0 - _ZN4geos9operation9overlayng15MaximalEdgeRing11attachEdgesEPNS1_11OverlayEdgeE@Base 3.9.0 - _ZN4geos9operation9overlayng15MaximalEdgeRing13linkMaxInEdgeEPNS1_11OverlayEdgeES4_PS2_@Base 3.9.0 - _ZN4geos9operation9overlayng15MaximalEdgeRing15isAlreadyLinkedEPNS1_11OverlayEdgeEPS2_@Base 3.9.0 - _ZN4geos9operation9overlayng15MaximalEdgeRing16linkMinimalRingsEv@Base 3.9.0 - _ZN4geos9operation9overlayng15MaximalEdgeRing16selectMaxOutEdgeEPNS1_11OverlayEdgeEPS2_@Base 3.9.0 - _ZN4geos9operation9overlayng15MaximalEdgeRing17buildMinimalRingsEPKNS_4geom15GeometryFactoryE@Base 3.9.0 - _ZN4geos9operation9overlayng15MaximalEdgeRing22linkMinRingEdgesAtNodeEPNS1_11OverlayEdgeEPS2_@Base 3.9.0 - _ZN4geos9operation9overlayng15MaximalEdgeRing27linkResultAreaMaxRingAtNodeEPNS1_11OverlayEdgeE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing10getLocatorEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing11computeRingEOSt10unique_ptrINS_4geom23CoordinateArraySequenceESt14default_deleteIS5_EEPKNS4_15GeometryFactoryE@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing13getCoordinateEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing14computeRingPtsEPNS1_11OverlayEdgeERNS_4geom23CoordinateArraySequenceE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing14getCoordinatesEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing22findEdgeRingContainingERKSt6vectorIPS2_SaIS4_EE@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing7addHoleEPS2_@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing7getEdgeEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing7getRingEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing8isInRingERKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing8setShellEPS2_@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing9closeRingERNS_4geom23CoordinateArraySequenceE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing9toPolygonEPKNS_4geom15GeometryFactoryE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRingC1EPNS1_11OverlayEdgeEPKNS_4geom15GeometryFactoryE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRingC2EPNS1_11OverlayEdgeEPKNS_4geom15GeometryFactoryE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller10locateEdgeEhPNS1_11OverlayEdgeE@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayLabeller16computeLabellingEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller16markInResultAreaEPNS1_11OverlayEdgeEi@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller18labelAreaNodeEdgesERSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller18labelCollapsedEdgeEPNS1_11OverlayEdgeEh@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayLabeller18locateEdgeBothEndsEhPNS1_11OverlayEdgeE@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayLabeller19labelCollapsedEdgesEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller19markResultAreaEdgesEi@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller21labelDisconnectedEdgeEPNS1_11OverlayEdgeEh@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayLabeller22labelDisconnectedEdgesEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller22propagateAreaLocationsEPNS1_11OverlayEdgeEh@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayLabeller24findPropagationStartEdgeEPNS1_11OverlayEdgeEh@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayLabeller24propagateLinearLocationsEh@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayLabeller25labelConnectedLinearEdgesEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller27findLinearEdgesWithLocationERKSt6vectorIPNS1_11OverlayEdgeESaIS5_EEh@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayLabeller29propagateLinearLocationAtNodeEPNS1_11OverlayEdgeEhbRSt5dequeIS4_SaIS4_EE@Base 3.10.0 - _ZN4geos9operation9overlayng15OverlayLabeller34unmarkDuplicateEdgesFromResultAreaEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust10DifferenceEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust12IntersectionEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust13SymDifferenceEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust13snapToleranceEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust13snapToleranceEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust14overlaySnapTolEPKNS_4geom8GeometryES6_id@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategy5UnionEPKNS_4geom8GeometryES7_@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyD0Ev@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyD1Ev@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyD2Ev@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust15overlaySnapBothEPKNS_4geom8GeometryES6_id@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust15overlaySnappingEPKNS_4geom8GeometryES6_id@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust16overlaySnapTriesEPKNS_4geom8GeometryES6_i@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust17ordinateMagnitudeEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust5UnionEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust5UnionEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust7OverlayEPKNS_4geom8GeometryES6_i@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust8snapSelfEPKNS_4geom8GeometryEd@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayNGRobust9overlaySREPKNS_4geom8GeometryES6_i@Base 3.9.0 - _ZN4geos9operation9overlayng16PrecisionReducer15reducePrecisionEPKNS_4geom8GeometryEPKNS3_14PrecisionModelEb@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder10addPolygonEPKNS_4geom7PolygonEh@Base 3.10.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder11createEdgesEPSt6vectorIPNS_6noding13SegmentStringESaIS6_EE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder13addCollectionEPKNS_4geom18GeometryCollectionEh@Base 3.10.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder14addPolygonRingEPKNS_4geom10LinearRingEbh@Base 3.10.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder15setClipEnvelopeEPKNS_4geom8EnvelopeE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder17computeDepthDeltaEPKNS_4geom10LinearRingEb@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder19isClippedCompletelyEPKNS_4geom8EnvelopeE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder20createEdgeSourceInfoEh@Base 3.10.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder20createEdgeSourceInfoEhib@Base 3.10.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder20removeRepeatedPointsEPKNS_4geom10LineStringE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder21addGeometryCollectionEPKNS_4geom18GeometryCollectionEhi@Base 3.10.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder25createFixedPrecisionNoderEPKNS_4geom14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder28createFloatingPrecisionNoderEb@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder3addEPKNS_4geom8GeometryEh@Base 3.10.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder4clipEPKNS_4geom10LinearRingE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder4nodeEPSt6vectorIPNS_6noding13SegmentStringESaIS6_EE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder5buildEPKNS_4geom8GeometryES6_@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder5limitEPKNS_4geom10LineStringE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder7addEdgeERSt10unique_ptrINS_4geom23CoordinateArraySequenceESt14default_deleteIS5_EEPKNS1_14EdgeSourceInfoE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder7addEdgeESt10unique_ptrISt6vectorINS_4geom10CoordinateESaIS6_EESt14default_deleteIS8_EEPKNS1_14EdgeSourceInfoE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder7addLineEPKNS_4geom10LineStringEh@Base 3.10.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder7addLineERSt10unique_ptrINS_4geom23CoordinateArraySequenceESt14default_deleteIS5_EEh@Base 3.10.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder8getNoderEv@Base 3.9.0 - (arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZN4geos9operation9overlayng17EdgeNodingBuilderC1EPKNS_4geom14PrecisionModelEPNS_6noding5NoderE@Base 3.9.0 - (arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZN4geos9operation9overlayng17EdgeNodingBuilderC2EPKNS_4geom14PrecisionModelEPNS_6noding5NoderE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilderD1Ev@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilderD2Ev@Base 3.9.0 - _ZN4geos9operation9overlayng18OverlayMixedPoints12computeUnionEPKNS_4geom23CoordinateArraySequenceE@Base 3.9.0 - _ZN4geos9operation9overlayng18OverlayMixedPoints13createLocatorEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng18OverlayMixedPoints15prepareNonPointEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng18OverlayMixedPoints17computeDifferenceEPKNS_4geom23CoordinateArraySequenceE@Base 3.9.0 - _ZN4geos9operation9overlayng18OverlayMixedPoints7overlayEiPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng18OverlayMixedPoints9getResultEv@Base 3.9.0 - _ZN4geos9operation9overlayng18OverlayMixedPointsC1EiPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng18OverlayMixedPointsC2EiPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng24IntersectionPointBuilder15addResultPointsEv@Base 3.9.0 - _ZN4geos9operation9overlayng24IntersectionPointBuilder9getPointsEv@Base 3.9.0 - _ZN4geos9operation9overlayng25IndexedPointOnLineLocator6locateEPKNS_4geom10CoordinateE@Base 3.9.0 - _ZN4geos9operation9overlayng25IndexedPointOnLineLocatorD0Ev@Base 3.9.0 - _ZN4geos9operation9overlayng25IndexedPointOnLineLocatorD1Ev@Base 3.9.0 - _ZN4geos9operation9overlayng25IndexedPointOnLineLocatorD2Ev@Base 3.9.0 - _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer10addPolygonEPKNS_4geom7PolygonE@Base 3.9.0 - _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer10addSegmentERKNS_4geom10CoordinateES6_@Base 3.9.0 - _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer11getEnvelopeEPKNS_4geom8GeometryES6_PKNS3_8EnvelopeE@Base 3.9.0 - _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer11getEnvelopeEv@Base 3.9.0 - _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer13addCollectionEPKNS_4geom18GeometryCollectionE@Base 3.9.0 - _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer14addPolygonRingEPKNS_4geom10LinearRingE@Base 3.9.0 - _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer17intersectsSegmentEPKNS_4geom8EnvelopeERKNS3_10CoordinateES9_@Base 3.9.0 - _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer3addEPKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation9overlayng26RobustClipEnvelopeComputerC1EPKNS_4geom8EnvelopeE@Base 3.9.0 - _ZN4geos9operation9overlayng26RobustClipEnvelopeComputerC2EPKNS_4geom8EnvelopeE@Base 3.9.0 - _ZN4geos9operation9overlayng4Edge11isCollapsedEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 - _ZN4geos9operation9overlayng4Edge9initLabelERNS1_12OverlayLabelEhiib@Base 3.10.0 - _ZN4geos9operation9overlayng4EdgeC1EPNS_4geom18CoordinateSequenceEPKNS1_14EdgeSourceInfoE@Base 3.9.0 - _ZN4geos9operation9overlayng4EdgeC2EPNS_4geom18CoordinateSequenceEPKNS1_14EdgeSourceInfoE@Base 3.9.0 - (arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZN4geos9operation9overlayng7EdgeKey10initPointsEPKNS1_4EdgeE@Base 3.10.0 - _ZN4geos9operation9overlayng9OverlayNG10labelGraphEPNS1_12OverlayGraphE@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG12isResultOfOpEiNS_4geom8LocationES4_@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG13extractResultEiPNS1_12OverlayGraphE@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG17createEmptyResultEv@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG17isResultOfOpPointEPKNS1_12OverlayLabelEi@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG18computeEdgeOverlayEv@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG7overlayEPKNS_4geom8GeometryES6_i@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG7overlayEPKNS_4geom8GeometryES6_iPKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG7overlayEPKNS_4geom8GeometryES6_iPKNS3_14PrecisionModelEPNS_6noding5NoderE@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG7overlayEPKNS_4geom8GeometryES6_iPNS_6noding5NoderE@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG9geomunionEPKNS_4geom8GeometryEPKNS3_14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG9geomunionEPKNS_4geom8GeometryEPKNS3_14PrecisionModelEPNS_6noding5NoderE@Base 3.9.0 - _ZN4geos9operation9overlayng9OverlayNG9getResultEv@Base 3.9.0 - _ZN4geos9operation9overlaynglsERSoRKNS1_11OverlayEdgeE@Base 3.9.0 - _ZN4geos9operation9overlaynglsERSoRKNS1_12OverlayGraphE@Base 3.9.0 - _ZN4geos9operation9overlaynglsERSoRKNS1_12OverlayLabelE@Base 3.9.0 - _ZN4geos9operation9overlaynglsERSoRKNS1_15MaximalEdgeRingE@Base 3.9.0 - _ZN4geos9operation9overlaynglsERSoRKNS1_4EdgeE@Base 3.9.0 - _ZN4geos9operation9predicate17RectangleContains21isContainedInBoundaryERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation9predicate17RectangleContains26isPointContainedInBoundaryERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation9predicate17RectangleContains26isPointContainedInBoundaryERKNS_4geom5PointE@Base 3.4.2 - _ZN4geos9operation9predicate17RectangleContains31isLineStringContainedInBoundaryERKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation9predicate17RectangleContains32isLineSegmentContainedInBoundaryERKNS_4geom10CoordinateES6_@Base 3.4.2 - _ZN4geos9operation9predicate17RectangleContains8containsERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation9predicate19RectangleIntersects10intersectsERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation9predicate20ContainsPointVisitor5visitERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation9predicate20ContainsPointVisitor6isDoneEv@Base 3.4.2 - _ZN4geos9operation9predicate20ContainsPointVisitorD0Ev@Base 3.4.2 - _ZN4geos9operation9predicate20ContainsPointVisitorD1Ev@Base 3.4.2 - _ZN4geos9operation9predicate20ContainsPointVisitorD2Ev@Base 3.4.2 - _ZN4geos9operation9predicate21LineIntersectsVisitor5visitERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation9predicate21LineIntersectsVisitor6isDoneEv@Base 3.4.2 - _ZN4geos9operation9predicate21LineIntersectsVisitorD0Ev@Base 3.4.2 - _ZN4geos9operation9predicate21LineIntersectsVisitorD1Ev@Base 3.4.2 - _ZN4geos9operation9predicate21LineIntersectsVisitorD2Ev@Base 3.4.2 - _ZN4geos9operation9predicate25EnvelopeIntersectsVisitor5visitERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation9predicate25EnvelopeIntersectsVisitor6isDoneEv@Base 3.4.2 - _ZN4geos9operation9predicate25EnvelopeIntersectsVisitorD0Ev@Base 3.4.2 - _ZN4geos9operation9predicate25EnvelopeIntersectsVisitorD1Ev@Base 3.4.2 - _ZN4geos9operation9predicate25EnvelopeIntersectsVisitorD2Ev@Base 3.4.2 - _ZN4geos9operation9predicate25SegmentIntersectionTester15hasIntersectionERKNS_4geom10LineStringES6_@Base 3.4.2 - _ZN4geos9operation9predicate25SegmentIntersectionTester30hasIntersectionWithLineStringsERKNS_4geom10LineStringERKSt6vectorIPS5_SaIS8_EE@Base 3.4.2 - _ZN4geos9operation9predicate25SegmentIntersectionTester33hasIntersectionWithEnvelopeFilterERKNS_4geom10LineStringES6_@Base 3.4.2 - (subst)_ZN4geos9precision10CommonBits11signExpBitsE{int64_t}@Base 3.8.0 - (subst)_ZN4geos9precision10CommonBits13zeroLowerBitsE{int64_t}i@Base 3.8.0 - (subst)_ZN4geos9precision10CommonBits28numCommonMostSigMantissaBitsE{int64_t}{int64_t}@Base 3.8.0 - _ZN4geos9precision10CommonBits3addEd@Base 3.4.2 - (subst)_ZN4geos9precision10CommonBits6getBitE{int64_t}i@Base 3.8.0 - _ZN4geos9precision10CommonBits9getCommonEv@Base 3.4.2 - _ZN4geos9precision10CommonBitsC1Ev@Base 3.4.2 - _ZN4geos9precision10CommonBitsC2Ev@Base 3.4.2 - _ZN4geos9precision10Translater9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9precision10TranslaterD0Ev@Base 3.4.2 - _ZN4geos9precision10TranslaterD1Ev@Base 3.4.2 - _ZN4geos9precision10TranslaterD2Ev@Base 3.4.2 - _ZN4geos9precision12CommonBitsOp10differenceEPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9precision12CommonBitsOp12intersectionEPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9precision12CommonBitsOp13symDifferenceEPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9precision12CommonBitsOp16removeCommonBitsEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9precision12CommonBitsOp16removeCommonBitsEPKNS_4geom8GeometryES5_RSt10unique_ptrIS3_St14default_deleteIS3_EESA_@Base 3.7.0 - _ZN4geos9precision12CommonBitsOp22computeResultPrecisionESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS4_EE@Base 3.8.0 - _ZN4geos9precision12CommonBitsOp5UnionEPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9precision12CommonBitsOp6bufferEPKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos9precision12CommonBitsOpC1Eb@Base 3.4.2 - _ZN4geos9precision12CommonBitsOpC1Ev@Base 3.4.2 - _ZN4geos9precision12CommonBitsOpC2Eb@Base 3.4.2 - _ZN4geos9precision12CommonBitsOpC2Ev@Base 3.4.2 - _ZN4geos9precision16MinimumClearance11getDistanceEv@Base 3.6.0 - _ZN4geos9precision16MinimumClearance7computeEv@Base 3.6.0 - _ZN4geos9precision16MinimumClearance7getLineEv@Base 3.6.0 - _ZN4geos9precision16MinimumClearanceC1EPKNS_4geom8GeometryE@Base 3.6.0 - _ZN4geos9precision16MinimumClearanceC2EPKNS_4geom8GeometryE@Base 3.6.0 - _ZN4geos9precision17CommonBitsRemover13addCommonBitsEPNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9precision17CommonBitsRemover16removeCommonBitsEPNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9precision17CommonBitsRemover19getCommonCoordinateEv@Base 3.4.2 - _ZN4geos9precision17CommonBitsRemover3addEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9precision17CommonBitsRemoverC1Ev@Base 3.4.2 - _ZN4geos9precision17CommonBitsRemoverC2Ev@Base 3.4.2 - _ZN4geos9precision17CommonBitsRemoverD1Ev@Base 3.4.2 - _ZN4geos9precision17CommonBitsRemoverD2Ev@Base 3.4.2 - _ZN4geos9precision19EnhancedPrecisionOp10differenceEPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9precision19EnhancedPrecisionOp12intersectionEPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9precision19EnhancedPrecisionOp13symDifferenceEPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9precision19EnhancedPrecisionOp5UnionEPKNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9precision19EnhancedPrecisionOp6bufferEPKNS_4geom8GeometryEd@Base 3.4.2 - _ZN4geos9precision22CommonCoordinateFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9precision22CommonCoordinateFilterD0Ev@Base 3.4.2 - _ZN4geos9precision22CommonCoordinateFilterD1Ev@Base 3.4.2 - _ZN4geos9precision22CommonCoordinateFilterD2Ev@Base 3.4.2 - _ZN4geos9precision22PrecisionReducerFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.10.0 - _ZN4geos9precision22PrecisionReducerFilterD0Ev@Base 3.10.0 - _ZN4geos9precision22PrecisionReducerFilterD1Ev@Base 3.10.0 - _ZN4geos9precision22PrecisionReducerFilterD2Ev@Base 3.10.0 - _ZN4geos9precision24GeometryPrecisionReducer13createFactoryERKNS_4geom15GeometryFactoryERKNS2_14PrecisionModelE@Base 3.4.2 - _ZN4geos9precision24GeometryPrecisionReducer15reducePointwiseERKNS_4geom8GeometryERKNS2_14PrecisionModelE@Base 3.10.0 - _ZN4geos9precision24GeometryPrecisionReducer20fixPolygonalTopologyERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9precision24GeometryPrecisionReducer6reduceERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9precision24GeometryPrecisionReducer6reduceERKNS_4geom8GeometryERKNS2_14PrecisionModelE@Base 3.10.0 - _ZN4geos9precision24GeometryPrecisionReducer8changePMEPKNS_4geom8GeometryERKNS2_14PrecisionModelE@Base 3.10.0 - _ZN4geos9precision27PrecisionReducerTransformer10reduceAreaEPKNS_4geom8GeometryE@Base 3.10.0 - _ZN4geos9precision27PrecisionReducerTransformer16transformPolygonEPKNS_4geom7PolygonEPKNS2_8GeometryE@Base 3.10.0 - _ZN4geos9precision27PrecisionReducerTransformer20transformCoordinatesEPKNS_4geom18CoordinateSequenceEPKNS2_8GeometryE@Base 3.10.0 - _ZN4geos9precision27PrecisionReducerTransformer21transformMultiPolygonEPKNS_4geom12MultiPolygonEPKNS2_8GeometryE@Base 3.10.0 - (subst)_ZN4geos9precision27PrecisionReducerTransformer6extendERSt6vectorINS_4geom10CoordinateESaIS4_EE{size_t}@Base 3.10.0 - _ZN4geos9precision27PrecisionReducerTransformer6reduceERKNS_4geom8GeometryERKNS2_14PrecisionModelEb@Base 3.10.0 - _ZN4geos9precision27PrecisionReducerTransformerD0Ev@Base 3.10.0 - _ZN4geos9precision27PrecisionReducerTransformerD1Ev@Base 3.10.0 - _ZN4geos9precision27PrecisionReducerTransformerD2Ev@Base 3.10.0 - _ZN4geos9precision30SimpleGeometryPrecisionReducer17getPrecisionModelEv@Base 3.4.2 - _ZN4geos9precision30SimpleGeometryPrecisionReducer18getRemoveCollapsedEv@Base 3.4.2 - _ZN4geos9precision30SimpleGeometryPrecisionReducer28setRemoveCollapsedComponentsEb@Base 3.4.2 - _ZN4geos9precision30SimpleGeometryPrecisionReducer6reduceEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9precision30SimpleGeometryPrecisionReducerC1EPKNS_4geom14PrecisionModelE@Base 3.4.2 - _ZN4geos9precision30SimpleGeometryPrecisionReducerC2EPKNS_4geom14PrecisionModelE@Base 3.4.2 - _ZN4geos9precision35PrecisionReducerCoordinateOperation4editEPKNS_4geom18CoordinateSequenceEPKNS2_8GeometryE@Base 3.4.2 - _ZN4geos9precision35PrecisionReducerCoordinateOperationD0Ev@Base 3.4.2 - _ZN4geos9precision35PrecisionReducerCoordinateOperationD1Ev@Base 3.4.2 - _ZN4geos9precision35PrecisionReducerCoordinateOperationD2Ev@Base 3.4.2 - _ZN4geos9precision36PointwisePrecisionReducerTransformer15reducePointwiseEPKNS_4geom18CoordinateSequenceE@Base 3.10.0 - _ZN4geos9precision36PointwisePrecisionReducerTransformer20transformCoordinatesEPKNS_4geom18CoordinateSequenceEPKNS2_8GeometryE@Base 3.10.0 - _ZN4geos9precision36PointwisePrecisionReducerTransformer6reduceERKNS_4geom8GeometryERKNS2_14PrecisionModelE@Base 3.10.0 - _ZN4geos9precision36PointwisePrecisionReducerTransformerD0Ev@Base 3.10.0 - _ZN4geos9precision36PointwisePrecisionReducerTransformerD1Ev@Base 3.10.0 - _ZN4geos9precision36PointwisePrecisionReducerTransformerD2Ev@Base 3.10.0 - (optional=templinst|subst)_ZNK13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE4dumpEicbNS_6detail15error_handler_tE@Base 3.10.0 - (optional=templinst|subst)_ZNK13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE9type_nameEv@Base 3.10.0 - (optional=templinst|arch=amd64)_ZNK13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS_14adl_serializerES2_IhSaIhEEE2atERKS8_@Base 3.10.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS_14adl_serializerES2_IhSaIhEEE2atERKS8_@Base 3.10.1 - (optional=templinst|subst)_ZNK13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE9type_nameEv@Base 3.10.0 - (optional=templinst|subst)_ZNK13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE16get_token_stringEv@Base 3.10.0 - _ZNK13geos_nlohmann6detail9exception4whatEv@Base 3.10.0 - (optional=templinst|subst)_ZNK13geos_nlohmann6detail9iter_implIKNS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEEdeEv@Base 3.10.0 - (optional=templinst|subst)_ZNK13geos_nlohmann6detail9iter_implIKNS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEEeqISG_LDnEEEbRKT_@Base 3.10.0 - _ZNK4geos11planargraph12DirectedEdge11getFromNodeEv@Base 3.4.2 - _ZNK4geos11planargraph12DirectedEdge11getQuadrantEv@Base 3.4.2 - _ZNK4geos11planargraph12DirectedEdge13getCoordinateEv@Base 3.4.2 - _ZNK4geos11planargraph12DirectedEdge14getDirectionPtEv@Base 3.4.2 - _ZNK4geos11planargraph12DirectedEdge16compareDirectionEPKS1_@Base 3.4.2 - _ZNK4geos11planargraph12DirectedEdge16getEdgeDirectionEv@Base 3.4.2 - _ZNK4geos11planargraph12DirectedEdge5printB5cxx11Ev@Base 3.5.1 - _ZNK4geos11planargraph12DirectedEdge6getSymEv@Base 3.4.2 - _ZNK4geos11planargraph12DirectedEdge7getEdgeEv@Base 3.4.2 - _ZNK4geos11planargraph12DirectedEdge8getAngleEv@Base 3.4.2 - _ZNK4geos11planargraph12DirectedEdge9compareToEPKS1_@Base 3.4.2 - _ZNK4geos11planargraph12DirectedEdge9getToNodeEv@Base 3.4.2 - _ZNK4geos11planargraph14GraphComponent8isMarkedEv@Base 3.4.2 - _ZNK4geos11planargraph14GraphComponent9isVisitedEv@Base 3.4.2 - _ZNK4geos11planargraph16DirectedEdgeStar13getCoordinateEv@Base 3.4.2 - _ZNK4geos11planargraph16DirectedEdgeStar3endEv@Base 3.4.2 - _ZNK4geos11planargraph16DirectedEdgeStar5beginEv@Base 3.4.2 - _ZNK4geos11planargraph16DirectedEdgeStar8getIndexEi@Base 3.4.2 - _ZNK4geos11planargraph16DirectedEdgeStar9sortEdgesEv@Base 3.4.2 - _ZNK4geos11triangulate3tri20TriangulationBuilder4findERKNS_4geom10CoordinateES6_@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri10getEdgeEndEi@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri10isAdjacentEPS2_@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri11getAdjacentEi@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri11hasAdjacentEi@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri11numAdjacentEv@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri12getEdgeStartEi@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri13getCoordinateEi@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri13hasCoordinateERKNS_4geom10CoordinateE@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri7getEdgeEPS2_@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri8getIndexEPS2_@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri8getIndexERKNS_4geom10CoordinateE@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri8midpointEi@Base 3.10.0 - _ZNK4geos11triangulate3tri3Tri9toPolygonEPKNS_4geom15GeometryFactoryE@Base 3.10.0 - _ZNK4geos11triangulate3tri7TriEdge8HashCodeclERKS2_@Base 3.10.0 - _ZNK4geos11triangulate3tri7TriList10toGeometryEPKNS_4geom15GeometryFactoryE@Base 3.10.0 - _ZNK4geos11triangulate7polygon17PolygonEarClipper10toGeometryEv@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper11fetchCornerERSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper14isValidEarScanE{size_t}RKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper15createNextLinksE{size_t}@Base 3.10.0 - (arch=!amd64)_ZNK4geos11triangulate7polygon17PolygonEarClipper15isCornerInvalidERKSt5arrayINS_4geom10CoordinateELj3EE@Base 3.10.2 - _ZNK4geos11triangulate7polygon17PolygonEarClipper15isCornerInvalidERKSt5arrayINS_4geom10CoordinateELm3EE@Base 3.10.2 - (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper22findIntersectingVertexE{size_t}RKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper6isFlatERKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper8isConvexERKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper9isRemovedE{size_t}@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper9nextIndexE{size_t}@Base 3.10.0 - _ZNK4geos11triangulate7polygon17PolygonHoleJoiner10isJoinableERKNS_4geom10CoordinateES6_@Base 3.10.0 - _ZNK4geos11triangulate7polygon17PolygonHoleJoiner14crossesPolygonERKNS_4geom10CoordinateES6_@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon25VertexSequencePackedRtree14queryItemRangeERKNS_4geom8EnvelopeE{size_t}RSt6vectorI{size_t}SaI{size_t}EE@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon25VertexSequencePackedRtree14queryNodeRangeERKNS_4geom8EnvelopeE{size_t}{size_t}RSt6vectorI{size_t}SaI{size_t}EE@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon25VertexSequencePackedRtree5queryERKNS_4geom8EnvelopeERSt6vectorI{size_t}SaI{size_t}EE@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon25VertexSequencePackedRtree9levelSizeE{size_t}@Base 3.10.0 - (subst)_ZNK4geos11triangulate7polygon25VertexSequencePackedRtree9queryNodeERKNS_4geom8EnvelopeE{size_t}{size_t}RSt6vectorI{size_t}SaI{size_t}EE@Base 3.10.0 - _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision11isFrameEdgeERKNS1_8QuadEdgeE@Base 3.4.2 - _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision13isFrameVertexERKNS1_6VertexE@Base 3.4.2 - _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision14isVertexOfEdgeERKNS1_8QuadEdgeERKNS1_6VertexE@Base 3.4.2 - _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision14locateFromEdgeERKNS1_6VertexERKNS1_8QuadEdgeE@Base 3.4.2 - _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision17isFrameBorderEdgeERKNS1_8QuadEdgeE@Base 3.4.2 - _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision8isOnEdgeERKNS1_8QuadEdgeERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos11triangulate8quadedge6Vertex12circleCenterERKS2_S4_@Base 3.4.2 - _ZNK4geos11triangulate8quadedge6Vertex17interpolateZValueERKS2_S4_S4_@Base 3.4.2 - _ZNK4geos11triangulate8quadedge6Vertex6leftOfERKNS1_8QuadEdgeE@Base 3.4.2 - _ZNK4geos11triangulate8quadedge6Vertex7rightOfERKNS1_8QuadEdgeE@Base 3.4.2 - _ZNK4geos11triangulate8quadedge8QuadEdge13toLineSegmentEv@Base 3.4.2 - _ZNK4geos11triangulate8quadedge8QuadEdge14equalsOrientedERKS2_@Base 3.4.2 - _ZNK4geos11triangulate8quadedge8QuadEdge17equalsNonOrientedERKS2_@Base 3.4.2 - _ZNK4geos2io12GeoJSONValue10getBooleanEv@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue6isNullEv@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue7getNullEv@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue7isArrayEv@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue8getArrayEv@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue8isNumberEv@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue8isObjectEv@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue8isStringEv@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue9getNumberEv@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue9getObjectB5cxx11Ev@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue9getStringB5cxx11Ev@Base 3.10.0 - _ZNK4geos2io12GeoJSONValue9isBooleanEv@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader11readFeatureERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader11readPolygonERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - _ZNK4geos2io13GeoJSONReader11readPolygonERKSt6vectorIS2_IS2_IdSaIdEESaIS4_EESaIS6_EE@Base 3.10.0 - _ZNK4geos2io13GeoJSONReader12readFeaturesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader12readGeometryERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader12readPropertyERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - _ZNK4geos2io13GeoJSONReader14readCoordinateERKSt6vectorIdSaIdEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader14readLineStringERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader14readMultiPointERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader14readPropertiesERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader16readMultiPolygonERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader19readMultiLineStringERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader21readFeatureCollectionERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader22readFeatureForGeometryERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader22readGeometryCollectionERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader32readFeatureCollectionForGeometryERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - _ZNK4geos2io13GeoJSONReader4readERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - (subst)_ZNK4geos2io13GeoJSONReader9readPointERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 - _ZNK4geos2io14GeoJSONFeature11getGeometryEv@Base 3.10.0 - _ZNK4geos2io14GeoJSONFeature13getPropertiesB5cxx11Ev@Base 3.10.0 - _ZNK4geos2io15StringTokenizer7getNValEv@Base 3.10.0 - _ZNK4geos2io15StringTokenizer7getSValB5cxx11Ev@Base 3.10.0 - _ZNK4geos2io24GeoJSONFeatureCollection11getFeaturesEv@Base 3.10.0 - _ZNK4geos2io9WKTReader13readPointTextEPNS0_15StringTokenizerE@Base 3.10.0 - _ZNK4geos2io9WKTReader14getCoordinatesEPNS0_15StringTokenizerE@Base 3.10.0 - _ZNK4geos2io9WKTReader15readPolygonTextEPNS0_15StringTokenizerE@Base 3.10.0 - _ZNK4geos2io9WKTReader18readLineStringTextEPNS0_15StringTokenizerE@Base 3.10.0 - _ZNK4geos2io9WKTReader18readLinearRingTextEPNS0_15StringTokenizerE@Base 3.10.0 - _ZNK4geos2io9WKTReader18readMultiPointTextEPNS0_15StringTokenizerE@Base 3.10.0 - (subst)_ZNK4geos2io9WKTReader20getPreciseCoordinateEPNS0_15StringTokenizerERNS_4geom10CoordinateER{size_t}@Base 3.10.0 - _ZNK4geos2io9WKTReader20readMultiPolygonTextEPNS0_15StringTokenizerE@Base 3.10.0 - _ZNK4geos2io9WKTReader22readGeometryTaggedTextEPNS0_15StringTokenizerE@Base 3.10.0 - _ZNK4geos2io9WKTReader23readMultiLineStringTextEPNS0_15StringTokenizerE@Base 3.10.0 - _ZNK4geos2io9WKTReader26readGeometryCollectionTextEPNS0_15StringTokenizerE@Base 3.10.0 - _ZNK4geos2io9WKTReader4readERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 - _ZNK4geos2io9WKTWriter11writeNumberB5cxx11Ed@Base 3.10.0 - _ZNK4geos2io9WKTWriter6indentEiPNS0_6WriterE@Base 3.10.0 - _ZNK4geos4geom10Coordinate8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom10LineString11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 - _ZNK4geos4geom10LineString11getBoundaryEv@Base 3.4.2 - _ZNK4geos4geom10LineString11getEndPointEv@Base 3.4.2 - _ZNK4geos4geom10LineString11reverseImplEv@Base 3.10.0 - _ZNK4geos4geom10LineString12getDimensionEv@Base 3.4.2 - _ZNK4geos4geom10LineString12getNumPointsEv@Base 3.4.2 - _ZNK4geos4geom10LineString12getSortIndexEv@Base 3.8.0 - _ZNK4geos4geom10LineString12isCoordinateERNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom10LineString13getCoordinateEv@Base 3.4.2 - _ZNK4geos4geom10LineString13getStartPointEv@Base 3.4.2 - (subst)_ZNK4geos4geom10LineString14getCoordinateNE{size_t}@Base 3.8.0 - _ZNK4geos4geom10LineString14getCoordinatesEv@Base 3.4.2 - _ZNK4geos4geom10LineString15getGeometryTypeB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom10LineString16getCoordinatesROEv@Base 3.4.2 - _ZNK4geos4geom10LineString17getGeometryTypeIdEv@Base 3.4.2 - _ZNK4geos4geom10LineString18compareToSameClassEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom10LineString20getBoundaryDimensionEv@Base 3.4.2 - _ZNK4geos4geom10LineString22getCoordinateDimensionEv@Base 3.4.2 - _ZNK4geos4geom10LineString23computeEnvelopeInternalEv@Base 3.4.2 - _ZNK4geos4geom10LineString6isRingEv@Base 3.4.2 - _ZNK4geos4geom10LineString7isEmptyEv@Base 3.4.2 - _ZNK4geos4geom10LineString8apply_roEPNS0_14GeometryFilterE@Base 3.4.2 - _ZNK4geos4geom10LineString8apply_roEPNS0_16CoordinateFilterE@Base 3.4.2 - _ZNK4geos4geom10LineString8apply_roEPNS0_23GeometryComponentFilterE@Base 3.4.2 - _ZNK4geos4geom10LineString8apply_roERNS0_24CoordinateSequenceFilterE@Base 3.4.2 - _ZNK4geos4geom10LineString8isClosedEv@Base 3.4.2 - _ZNK4geos4geom10LineString9cloneImplEv@Base 3.10.0 - _ZNK4geos4geom10LineString9getLengthEv@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom10LineString9getPointNEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom10LineString9getPointNEm@Base 3.7.0 - _ZNK4geos4geom10LinearRing11reverseImplEv@Base 3.10.0 - _ZNK4geos4geom10LinearRing12getSortIndexEv@Base 3.8.0 - _ZNK4geos4geom10LinearRing15getGeometryTypeB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom10LinearRing17getGeometryTypeIdEv@Base 3.4.2 - _ZNK4geos4geom10LinearRing20getBoundaryDimensionEv@Base 3.4.2 - _ZNK4geos4geom10LinearRing8isClosedEv@Base 3.4.2 - _ZNK4geos4geom10LinearRing9cloneImplEv@Base 3.10.0 - _ZNK4geos4geom10MultiPoint11getBoundaryEv@Base 3.4.2 - _ZNK4geos4geom10MultiPoint11reverseImplEv@Base 3.10.0 - _ZNK4geos4geom10MultiPoint12getDimensionEv@Base 3.4.2 - (subst)_ZNK4geos4geom10MultiPoint12getGeometryNE{size_t}@Base 3.9.0 - _ZNK4geos4geom10MultiPoint12getSortIndexEv@Base 3.8.0 - (subst)_ZNK4geos4geom10MultiPoint14getCoordinateNE{size_t}@Base 3.8.0 - _ZNK4geos4geom10MultiPoint15getGeometryTypeB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom10MultiPoint17getGeometryTypeIdEv@Base 3.4.2 - _ZNK4geos4geom10MultiPoint17isDimensionStrictENS0_9Dimension13DimensionTypeE@Base 3.8.0 - _ZNK4geos4geom10MultiPoint20getBoundaryDimensionEv@Base 3.4.2 - _ZNK4geos4geom10MultiPoint9cloneImplEv@Base 3.10.0 - _ZNK4geos4geom11LineSegment10equalsTopoERKS1_@Base 3.4.2 - _ZNK4geos4geom11LineSegment10toGeometryERKNS0_15GeometryFactoryE@Base 3.4.2 - _ZNK4geos4geom11LineSegment12closestPointERKNS0_10CoordinateERS2_@Base 3.4.2 - _ZNK4geos4geom11LineSegment12intersectionERKS1_@Base 3.8.0 - _ZNK4geos4geom11LineSegment15segmentFractionERKNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment16lineIntersectionERKS1_@Base 3.8.0 - _ZNK4geos4geom11LineSegment16orientationIndexERKS1_@Base 3.4.2 - _ZNK4geos4geom11LineSegment16pointAlongOffsetEddRNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment16projectionFactorERKNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment7projectERKNS0_10CoordinateERS2_@Base 3.4.2 - _ZNK4geos4geom11LineSegment7projectERKS1_RS1_@Base 3.4.2 - _ZNK4geos4geom11LineSegment7projectEdRNS0_10CoordinateE@Base 3.10.0 - _ZNK4geos4geom11LineSegment9compareToERKS1_@Base 3.4.2 - _ZNK4geos4geom12MultiPolygon11getBoundaryEv@Base 3.4.2 - _ZNK4geos4geom12MultiPolygon11reverseImplEv@Base 3.10.0 - _ZNK4geos4geom12MultiPolygon12getDimensionEv@Base 3.4.2 - (subst)_ZNK4geos4geom12MultiPolygon12getGeometryNE{size_t}@Base 3.9.0 - _ZNK4geos4geom12MultiPolygon12getSortIndexEv@Base 3.8.0 - _ZNK4geos4geom12MultiPolygon15getGeometryTypeB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom12MultiPolygon17getGeometryTypeIdEv@Base 3.4.2 - _ZNK4geos4geom12MultiPolygon17isDimensionStrictENS0_9Dimension13DimensionTypeE@Base 3.8.0 - _ZNK4geos4geom12MultiPolygon20getBoundaryDimensionEv@Base 3.4.2 - _ZNK4geos4geom12MultiPolygon9cloneImplEv@Base 3.10.0 - _ZNK4geos4geom14PrecisionModel10getOffsetXEv@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel10getOffsetYEv@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel10isFloatingEv@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel11makePreciseEd@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel27getMaximumSignificantDigitsEv@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom14PrecisionModel9compareToEPKS1_@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory10toGeometryEPKNS0_8EnvelopeE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory11createEmptyEi@Base 3.9.0 - _ZNK4geos4geom15GeometryFactory11createPointEPNS0_18CoordinateSequenceE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory11createPointERKNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory11createPointERKNS0_18CoordinateSequenceE@Base 3.4.2 - (subst)_ZNK4geos4geom15GeometryFactory11createPointE{size_t}@Base 3.9.0 - _ZNK4geos4geom15GeometryFactory13buildGeometryEOSt6vectorISt10unique_ptrINS0_10LineStringESt14default_deleteIS4_EESaIS7_EE@Base 3.9.0 - _ZNK4geos4geom15GeometryFactory13buildGeometryEOSt6vectorISt10unique_ptrINS0_5PointESt14default_deleteIS4_EESaIS7_EE@Base 3.9.0 - _ZNK4geos4geom15GeometryFactory13buildGeometryEOSt6vectorISt10unique_ptrINS0_7PolygonESt14default_deleteIS4_EESaIS7_EE@Base 3.9.0 - _ZNK4geos4geom15GeometryFactory13buildGeometryEOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory13buildGeometryEPSt6vectorIPNS0_8GeometryESaIS4_EE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory13buildGeometryERKSt6vectorIPKNS0_8GeometryESaIS5_EE@Base 3.8.0 - (optional=templinst)_ZNK4geos4geom15GeometryFactory13buildGeometryIN9__gnu_cxx17__normal_iteratorIPPKNS0_10LineStringESt6vectorIS7_SaIS7_EEEEEESt10unique_ptrINS0_8GeometryESt14default_deleteISE_EET_SI_@Base 3.9.0 - (optional=templinst)_ZNK4geos4geom15GeometryFactory13buildGeometryIN9__gnu_cxx17__normal_iteratorIPPKNS0_5PointESt6vectorIS7_SaIS7_EEEEEESt10unique_ptrINS0_8GeometryESt14default_deleteISE_EET_SI_@Base 3.9.0 - _ZNK4geos4geom15GeometryFactory13createPolygonEOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory13createPolygonEOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EEOSt6vectorIS6_SaIS6_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory13createPolygonEOSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.10.0 - _ZNK4geos4geom15GeometryFactory13createPolygonEPNS0_10LinearRingEPSt6vectorIS3_SaIS3_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory13createPolygonERKNS0_10LinearRingERKSt6vectorIPS2_SaIS6_EE@Base 3.8.0 - (subst)_ZNK4geos4geom15GeometryFactory13createPolygonE{size_t}@Base 3.9.0 - _ZNK4geos4geom15GeometryFactory14createGeometryEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory15destroyGeometryEPNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory16createLineStringEOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory16createLineStringEPNS0_18CoordinateSequenceE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory16createLineStringERKNS0_10LineStringE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory16createLineStringERKNS0_18CoordinateSequenceE@Base 3.4.2 - (subst)_ZNK4geos4geom15GeometryFactory16createLineStringE{size_t}@Base 3.9.0 - _ZNK4geos4geom15GeometryFactory16createLinearRingEOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory16createLinearRingEPNS0_18CoordinateSequenceE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory16createLinearRingERKNS0_18CoordinateSequenceE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory16createLinearRingEv@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory16createMultiPointEOSt6vectorISt10unique_ptrINS0_5PointESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory16createMultiPointEOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory16createMultiPointEPSt6vectorIPNS0_8GeometryESaIS4_EE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory16createMultiPointERKNS0_18CoordinateSequenceE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory16createMultiPointERKSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory16createMultiPointERKSt6vectorIPKNS0_8GeometryESaIS5_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory16createMultiPointEv@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory18createMultiPolygonEOSt6vectorISt10unique_ptrINS0_7PolygonESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory18createMultiPolygonEOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory18createMultiPolygonEPSt6vectorIPNS0_8GeometryESaIS4_EE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory18createMultiPolygonERKSt6vectorIPKNS0_8GeometryESaIS5_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory18createMultiPolygonEv@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory19createEmptyGeometryEv@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory21createMultiLineStringEOSt6vectorISt10unique_ptrINS0_10LineStringESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory21createMultiLineStringEOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory21createMultiLineStringEPSt6vectorIPNS0_8GeometryESaIS4_EE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory21createMultiLineStringERKSt6vectorIPKNS0_8GeometryESaIS5_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory21createMultiLineStringEv@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory24createGeometryCollectionEPSt6vectorIPNS0_8GeometryESaIS4_EE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory24createGeometryCollectionERKSt6vectorIPKNS0_8GeometryESaIS5_EE@Base 3.8.0 - _ZNK4geos4geom15GeometryFactory24createGeometryCollectionEv@Base 3.4.2 - (optional=templinst)_ZNK4geos4geom15GeometryFactory24createGeometryCollectionINS0_8GeometryEEESt10unique_ptrINS0_18GeometryCollectionESt14default_deleteIS5_EEOSt6vectorIS4_IT_S6_ISA_EESaISC_EE@Base 3.9.0 - _ZNK4geos4geom15GeometryFactory28createPointFromInternalCoordEPKNS0_10CoordinateEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory6addRefEv@Base 3.6.0 - _ZNK4geos4geom15GeometryFactory7dropRefEv@Base 3.6.0 - _ZNK4geos4geom15MultiLineString11getBoundaryEv@Base 3.4.2 - _ZNK4geos4geom15MultiLineString11reverseImplEv@Base 3.10.0 - _ZNK4geos4geom15MultiLineString12getDimensionEv@Base 3.4.2 - (subst)_ZNK4geos4geom15MultiLineString12getGeometryNE{size_t}@Base 3.9.0 - _ZNK4geos4geom15MultiLineString12getSortIndexEv@Base 3.8.0 - _ZNK4geos4geom15MultiLineString15getGeometryTypeB5cxx11Ev@Base 3.4.2 - _ZNK4geos4geom15MultiLineString17getGeometryTypeIdEv@Base 3.4.2 - _ZNK4geos4geom15MultiLineString17isDimensionStrictENS0_9Dimension13DimensionTypeE@Base 3.8.0 - _ZNK4geos4geom15MultiLineString20getBoundaryDimensionEv@Base 3.4.2 - _ZNK4geos4geom15MultiLineString8isClosedEv@Base 3.4.2 - _ZNK4geos4geom15MultiLineString9cloneImplEv@Base 3.10.0 - _ZNK4geos4geom16CoordinateFilter9filter_rwEPNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom18CoordinateSequence11getEnvelopeEv@Base 3.8.0 - (subst)_ZNK4geos4geom18CoordinateSequence11getOrdinateE{size_t}{size_t}@Base 3.8.0 - _ZNK4geos4geom18CoordinateSequence13minCoordinateEv@Base 3.4.2 - _ZNK4geos4geom18CoordinateSequence14expandEnvelopeERNS0_8EnvelopeE@Base 3.4.2 - _ZNK4geos4geom18CoordinateSequence17hasRepeatedPointsEv@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom18CoordinateSequence4getXEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom18CoordinateSequence4getXEm@Base 3.7.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom18CoordinateSequence4getYEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom18CoordinateSequence4getYEm@Base 3.7.0 - _ZNK4geos4geom18CoordinateSequence8toStringB5cxx11Ev@Base 3.8.0 - _ZNK4geos4geom18GeometryCollection11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection11getBoundaryEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection11reverseImplEv@Base 3.10.0 - _ZNK4geos4geom18GeometryCollection12getDimensionEv@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom18GeometryCollection12getGeometryNEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom18GeometryCollection12getGeometryNEm@Base 3.7.0 - _ZNK4geos4geom18GeometryCollection12getNumPointsEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection12getSortIndexEv@Base 3.8.0 - _ZNK4geos4geom18GeometryCollection13getCoordinateEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection14getCoordinatesEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection15getGeometryTypeB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom18GeometryCollection16getNumGeometriesEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection17getGeometryTypeIdEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection17isDimensionStrictENS0_9Dimension13DimensionTypeE@Base 3.8.0 - _ZNK4geos4geom18GeometryCollection18compareToSameClassEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection20getBoundaryDimensionEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection22getCoordinateDimensionEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection23computeEnvelopeInternalEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection7getAreaEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection7isEmptyEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection8apply_roEPNS0_14GeometryFilterE@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection8apply_roEPNS0_16CoordinateFilterE@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection8apply_roEPNS0_23GeometryComponentFilterE@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection8apply_roERNS0_24CoordinateSequenceFilterE@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection9cloneImplEv@Base 3.10.0 - _ZNK4geos4geom18GeometryCollection9getLengthEv@Base 3.4.2 - _ZNK4geos4geom18IntersectionMatrix10isContainsEv@Base 3.4.2 - _ZNK4geos4geom18IntersectionMatrix10isDisjointEv@Base 3.4.2 - _ZNK4geos4geom18IntersectionMatrix10isOverlapsEii@Base 3.4.2 - _ZNK4geos4geom18IntersectionMatrix11isCoveredByEv@Base 3.4.2 - _ZNK4geos4geom18IntersectionMatrix12isIntersectsEv@Base 3.4.2 - _ZNK4geos4geom18IntersectionMatrix7matchesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZNK4geos4geom18IntersectionMatrix8isCoversEv@Base 3.4.2 - _ZNK4geos4geom18IntersectionMatrix8isEqualsEii@Base 3.4.2 - _ZNK4geos4geom18IntersectionMatrix8isWithinEv@Base 3.4.2 - _ZNK4geos4geom18IntersectionMatrix8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom18IntersectionMatrix9isCrossesEii@Base 3.4.2 - _ZNK4geos4geom18IntersectionMatrix9isTouchesEii@Base 3.4.2 - _ZNK4geos4geom23CoordinateArraySequence12getDimensionEv@Base 3.4.2 - _ZNK4geos4geom23CoordinateArraySequence14expandEnvelopeERNS0_8EnvelopeE@Base 3.4.2 - _ZNK4geos4geom23CoordinateArraySequence5cloneEv@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom23CoordinateArraySequence5getAtEj@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom23CoordinateArraySequence5getAtEjRNS0_10CoordinateE@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom23CoordinateArraySequence5getAtEm@Base 3.7.0 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom23CoordinateArraySequence5getAtEmRNS0_10CoordinateE@Base 3.7.0 - _ZNK4geos4geom23CoordinateArraySequence7getSizeEv@Base 3.4.2 - _ZNK4geos4geom23CoordinateArraySequence7isEmptyEv@Base 3.4.2 - _ZNK4geos4geom23CoordinateArraySequence8apply_roEPNS0_16CoordinateFilterE@Base 3.4.2 - _ZNK4geos4geom23CoordinateArraySequence8toVectorERSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.4.2 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE12getDimensionEv@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE5cloneEv@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE5getAtEj@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE5getAtEjRNS0_10CoordinateE@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE7getSizeEv@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE7isEmptyEv@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.1 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE12getDimensionEv@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE5cloneEv@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE5getAtEm@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE5getAtEmRNS0_10CoordinateE@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE7getSizeEv@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE7isEmptyEv@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.1 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE12getDimensionEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5cloneEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5getAtE{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5getAtE{size_t}RNS0_10CoordinateE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE7getSizeEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE7isEmptyEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE12getDimensionEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE5cloneEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE5getAtE{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE5getAtE{size_t}RNS0_10CoordinateE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE7getSizeEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE7isEmptyEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE12getDimensionEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE5cloneEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE5getAtE{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE5getAtE{size_t}RNS0_10CoordinateE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE7getSizeEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE7isEmptyEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE12getDimensionEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE5cloneEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE5getAtE{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE5getAtE{size_t}RNS0_10CoordinateE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE7getSizeEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE7isEmptyEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE12getDimensionEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE5cloneEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE5getAtE{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE5getAtE{size_t}RNS0_10CoordinateE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE7getSizeEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE7isEmptyEv@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 - (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 - (subst)_ZNK4geos4geom30CoordinateArraySequenceFactory6createEOSt6vectorINS0_10CoordinateESaIS3_EE{size_t}@Base 3.8.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom30CoordinateArraySequenceFactory6createEPSt6vectorINS0_10CoordinateESaIS3_EEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom30CoordinateArraySequenceFactory6createEPSt6vectorINS0_10CoordinateESaIS3_EEm@Base 3.7.0 - _ZNK4geos4geom30CoordinateArraySequenceFactory6createERKNS0_18CoordinateSequenceE@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom30CoordinateArraySequenceFactory6createEjj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom30CoordinateArraySequenceFactory6createEmm@Base 3.7.0 - _ZNK4geos4geom30CoordinateArraySequenceFactory6createEv@Base 3.5.0 - (subst)_ZNK4geos4geom32DefaultCoordinateSequenceFactory6createEOSt6vectorINS0_10CoordinateESaIS3_EE{size_t}@Base 3.8.0 - (subst)_ZNK4geos4geom32DefaultCoordinateSequenceFactory6createEPSt6vectorINS0_10CoordinateESaIS3_EE{size_t}@Base 3.8.0 - _ZNK4geos4geom32DefaultCoordinateSequenceFactory6createERKNS0_18CoordinateSequenceE@Base 3.8.0 - _ZNK4geos4geom32DefaultCoordinateSequenceFactory6createEv@Base 3.8.0 - (subst)_ZNK4geos4geom32DefaultCoordinateSequenceFactory6createE{size_t}{size_t}@Base 3.8.0 - _ZNK4geos4geom4prep13PreparedPoint10intersectsEPKNS0_8GeometryE@Base 3.5.0 - _ZNK4geos4geom4prep15PreparedPolygon10intersectsEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep15PreparedPolygon15getPointLocatorEv@Base 3.4.2 - _ZNK4geos4geom4prep15PreparedPolygon16containsProperlyEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep15PreparedPolygon21getIntersectionFinderEv@Base 3.4.2 - _ZNK4geos4geom4prep15PreparedPolygon23getIndexedFacetDistanceEv@Base 3.9.0 - _ZNK4geos4geom4prep15PreparedPolygon6coversEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep15PreparedPolygon8containsEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep15PreparedPolygon8distanceEPKNS0_8GeometryE@Base 3.9.0 - _ZNK4geos4geom4prep18PreparedLineString10intersectsEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep18PreparedLineString13nearestPointsEPKNS0_8GeometryE@Base 3.9.0 - _ZNK4geos4geom4prep18PreparedLineString23getIndexedFacetDistanceEv@Base 3.9.0 - _ZNK4geos4geom4prep18PreparedLineString8distanceEPKNS0_8GeometryE@Base 3.9.0 - _ZNK4geos4geom4prep21BasicPreparedGeometry10intersectsEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry11getGeometryEv@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry13nearestPointsEPKNS0_8GeometryE@Base 3.9.0 - _ZNK4geos4geom4prep21BasicPreparedGeometry14envelopeCoversEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry16containsProperlyEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry16isWithinDistanceEPKNS0_8GeometryEd@Base 3.10.0 - _ZNK4geos4geom4prep21BasicPreparedGeometry18envelopesIntersectEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry26isAnyTargetComponentInTestEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry6coversEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry6withinEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry7crossesEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry7touchesEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry8containsEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry8disjointEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry8distanceEPKNS0_8GeometryE@Base 3.9.0 - _ZNK4geos4geom4prep21BasicPreparedGeometry8overlapsEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep21BasicPreparedGeometry9coveredByEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep23PreparedGeometryFactory6createEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep23PreparedPolygonDistance8distanceEPKNS0_8GeometryE@Base 3.9.0 - _ZNK4geos4geom4prep24PreparedPolygonPredicate26isAnyTestComponentInTargetEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep24PreparedPolygonPredicate30isAnyTargetComponentInAreaTestEPKNS0_8GeometryEPKSt6vectorIPKNS0_10CoordinateESaIS9_EE@Base 3.4.2 - _ZNK4geos4geom4prep24PreparedPolygonPredicate33getOutermostTestComponentLocationEPKNS0_8GeometryE@Base 3.8.0 - _ZNK4geos4geom4prep24PreparedPolygonPredicate34isAnyTestComponentInTargetInteriorEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep24PreparedPolygonPredicate35isAllTestComponentsInTargetInteriorEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep26PreparedLineStringDistance8distanceEPKNS0_8GeometryE@Base 3.9.0 - _ZNK4geos4geom4prep28PreparedLineStringIntersects10intersectsEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep28PreparedLineStringIntersects22isAnyTestPointInTargetEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom4prep31PreparedLineStringNearestPoints13nearestPointsEPKNS0_8GeometryE@Base 3.9.0 - _ZNK4geos4geom4util13GeometryFixer10differenceEPKNS0_8GeometryERSt6vectorIS5_SaIS5_EE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer10fixPolygonEPKNS0_7PolygonE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer12isValidPointEPKNS0_5PointE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer13classifyHolesEPKNS0_8GeometryERSt6vectorISt10unique_ptrIS3_St14default_deleteIS3_EESaISA_EERS6_IS5_SaIS5_EESG_@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer13fixCollectionEPKNS0_18GeometryCollectionE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer13fixLineStringEPKNS0_10LineStringE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer13fixLinearRingEPKNS0_10LinearRingE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer13fixMultiPointEPKNS0_10MultiPointE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer13unionGeometryERSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer15fixMultiPolygonEPKNS0_12MultiPolygonE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer15fixPointElementEPKNS0_5PointE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer17fixPolygonElementEPKNS0_7PolygonE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer18fixMultiLineStringEPKNS0_15MultiLineStringE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer20fixLineStringElementEPKNS0_10LineStringE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer20fixLinearRingElementEPKNS0_10LinearRingE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer7fixRingEPKNS0_10LinearRingE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer8fixHolesEPKNS0_7PolygonE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer8fixPointEPKNS0_5PointE@Base 3.10.0 - _ZNK4geos4geom4util13GeometryFixer9getResultEv@Base 3.10.0 - _ZNK4geos4geom4util15SineStarFactory14createSineStarEv@Base 3.4.2 - _ZNK4geos4geom4util9Densifier17getResultGeometryEv@Base 3.8.0 - _ZNK4geos4geom5Point11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 - _ZNK4geos4geom5Point11getBoundaryEv@Base 3.4.2 - _ZNK4geos4geom5Point11reverseImplEv@Base 3.10.0 - _ZNK4geos4geom5Point12getDimensionEv@Base 3.4.2 - _ZNK4geos4geom5Point12getNumPointsEv@Base 3.4.2 - _ZNK4geos4geom5Point12getSortIndexEv@Base 3.8.0 - _ZNK4geos4geom5Point13getCoordinateEv@Base 3.4.2 - _ZNK4geos4geom5Point14getCoordinatesEv@Base 3.4.2 - _ZNK4geos4geom5Point15getGeometryTypeB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom5Point16getCoordinatesROEv@Base 3.4.2 - _ZNK4geos4geom5Point17getGeometryTypeIdEv@Base 3.4.2 - _ZNK4geos4geom5Point18compareToSameClassEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom5Point20getBoundaryDimensionEv@Base 3.4.2 - _ZNK4geos4geom5Point22getCoordinateDimensionEv@Base 3.4.2 - _ZNK4geos4geom5Point23computeEnvelopeInternalEv@Base 3.4.2 - _ZNK4geos4geom5Point4getXEv@Base 3.4.2 - _ZNK4geos4geom5Point4getYEv@Base 3.4.2 - _ZNK4geos4geom5Point4getZEv@Base 3.7.0 - _ZNK4geos4geom5Point7isEmptyEv@Base 3.4.2 - _ZNK4geos4geom5Point8apply_roEPNS0_14GeometryFilterE@Base 3.4.2 - _ZNK4geos4geom5Point8apply_roEPNS0_16CoordinateFilterE@Base 3.4.2 - _ZNK4geos4geom5Point8apply_roEPNS0_23GeometryComponentFilterE@Base 3.4.2 - _ZNK4geos4geom5Point8apply_roERNS0_24CoordinateSequenceFilterE@Base 3.4.2 - _ZNK4geos4geom5Point8isSimpleEv@Base 3.4.2 - _ZNK4geos4geom5Point9cloneImplEv@Base 3.10.0 - _ZNK4geos4geom7Polygon10convexHullEv@Base 3.4.2 - _ZNK4geos4geom7Polygon11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 - _ZNK4geos4geom7Polygon11getBoundaryEv@Base 3.4.2 - _ZNK4geos4geom7Polygon11isRectangleEv@Base 3.4.2 - _ZNK4geos4geom7Polygon11reverseImplEv@Base 3.10.0 - _ZNK4geos4geom7Polygon12getDimensionEv@Base 3.4.2 - _ZNK4geos4geom7Polygon12getNumPointsEv@Base 3.4.2 - _ZNK4geos4geom7Polygon12getSortIndexEv@Base 3.8.0 - _ZNK4geos4geom7Polygon13getCoordinateEv@Base 3.4.2 - _ZNK4geos4geom7Polygon14getCoordinatesEv@Base 3.4.2 - _ZNK4geos4geom7Polygon15getExteriorRingEv@Base 3.4.2 - _ZNK4geos4geom7Polygon15getGeometryTypeB5cxx11Ev@Base 3.5.1 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom7Polygon16getInteriorRingNEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom7Polygon16getInteriorRingNEm@Base 3.7.0 - _ZNK4geos4geom7Polygon17getGeometryTypeIdEv@Base 3.4.2 - _ZNK4geos4geom7Polygon18compareToSameClassEPKNS0_8GeometryE@Base 3.4.2 - _ZNK4geos4geom7Polygon18getNumInteriorRingEv@Base 3.4.2 - _ZNK4geos4geom7Polygon20getBoundaryDimensionEv@Base 3.4.2 - _ZNK4geos4geom7Polygon22getCoordinateDimensionEv@Base 3.4.2 - _ZNK4geos4geom7Polygon23computeEnvelopeInternalEv@Base 3.4.2 - _ZNK4geos4geom7Polygon7getAreaEv@Base 3.4.2 - _ZNK4geos4geom7Polygon7isEmptyEv@Base 3.4.2 - _ZNK4geos4geom7Polygon8apply_roEPNS0_14GeometryFilterE@Base 3.4.2 - _ZNK4geos4geom7Polygon8apply_roEPNS0_16CoordinateFilterE@Base 3.4.2 - _ZNK4geos4geom7Polygon8apply_roEPNS0_23GeometryComponentFilterE@Base 3.4.2 - _ZNK4geos4geom7Polygon8apply_roERNS0_24CoordinateSequenceFilterE@Base 3.4.2 - _ZNK4geos4geom7Polygon9cloneImplEv@Base 3.10.0 - _ZNK4geos4geom7Polygon9getLengthEv@Base 3.4.2 - _ZNK4geos4geom8Envelope10intersectsERKNS0_10CoordinateES4_@Base 3.8.0 - _ZNK4geos4geom8Envelope12intersectionERKS1_RS1_@Base 3.4.2 - _ZNK4geos4geom8Envelope6centreERNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom8Envelope6coversERKS1_@Base 3.4.2 - _ZNK4geos4geom8Envelope6coversEdd@Base 3.4.2 - _ZNK4geos4geom8Envelope6equalsEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Envelope8hashCodeEv@Base 3.4.2 - _ZNK4geos4geom8Envelope8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom8Geometry10convexHullEv@Base 3.4.2 - _ZNK4geos4geom8Geometry10differenceEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry10intersectsEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry11getCentroidERNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom8Geometry11getCentroidEv@Base 3.4.2 - _ZNK4geos4geom8Geometry11getEnvelopeEv@Base 3.4.2 - _ZNK4geos4geom8Geometry11isRectangleEv@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom8Geometry12getGeometryNEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom8Geometry12getGeometryNEm@Base 3.7.0 - _ZNK4geos4geom8Geometry12intersectionEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry13symDifferenceEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry16getInteriorPointEv@Base 3.4.2 - _ZNK4geos4geom8Geometry16getNumGeometriesEv@Base 3.4.2 - _ZNK4geos4geom8Geometry16isWithinDistanceEPKS1_d@Base 3.4.2 - _ZNK4geos4geom8Geometry17getPrecisionModelEv@Base 3.4.2 - _ZNK4geos4geom8Geometry17isDimensionStrictENS0_9Dimension13DimensionTypeE@Base 3.8.0 - _ZNK4geos4geom8Geometry17isEquivalentClassEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry19getEnvelopeInternalEv@Base 3.4.2 - _ZNK4geos4geom8Geometry5UnionEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry5UnionEv@Base 3.4.2 - _ZNK4geos4geom8Geometry5equalERKNS0_10CoordinateES4_d@Base 3.4.2 - _ZNK4geos4geom8Geometry6bufferEd@Base 3.4.2 - _ZNK4geos4geom8Geometry6bufferEdi@Base 3.4.2 - _ZNK4geos4geom8Geometry6bufferEdii@Base 3.4.2 - _ZNK4geos4geom8Geometry6coversEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry6equalsEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry6relateEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry6relateEPKS1_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZNK4geos4geom8Geometry6toTextB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom8Geometry6withinEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry7compareERKSt6vectorISt10unique_ptrIS1_St14default_deleteIS1_EESaIS6_EESA_@Base 3.8.0 - _ZNK4geos4geom8Geometry7compareESt6vectorINS0_10CoordinateESaIS3_EES5_@Base 3.4.2 - _ZNK4geos4geom8Geometry7compareESt6vectorIPS1_SaIS3_EES5_@Base 3.4.2 - _ZNK4geos4geom8Geometry7crossesEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry7getAreaEv@Base 3.4.2 - _ZNK4geos4geom8Geometry7getSRIDEv@Base 3.4.2 - _ZNK4geos4geom8Geometry7isValidEv@Base 3.4.2 - _ZNK4geos4geom8Geometry7touchesEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry8apply_roEPNS0_14GeometryFilterE@Base 3.4.2 - _ZNK4geos4geom8Geometry8apply_roEPNS0_23GeometryComponentFilterE@Base 3.4.2 - _ZNK4geos4geom8Geometry8containsEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry8disjointEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry8distanceEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry8isSimpleEv@Base 3.4.2 - _ZNK4geos4geom8Geometry8overlapsEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom8Geometry9compareToEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Geometry9getLengthEv@Base 3.4.2 - _ZNK4geos4geom8Triangle3detEdddd@Base 3.5.0 - _ZNK4geos4math2DD10isNegativeEv@Base 3.9.0 - _ZNK4geos4math2DD10isPositiveEv@Base 3.9.0 - _ZNK4geos4math2DD10reciprocalEv@Base 3.9.0 - _ZNK4geos4math2DD11doubleValueEv@Base 3.9.0 - _ZNK4geos4math2DD4ceilEv@Base 3.9.0 - _ZNK4geos4math2DD4rintEv@Base 3.9.0 - _ZNK4geos4math2DD5floorEv@Base 3.9.0 - _ZNK4geos4math2DD5isNaNEv@Base 3.9.0 - _ZNK4geos4math2DD6isZeroEv@Base 3.9.0 - _ZNK4geos4math2DD6negateEv@Base 3.9.0 - _ZNK4geos4math2DD6signumEv@Base 3.9.0 - _ZNK4geos4math2DD8intValueEv@Base 3.9.0 - _ZNK4geos4util21GeometricShapeFactory10Dimensions11getEnvelopeEv@Base 3.4.2 - _ZNK4geos4util21GeometricShapeFactory5coordEdd@Base 3.4.2 - _ZNK4geos4util7Profile13getNumTimingsEv@Base 3.4.2 - _ZNK4geos4util7Profile15getTotFormattedB5cxx11Ev@Base 3.8.0 - _ZNK4geos4util7Profile6getAvgEv@Base 3.4.2 - _ZNK4geos4util7Profile6getMaxEv@Base 3.4.2 - _ZNK4geos4util7Profile6getMinEv@Base 3.4.2 - _ZNK4geos4util7Profile6getTotEv@Base 3.4.2 - _ZNK4geos5index13intervalrtree21IntervalRTreeLeafNode5queryEddPNS0_11ItemVisitorE@Base 3.4.2 - _ZNK4geos5index13intervalrtree23IntervalRTreeBranchNode5queryEddPNS0_11ItemVisitorE@Base 3.4.2 - _ZNK4geos5index5chain13MonotoneChain11getEnvelopeEd@Base 3.10.0 - _ZNK4geos5index5chain13MonotoneChain11getEnvelopeEv@Base 3.10.0 - (subst)_ZNK4geos5index5chain13MonotoneChain13computeSelectERKNS_4geom8EnvelopeE{size_t}{size_t}RNS1_25MonotoneChainSelectActionE@Base 3.10.0 - _ZNK4geos5index5chain13MonotoneChain14getCoordinatesEv@Base 3.4.2 - _ZNK4geos5index5chain13MonotoneChain15computeOverlapsEPKS2_PNS1_26MonotoneChainOverlapActionE@Base 3.10.0 - _ZNK4geos5index5chain13MonotoneChain15computeOverlapsEPKS2_dPNS1_26MonotoneChainOverlapActionE@Base 3.10.0 - (subst)_ZNK4geos5index5chain13MonotoneChain15computeOverlapsE{size_t}{size_t}RKS2_{size_t}{size_t}dRNS1_26MonotoneChainOverlapActionE@Base 3.10.0 - _ZNK4geos5index5chain13MonotoneChain6selectERKNS_4geom8EnvelopeERNS1_25MonotoneChainSelectActionE@Base 3.10.0 - (subst)_ZNK4geos5index5chain13MonotoneChain8overlapsE{size_t}{size_t}RKS2_{size_t}{size_t}d@Base 3.9.0 - _ZNK4geos5index7bintree8Interval6getMaxEv@Base 3.4.2 - _ZNK4geos5index7bintree8Interval6getMinEv@Base 3.4.2 - _ZNK4geos5index7bintree8Interval8containsEPKS2_@Base 3.4.2 - _ZNK4geos5index7bintree8Interval8containsEd@Base 3.4.2 - _ZNK4geos5index7bintree8Interval8containsEdd@Base 3.4.2 - _ZNK4geos5index7bintree8Interval8getWidthEv@Base 3.4.2 - _ZNK4geos5index7bintree8Interval8overlapsEPKS2_@Base 3.4.2 - _ZNK4geos5index7bintree8Interval8overlapsEdd@Base 3.4.2 - _ZNK4geos5index7strtree12AbstractNode6isLeafEv@Base 3.8.0 - _ZNK4geos5index7strtree12AbstractNode9getBoundsEv@Base 3.4.2 - _ZNK4geos5index7strtree13BoundablePair11getDistanceEv@Base 3.6.0 - _ZNK4geos5index7strtree13BoundablePair12getBoundableEi@Base 3.6.0 - _ZNK4geos5index7strtree13BoundablePair8distanceEv@Base 3.6.0 - _ZNK4geos5index7strtree13BoundablePair8isLeavesEv@Base 3.6.0 - _ZNK4geos5index7strtree13ItemBoundable6isLeafEv@Base 3.8.0 - _ZNK4geos5index7strtree13ItemBoundable9getBoundsEv@Base 3.4.2 - _ZNK4geos5index7strtree13SimpleSTRnode11getNumNodesEv@Base 3.9.0 - _ZNK4geos5index7strtree13SimpleSTRnode15getNumLeafNodesEv@Base 3.9.0 - _ZNK4geos5index7strtree13SimpleSTRnode6isLeafEv@Base 3.9.0 - _ZNK4geos5index7strtree13SimpleSTRnode8toStringERSoi@Base 3.9.0 - _ZNK4geos5index7strtree13SimpleSTRnode9getBoundsEv@Base 3.9.0 - _ZNK4geos5index7strtree13SimpleSTRpair11getDistanceEv@Base 3.9.0 - _ZNK4geos5index7strtree13SimpleSTRpair7getNodeEi@Base 3.9.0 - _ZNK4geos5index7strtree13SimpleSTRpair8isLeavesEv@Base 3.9.0 - _ZNK4geos5index7strtree15SIRAbstractNode13computeBoundsEv@Base 3.4.2 - _ZNK4geos5index7strtree15STRAbstractNode13computeBoundsEv@Base 3.4.2 - _ZNK4geos5index8quadtree3Key11getEnvelopeEv@Base 3.4.2 - _ZNK4geos5index8quadtree3Key8getLevelEv@Base 3.4.2 - _ZNK4geos5index8quadtree3Key8getPointEv@Base 3.4.2 - _ZNK4geos5index8quadtree3Key9getCentreEv@Base 3.4.2 - _ZNK4geos5index8quadtree4Node13isSearchMatchERKNS_4geom8EnvelopeE@Base 3.4.2 - _ZNK4geos5index8quadtree4Node8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos5index8quadtree4Root13isSearchMatchERKNS_4geom8EnvelopeE@Base 3.4.2 - _ZNK4geos5index8quadtree8NodeBase11addAllItemsERSt6vectorIPvSaIS4_EE@Base 3.4.2 - _ZNK4geos5index8quadtree8NodeBase12getNodeCountEv@Base 3.4.2 - _ZNK4geos5index8quadtree8NodeBase26addAllItemsFromOverlappingERKNS_4geom8EnvelopeERSt6vectorIPvSaIS8_EE@Base 3.4.2 - _ZNK4geos5index8quadtree8NodeBase4sizeEv@Base 3.4.2 - _ZNK4geos5index8quadtree8NodeBase5depthEv@Base 3.4.2 - _ZNK4geos5index8quadtree8NodeBase8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos5index8quadtree8Quadtree8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos5index9sweepline14SweepLineEvent9compareToEPKS2_@Base 3.4.2 - _ZNK4geos5index9sweepline22SweepLineEventLessThenclEPKNS1_14SweepLineEventES5_@Base 3.4.2 - _ZNK4geos6noding11ScaledNoder18getNodedSubstringsEv@Base 3.4.2 - _ZNK4geos6noding11ScaledNoder5scaleERSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 - _ZNK4geos6noding11ScaledNoder6Scaler9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos6noding11ScaledNoder7rescaleERSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 - _ZNK4geos6noding11ScaledNoder8ReScaler9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos6noding11SimpleNoder18getNodedSubstringsEv@Base 3.4.2 - _ZNK4geos6noding12MCIndexNoder18getNodedSubstringsEv@Base 3.4.2 - _ZNK4geos6noding13IteratedNoder18getNodedSubstringsEv@Base 3.4.2 - _ZNK4geos6noding13SegmentString5printERSo@Base 3.4.2 - _ZNK4geos6noding15NodingValidator13checkCollapseERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 - _ZNK4geos6noding15NodingValidator14checkCollapsesERKNS0_13SegmentStringE@Base 3.4.2 - _ZNK4geos6noding15NodingValidator14checkCollapsesEv@Base 3.4.2 - _ZNK4geos6noding15NodingValidator23hasInteriorIntersectionERKNS_9algorithm15LineIntersectorERKNS_4geom10CoordinateES9_@Base 3.4.2 - _ZNK4geos6noding15NodingValidator29checkEndPtVertexIntersectionsERKNS_4geom10CoordinateERKSt6vectorIPNS0_13SegmentStringESaIS8_EE@Base 3.4.2 - _ZNK4geos6noding15NodingValidator29checkEndPtVertexIntersectionsEv@Base 3.4.2 - _ZNK4geos6noding15SegmentNodeList15createSplitEdgeEPKNS0_11SegmentNodeES4_@Base 3.9.0 - _ZNK4geos6noding15SegmentNodeList18addEdgeCoordinatesEPKNS0_11SegmentNodeES4_RSt6vectorINS_4geom10CoordinateESaIS7_EE@Base 3.9.0 - _ZNK4geos6noding15SegmentNodeList18createSplitEdgePtsEPKNS0_11SegmentNodeES4_@Base 3.10.0 - _ZNK4geos6noding15SegmentNodeList26checkSplitEdgesCorrectnessERKSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.9.0 - (subst)_ZNK4geos6noding15SegmentNodeList30findCollapsesFromInsertedNodesERSt6vectorI{size_t}SaI{size_t}EE@Base 3.9.0 - (subst)_ZNK4geos6noding15SegmentNodeList33findCollapsesFromExistingVerticesERSt6vectorI{size_t}SaI{size_t}EE@Base 3.9.0 - _ZNK4geos6noding15SegmentNodeList7prepareEv@Base 3.10.0 - _ZNK4geos6noding15ValidatingNoder18getNodedSubstringsEv@Base 3.9.0 - _ZNK4geos6noding17IntersectionAdder6isDoneEv@Base 3.4.2 - (subst)_ZNK4geos6noding18BasicSegmentString13getCoordinateE{size_t}@Base 3.8.0 - _ZNK4geos6noding18BasicSegmentString14getCoordinatesEv@Base 3.4.2 - _ZNK4geos6noding18BasicSegmentString4sizeEv@Base 3.4.2 - _ZNK4geos6noding18BasicSegmentString5printERSo@Base 3.4.2 - _ZNK4geos6noding18BasicSegmentString8isClosedEv@Base 3.4.2 - _ZNK4geos6noding18NodedSegmentString11getNodeListEv@Base 3.4.2 - (subst)_ZNK4geos6noding18NodedSegmentString13getCoordinateE{size_t}@Base 3.8.0 - _ZNK4geos6noding18NodedSegmentString14getCoordinatesEv@Base 3.4.2 - _ZNK4geos6noding18NodedSegmentString4sizeEv@Base 3.4.2 - _ZNK4geos6noding18NodedSegmentString5printERSo@Base 3.4.2 - _ZNK4geos6noding18NodedSegmentString8isClosedEv@Base 3.4.2 - _ZNK4geos6noding18SegmentIntersector6isDoneEv@Base 3.4.2 - _ZNK4geos6noding19FastNodingValidator15getErrorMessageB5cxx11Ev@Base 3.5.1 - _ZNK4geos6noding23IntersectionFinderAdder6isDoneEv@Base 3.4.2 - _ZNK4geos6noding23OrientedCoordinateArray8HashCodeclERKS1_@Base 3.8.0 - _ZNK4geos6noding23OrientedCoordinateArray9compareToERKS1_@Base 3.4.2 - _ZNK4geos6noding23OrientedCoordinateArrayeqERKS1_@Base 3.8.0 - _ZNK4geos6noding24NodingIntersectionFinder6isDoneEv@Base 3.8.0 - _ZNK4geos6noding27SegmentIntersectionDetector6isDoneEv@Base 3.4.2 - _ZNK4geos6noding4snap13SnappingNoder18getNodedSubstringsEv@Base 3.9.0 - _ZNK4geos6noding4snap25SnappingIntersectionAdder6isDoneEv@Base 3.9.0 - _ZNK4geos6noding9snapround17SnapRoundingNoder18getNodedSubstringsEv@Base 3.9.0 - _ZNK4geos6noding9snapround17SnapRoundingNoder5roundERKSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.10.0 - _ZNK4geos6noding9snapround18MCIndexSnapRounder18getNodedSubstringsEv@Base 3.4.2 - _ZNK4geos6noding9snapround19MCIndexPointSnapper15getSafeEnvelopeERKNS1_8HotPixelE@Base 3.9.0 - _ZNK4geos6noding9snapround29SnapRoundingIntersectionAdder6isDoneEv@Base 3.9.0 - _ZNK4geos6noding9snapround8HotPixel10intersectsERKNS_4geom10CoordinateE@Base 3.9.0 - _ZNK4geos6noding9snapround8HotPixel10intersectsERKNS_4geom10CoordinateES6_@Base 3.4.2 - _ZNK4geos6noding9snapround8HotPixel13getCoordinateEv@Base 3.9.0 - _ZNK4geos6noding9snapround8HotPixel16intersectsScaledEdddd@Base 3.9.0 - _ZNK4geos6noding9snapround8HotPixel22intersectsPixelClosureERKNS_4geom10CoordinateES6_@Base 3.9.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify16TaggedLineString10getSegmentEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos8simplify16TaggedLineString10getSegmentEm@Base 3.7.0 - _ZNK4geos8simplify16TaggedLineString11getSegmentsEv@Base 3.4.2 - _ZNK4geos8simplify16TaggedLineString12asLineStringEv@Base 3.4.2 - _ZNK4geos8simplify16TaggedLineString12asLinearRingEv@Base 3.4.2 - _ZNK4geos8simplify16TaggedLineString13getResultSizeEv@Base 3.4.2 - _ZNK4geos8simplify16TaggedLineString14getMinimumSizeEv@Base 3.4.2 - _ZNK4geos8simplify16TaggedLineString20getParentCoordinatesEv@Base 3.4.2 - _ZNK4geos8simplify16TaggedLineString20getResultCoordinatesEv@Base 3.4.2 - _ZNK4geos8simplify16TaggedLineString9getParentEv@Base 3.4.2 - _ZNK4geos8simplify17TaggedLineSegment8getIndexEv@Base 3.4.2 - _ZNK4geos8simplify17TaggedLineSegment9getParentEv@Base 3.4.2 - _ZNK4geos8simplify26TaggedLineStringSimplifier23hasInteriorIntersectionERKNS_4geom11LineSegmentES5_@Base 3.4.2 - _ZNK4geos9algorithm11HCoordinate13getCoordinateERNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9algorithm11HCoordinate4getXEv@Base 3.4.2 - _ZNK4geos9algorithm11HCoordinate4getYEv@Base 3.4.2 - _ZNK4geos9algorithm15LineIntersector12intersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.8.0 - (subst)_ZNK4geos9algorithm15LineIntersector15getEdgeDistanceE{size_t}{size_t}@Base 3.8.0 - _ZNK4geos9algorithm15LineIntersector8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos9algorithm17InteriorPointArea16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9algorithm17InteriorPointLine16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9algorithm18InteriorPointPoint16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9algorithm18RayCrossingCounter11getLocationEv@Base 3.10.0 - _ZNK4geos9algorithm18RayCrossingCounter16isPointInPolygonEv@Base 3.10.0 - _ZNK4geos9algorithm8Centroid11getCentroidERNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilter17isGeometryChangedEv@Base 3.4.2 - _ZNK4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilter6isDoneEv@Base 3.4.2 - _ZNK4geos9edgegraph8HalfEdge10findLowestEv@Base 3.9.0 - _ZNK4geos9edgegraph8HalfEdge11directionPtEv@Base 3.9.0 - _ZNK4geos9edgegraph8HalfEdge13isEdgesSortedEv@Base 3.9.0 - _ZNK4geos9edgegraph8HalfEdge23compareAngularDirectionEPKS1_@Base 3.9.0 - _ZNK4geos9edgegraph8HalfEdge4prevEv@Base 3.10.0 - _ZNK4geos9edgegraph8HalfEdge6equalsERKNS_4geom10CoordinateES5_@Base 3.9.0 - _ZNK4geos9geomgraph11EdgeEndStar13getCoordinateEv@Base 3.6.0 - _ZNK4geos9geomgraph11EdgeEndStar3endEv@Base 3.6.0 - _ZNK4geos9geomgraph11EdgeEndStar5beginEv@Base 3.6.0 - _ZNK4geos9geomgraph11EdgeEndStar5printB5cxx11Ev@Base 3.6.0 - _ZNK4geos9geomgraph11NodeFactory10createNodeERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9geomgraph12DirectedEdge13getDepthDeltaEv@Base 3.6.2 - _ZNK4geos9geomgraph12DirectedEdge5printB5cxx11Ev@Base 3.6.2 - _ZNK4geos9geomgraph13GeometryGraph8findEdgeEPKNS_4geom10LineStringE@Base 3.9.0 - _ZNK4geos9geomgraph14GraphComponent10isInResultEv@Base 3.4.2 - _ZNK4geos9geomgraph14GraphComponent12isCoveredSetEv@Base 3.4.2 - _ZNK4geos9geomgraph14GraphComponent9isCoveredEv@Base 3.4.2 - _ZNK4geos9geomgraph14GraphComponent9isVisitedEv@Base 3.4.2 - _ZNK4geos9geomgraph16DirectedEdgeStar5printB5cxx11Ev@Base 3.6.2 - _ZNK4geos9geomgraph16TopologyLocation8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos9geomgraph20EdgeIntersectionList14isIntersectionERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9geomgraph20EdgeIntersectionList5printB5cxx11Ev@Base 3.5.1 - _ZNK4geos9geomgraph20EdgeIntersectionList7isEmptyEv@Base 3.4.2 - _ZNK4geos9geomgraph4Edge10isIsolatedEv@Base 3.4.2 - _ZNK4geos9geomgraph4Edge11isCollapsedEv@Base 3.4.2 - _ZNK4geos9geomgraph4Edge12getNumPointsEv@Base 3.4.2 - _ZNK4geos9geomgraph4Edge12printReverseB5cxx11Ev@Base 3.5.1 - _ZNK4geos9geomgraph4Edge13getCoordinateEv@Base 3.4.2 - (subst)_ZNK4geos9geomgraph4Edge13getCoordinateE{size_t}@Base 3.8.0 - _ZNK4geos9geomgraph4Edge13getDepthDeltaEv@Base 3.4.2 - _ZNK4geos9geomgraph4Edge14getCoordinatesEv@Base 3.4.2 - _ZNK4geos9geomgraph4Edge16isPointwiseEqualEPKS1_@Base 3.4.2 - _ZNK4geos9geomgraph4Edge22getMaximumSegmentIndexEv@Base 3.4.2 - _ZNK4geos9geomgraph4Edge5printB5cxx11Ev@Base 3.5.1 - _ZNK4geos9geomgraph4Edge6equalsEPKS1_@Base 3.4.2 - _ZNK4geos9geomgraph4Edge6equalsERKS1_@Base 3.4.2 - _ZNK4geos9geomgraph4Edge8isClosedEv@Base 3.4.2 - _ZNK4geos9geomgraph4Node10isIsolatedEv@Base 3.4.2 - _ZNK4geos9geomgraph4Node13getCoordinateEv@Base 3.4.2 - _ZNK4geos9geomgraph4Node22isIncidentEdgeInResultEv@Base 3.4.2 - _ZNK4geos9geomgraph4Node4getZEv@Base 3.4.2 - _ZNK4geos9geomgraph5Depth8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos9geomgraph5Label8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos9geomgraph7EdgeEnd16compareDirectionEPKS1_@Base 3.4.2 - _ZNK4geos9geomgraph7EdgeEnd5printB5cxx11Ev@Base 3.6.0 - _ZNK4geos9geomgraph7EdgeEnd9compareToEPKS1_@Base 3.4.2 - _ZNK4geos9geomgraph7NodeMap16getBoundaryNodesEhRSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.10.0 - _ZNK4geos9geomgraph7NodeMap4findERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9geomgraph7NodeMap5printB5cxx11Ev@Base 3.5.1 - _ZNK4geos9geomgraph8EdgeList13findEdgeIndexEPKNS0_4EdgeE@Base 3.8.0 - _ZNK4geos9geomgraph8EdgeList13findEqualEdgeEPKNS0_4EdgeE@Base 3.8.0 - _ZNK4geos9linearref14LinearIterator11isEndOfLineEv@Base 3.4.2 - _ZNK4geos9linearref14LinearIterator13getSegmentEndEv@Base 3.4.2 - _ZNK4geos9linearref14LinearIterator14getVertexIndexEv@Base 3.4.2 - _ZNK4geos9linearref14LinearIterator15getSegmentStartEv@Base 3.4.2 - _ZNK4geos9linearref14LinearIterator17getComponentIndexEv@Base 3.4.2 - _ZNK4geos9linearref14LinearIterator7getLineEv@Base 3.4.2 - _ZNK4geos9linearref14LinearIterator7hasNextEv@Base 3.4.2 - _ZNK4geos9linearref14LinearLocation10getSegmentEPKNS_4geom8GeometryE@Base 3.4.2 - _ZNK4geos9linearref14LinearLocation10isEndpointERKNS_4geom8GeometryE@Base 3.4.2 - _ZNK4geos9linearref14LinearLocation13getCoordinateEPKNS_4geom8GeometryE@Base 3.4.2 - _ZNK4geos9linearref14LinearLocation15getSegmentIndexEv@Base 3.4.2 - _ZNK4geos9linearref14LinearLocation15isOnSameSegmentERKS1_@Base 3.4.2 - _ZNK4geos9linearref14LinearLocation16getSegmentLengthEPKNS_4geom8GeometryE@Base 3.4.2 - _ZNK4geos9linearref14LinearLocation17getComponentIndexEv@Base 3.4.2 - _ZNK4geos9linearref14LinearLocation18getSegmentFractionEv@Base 3.4.2 - (subst)_ZNK4geos9linearref14LinearLocation21compareLocationValuesE{size_t}{size_t}d@Base 3.8.0 - _ZNK4geos9linearref14LinearLocation7isValidEPKNS_4geom8GeometryE@Base 3.4.2 - _ZNK4geos9linearref14LinearLocation8isVertexEv@Base 3.4.2 - _ZNK4geos9linearref14LinearLocation9compareToERKS1_@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine10clampIndexEd@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine10locationOfEd@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine10locationOfEdb@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine11extractLineEdd@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine11getEndIndexEv@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine12extractPointEd@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine12extractPointEdd@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine12indexOfAfterERKNS_4geom10CoordinateEd@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine12isValidIndexEd@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine13getStartIndexEv@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine13positiveIndexEd@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine7indexOfERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine7projectERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9linearref17LengthIndexedLine9indicesOfEPKNS_4geom8GeometryE@Base 3.4.2 - _ZNK4geos9linearref17LengthLocationMap11getLocationEd@Base 3.4.2 - _ZNK4geos9linearref17LengthLocationMap11getLocationEdb@Base 3.4.2 - _ZNK4geos9linearref17LengthLocationMap13resolveHigherERKNS0_14LinearLocationE@Base 3.4.2 - _ZNK4geos9linearref17LengthLocationMap18getLocationForwardEd@Base 3.4.2 - _ZNK4geos9linearref17LengthLocationMap9getLengthERKNS0_14LinearLocationE@Base 3.4.2 - _ZNK4geos9linearref18LengthIndexOfPoint12indexOfAfterERKNS_4geom10CoordinateEd@Base 3.4.2 - _ZNK4geos9linearref18LengthIndexOfPoint16indexOfFromStartERKNS_4geom10CoordinateEd@Base 3.4.2 - _ZNK4geos9linearref18LengthIndexOfPoint21segmentNearestMeasureEPKNS_4geom11LineSegmentERKNS2_10CoordinateEd@Base 3.4.2 - _ZNK4geos9linearref18LengthIndexOfPoint7indexOfERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9linearref19LocationIndexOfLine9indicesOfEPKNS_4geom8GeometryE@Base 3.4.2 - _ZNK4geos9linearref20LocationIndexOfPoint12indexOfAfterERKNS_4geom10CoordinateEPKNS0_14LinearLocationE@Base 3.4.2 - _ZNK4geos9linearref20LocationIndexOfPoint16indexOfFromStartERKNS_4geom10CoordinateEPKNS0_14LinearLocationE@Base 3.4.2 - _ZNK4geos9linearref20LocationIndexOfPoint7indexOfERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9linearref21LinearGeometryBuilder17getLastCoordinateEv@Base 3.4.2 - _ZNK4geos9operation10polygonize22PolygonizeDirectedEdge7getNextEv@Base 3.4.2 - _ZNK4geos9operation10polygonize22PolygonizeDirectedEdge8getLabelEv@Base 3.4.2 - _ZNK4geos9operation10polygonize22PolygonizeDirectedEdge8isInRingEv@Base 3.4.2 - _ZNK4geos9operation10polygonize8EdgeRing12getOuterHoleEv@Base 3.8.0 - _ZNK4geos9operation12intersection28RectangleIntersectionBuilder5emptyEv@Base 3.5.0 - _ZNK4geos9operation12intersection9Rectangle12toLinearRingERKNS_4geom15GeometryFactoryE@Base 3.5.0 - _ZNK4geos9operation12intersection9Rectangle9toPolygonERKNS_4geom15GeometryFactoryE@Base 3.5.0 - _ZNK4geos9operation22GeometryGraphOperation14getArgGeometryEj@Base 3.4.2 - _ZNK4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder15hasIntersectionEv@Base 3.10.0 - (subst)_ZNK4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder22isIntersectionEndpointEPKNS_6noding13SegmentStringE{size_t}RKNS_9algorithm15LineIntersectorE{size_t}@Base 3.10.0 - (subst)_ZNK4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder23intersectionVertexIndexERKNS_9algorithm15LineIntersectorE{size_t}@Base 3.10.0 - _ZNK4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder6isDoneEv@Base 3.10.0 - _ZNK4geos9operation5valid11PolygonRing10getTouchesEv@Base 3.10.0 - _ZNK4geos9operation5valid11PolygonRing11isOnlyTouchEPKS2_RKNS_4geom10CoordinateE@Base 3.10.0 - _ZNK4geos9operation5valid16PolygonRingTouch12isAtLocationERKNS_4geom10CoordinateE@Base 3.10.0 - _ZNK4geos9operation5valid16PolygonRingTouch13getCoordinateEv@Base 3.10.0 - _ZNK4geos9operation5valid16PolygonRingTouch7getRingEv@Base 3.10.0 - _ZNK4geos9operation5valid19PolygonRingSelfNode10isExteriorEb@Base 3.10.0 - _ZNK4geos9operation5valid23TopologyValidationError10getMessageB5cxx11Ev@Base 3.10.0 - _ZNK4geos9operation5valid23TopologyValidationError12getErrorTypeEv@Base 3.10.0 - _ZNK4geos9operation5valid23TopologyValidationError13getCoordinateEv@Base 3.10.0 - _ZNK4geos9operation5valid23TopologyValidationError8toStringB5cxx11Ev@Base 3.10.0 - (subst)_ZNK4geos9operation5valid27PolygonIntersectionAnalyzer16isAdjacentInRingEPKNS_6noding13SegmentStringE{size_t}{size_t}@Base 3.10.0 - (subst)_ZNK4geos9operation5valid27PolygonIntersectionAnalyzer20prevCoordinateInRingEPKNS_6noding13SegmentStringE{size_t}@Base 3.10.0 - _ZNK4geos9operation5valid27PolygonIntersectionAnalyzer6isDoneEv@Base 3.10.0 - _ZNK4geos9operation6buffer13BufferBuilder25createEmptyResultGeometryEv@Base 3.4.2 - _ZNK4geos9operation6buffer21OffsetCurveSetBuilder9isRingCCWEPKNS_4geom18CoordinateSequenceE@Base 3.10.0 - (subst)_ZNK4geos9operation6buffer25BufferInputLineSimplifier11isDeletableE{size_t}{size_t}{size_t}d@Base 3.8.0 - _ZNK4geos9operation6buffer25BufferInputLineSimplifier12collapseLineEv@Base 3.4.2 - (subst)_ZNK4geos9operation6buffer25BufferInputLineSimplifier16isShallowSampledERKNS_4geom10CoordinateES6_{size_t}{size_t}d@Base 3.8.0 - _ZNK4geos9operation6buffer25BufferInputLineSimplifier18isShallowConcavityERKNS_4geom10CoordinateES6_S6_d@Base 3.4.2 - (subst)_ZNK4geos9operation6buffer25BufferInputLineSimplifier23findNextNonDeletedIndexE{size_t}@Base 3.8.0 - _ZNK4geos9operation6buffer25BufferInputLineSimplifier9isConcaveERKNS_4geom10CoordinateES6_S6_@Base 3.4.2 - _ZNK4geos9operation6buffer25BufferInputLineSimplifier9isShallowERKNS_4geom10CoordinateES6_S6_d@Base 3.4.2 - _ZNK4geos9operation6relate13EdgeEndBundle5printB5cxx11Ev@Base 3.7.0 - _ZNK4geos9operation6relate17RelateNodeFactory10createNodeERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9operation7overlay15ElevationMatrix15getAvgElevationEv@Base 3.4.2 - _ZNK4geos9operation7overlay15ElevationMatrix5printB5cxx11Ev@Base 3.5.1 - _ZNK4geos9operation7overlay15ElevationMatrix7elevateEPNS_4geom8GeometryE@Base 3.4.2 - _ZNK4geos9operation7overlay15ElevationMatrix7getCellERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9operation7overlay18OverlayNodeFactory10createNodeERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9operation7overlay19ElevationMatrixCell5printB5cxx11Ev@Base 3.5.1 - _ZNK4geos9operation7overlay19ElevationMatrixCell6getAvgEv@Base 3.4.2 - _ZNK4geos9operation7overlay19ElevationMatrixCell8getTotalEv@Base 3.4.2 - _ZNK4geos9operation7overlay21ElevationMatrixFilter9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9operation7overlay9OverlayOp6mergeZEPNS_9geomgraph4NodeEPKNS_4geom10LineStringE@Base 3.4.2 - _ZNK4geos9operation7overlay9OverlayOp6mergeZEPNS_9geomgraph4NodeEPKNS_4geom7PolygonE@Base 3.4.2 - _ZNK4geos9operation8distance13FacetSequence11getEnvelopeEv@Base 3.6.0 - (subst)_ZNK4geos9operation8distance13FacetSequence13getCoordinateE{size_t}@Base 3.6.0 - _ZNK4geos9operation8distance13FacetSequence16nearestLocationsERKS2_@Base 3.8.0 - _ZNK4geos9operation8distance13FacetSequence23computeDistanceLineLineERKS2_PSt6vectorINS1_16GeometryLocationESaIS6_EE@Base 3.8.0 - _ZNK4geos9operation8distance13FacetSequence24computeDistancePointLineERKNS_4geom10CoordinateERKS2_PSt6vectorINS1_16GeometryLocationESaISA_EE@Base 3.8.0 - (subst)_ZNK4geos9operation8distance13FacetSequence30updateNearestLocationsLineLineE{size_t}RKNS_4geom10CoordinateES6_RKS2_{size_t}S6_S6_PSt6vectorINS1_16GeometryLocationESaISA_EE@Base 3.8.0 - (subst)_ZNK4geos9operation8distance13FacetSequence31updateNearestLocationsPointLineERKNS_4geom10CoordinateERKS2_{size_t}S6_S6_PSt6vectorINS1_16GeometryLocationESaISA_EE@Base 3.8.0 - _ZNK4geos9operation8distance13FacetSequence4sizeEv@Base 3.6.0 - _ZNK4geos9operation8distance13FacetSequence7isPointEv@Base 3.6.0 - _ZNK4geos9operation8distance13FacetSequence8distanceERKS2_@Base 3.7.0 - _ZNK4geos9operation8distance20IndexedFacetDistance13nearestPointsEPKNS_4geom8GeometryE@Base 3.8.0 - _ZNK4geos9operation8distance20IndexedFacetDistance16nearestLocationsEPKNS_4geom8GeometryE@Base 3.8.0 - _ZNK4geos9operation8distance20IndexedFacetDistance8distanceEPKNS_4geom8GeometryE@Base 3.8.0 - _ZNK4geos9operation8geounion18PointGeometryUnion5UnionEv@Base 3.4.2 - _ZNK4geos9operation8geounion20CascadedPolygonUnion11unionActualEOSt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EES9_@Base 3.10.0 - _ZNK4geos9operation8geounion20CascadedPolygonUnion11unionActualEPKNS_4geom8GeometryES6_@Base 3.10.0 - _ZNK4geos9operation8geounion20CascadedPolygonUnion9unionSafeEPKNS_4geom8GeometryES6_@Base 3.10.0 - _ZNK4geos9operation8geounion20ClassicUnionStrategy19isFloatingPrecisionEv@Base 3.9.0 - _ZNK4geos9operation9linemerge13LineMergeEdge7getLineEv@Base 3.4.2 - _ZNK4geos9operation9overlayng11LineBuilder12isResultLineEPKNS1_12OverlayLabelE@Base 3.9.0 - _ZNK4geos9operation9overlayng11LineBuilder6toLineEPNS1_11OverlayEdgeE@Base 3.10.0 - _ZNK4geos9operation9overlayng11OverlayEdge11directionPtEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge12resultSymbolB5cxx11Ev@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge14addCoordinatesEPNS_4geom23CoordinateArraySequenceE@Base 3.10.0 - _ZNK4geos9operation9overlayng11RingClipper12intersectionERKNS_4geom10CoordinateES6_iRS4_@Base 3.9.0 - _ZNK4geos9operation9overlayng11RingClipper12isInsideEdgeERKNS_4geom10CoordinateEi@Base 3.9.0 - _ZNK4geos9operation9overlayng11RingClipper13clipToBoxEdgeEPKNS_4geom18CoordinateSequenceEib@Base 3.9.0 - _ZNK4geos9operation9overlayng11RingClipper17intersectionLineXERKNS_4geom10CoordinateES6_d@Base 3.9.0 - _ZNK4geos9operation9overlayng11RingClipper17intersectionLineYERKNS_4geom10CoordinateES6_d@Base 3.9.0 - _ZNK4geos9operation9overlayng11RingClipper4clipEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayGraph11getNodeEdgeERKNS_4geom10CoordinateE@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel11getLocationEhib@Base 3.10.0 - _ZNK4geos9operation9overlayng12OverlayLabel14locationStringEhbRSo@Base 3.10.0 - _ZNK4geos9operation9overlayng12OverlayLabel15dimensionSymbolB5cxx11Ei@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel28isCollapseAndNotPartInteriorEv@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel8toStringEbRSo@Base 3.9.0 - _ZNK4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategy19isFloatingPrecisionEv@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry11getEnvelopeEh@Base 3.10.0 - _ZNK4geos9operation9overlayng13InputGeometry11getGeometryEh@Base 3.10.0 - _ZNK4geos9operation9overlayng13InputGeometry11isAllPointsEv@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry12getAreaIndexEv@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry12getDimensionEh@Base 3.10.0 - _ZNK4geos9operation9overlayng13InputGeometry6isAreaEh@Base 3.10.0 - _ZNK4geos9operation9overlayng13InputGeometry6isLineEh@Base 3.10.0 - _ZNK4geos9operation9overlayng13InputGeometry7isEmptyEh@Base 3.10.0 - _ZNK4geos9operation9overlayng13InputGeometry8hasEdgesEh@Base 3.10.0 - _ZNK4geos9operation9overlayng13InputGeometry8isSingleEv@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry9hasPointsEv@Base 3.9.0 - _ZNK4geos9operation9overlayng13OverlayPoints10roundCoordEPKNS_4geom5PointEPKNS3_14PrecisionModelE@Base 3.9.0 - _ZNK4geos9operation9overlayng14PolygonBuilder11getPolygonsEv@Base 3.10.0 - _ZNK4geos9operation9overlayng14PolygonBuilder13getShellRingsEv@Base 3.10.0 - _ZNK4geos9operation9overlayng14PolygonBuilder14placeFreeHolesERKSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EES9_@Base 3.10.0 - _ZNK4geos9operation9overlayng14PolygonBuilder15computePolygonsERKSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.10.0 - _ZNK4geos9operation9overlayng15OverlayEdgeRing10getRingPtrEv@Base 3.9.0 - _ZNK4geos9operation9overlayng15OverlayEdgeRing6isHoleEv@Base 3.9.0 - _ZNK4geos9operation9overlayng15OverlayEdgeRing8getShellEv@Base 3.9.0 - _ZNK4geos9operation9overlayng15OverlayEdgeRing8hasShellEv@Base 3.9.0 - _ZNK4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategy19isFloatingPrecisionEv@Base 3.9.0 - _ZNK4geos9operation9overlayng17EdgeNodingBuilder11hasEdgesForEh@Base 3.10.0 - _ZNK4geos9operation9overlayng17EdgeNodingBuilder13isToBeLimitedEPKNS_4geom10LineStringE@Base 3.9.0 - _ZNK4geos9operation9overlayng18OverlayMixedPoints10findPointsEbPKNS_4geom23CoordinateArraySequenceE@Base 3.9.0 - _ZNK4geos9operation9overlayng18OverlayMixedPoints11hasLocationEbRKNS_4geom10CoordinateE@Base 3.9.0 - _ZNK4geos9operation9overlayng18OverlayMixedPoints12copyNonPointEv@Base 3.9.0 - _ZNK4geos9operation9overlayng18OverlayMixedPoints12createPointsERSt3setINS_4geom10CoordinateESt4lessIS5_ESaIS5_EE@Base 3.9.0 - _ZNK4geos9operation9overlayng18OverlayMixedPoints12extractLinesEPKNS_4geom8GeometryE@Base 3.9.0 - _ZNK4geos9operation9overlayng18OverlayMixedPoints15extractPolygonsEPKNS_4geom8GeometryE@Base 3.9.0 - _ZNK4geos9operation9overlayng18OverlayMixedPoints17createPointResultERSt6vectorISt10unique_ptrINS_4geom5PointESt14default_deleteIS6_EESaIS9_EE@Base 3.9.0 - _ZNK4geos9operation9overlayng18OverlayMixedPoints18extractCoordinatesEPKNS_4geom8GeometryEPKNS3_14PrecisionModelE@Base 3.9.0 - _ZNK4geos9operation9overlayng18OverlayMixedPoints19computeIntersectionEPKNS_4geom23CoordinateArraySequenceE@Base 3.9.0 - _ZNK4geos9operation9overlayng24IntersectionPointBuilder13isResultPointEPNS1_11OverlayEdgeE@Base 3.9.0 - _ZNK4geos9operation9overlayng24IntersectionPointBuilder8isEdgeOfEPKNS1_12OverlayLabelEh@Base 3.10.0 - _ZNK4geos9operation9overlayng4Edge9directionEv@Base 3.9.0 - _ZNK4geos9precision10Translater9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9precision22CommonCoordinateFilter9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 - (optional=templinst|subst)_ZNKSt10_HashtableIN4geos11triangulate3tri7TriEdgeESt4pairIKS3_PNS2_3TriEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS3_ENS3_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeE{size_t}RS5_{size_t}@Base 3.10.0 - (optional=templinst|subst)_ZNKSt10_HashtableIN4geos4geom10CoordinateES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEE19_M_find_before_nodeE{size_t}RKS2_{size_t}@Base 3.10.0 - (optional=templinst|subst)_ZNKSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9operation9overlayng11OverlayEdgeEESaIS9_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSB_18_Mod_range_hashingENSB_20_Default_ranged_hashENSB_20_Prime_rehash_policyENSB_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeE{size_t}RS4_{size_t}@Base 3.10.0 - (optional=templinst|subst)_ZNKSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_St6vectorIS2_SaIS2_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeE{size_t}RS4_{size_t}@Base 3.10.0 - (optional=templinst|subst)_ZNKSt10_HashtableIN4geos4geom11LineSegmentES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEE19_M_find_before_nodeE{size_t}RKS2_{size_t}@Base 3.8.0 - (optional=templinst|subst)_ZNKSt10_HashtableIN4geos6noding23OrientedCoordinateArrayESt4pairIKS2_PNS0_9geomgraph4EdgeEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeE{size_t}RS4_{size_t}@Base 3.8.0 - (optional=templinst)_ZNKSt5ctypeIcE8do_widenEc@Base 3.4.2 - (optional=templinst|subst)_ZNSt10_HashtableIN4geos11triangulate3tri7TriEdgeESt4pairIKS3_PNS2_3TriEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS3_ENS3_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.10.0 - (optional=templinst)_ZNSt10_HashtableIN4geos11triangulate3tri7TriEdgeESt4pairIKS3_PNS2_3TriEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS3_ENS3_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt10_HashtableIN4geos11triangulate3tri7TriEdgeESt4pairIKS3_PNS2_3TriEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS3_ENS3_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEED2Ev@Base 3.10.0 - (optional=templinst|subst)_ZNSt10_HashtableIN4geos4geom10CoordinateES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.10.0 - (optional=templinst)_ZNSt10_HashtableIN4geos4geom10CoordinateES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt10_HashtableIN4geos4geom10CoordinateES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEED2Ev@Base 3.10.0 - (optional=templinst|subst)_ZNSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9operation9overlayng11OverlayEdgeEESaIS9_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSB_18_Mod_range_hashingENSB_20_Default_ranged_hashENSB_20_Prime_rehash_policyENSB_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.10.0 - (optional=templinst)_ZNSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_St6vectorIS2_SaIS2_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE4findERS4_@Base 3.10.0 - (optional=templinst|subst)_ZNSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_St6vectorIS2_SaIS2_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.10.0 - (optional=templinst)_ZNSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_St6vectorIS2_SaIS2_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_St6vectorIS2_SaIS2_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEED2Ev@Base 3.10.0 - (optional=templinst|subst)_ZNSt10_HashtableIN4geos4geom11LineSegmentES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.8.0 - (optional=templinst)_ZNSt10_HashtableIN4geos4geom11LineSegmentES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEED1Ev@Base 3.8.0 - (optional=templinst)_ZNSt10_HashtableIN4geos4geom11LineSegmentES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEED2Ev@Base 3.8.0 - (optional=templinst|subst)_ZNSt10_HashtableIN4geos6noding23OrientedCoordinateArrayESt4pairIKS2_PNS0_9geomgraph4EdgeEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.8.0 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNSt10_HashtableIPKN4geos4geom10LineStringESt4pairIKS4_PNS0_9geomgraph4EdgeEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEE21_M_insert_unique_nodeEjjPNSC_10_Hash_nodeISA_Lb0EEEj@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt10_HashtableIPKN4geos4geom10LineStringESt4pairIKS4_PNS0_9geomgraph4EdgeEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNSC_10_Hash_nodeISA_Lb0EEEm@Base 3.10.0 - (optional=templinst|subst)_ZNSt10_HashtableIPKN4geos4geom10LineStringESt4pairIKS4_PNS0_9geomgraph4EdgeEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.9.0 - (optional=templinst)_ZNSt10_HashtableIPKN4geos4geom10LineStringESt4pairIKS4_PNS0_9geomgraph4EdgeEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10_HashtableIPKN4geos4geom10LineStringESt4pairIKS4_PNS0_9geomgraph4EdgeEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEED2Ev@Base 3.9.0 - (optional=templinst|arch=!ia64 !mips64el !ppc64el !riscv64 !sparc64)_ZNSt10_HashtableIPKN4geos4geom8GeometryESt4pairIKS4_PNS0_8simplify16TaggedLineStringEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEE10_M_emplaceIJS5_IS4_S9_EEEES5_INSC_14_Node_iteratorISA_Lb0ELb0EEEbESt17integral_constantIbLb1EEDpOT_@Base 3.9.0 - (optional=templinst|subst)_ZNSt10_HashtableIPKN4geos4geom8GeometryESt4pairIKS4_PNS0_8simplify16TaggedLineStringEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.8.0 - (optional=templinst)_ZNSt10_HashtableIPKN4geos4geom8GeometryESt4pairIKS4_PNS0_8simplify16TaggedLineStringEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEED1Ev@Base 3.8.0 - (optional=templinst)_ZNSt10_HashtableIPKN4geos4geom8GeometryESt4pairIKS4_PNS0_8simplify16TaggedLineStringEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEED2Ev@Base 3.8.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom15MultiLineStringESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom15MultiLineStringESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom18CoordinateSequenceESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom18CoordinateSequenceESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom23CoordinateArraySequenceESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom23CoordinateArraySequenceESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom4util19GeometryTransformerESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom4util19GeometryTransformerESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom5PointESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom5PointESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos5index6kdtree6KdTreeESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos5index6kdtree6KdTreeESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos5index7strtree15TemplateSTRtreeIPKNS0_9operation8distance13FacetSequenceENS2_14EnvelopeTraitsEEESt14default_deleteISA_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos5index7strtree15TemplateSTRtreeIPKNS0_9operation8distance13FacetSequenceENS2_14EnvelopeTraitsEEESt14default_deleteISA_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos5index8quadtree4NodeESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos5index8quadtree4NodeESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos6noding27SegmentSetMutualIntersectorESt14default_deleteIS2_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos6noding27SegmentSetMutualIntersectorESt14default_deleteIS2_EED2Ev@Base 3.10.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos6noding32FastSegmentSetIntersectionFinderESt14default_deleteIS2_EED1Ev@Base 3.10.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos6noding32FastSegmentSetIntersectionFinderESt14default_deleteIS2_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos6noding34MCIndexSegmentSetMutualIntersectorESt14default_deleteIS2_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos6noding34MCIndexSegmentSetMutualIntersectorESt14default_deleteIS2_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos6noding5NoderESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos6noding5NoderESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos8simplify21TaggedLinesSimplifierESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos8simplify21TaggedLinesSimplifierESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9algorithm6locate22PointOnGeometryLocatorESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9algorithm6locate22PointOnGeometryLocatorESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9edgegraph9EdgeGraphESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9edgegraph9EdgeGraphESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph12DirectedEdgeESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph12DirectedEdgeESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index17MonotoneChainEdgeESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index17MonotoneChainEdgeESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index18EdgeSetIntersectorESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index18EdgeSetIntersectorESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index18SegmentIntersectorESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index18SegmentIntersectorESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9operation10polygonize4FaceESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9operation10polygonize4FaceESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9operation6buffer22OffsetSegmentGeneratorESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9operation6buffer22OffsetSegmentGeneratorESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9operation9overlayng14ElevationModelESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos9operation9overlayng14ElevationModelESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9precision17CommonBitsRemoverESt14default_deleteIS2_EED1Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9precision17CommonBitsRemoverESt14default_deleteIS2_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIN4geos4geom10CoordinateESaIS3_EESt14default_deleteIS5_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIN4geos4geom10CoordinateESaIS3_EESt14default_deleteIS5_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIPKN4geos4geom10CoordinateESaIS5_EESt14default_deleteIS7_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIPKN4geos4geom10CoordinateESaIS5_EESt14default_deleteIS7_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos11triangulate8quadedge8QuadEdgeESaIS5_EESt14default_deleteIS7_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos11triangulate8quadedge8QuadEdgeESaIS5_EESt14default_deleteIS7_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos4geom11LineSegmentESaIS4_EESt14default_deleteIS6_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos4geom11LineSegmentESaIS4_EESt14default_deleteIS6_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos5index7strtree9BoundableESaIS5_EESt14default_deleteIS7_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos5index7strtree9BoundableESaIS5_EESt14default_deleteIS7_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos9geomgraph4NodeESaIS4_EESt14default_deleteIS6_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos9geomgraph4NodeESaIS4_EESt14default_deleteIS6_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt11_Deque_baseIN4geos5index7strtree13SimpleSTRpairESaIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt11_Deque_baseIN4geos5index7strtree13SimpleSTRpairESaIS3_EED2Ev@Base 3.9.0 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNSt11_Deque_baseIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE17_M_initialize_mapEj@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt11_Deque_baseIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE17_M_initialize_mapEm@Base 3.4.2 - (optional=templinst)_ZNSt11_Deque_baseIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EED1Ev@Base 3.4.2 - (optional=templinst)_ZNSt11_Deque_baseIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EED2Ev@Base 3.4.2 - (optional=templinst|subst)_ZNSt12_Destroy_auxILb0EE9__destroyIPN13geos_nlohmann10basic_jsonINS2_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEEEEvT_SH_@Base 3.10.0 - (optional=templinst|subst)_ZNSt12_Destroy_auxILb0EE9__destroyIPN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEEEEvT_SH_@Base 3.10.0 - (optional=templinst)_ZNSt13_Bvector_baseISaIbEE13_M_deallocateEv@Base 3.10.0 - _ZNSt14_Function_baseD1Ev@Base 3.10.0 - _ZNSt14_Function_baseD2Ev@Base 3.10.0 - (optional=templinst|arch=armel riscv64)_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE1EE10_M_releaseEv@Base 3.10.0 - (optional=templinst|arch=!armel !riscv64)_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv@Base 3.10.0 - (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE1EE10_M_destroyEv@Base 3.10.0 - (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE1EE10_M_disposeEv@Base 3.10.0 - (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE1EE14_M_get_deleterERKSt9type_info@Base 3.10.0 - (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE1EED0Ev@Base 3.10.0 - (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE1EED1Ev@Base 3.10.0 - (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE1EED2Ev@Base 3.10.0 - (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv@Base 3.10.0 - (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv@Base 3.10.0 - (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info@Base 3.10.0 - (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE2EED0Ev@Base 3.10.0 - (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE2EED1Ev@Base 3.10.0 - (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE2EED2Ev@Base 3.10.0 - (optional=templinst|subst)_ZNSt23mersenne_twister_engineI{size_t}L{size_t}32EL{size_t}624EL{size_t}397EL{size_t}31EL{size_t}2567483615EL{size_t}11EL{size_t}4294967295EL{size_t}7EL{size_t}2636928640EL{size_t}15EL{size_t}4022730752EL{size_t}18EL{size_t}1812433253EE11_M_gen_randEv@Base 3.9.0 - (optional=templinst|subst)_ZNSt23mersenne_twister_engineI{size_t}L{size_t}32EL{size_t}624EL{size_t}397EL{size_t}31EL{size_t}2567483615EL{size_t}11EL{size_t}4294967295EL{size_t}7EL{size_t}2636928640EL{size_t}15EL{size_t}4022730752EL{size_t}18EL{size_t}1812433253EEclEv@Base 3.9.0 - (optional=templinst|subst)_ZNSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN13geos_nlohmann10basic_jsonIS_St6vectorS5_b{int64_t}{uint64_t}dSaNS6_14adl_serializerES8_IhSaIhEEEESt4lessIS5_ESaISt4pairIKS5_SC_EEEixERSG_@Base 3.10.0 - (optional=templinst|arch=!ppc64 !s390x)_ZNSt3mapIPN4geos4geom10CoordinateEPNS0_9geomgraph4NodeENS1_18CoordinateLessThenESaISt4pairIKS3_S6_EEEixERS9_@Base 3.10.0 - (optional=templinst|subst)_ZNSt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN13geos_nlohmann10basic_jsonINS7_11ordered_mapESt6vectorS5_b{int64_t}{uint64_t}dSaNS7_14adl_serializerESA_IhSaIhEEEEED1Ev@Base 3.10.0 - (optional=templinst|subst)_ZNSt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN13geos_nlohmann10basic_jsonINS7_11ordered_mapESt6vectorS5_b{int64_t}{uint64_t}dSaNS7_14adl_serializerESA_IhSaIhEEEEED2Ev@Base 3.10.0 - (optional=templinst|subst)_ZNSt5arrayISt10unique_ptrIN4geos9operation8distance16GeometryLocationESt14default_deleteIS4_EEL{size_t}2EED1Ev@Base 3.9.0 - (optional=templinst|subst)_ZNSt5arrayISt10unique_ptrIN4geos9operation8distance16GeometryLocationESt14default_deleteIS4_EEL{size_t}2EED2Ev@Base 3.9.0 - (optional=templinst|arch=!amd64 !arm64 !x32)_ZNSt5dequeIN4geos11triangulate3tri3TriESaIS3_EE16_M_push_back_auxIJRKNS0_4geom10CoordinateESA_SA_EEEvDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt5dequeIN4geos11triangulate8quadedge15QuadEdgeQuartetESaIS3_EE16_M_push_back_auxIJEEEvDpOT_@Base 3.9.0 - (optional=templinst|arch=mips64el)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE12emplace_backIJS3_EEEvDpOT_@Base 3.10.0 - (optional=templinst|arch=hppa ia64 m68k mips64el mipsel riscv64 sparc64)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE13_M_insert_auxIJRKNS0_4geom10CoordinateERPvEEESt15_Deque_iteratorIS3_RS3_PS3_ESG_DpOT_@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE17_M_push_front_auxIJRKNS0_4geom10CoordinateERPvEEEvDpOT_@Base 3.9.0 - (optional=templinst|arch=mips64el)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE17_M_push_front_auxIJS3_EEEvDpOT_@Base 3.9.0 - (optional=templinst|subst)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE17_M_reallocate_mapE{size_t}b@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos5index7strtree13SimpleSTRpairESaIS3_EE16_M_push_back_auxIJRPNS2_13SimpleSTRnodeES9_RPNS2_12ItemDistanceEEEEvDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos6noding18BasicSegmentStringESaIS2_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt5dequeIN4geos6noding18BasicSegmentStringESaIS2_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt5dequeIN4geos6noding9snapround8HotPixelESaIS3_EE16_M_push_back_auxIJRNS0_4geom10CoordinateERdEEEvDpOT_@Base 3.9.0 - (optional=templinst|arch=!amd64 !arm64 !x32)_ZNSt5dequeIN4geos9edgegraph8HalfEdgeESaIS2_EE16_M_push_back_auxIJRKNS0_4geom10CoordinateEEEEvDpOT_@Base 3.9.0 - (optional=templinst|subst)_ZNSt5dequeIN4geos9geomgraph5index14SweepLineEventESaIS3_EE17_M_reallocate_mapE{size_t}b@Base 3.8.0 - (optional=templinst)_ZNSt5dequeIN4geos9operation5valid11PolygonRingESaIS3_EE16_M_push_back_auxIJRPKNS0_4geom10LinearRingEEEEvDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt5dequeIN4geos9operation5valid11PolygonRingESaIS3_EE17_M_reallocate_mapE{size_t}b@Base 3.10.0 - (optional=templinst)_ZNSt5dequeIN4geos9operation5valid11PolygonRingESaIS3_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt5dequeIN4geos9operation5valid11PolygonRingESaIS3_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng11OverlayEdgeESaIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng11OverlayEdgeESaIS3_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng12OverlayLabelESaIS3_EE16_M_push_back_auxIJEEEvDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng14EdgeSourceInfoESaIS3_EE16_M_push_back_auxIJRhEEEvDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng14EdgeSourceInfoESaIS3_EE16_M_push_back_auxIJRhRiRbEEEvDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt5dequeIN4geos9operation9overlayng14EdgeSourceInfoESaIS3_EE17_M_reallocate_mapE{size_t}b@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng4EdgeESaIS3_EE16_M_push_back_auxIJPNS0_4geom18CoordinateSequenceERPKNS2_14EdgeSourceInfoEEEEvDpOT_@Base 3.9.0 - _ZNSt5dequeIPN4geos11planargraph4NodeESaIS3_EE16_M_push_back_auxIJRKS3_EEEvDpOT_@Base 3.7.0 - _ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE16_M_push_back_auxIJRKS4_EEEvDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE16_M_push_back_auxIJS4_EEEvDpOT_@Base 3.10.0 - (subst)_ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE17_M_reallocate_mapE{size_t}b@Base 3.7.0 - (optional=templinst)_ZNSt5dequeIPN4geos9operation5valid16PolygonRingTouchESaIS4_EE16_M_push_back_auxIJRKS4_EEEvDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt5dequeIPN4geos9operation9overlayng11OverlayEdgeESaIS4_EE13_M_insert_auxIN9__gnu_cxx17__normal_iteratorIPS4_St6vectorIS4_S5_EEEEEvSt15_Deque_iteratorIS4_RS4_SA_ET_SH_{size_t}@Base 3.9.0 - (optional=templinst|subst)_ZNSt5dequeIPN4geos9operation9overlayng11OverlayEdgeESaIS4_EE17_M_reallocate_mapE{size_t}b@Base 3.9.0 - (optional=templinst|subst)_ZNSt5dequeIPN4geos9operation9overlayng11OverlayEdgeESaIS4_EE23_M_new_elements_at_backE{size_t}@Base 3.9.0 - (optional=templinst|subst)_ZNSt5dequeIPN4geos9operation9overlayng11OverlayEdgeESaIS4_EE24_M_new_elements_at_frontE{size_t}@Base 3.9.0 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt6vectorIN13geos_nlohmann10basic_jsonINS0_11ordered_mapES_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE12emplace_backIJSC_EEEvDpOT_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZNSt6vectorIN13geos_nlohmann10basic_jsonINS0_11ordered_mapES_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE12emplace_backIJSC_EEEvDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonINS0_11ordered_mapES_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJRKSC_EEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 - (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonINS0_11ordered_mapES_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJSC_EEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonINS0_11ordered_mapES_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE7reserveE{size_t}@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE12emplace_backIJRbEEEvDpOT_@Base 3.10.0 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE12emplace_backIJRbEEEvDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE12emplace_backIJSC_EEEvDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJNS0_6detail7value_tEEEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJRS8_EEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 - (optional=templinst|subst|arch=m68k mipsel)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJRdEEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJR{int64_t}EEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 - (optional=templinst|subst|arch=!hppa !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sh4 !sparc64)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJR{uint64_t}EEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE7reserveE{size_t}@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos2io12GeoJSONValueESaIS2_EE17_M_realloc_insertIJRKS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos2io12GeoJSONValueESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos2io12GeoJSONValueESaIS2_EE7reserveE{size_t}@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos2io14GeoJSONFeatureESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos2io14GeoJSONFeatureESaIS2_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos2io14GeoJSONFeatureESaIS2_EED2Ev@Base 3.10.0 - (optional=templinst|arch=!hppa !ia64 !mips64el !riscv64 !sparc64)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE12emplace_backIJRKS2_EEEvDpOT_@Base 3.9.0 - (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !m68k !mipsel !powerpc)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE12emplace_backIJRdS6_EEEvDpOT_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE12emplace_backIJS2_EEEvDpOT_@Base 3.9.0 - _ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE17_M_realloc_insertIJRKS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE17_M_realloc_insertIJRS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE17_M_realloc_insertIJRdS6_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.7.1 - (optional=templinst|arch=hppa ia64 mips64el riscv64 sparc64)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE6insertEN9__gnu_cxx17__normal_iteratorIPKS2_S4_EERS7_@Base 3.9.0 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE7reserveEj@Base 3.9.0 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE7reserveEm@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos4geom11LineSegmentESaIS2_EE17_M_realloc_insertIJRKNS1_10CoordinateES8_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorIN4geos5index13intervalrtree23IntervalRTreeBranchNodeESaIS3_EE17_M_realloc_insertIJRPKNS2_17IntervalRTreeNodeESA_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.8.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZNSt6vectorIN4geos5index13intervalrtree23IntervalRTreeBranchNodeESaIS3_EE7reserveEj@Base 3.9.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos5index5chain13MonotoneChainESaIS3_EE17_M_realloc_insertIJRKNS0_4geom18CoordinateSequenceER{size_t}SB_RPvEEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.10.0 - _ZNSt6vectorIN4geos5index7strtree13ItemsListItemESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeINS0_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS2_14IntervalTraitsEEESaIS9_EE17_M_realloc_insertIJRKS7_RKNS2_8IntervalEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeINS0_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS2_14IntervalTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeINS0_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS2_14IntervalTraitsEEESaIS9_EE7reserveE{size_t}@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom10LinearRingENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRKS7_RKNS4_8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst|arch=!mipsel)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom10LinearRingENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom10LinearRingENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJS7_RKNS4_8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst|arch=!amd64 !arm64 !mips64el !x32)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom7PolygonENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRKS7_RKNS4_8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst|arch=!armel !i386 !m68k !mipsel !powerpc)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom7PolygonENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst|arch=!amd64 !mips64el !x32)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom7PolygonENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJS7_RKNS4_8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst|arch=!mipsel)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom8GeometryENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom8GeometryENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJS7_RKNS4_8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom8GeometryENS2_14EnvelopeTraitsEEESaIS9_EE7reserveE{size_t}@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_9operation8distance13FacetSequenceENS2_14EnvelopeTraitsEEESaISA_EE17_M_realloc_insertIJRPKSA_SG_EEEvN9__gnu_cxx17__normal_iteratorIPSA_SC_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_9operation8distance13FacetSequenceENS2_14EnvelopeTraitsEEESaISA_EE17_M_realloc_insertIJS8_RKNS0_4geom8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPSA_SC_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_9operation8distance13FacetSequenceENS2_14EnvelopeTraitsEEESaISA_EE7reserveE{size_t}@Base 3.10.0 - (optional=templinst|arch=!mipsel)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS1_5chain13MonotoneChainENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS1_5chain13MonotoneChainENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJS7_RKNS0_4geom8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst|arch=!mipsel)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPNS0_9operation10polygonize8EdgeRingENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPNS0_9operation10polygonize8EdgeRingENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJS7_RKNS0_4geom8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos6noding11SegmentNodeESaIS2_EE17_M_realloc_insertIJRKNS1_18NodedSegmentStringERKNS0_4geom10CoordinateER{size_t}iEEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos9algorithm9construct18LargestEmptyCircle4CellESaIS4_EE17_M_realloc_insertIJddRddEEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIN4geos9algorithm9construct22MaximumInscribedCircle4CellESaIS4_EE17_M_realloc_insertIJddRddEEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZNSt6vectorIN4geos9geomgraph16EdgeIntersectionESaIS2_EE12emplace_backIJRKNS0_4geom10CoordinateERjRdEEEvDpOT_@Base 3.9.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos9geomgraph16EdgeIntersectionESaIS2_EE17_M_realloc_insertIJRKNS0_4geom10CoordinateER{size_t}RdEEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorIN4geos9geomgraph16EdgeIntersectionESaIS2_EE8_M_eraseEN9__gnu_cxx17__normal_iteratorIPS2_S4_EES8_@Base 3.8.0 - (optional=templinst|arch=!amd64 !arm64 !x32)_ZNSt6vectorIN4geos9operation5valid19PolygonRingSelfNodeESaIS3_EE17_M_realloc_insertIJRKNS0_4geom10CoordinateERPS9_SC_SC_SC_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIN4geos9operation7overlay14PolygonBuilder11FastPIPRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos9operation8distance13FacetSequenceESaIS3_EE17_M_realloc_insertIJRPKNS0_4geom8GeometryERPKNS7_18CoordinateSequenceER{size_t}SG_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.9.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos9operation8distance16GeometryLocationESaIS3_EE17_M_realloc_insertIJRKPKNS0_4geom8GeometryERK{size_t}RKNS7_10CoordinateEEEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.9.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos9operation8distance16GeometryLocationESaIS3_EE17_M_realloc_insertIJRKPKNS0_4geom8GeometryER{size_t}RNS7_10CoordinateEEEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIN4geos9operation8distance16GeometryLocationESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.8.0 - (optional=templinst|subst)_ZNSt6vectorIN4geos9operation9overlayng14ElevationModel13ElevationCellESaIS4_EE17_M_default_appendE{size_t}@Base 3.9.0 - (optional=templinst|subst)_ZNSt6vectorINSt6chrono8durationI{int64_t}St5ratioIL{int64_t}1EL{int64_t}1000000EEEESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 - _ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPKN4geos11planargraph12DirectedEdgeESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - (subst)_ZNSt6vectorIPKN4geos4geom10CoordinateESaIS4_EE17_M_default_appendE{size_t}@Base 3.7.0 - _ZNSt6vectorIPKN4geos4geom10CoordinateESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPKN4geos4geom10CoordinateESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPKN4geos4geom10LineStringESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPKN4geos4geom10LineStringESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPKN4geos4geom10LinearRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPKN4geos4geom10LinearRingESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.10.0 - _ZNSt6vectorIPKN4geos4geom5PointESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPKN4geos4geom7PolygonESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPKN4geos4geom8GeometryESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorIPKN4geos4geom8GeometryESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorIPKN4geos5index13intervalrtree17IntervalRTreeNodeESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIPKN4geos5index13intervalrtree17IntervalRTreeNodeESaIS5_EE17_M_realloc_insertIJS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.9.0 - _ZNSt6vectorIPKN4geos6noding13SegmentStringESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPKN4geos9edgegraph8HalfEdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIPKN4geos9operation10polygonize22PolygonizeDirectedEdgeESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.8.0 - (optional=templinst|subst)_ZNSt6vectorIPN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISD_EE17_M_realloc_insertIJRKSD_EEEvN9__gnu_cxx17__normal_iteratorIPSD_SF_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIPN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISD_EE17_M_realloc_insertIJSD_EEEvN9__gnu_cxx17__normal_iteratorIPSD_SF_EEDpOT_@Base 3.10.0 - _ZNSt6vectorIPN4geos11planargraph12DirectedEdgeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - (optional=templinst|arch=!alpha !hurd-i386 !i386 !kfreebsd-i386 !mips !mipsel !powerpc !powerpcspe !ppc64 !s390x)_ZNSt6vectorIPN4geos11planargraph12DirectedEdgeESaIS3_EE8_M_eraseEN9__gnu_cxx17__normal_iteratorIPS3_S5_EE@Base 3.4.2 - _ZNSt6vectorIPN4geos11planargraph4EdgeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - (optional=templinst|arch=!alpha !hurd-i386 !i386 !kfreebsd-i386 !mips !mipsel !powerpc !powerpcspe !ppc64 !s390x)_ZNSt6vectorIPN4geos11planargraph4EdgeESaIS3_EE8_M_eraseEN9__gnu_cxx17__normal_iteratorIPS3_S5_EE@Base 3.4.2 - _ZNSt6vectorIPN4geos11planargraph4NodeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos11planargraph8SubgraphESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPN4geos11triangulate3tri3TriESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.10.0 - _ZNSt6vectorIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos4geom10LineStringESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos4geom10LineStringESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPN4geos4geom10LinearRingESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.8.0 - _ZNSt6vectorIPN4geos4geom11LineSegmentESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos4geom18CoordinateSequenceESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos4geom5PointESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos4geom7PolygonESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE7reserveEj@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE7reserveEm@Base 3.4.2 - (optional=templinst)_ZNSt6vectorIPN4geos5index6kdtree6KdNodeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 - _ZNSt6vectorIPN4geos5index7bintree8IntervalESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos5index7strtree12AbstractNodeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos5index7strtree13BoundablePairESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos5index7strtree13BoundablePairESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPN4geos5index7strtree13SimpleSTRnodeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 - (optional=templinst|arch=!hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt6vectorIPN4geos5index7strtree13SimpleSTRnodeESaIS4_EE8_M_eraseEN9__gnu_cxx17__normal_iteratorIPS4_S6_EE@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIPN4geos5index7strtree13SimpleSTRpairESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 - _ZNSt6vectorIPN4geos5index7strtree9BoundableESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos5index7strtree9BoundableESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - (optional=templinst|subst)_ZNSt6vectorIPN4geos5index7strtree9BoundableESaIS4_EE7reserveE{size_t}@Base 3.8.0 - (optional=templinst|arch=!alpha !hurd-i386 !i386 !kfreebsd-i386 !mips !mipsel !powerpc !powerpcspe !ppc64 !s390x)_ZNSt6vectorIPN4geos5index7strtree9BoundableESaIS4_EE8_M_eraseEN9__gnu_cxx17__normal_iteratorIPS4_S6_EE@Base 3.4.2 - _ZNSt6vectorIPN4geos5index9sweepline14SweepLineEventESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos5index9sweepline14SweepLineEventESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos6noding13SegmentStringESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos6noding13SegmentStringESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPN4geos8simplify17TaggedLineSegmentESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIPN4geos8simplify17TaggedLineSegmentESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.8.0 - _ZNSt6vectorIPN4geos9geomgraph12DirectedEdgeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9geomgraph4EdgeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9geomgraph4EdgeESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.2 - _ZNSt6vectorIPN4geos9geomgraph4NodeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9geomgraph5LabelESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPN4geos9geomgraph5index14SweepLineEventESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIPN4geos9geomgraph5index14SweepLineEventESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 - _ZNSt6vectorIPN4geos9geomgraph7EdgeEndESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9geomgraph8EdgeRingESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9geomgraph8EdgeRingESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9operation10polygonize22PolygonizeDirectedEdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9operation10polygonize8EdgeRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPN4geos9operation5valid11PolygonRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIPN4geos9operation5valid16PolygonRingTouchESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.10.0 - _ZNSt6vectorIPN4geos9operation6buffer12DepthSegmentESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9operation6buffer14BufferSubgraphESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9operation7overlay15MaximalEdgeRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9operation7overlay15MinimalEdgeRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9operation9linemerge10EdgeStringESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - _ZNSt6vectorIPN4geos9operation9linemerge21LineMergeDirectedEdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPN4geos9operation9overlayng11OverlayEdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIPN4geos9operation9overlayng15OverlayEdgeRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIPN4geos9operation9overlayng4EdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 - _ZNSt6vectorIPNSt7__cxx114listIPN4geos11planargraph12DirectedEdgeESaIS5_EEESaIS8_EE17_M_realloc_insertIJRKS8_EEEvN9__gnu_cxx17__normal_iteratorIPS8_SA_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIPvSaIS0_EE17_M_realloc_insertIJRKS0_EEEvN9__gnu_cxx17__normal_iteratorIPS0_S2_EEDpOT_@Base 3.8.0 - _ZNSt6vectorIPvSaIS0_EE17_M_realloc_insertIJS0_EEEvN9__gnu_cxx17__normal_iteratorIPS0_S2_EEDpOT_@Base 3.7.0 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNSt6vectorIS_IN4geos9algorithm8distance17PointPairDistanceESaIS3_EESaIS5_EEC1EjRKS5_RKS6_@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt6vectorIS_IN4geos9algorithm8distance17PointPairDistanceESaIS3_EESaIS5_EEC1EmRKS5_RKS6_@Base 3.10.0 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNSt6vectorIS_IN4geos9algorithm8distance17PointPairDistanceESaIS3_EESaIS5_EEC2EjRKS5_RKS6_@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt6vectorIS_IN4geos9algorithm8distance17PointPairDistanceESaIS3_EESaIS5_EEC2EmRKS5_RKS6_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_IS_IS_IdSaIdEESaIS1_EESaIS3_EESaIS5_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_IS_IS_IdSaIdEESaIS1_EESaIS3_EESaIS5_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_IS_ISt4pairIddESaIS1_EESaIS3_EESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_IS_IdSaIdEESaIS1_EESaIS3_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_IS_IdSaIdEESaIS1_EESaIS3_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_ISt4pairIddESaIS1_EESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIS_ISt4pairIddESaIS1_EESaIS3_EE7reserveE{size_t}@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_ISt4pairIddESaIS1_EESaIS3_EEC1ERKS5_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_ISt4pairIddESaIS1_EESaIS3_EEC2ERKS5_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_ISt4pairIddESaIS1_EESaIS3_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_ISt4pairIddESaIS1_EESaIS3_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_IdSaIdEESaIS1_EE17_M_realloc_insertIJS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_IdSaIdEESaIS1_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIS_IdSaIdEESaIS1_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIKN4geos4geom18CoordinateSequenceESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos11triangulate3tri7TriListESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS4_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.10.0 - (optional=templinst|arch=ia64)_ZNSt6vectorISt10unique_ptrIN4geos11triangulate3tri7TriListESt14default_deleteIS4_EESaIS7_EED1Ev@Base 3.10.0 - (optional=templinst|arch=ia64)_ZNSt6vectorISt10unique_ptrIN4geos11triangulate3tri7TriListESt14default_deleteIS4_EESaIS7_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRKPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom18CoordinateSequenceESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom18CoordinateSequenceESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom23CoordinateArraySequenceESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom5PointESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom5PointESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom5PointESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom5PointESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8EnvelopeESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8EnvelopeESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8EnvelopeESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8EnvelopeESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE12emplace_backIJS6_EEEvDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_default_appendE{size_t}@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRKPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPNS2_7PolygonEEEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS0_INS2_10LineStringES4_ISA_EEEEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst|subst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE7reserveE{size_t}@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos5index7strtree8IntervalESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJS7_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.7.1 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos6noding13SegmentStringESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos6noding13SegmentStringESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos6noding13SegmentStringESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9geomgraph8EdgeRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation10polygonize4FaceESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJS7_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation8distance16GeometryLocationESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS4_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation8distance16GeometryLocationESt14default_deleteIS4_EESaIS7_EED1Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation8distance16GeometryLocationESt14default_deleteIS4_EESaIS7_EED2Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15MaximalEdgeRingESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS4_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15MaximalEdgeRingESt14default_deleteIS4_EESaIS7_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15MaximalEdgeRingESt14default_deleteIS4_EESaIS7_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15OverlayEdgeRingESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS4_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15OverlayEdgeRingESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJS7_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15OverlayEdgeRingESt14default_deleteIS4_EESaIS7_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15OverlayEdgeRingESt14default_deleteIS4_EESaIS7_EED2Ev@Base 3.9.0 - (optional=templinst|subst)_ZNSt6vectorISt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN13geos_nlohmann10basic_jsonINS8_11ordered_mapES_S6_b{int64_t}{uint64_t}dSaNS8_14adl_serializerES_IhSaIhEEEEESaISF_EE17_M_realloc_insertIJRS7_RSE_EEEvN9__gnu_cxx17__normal_iteratorIPSF_SH_EEDpOT_@Base 3.10.0 - (optional=templinst)_ZNSt6vectorISt4pairIddESaIS1_EE17_M_realloc_insertIJS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_@Base 3.10.0 - (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNSt6vectorIbSaIbEE13_M_insert_auxESt13_Bit_iteratorb@Base 3.10.0 - (optional=templinst)_ZNSt6vectorIbSaIbEE9push_backEb@Base 3.10.0 - (optional=templinst|arch=arm64)_ZNSt6vectorIcSaIcEE12emplace_backIJcEEEvDpOT_@Base 3.10.0 - (optional=templinst|arch=!arm64)_ZNSt6vectorIcSaIcEE17_M_realloc_insertIJcEEEvN9__gnu_cxx17__normal_iteratorIPcS1_EEDpOT_@Base 3.10.0 - _ZNSt6vectorIdSaIdEE17_M_realloc_insertIJRKdEEEvN9__gnu_cxx17__normal_iteratorIPdS1_EEDpOT_@Base 3.7.0 - (optional=templinst)_ZNSt6vectorIdSaIdEE17_M_realloc_insertIJdEEEvN9__gnu_cxx17__normal_iteratorIPdS1_EEDpOT_@Base 3.10.0 - (optional=templinst|subst)_ZNSt6vectorIiSaIiEE14_M_fill_assignE{size_t}RKi@Base 3.8.0 - (subst)_ZNSt6vectorI{size_t}SaI{size_t}EE17_M_realloc_insertIJRK{size_t}EEEvN9__gnu_cxx17__normal_iteratorIP{size_t}S1_EEDpOT_@Base 3.7.0 - (optional=templinst|subst)_ZNSt6vectorI{size_t}SaI{size_t}EE17_M_realloc_insertIJ{size_t}EEEvN9__gnu_cxx17__normal_iteratorIP{size_t}S1_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt7__cxx1110_List_baseIN4geos4geom10CoordinateESaIS3_EE8_M_clearEv@Base 3.9.0 - (optional=templinst)_ZNSt7__cxx1110_List_baseIPN4geos4geom10LineStringESaIS4_EE8_M_clearEv@Base 3.9.0 - (optional=templinst)_ZNSt7__cxx1110_List_baseIPN4geos4geom7PolygonESaIS4_EE8_M_clearEv@Base 3.9.0 - (optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED0Ev@Base 3.4.2 - (optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED1Ev@Base 3.4.2 - (optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED2Ev@Base 3.4.2 - (optional=templinst|arch=mipsel)_ZNSt7__cxx114listIN4geos4geom10CoordinateESaIS3_EE6insertESt20_List_const_iteratorIS3_ERKS3_@Base 3.9.0 - (subst)_ZNSt7__cxx119to_stringE{size_t}@Base 3.10.0 - _ZNSt8_Rb_treeIN4geos11triangulate8quadedge6VertexES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE16_M_insert_uniqueIRKS3_EESt4pairISt17_Rb_tree_iteratorIS3_EbEOT_@Base 3.7.0 - (optional=templinst)_ZNSt8_Rb_treeIN4geos11triangulate8quadedge6VertexES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE4findERKS3_@Base 3.5.0 - (optional=templinst|arch=!m68k)_ZNSt8_Rb_treeIN4geos4geom10CoordinateES2_St9_IdentityIS2_ESt4lessIS2_ESaIS2_EE16_M_insert_uniqueIRKS2_EESt4pairISt17_Rb_tree_iteratorIS2_EbEOT_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 mipsel powerpc ppc64 s390x)_ZNSt8_Rb_treeIN4geos4geom10CoordinateES2_St9_IdentityIS2_ESt4lessIS2_ESaIS2_EE22_M_insert_range_uniqueIN9__gnu_cxx17__normal_iteratorIPS2_St6vectorIS2_S7_EEEEENSt9enable_ifIXsrSt7is_sameIS2_NSt15iterator_traitsIT_E10value_typeEE5valueEvE4typeESJ_SJ_@Base 3.10.0 - (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateES2_St9_IdentityIS2_ESt4lessIS2_ESaIS2_EE24_M_get_insert_unique_posERKS2_@Base 3.10.0 - (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIN4geos4geom10CoordinateES2_St9_IdentityIS2_ESt4lessIS2_ESaIS2_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS2_ERKS2_@Base 3.10.0 - (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_11planargraph4NodeEESt10_Select1stIS8_ENS1_18CoordinateLessThenESaIS8_EE11equal_rangeERS4_@Base 3.4.2 - (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_11planargraph4NodeEESt10_Select1stIS8_ENS1_18CoordinateLessThenESaIS8_EE17_M_emplace_uniqueIJS3_IS2_S7_EEEES3_ISt17_Rb_tree_iteratorIS8_EbEDpOT_@Base 3.7.1 - (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_11planargraph4NodeEESt10_Select1stIS8_ENS1_18CoordinateLessThenESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E@Base 3.4.2 - (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9edgegraph8HalfEdgeEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE24_M_get_insert_unique_posERS4_@Base 3.9.0 - (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9edgegraph8HalfEdgeEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS8_ERS4_@Base 3.9.0 - (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9edgegraph8HalfEdgeEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE4findERS4_@Base 3.9.0 - (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_St10unique_ptrINS1_5PointESt14default_deleteIS6_EEESt10_Select1stISA_ESt4lessIS2_ESaISA_EE24_M_get_insert_unique_posERS4_@Base 3.9.0 - (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_St10unique_ptrINS1_5PointESt14default_deleteIS6_EEESt10_Select1stISA_ESt4lessIS2_ESaISA_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISA_ERS4_@Base 3.9.0 - (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_St10unique_ptrINS1_5PointESt14default_deleteIS6_EEESt10_Select1stISA_ESt4lessIS2_ESaISA_EE4findERS4_@Base 3.9.0 - (optional=templinst)_ZNSt8_Rb_treeIN4geos9operation9overlayng7EdgeKeyESt4pairIKS3_PNS2_4EdgeEESt10_Select1stIS8_ESt4lessIS3_ESaIS8_EE24_M_get_insert_unique_posERS5_@Base 3.9.0 - (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIN4geos9operation9overlayng7EdgeKeyESt4pairIKS3_PNS2_4EdgeEESt10_Select1stIS8_ESt4lessIS3_ESaIS8_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS8_ERS5_@Base 3.9.0 - (optional=templinst|subst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N13geos_nlohmann10basic_jsonISt3mapSt6vectorS5_b{int64_t}{uint64_t}dSaNS8_14adl_serializerESB_IhSaIhEEEEESt10_Select1stISG_ESt4lessIS5_ESaISG_EE24_M_get_insert_unique_posERS7_@Base 3.10.0 - (optional=templinst|subst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N13geos_nlohmann10basic_jsonISt3mapSt6vectorS5_b{int64_t}{uint64_t}dSaNS8_14adl_serializerESB_IhSaIhEEEEESt10_Select1stISG_ESt4lessIS5_ESaISG_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISG_ERS7_@Base 3.10.0 - (optional=templinst|arch=!armel !armhf !ia64)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4geos2io12GeoJSONValueEESt10_Select1stISB_ESt4lessIS5_ESaISB_EE20_Reuse_or_alloc_nodeclIRKSB_EEPSt13_Rb_tree_nodeISB_EOT_@Base 3.10.0 - (optional=templinst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4geos2io12GeoJSONValueEESt10_Select1stISB_ESt4lessIS5_ESaISB_EE24_M_get_insert_unique_posERS7_@Base 3.10.0 - (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4geos2io12GeoJSONValueEESt10_Select1stISB_ESt4lessIS5_ESaISB_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISB_ERS7_@Base 3.10.0 - (optional=templinst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St10unique_ptrIN4geos4util7ProfileESt14default_deleteISB_EEESt10_Select1stISF_ESt4lessIS5_ESaISF_EE24_M_get_insert_unique_posERS7_@Base 3.8.0 - (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St10unique_ptrIN4geos4util7ProfileESt14default_deleteISB_EEESt10_Select1stISF_ESt4lessIS5_ESaISF_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISF_ERS7_@Base 3.8.0 - (optional=templinst|arch=amd64 arm64 hppa ia64 mips64el ppc64el riscv64 sh4 sparc64 x32)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateES4_St9_IdentityIS4_ENS1_18CoordinateLessThenESaIS4_EE16_M_insert_uniqueIRKS4_EESt4pairISt17_Rb_tree_iteratorIS4_EbEOT_@Base 3.7.2 - (optional=templinst)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateES4_St9_IdentityIS4_ENS1_18CoordinateLessThenESaIS4_EE24_M_get_insert_unique_posERKS4_@Base 3.4.2 - (optional=templinst)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateES4_St9_IdentityIS4_ENS1_18CoordinateLessThenESaIS4_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS4_ERKS4_@Base 3.4.2 - (optional=templinst)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateES4_St9_IdentityIS4_ENS1_18CoordinateLessThenESaIS4_EE4findERKS4_@Base 3.4.2 - (optional=templinst)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateES4_St9_IdentityIS4_ENS1_18CoordinateLessThenESaIS4_EE8_M_eraseEPSt13_Rb_tree_nodeIS4_E@Base 3.4.2 - _ZNSt8_Rb_treeIPN4geos11planargraph4EdgeES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE16_M_insert_uniqueIRKS3_EESt4pairISt17_Rb_tree_iteratorIS3_EbEOT_@Base 3.7.0 - (optional=templinst)_ZNSt8_Rb_treeIPN4geos4geom10CoordinateESt4pairIKS3_PNS0_9geomgraph4NodeEESt10_Select1stIS9_ENS1_18CoordinateLessThenESaIS9_EE24_M_get_insert_unique_posERS5_@Base 3.4.2 - (optional=templinst)_ZNSt8_Rb_treeIPN4geos4geom10CoordinateESt4pairIKS3_PNS0_9geomgraph4NodeEESt10_Select1stIS9_ENS1_18CoordinateLessThenESaIS9_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS9_ERS5_@Base 3.4.2 - _ZNSt8_Rb_treeIPN4geos9geomgraph4NodeES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE16_M_insert_uniqueIRKS3_EESt4pairISt17_Rb_tree_iteratorIS3_EbEOT_@Base 3.7.0 - (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !m68k !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIPN4geos9geomgraph4NodeES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE24_M_get_insert_unique_posERKS3_@Base 3.9.0 - (optional=templinst)_ZNSt8_Rb_treeIPN4geos9geomgraph7EdgeEndES3_St9_IdentityIS3_ENS1_9EdgeEndLTESaIS3_EE24_M_get_insert_unique_posERKS3_@Base 3.9.0 - (optional=templinst)_ZNSt8_Rb_treeIPN4geos9geomgraph7EdgeEndES3_St9_IdentityIS3_ENS1_9EdgeEndLTESaIS3_EE4findERKS3_@Base 3.4.2 - _ZNSt8_Rb_treeIddSt9_IdentityIdESt4lessIdESaIdEE16_M_insert_uniqueIRKdEESt4pairISt17_Rb_tree_iteratorIdEbEOT_@Base 3.7.0 - (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNSt8__detail18__to_chars_10_implIjEEvPcjT_@Base 3.10.0 - (optional=templinst)_ZNSt8__detail9_Map_baseIN4geos4geom10CoordinateESt4pairIKS3_PNS1_9operation9overlayng11OverlayEdgeEESaISA_ENS_10_Select1stESt8equal_toIS3_ENS3_8HashCodeENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS5_@Base 3.10.0 - (optional=templinst)_ZNSt8__detail9_Map_baseIN4geos4geom10CoordinateESt4pairIKS3_St6vectorIS3_SaIS3_EEESaIS9_ENS_10_Select1stESt8equal_toIS3_ENS3_8HashCodeENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS5_@Base 3.10.0 - (optional=templinst)_ZNSt8__detail9_Map_baseIN4geos6noding23OrientedCoordinateArrayESt4pairIKS3_PNS1_9geomgraph4EdgeEESaIS9_ENS_10_Select1stESt8equal_toIS3_ENS3_8HashCodeENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS5_@Base 3.9.0 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEEiS4_NS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_T0_SI_T1_T2_@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEElS4_NS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_T0_SI_T1_T2_@Base 3.8.1 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos11planargraph12DirectedEdgeESt6vectorIS5_SaIS5_EEEEiS5_NS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_T0_SH_T1_T2_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos11planargraph12DirectedEdgeESt6vectorIS5_SaIS5_EEEElS5_NS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_T0_SH_T1_T2_@Base 3.4.2 - (optional=templinst|subst)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree13BoundablePairESt6vectorIS6_SaIS6_EEEE{ssize_t}S6_NS0_5__ops15_Iter_comp_iterINS5_25BoundablePairQueueCompareEEEEvT_T0_SH_T1_T2_@Base 3.6.0 - (optional=templinst|subst)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree13SimpleSTRpairESt6vectorIS6_SaIS6_EEEE{ssize_t}S6_NS0_5__ops15_Iter_comp_iterINS4_17SimpleSTRdistance19STRpairQueueCompareEEEEvT_T0_SI_T1_T2_@Base 3.9.0 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree9BoundableESt6vectorIS6_SaIS6_EEEEiS6_NS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_T0_SI_T1_T2_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree9BoundableESt6vectorIS6_SaIS6_EEEElS6_NS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_T0_SI_T1_T2_@Base 3.4.2 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index9sweepline14SweepLineEventESt6vectorIS6_SaIS6_EEEEiS6_NS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_T0_SH_T1_T2_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index9sweepline14SweepLineEventESt6vectorIS6_SaIS6_EEEElS6_NS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_T0_SH_T1_T2_@Base 3.4.2 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEEiS6_NS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_T0_SH_T1_T2_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEElS6_NS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_T0_SH_T1_T2_@Base 3.4.2 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer14BufferSubgraphESt6vectorIS6_SaIS6_EEEEiS6_NS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_T0_SI_T1_T2_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer14BufferSubgraphESt6vectorIS6_SaIS6_EEEElS6_NS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_T0_SI_T1_T2_@Base 3.4.2 - (optional=templinst|arch=amd64 arm64 hppa sh4 x32)_ZSt13__copy_move_aILb1ESt15_Deque_iteratorIPN4geos9operation9overlayng11OverlayEdgeERS5_PS5_ES8_ET1_T0_SA_S9_@Base 3.10.0 - (optional=templinst|arch=!armel !armhf !hppa !hurd-i386 !i386 !m68k !mipsel !powerpc !ppc64 !ppc64el !s390x !sh4)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos11triangulate8quadedge6VertexESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_less_iterEEvT_SD_SD_T0_@Base 3.9.0 - (optional=templinst|arch=mips64el)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_SH_T0_@Base 3.10.0 - (optional=templinst|arch=!hppa !ia64 !mips64el !mipsel !ppc64 !ppc64el !riscv64 !s390x !sh4 !sparc64)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeINS2_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS4_14IntervalTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom10LinearRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom10LinearRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom7PolygonENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom7PolygonENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom8GeometryENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom8GeometryENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_9operation8distance13FacetSequenceENS4_14EnvelopeTraitsEEESt6vectorISC_SaISC_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplISA_SB_E10sortNodesXERKSH_SN_EUlRKSC_SP_E_EEEvT_SS_SS_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_9operation8distance13FacetSequenceENS4_14EnvelopeTraitsEEESt6vectorISC_SaISC_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplISA_SB_E10sortNodesYERKSH_SN_EUlRKSC_SP_E_EEEvT_SS_SS_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS3_5chain13MonotoneChainENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS3_5chain13MonotoneChainENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPNS2_9operation10polygonize8EdgeRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPNS2_9operation10polygonize8EdgeRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 - (optional=templinst|arch=amd64 arm64 armel armhf hppa hurd-i386 i386 mips64el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64 x32)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPSt10unique_ptrIN4geos9operation10polygonize4FaceESt14default_deleteIS6_EESt6vectorIS9_SaIS9_EEEENS0_5__ops15_Iter_comp_iterINS5_16CompareByEnvareaEEEEvT_SJ_SJ_T0_@Base 3.9.0 - (optional=templinst|arch=amd64 arm64 hppa sh4 x32)_ZSt13move_backwardISt15_Deque_iteratorIPN4geos9operation9overlayng11OverlayEdgeERS5_PS5_ES8_ET0_T_SA_S9_@Base 3.10.0 - (optional=templinst)_ZSt14__copy_move_a1ILb1EPN4geos5index6kdtree6KdNodeES3_EN9__gnu_cxx11__enable_ifIXsrSt23__is_random_access_iterIT0_NSt15iterator_traitsIS8_E17iterator_categoryEE7__valueESt15_Deque_iteratorIT1_RSE_PSE_EE6__typeES8_S8_SH_@Base 3.9.0 - (optional=templinst)_ZSt14__copy_move_a1ILb1EPPN4geos9operation9overlayng11OverlayEdgeES4_EN9__gnu_cxx11__enable_ifIXsrSt23__is_random_access_iterIT0_NSt15iterator_traitsIS9_E17iterator_categoryEE7__valueESt15_Deque_iteratorIT1_RSF_PSF_EE6__typeES9_S9_SI_@Base 3.9.0 - (optional=templinst|arch=!amd64 !arm64 !hppa !sh4 !x32)_ZSt15__copy_move_ditILb1EPN4geos9operation9overlayng11OverlayEdgeERS4_PS4_St15_Deque_iteratorIS4_S5_S6_EET3_S7_IT0_T1_T2_ESD_S9_@Base 3.10.0 - (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_T0_@Base 3.8.1 - (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos11planargraph12DirectedEdgeESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_@Base 3.4.2 - (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree9BoundableESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_SH_T0_@Base 3.4.2 - (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos5index9sweepline14SweepLineEventESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_@Base 3.4.2 - (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_@Base 3.4.2 - (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer14BufferSubgraphESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_SH_T0_@Base 3.4.2 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEEiNS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_SE_T0_T1_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEElNS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_SE_T0_T1_@Base 3.4.2 - (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEEiNS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_T0_T1_@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEElNS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_T0_T1_@Base 3.8.1 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeINS2_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS4_14IntervalTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom10LinearRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom10LinearRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom7PolygonENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom7PolygonENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom8GeometryENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom8GeometryENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_9operation8distance13FacetSequenceENS4_14EnvelopeTraitsEEESt6vectorISC_SaISC_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplISA_SB_E10sortNodesXERKSH_SN_EUlRKSC_SP_E_EEEvT_SS_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_9operation8distance13FacetSequenceENS4_14EnvelopeTraitsEEESt6vectorISC_SaISC_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplISA_SB_E10sortNodesYERKSH_SN_EUlRKSC_SP_E_EEEvT_SS_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS3_5chain13MonotoneChainENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS3_5chain13MonotoneChainENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPNS2_9operation10polygonize8EdgeRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPNS2_9operation10polygonize8EdgeRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos11planargraph12DirectedEdgeESt6vectorIS5_SaIS5_EEEEiNS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_T1_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos11planargraph12DirectedEdgeESt6vectorIS5_SaIS5_EEEElNS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_T1_@Base 3.4.2 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree9BoundableESt6vectorIS6_SaIS6_EEEEiNS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_SH_T0_T1_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree9BoundableESt6vectorIS6_SaIS6_EEEElNS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_SH_T0_T1_@Base 3.4.2 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos5index9sweepline14SweepLineEventESt6vectorIS6_SaIS6_EEEEiNS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_T1_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos5index9sweepline14SweepLineEventESt6vectorIS6_SaIS6_EEEElNS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_T1_@Base 3.4.2 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEEiNS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_T1_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEElNS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_T1_@Base 3.4.2 - (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer14BufferSubgraphESt6vectorIS6_SaIS6_EEEEiNS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_SH_T0_T1_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer14BufferSubgraphESt6vectorIS6_SaIS6_EEEElNS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_SH_T0_T1_@Base 3.4.2 - (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPSt10unique_ptrIN4geos9operation10polygonize4FaceESt14default_deleteIS6_EESt6vectorIS9_SaIS9_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterINS5_16CompareByEnvareaEEEEvT_SJ_T0_T1_@Base 3.8.0 - (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !m68k !mipsel !powerpc)_ZSt22__final_insertion_sortIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_T0_@Base 3.9.0 - (optional=templinst)_ZSt23__copy_move_backward_a1ILb1EPN4geos5index6kdtree6KdNodeES3_EN9__gnu_cxx11__enable_ifIXsrSt23__is_random_access_iterIT0_NSt15iterator_traitsIS8_E17iterator_categoryEE7__valueESt15_Deque_iteratorIT1_RSE_PSE_EE6__typeES8_S8_SH_@Base 3.9.0 - (optional=templinst)_ZSt23__copy_move_backward_a1ILb1EPPN4geos9operation9overlayng11OverlayEdgeES4_EN9__gnu_cxx11__enable_ifIXsrSt23__is_random_access_iterIT0_NSt15iterator_traitsIS9_E17iterator_categoryEE7__valueESt15_Deque_iteratorIT1_RSF_PSF_EE6__typeES9_S9_SI_@Base 3.9.0 - (optional=templinst)_ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops14_Val_comp_iterIPFbRKS4_SD_EEEEvT_T0_@Base 3.8.1 - (optional=templinst|arch=amd64 arm64 hppa sh4 x32)_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation9overlayng11OverlayEdgeESt6vectorIS6_SaIS6_EEEESt15_Deque_iteratorIS6_RS6_S7_EET0_T_SG_SF_@Base 3.9.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt4swapIN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS0_14adl_serializerES3_IhSaIhEEE10json_valueEENSt9enable_ifIXsrSt6__and_IJSt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleISJ_ESt18is_move_assignableISJ_EEE5valueEvE4typeERSJ_ST_@Base 3.10.0 - (optional=templinst|subst)_ZSt7shuffleIN9__gnu_cxx17__normal_iteratorIP{size_t}St6vectorI{size_t}SaI{size_t}EEEERSt23mersenne_twister_engineI{size_t}L{size_t}32EL{size_t}624EL{size_t}397EL{size_t}31EL{size_t}2567483615EL{size_t}11EL{size_t}4294967295EL{size_t}7EL{size_t}2636928640EL{size_t}15EL{size_t}4022730752EL{size_t}18EL{size_t}1812433253EEEvT_SA_OT0_@Base 3.9.0 - (optional=templinst|arch=amd64 arm64 x32)_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_PKS5_@Base 3.8.0 - _ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_S9_@Base 3.7.0 - (optional=templinst|arch=amd64 arm64 x32)_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEPKS5_OS8_@Base 3.8.0 - (optional=templinst)_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEPKS5_RKS8_@Base 3.4.2 - (optional=templinst)_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_@Base 3.4.2 - _ZTIN13geos_nlohmann6detail10type_errorE@Base 3.10.0 - _ZTIN13geos_nlohmann6detail11other_errorE@Base 3.10.0 - _ZTIN13geos_nlohmann6detail11parse_errorE@Base 3.10.0 - _ZTIN13geos_nlohmann6detail12out_of_rangeE@Base 3.10.0 - _ZTIN13geos_nlohmann6detail16invalid_iteratorE@Base 3.10.0 - _ZTIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE@Base 3.10.0 - _ZTIN13geos_nlohmann6detail23output_adapter_protocolIcEE@Base 3.10.0 - _ZTIN13geos_nlohmann6detail9exceptionE@Base 3.10.0 - _ZTIN4geos11planargraph11PlanarGraphE@Base 3.4.2 - _ZTIN4geos11planargraph12DirectedEdgeE@Base 3.4.2 - _ZTIN4geos11planargraph14GraphComponentE@Base 3.4.2 - _ZTIN4geos11planargraph16DirectedEdgeStarE@Base 3.4.2 - _ZTIN4geos11planargraph4EdgeE@Base 3.4.2 - _ZTIN4geos11planargraph4NodeE@Base 3.4.2 - _ZTIN4geos11planargraph7NodeMapE@Base 3.4.2 - _ZTIN4geos11triangulate8quadedge15QuadEdgeLocatorE@Base 3.4.2 - _ZTIN4geos11triangulate8quadedge15TriangleVisitorE@Base 3.4.2 - _ZTIN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorE@Base 3.4.2 - _ZTIN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorE@Base 3.5.0 - _ZTIN4geos11triangulate8quadedge19QuadEdgeSubdivisionE@Base 3.4.2 - _ZTIN4geos11triangulate8quadedge22LocateFailureExceptionE@Base 3.4.2 - _ZTIN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorE@Base 3.4.2 - _ZTIN4geos2io12GeoJSONValue16GeoJSONTypeErrorE@Base 3.10.0 - _ZTIN4geos2io14ParseExceptionE@Base 3.4.2 - _ZTIN4geos4geom10LineStringE@Base 3.4.2 - _ZTIN4geos4geom10LinearRingE@Base 3.4.2 - _ZTIN4geos4geom10MultiPointE@Base 3.4.2 - _ZTIN4geos4geom12MultiPolygonE@Base 3.4.2 - _ZTIN4geos4geom14GeometryFilterE@Base 3.4.2 - _ZTIN4geos4geom15GeometryFactoryE@Base 3.4.2 - _ZTIN4geos4geom15MultiLineStringE@Base 3.4.2 - _ZTIN4geos4geom16CoordinateFilterE@Base 3.4.2 - _ZTIN4geos4geom18CoordinateSequenceE@Base 3.4.2 - _ZTIN4geos4geom18GeometryCollectionE@Base 3.4.2 - _ZTIN4geos4geom23CoordinateArraySequenceE@Base 3.4.2 - _ZTIN4geos4geom23GeometryComponentFilterE@Base 3.4.2 - _ZTIN4geos4geom24CoordinateSequenceFilterE@Base 3.4.2 - _ZTIN4geos4geom25CoordinateSequenceFactoryE@Base 3.4.2 - (arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZTIN4geos4geom27FixedSizeCoordinateSequenceILj0EEE@Base 3.9.0 - (arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZTIN4geos4geom27FixedSizeCoordinateSequenceILm0EEE@Base 3.9.0 - (subst)_ZTIN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EEE@Base 3.8.0 - (subst)_ZTIN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EEE@Base 3.8.0 - (subst)_ZTIN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EEE@Base 3.8.0 - (subst)_ZTIN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EEE@Base 3.8.0 - (subst)_ZTIN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EEE@Base 3.8.0 - _ZTIN4geos4geom30CoordinateArraySequenceFactoryE@Base 3.4.2 - _ZTIN4geos4geom32DefaultCoordinateSequenceFactoryE@Base 3.8.0 - _ZTIN4geos4geom4prep13PreparedPointE@Base 3.4.2 - _ZTIN4geos4geom4prep15PreparedPolygonE@Base 3.4.2 - _ZTIN4geos4geom4prep16PreparedGeometryE@Base 3.4.2 - _ZTIN4geos4geom4prep18PreparedLineStringE@Base 3.4.2 - _ZTIN4geos4geom4prep21BasicPreparedGeometryE@Base 3.4.2 - _ZTIN4geos4geom4prep21PreparedPolygonCoversE@Base 3.4.2 - _ZTIN4geos4geom4prep22LocationMatchingFilterE@Base 3.8.0 - _ZTIN4geos4geom4prep23OutermostLocationFilterE@Base 3.8.0 - _ZTIN4geos4geom4prep23PreparedPolygonContainsE@Base 3.4.2 - _ZTIN4geos4geom4prep24PreparedPolygonPredicateE@Base 3.4.2 - _ZTIN4geos4geom4prep25LocationNotMatchingFilterE@Base 3.8.0 - _ZTIN4geos4geom4prep25PreparedPolygonIntersectsE@Base 3.4.2 - _ZTIN4geos4geom4prep31AbstractPreparedPolygonContainsE@Base 3.4.2 - _ZTIN4geos4geom4prep31PreparedPolygonContainsProperlyE@Base 3.4.2 - _ZTIN4geos4geom4util14PointExtracterE@Base 3.4.2 - _ZTIN4geos4geom4util16PolygonExtracterE@Base 3.4.2 - _ZTIN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 - _ZTIN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 - _ZTIN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 - _ZTIN4geos4geom4util19CoordinateOperationE@Base 3.4.2 - _ZTIN4geos4geom4util19GeometryTransformerE@Base 3.4.2 - _ZTIN4geos4geom4util21NoOpGeometryOperationE@Base 3.10.0 - _ZTIN4geos4geom4util23GeometryEditorOperationE@Base 3.4.2 - _ZTIN4geos4geom4util24LinearComponentExtracterE@Base 3.4.2 - _ZTIN4geos4geom4util28ComponentCoordinateExtracterE@Base 3.4.2 - _ZTIN4geos4geom4util29ShortCircuitedGeometryVisitorE@Base 3.4.2 - _ZTIN4geos4geom4util9Densifier18DensifyTransformerE@Base 3.8.0 - _ZTIN4geos4geom5PointE@Base 3.4.2 - _ZTIN4geos4geom7PolygonE@Base 3.4.2 - _ZTIN4geos4geom8Geometry21GeometryChangedFilterE@Base 3.4.2 - _ZTIN4geos4geom8GeometryE@Base 3.4.2 - _ZTIN4geos4util13GEOSExceptionE@Base 3.4.2 - _ZTIN4geos4util17TopologyExceptionE@Base 3.4.2 - _ZTIN4geos4util20InterruptedExceptionE@Base 3.4.2 - _ZTIN4geos4util21GeometricShapeFactoryE@Base 3.4.2 - _ZTIN4geos4util21IllegalStateExceptionE@Base 3.4.2 - _ZTIN4geos4util24AssertionFailedExceptionE@Base 3.4.2 - _ZTIN4geos4util24IllegalArgumentExceptionE@Base 3.4.2 - _ZTIN4geos4util27UniqueCoordinateArrayFilterE@Base 3.4.2 - _ZTIN4geos4util29UnsupportedOperationExceptionE@Base 3.4.2 - _ZTIN4geos5index11ItemVisitorE@Base 3.4.2 - _ZTIN4geos5index12SpatialIndexE@Base 3.4.2 - _ZTIN4geos5index13intervalrtree17IntervalRTreeNodeE@Base 3.4.2 - _ZTIN4geos5index13intervalrtree21IntervalRTreeLeafNodeE@Base 3.4.2 - _ZTIN4geos5index13intervalrtree23IntervalRTreeBranchNodeE@Base 3.4.2 - _ZTIN4geos5index5chain12ChainBuilderE@Base 3.10.0 - _ZTIN4geos5index5chain25MonotoneChainSelectActionE@Base 3.4.2 - _ZTIN4geos5index5chain26MonotoneChainOverlapActionE@Base 3.4.2 - _ZTIN4geos5index6kdtree13KdNodeVisitorE@Base 3.9.0 - _ZTIN4geos5index6kdtree6KdTree16BestMatchVisitorE@Base 3.9.0 - _ZTIN4geos5index6kdtree6KdTree19AccumulatingVisitorE@Base 3.9.0 - _ZTIN4geos5index7bintree4NodeE@Base 3.4.2 - _ZTIN4geos5index7bintree4RootE@Base 3.4.2 - _ZTIN4geos5index7bintree8NodeBaseE@Base 3.4.2 - _ZTIN4geos5index7strtree12AbstractNodeE@Base 3.4.2 - _ZTIN4geos5index7strtree12ItemDistanceE@Base 3.6.0 - _ZTIN4geos5index7strtree13ItemBoundableE@Base 3.4.2 - _ZTIN4geos5index7strtree13SimpleSTRnodeE@Base 3.9.0 - _ZTIN4geos5index7strtree13SimpleSTRtreeE@Base 3.9.0 - _ZTIN4geos5index7strtree15AbstractSTRtree12IntersectsOpE@Base 3.4.2 - _ZTIN4geos5index7strtree15AbstractSTRtreeE@Base 3.4.2 - _ZTIN4geos5index7strtree15SIRAbstractNodeE@Base 3.4.2 - _ZTIN4geos5index7strtree15STRAbstractNodeE@Base 3.4.2 - _ZTIN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTIN4geos5index7strtree20GeometryItemDistanceE@Base 3.6.0 - _ZTIN4geos5index7strtree7SIRtree15SIRIntersectsOpE@Base 3.4.2 - _ZTIN4geos5index7strtree7SIRtreeE@Base 3.4.2 - _ZTIN4geos5index7strtree7STRtree15STRIntersectsOpE@Base 3.4.2 - _ZTIN4geos5index7strtree7STRtreeE@Base 3.4.2 - _ZTIN4geos5index7strtree9BoundableE@Base 3.4.2 - _ZTIN4geos5index8quadtree4NodeE@Base 3.4.2 - _ZTIN4geos5index8quadtree4RootE@Base 3.4.2 - _ZTIN4geos5index8quadtree8NodeBaseE@Base 3.4.2 - _ZTIN4geos5index8quadtree8QuadtreeE@Base 3.4.2 - _ZTIN4geos6noding11ScaledNoder6ScalerE@Base 3.4.2 - _ZTIN4geos6noding11ScaledNoder8ReScalerE@Base 3.4.2 - _ZTIN4geos6noding11ScaledNoderE@Base 3.4.2 - _ZTIN4geos6noding11SimpleNoderE@Base 3.4.2 - _ZTIN4geos6noding12MCIndexNoder20SegmentOverlapActionE@Base 3.4.2 - _ZTIN4geos6noding12MCIndexNoderE@Base 3.4.2 - _ZTIN4geos6noding13IteratedNoderE@Base 3.4.2 - _ZTIN4geos6noding13SegmentStringE@Base 3.4.2 - _ZTIN4geos6noding15SinglePassNoderE@Base 3.4.2 - _ZTIN4geos6noding15ValidatingNoderE@Base 3.9.0 - _ZTIN4geos6noding17IntersectionAdderE@Base 3.4.2 - _ZTIN4geos6noding18BasicSegmentStringE@Base 3.4.2 - _ZTIN4geos6noding18NodedSegmentStringE@Base 3.4.2 - _ZTIN4geos6noding18SegmentIntersectorE@Base 3.4.2 - _ZTIN4geos6noding20NodableSegmentStringE@Base 3.4.2 - _ZTIN4geos6noding23IntersectionFinderAdderE@Base 3.4.2 - _ZTIN4geos6noding24NodingIntersectionFinderE@Base 3.8.0 - _ZTIN4geos6noding27SegmentIntersectionDetectorE@Base 3.4.2 - _ZTIN4geos6noding27SegmentSetMutualIntersectorE@Base 3.4.2 - _ZTIN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionE@Base 3.4.2 - _ZTIN4geos6noding34MCIndexSegmentSetMutualIntersectorE@Base 3.4.2 - _ZTIN4geos6noding4snap13SnappingNoderE@Base 3.9.0 - _ZTIN4geos6noding4snap25SnappingIntersectionAdderE@Base 3.9.0 - _ZTIN4geos6noding5NoderE@Base 3.4.2 - _ZTIN4geos6noding9snapround17SnapRoundingNoderE@Base 3.9.0 - _ZTIN4geos6noding9snapround18HotPixelSnapActionE@Base 3.4.2 - _ZTIN4geos6noding9snapround18MCIndexSnapRounderE@Base 3.4.2 - _ZTIN4geos6noding9snapround26MCIndexPointSnapperVisitorE@Base 3.4.2 - _ZTIN4geos6noding9snapround29SnapRoundingIntersectionAdderE@Base 3.9.0 - _ZTIN4geos8simplify13DPTransformerE@Base 3.4.2 - _ZTIN4geos8simplify18LineSegmentVisitorE@Base 3.4.2 - _ZTIN4geos9algorithm11PointInRingE@Base 3.10.0 - _ZTIN4geos9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZTIN4geos9algorithm17SimplePointInRingE@Base 3.10.0 - _ZTIN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 - _ZTIN4geos9algorithm6locate22PointOnGeometryLocatorE@Base 3.4.2 - _ZTIN4geos9algorithm6locate25IndexedPointInAreaLocatorE@Base 3.4.2 - _ZTIN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterE@Base 3.4.2 - _ZTIN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterE@Base 3.4.2 - _ZTIN4geos9edgegraph8HalfEdgeE@Base 3.9.0 - _ZTIN4geos9geomgraph11EdgeEndStarE@Base 3.4.2 - _ZTIN4geos9geomgraph11NodeFactoryE@Base 3.4.2 - _ZTIN4geos9geomgraph11PlanarGraphE@Base 3.4.2 - _ZTIN4geos9geomgraph12DirectedEdgeE@Base 3.4.2 - _ZTIN4geos9geomgraph13GeometryGraphE@Base 3.4.2 - _ZTIN4geos9geomgraph14GraphComponentE@Base 3.4.2 - _ZTIN4geos9geomgraph16DirectedEdgeStarE@Base 3.4.2 - _ZTIN4geos9geomgraph4EdgeE@Base 3.4.2 - _ZTIN4geos9geomgraph4NodeE@Base 3.4.2 - _ZTIN4geos9geomgraph5DepthE@Base 3.4.2 - _ZTIN4geos9geomgraph5index13MonotoneChainE@Base 3.4.2 - _ZTIN4geos9geomgraph5index16SweepLineSegmentE@Base 3.4.2 - _ZTIN4geos9geomgraph5index17SweepLineEventOBJE@Base 3.4.2 - _ZTIN4geos9geomgraph5index18EdgeSetIntersectorE@Base 3.4.2 - _ZTIN4geos9geomgraph5index18SegmentIntersectorE@Base 3.4.2 - _ZTIN4geos9geomgraph5index24SimpleEdgeSetIntersectorE@Base 3.4.2 - _ZTIN4geos9geomgraph5index26SimpleSweepLineIntersectorE@Base 3.4.2 - _ZTIN4geos9geomgraph5index28SimpleMCSweepLineIntersectorE@Base 3.4.2 - _ZTIN4geos9geomgraph7EdgeEndE@Base 3.4.2 - _ZTIN4geos9geomgraph7NodeMapE@Base 3.4.2 - _ZTIN4geos9geomgraph8EdgeListE@Base 3.4.2 - _ZTIN4geos9geomgraph8EdgeRingE@Base 3.4.2 - _ZTIN4geos9operation10polygonize11Polygonizer15LineStringAdderE@Base 3.4.2 - _ZTIN4geos9operation10polygonize14PolygonizeEdgeE@Base 3.4.2 - _ZTIN4geos9operation10polygonize15PolygonizeGraphE@Base 3.4.2 - _ZTIN4geos9operation10polygonize22PolygonizeDirectedEdgeE@Base 3.4.2 - _ZTIN4geos9operation22GeometryGraphOperationE@Base 3.4.2 - _ZTIN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderE@Base 3.10.0 - _ZTIN4geos9operation5valid19RepeatedPointFilterE@Base 3.10.0 - _ZTIN4geos9operation5valid26RepeatedInvalidPointFilterE@Base 3.10.0 - _ZTIN4geos9operation5valid27PolygonIntersectionAnalyzerE@Base 3.10.0 - _ZTIN4geos9operation6relate10RelateNodeE@Base 3.4.2 - _ZTIN4geos9operation6relate13EdgeEndBundleE@Base 3.4.2 - _ZTIN4geos9operation6relate15RelateNodeGraphE@Base 3.4.2 - _ZTIN4geos9operation6relate17EdgeEndBundleStarE@Base 3.4.2 - _ZTIN4geos9operation6relate17RelateNodeFactoryE@Base 3.4.2 - _ZTIN4geos9operation6relate8RelateOpE@Base 3.4.2 - _ZTIN4geos9operation7overlay15MaximalEdgeRingE@Base 3.4.2 - _ZTIN4geos9operation7overlay15MinimalEdgeRingE@Base 3.4.2 - _ZTIN4geos9operation7overlay18OverlayNodeFactoryE@Base 3.4.2 - _ZTIN4geos9operation7overlay21ElevationMatrixFilterE@Base 3.4.2 - _ZTIN4geos9operation7overlay4snap15SnapTransformerE@Base 3.4.2 - _ZTIN4geos9operation7overlay9OverlayOpE@Base 3.4.2 - _ZTIN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeE@Base 3.9.0 - _ZTIN4geos9operation8distance27ConnectedElementPointFilterE@Base 3.4.2 - _ZTIN4geos9operation8distance30ConnectedElementLocationFilterE@Base 3.4.2 - _ZTIN4geos9operation8geounion13UnionStrategyE@Base 3.9.0 - _ZTIN4geos9operation8geounion20ClassicUnionStrategyE@Base 3.9.0 - _ZTIN4geos9operation9linemerge13LineMergeEdgeE@Base 3.4.2 - _ZTIN4geos9operation9linemerge14LineMergeGraphE@Base 3.4.2 - _ZTIN4geos9operation9linemerge21LineMergeDirectedEdgeE@Base 3.4.2 - _ZTIN4geos9operation9overlayng11OverlayEdgeE@Base 3.9.0 - _ZTIN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyE@Base 3.9.0 - _ZTIN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterE@Base 3.9.0 - _ZTIN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyE@Base 3.9.0 - _ZTIN4geos9operation9overlayng25IndexedPointOnLineLocatorE@Base 3.9.0 - _ZTIN4geos9operation9predicate20ContainsPointVisitorE@Base 3.4.2 - _ZTIN4geos9operation9predicate21LineIntersectsVisitorE@Base 3.4.2 - _ZTIN4geos9operation9predicate25EnvelopeIntersectsVisitorE@Base 3.4.2 - _ZTIN4geos9precision10TranslaterE@Base 3.4.2 - _ZTIN4geos9precision22CommonCoordinateFilterE@Base 3.4.2 - _ZTIN4geos9precision22PrecisionReducerFilterE@Base 3.10.0 - _ZTIN4geos9precision27PrecisionReducerTransformerE@Base 3.10.0 - _ZTIN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 - _ZTIN4geos9precision36PointwisePrecisionReducerTransformerE@Base 3.10.0 - (arch=armel riscv64)_ZTIN9__gnu_cxx7__mutexE@Base 3.10.0 - (arch=armel riscv64)_ZTISt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 - (arch=!armel !riscv64)_ZTISt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 - (arch=armel riscv64)_ZTISt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 - (arch=!armel !riscv64)_ZTISt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 - (arch=armel armhf)_ZTISt19_Sp_make_shared_tag@Base 3.10.0 - (arch=armel riscv64)_ZTISt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 - (arch=!armel !riscv64)_ZTISt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 - _ZTSN13geos_nlohmann6detail10type_errorE@Base 3.10.0 - _ZTSN13geos_nlohmann6detail11other_errorE@Base 3.10.0 - _ZTSN13geos_nlohmann6detail11parse_errorE@Base 3.10.0 - _ZTSN13geos_nlohmann6detail12out_of_rangeE@Base 3.10.0 - _ZTSN13geos_nlohmann6detail16invalid_iteratorE@Base 3.10.0 - _ZTSN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE@Base 3.10.0 - _ZTSN13geos_nlohmann6detail23output_adapter_protocolIcEE@Base 3.10.0 - _ZTSN13geos_nlohmann6detail9exceptionE@Base 3.10.0 - _ZTSN4geos11planargraph11PlanarGraphE@Base 3.4.2 - _ZTSN4geos11planargraph12DirectedEdgeE@Base 3.4.2 - _ZTSN4geos11planargraph14GraphComponentE@Base 3.4.2 - _ZTSN4geos11planargraph16DirectedEdgeStarE@Base 3.4.2 - _ZTSN4geos11planargraph4EdgeE@Base 3.4.2 - _ZTSN4geos11planargraph4NodeE@Base 3.4.2 - _ZTSN4geos11planargraph7NodeMapE@Base 3.4.2 - _ZTSN4geos11triangulate8quadedge15QuadEdgeLocatorE@Base 3.4.2 - _ZTSN4geos11triangulate8quadedge15TriangleVisitorE@Base 3.4.2 - _ZTSN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorE@Base 3.4.2 - _ZTSN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorE@Base 3.5.0 - _ZTSN4geos11triangulate8quadedge19QuadEdgeSubdivisionE@Base 3.4.2 - _ZTSN4geos11triangulate8quadedge22LocateFailureExceptionE@Base 3.4.2 - _ZTSN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorE@Base 3.4.2 - _ZTSN4geos2io12GeoJSONValue16GeoJSONTypeErrorE@Base 3.10.0 - _ZTSN4geos2io14ParseExceptionE@Base 3.4.2 - _ZTSN4geos4geom10LineStringE@Base 3.4.2 - _ZTSN4geos4geom10LinearRingE@Base 3.4.2 - _ZTSN4geos4geom10MultiPointE@Base 3.4.2 - _ZTSN4geos4geom12MultiPolygonE@Base 3.4.2 - _ZTSN4geos4geom14GeometryFilterE@Base 3.4.2 - _ZTSN4geos4geom15GeometryFactoryE@Base 3.4.2 - _ZTSN4geos4geom15MultiLineStringE@Base 3.4.2 - _ZTSN4geos4geom16CoordinateFilterE@Base 3.4.2 - _ZTSN4geos4geom18CoordinateSequenceE@Base 3.4.2 - _ZTSN4geos4geom18GeometryCollectionE@Base 3.4.2 - _ZTSN4geos4geom23CoordinateArraySequenceE@Base 3.4.2 - _ZTSN4geos4geom23GeometryComponentFilterE@Base 3.4.2 - _ZTSN4geos4geom24CoordinateSequenceFilterE@Base 3.4.2 - _ZTSN4geos4geom25CoordinateSequenceFactoryE@Base 3.4.2 - (arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZTSN4geos4geom27FixedSizeCoordinateSequenceILj0EEE@Base 3.9.0 - (arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZTSN4geos4geom27FixedSizeCoordinateSequenceILm0EEE@Base 3.9.0 - (subst)_ZTSN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EEE@Base 3.8.0 - (subst)_ZTSN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EEE@Base 3.8.0 - (subst)_ZTSN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EEE@Base 3.8.0 - (subst)_ZTSN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EEE@Base 3.8.0 - (subst)_ZTSN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EEE@Base 3.8.0 - _ZTSN4geos4geom30CoordinateArraySequenceFactoryE@Base 3.4.2 - _ZTSN4geos4geom32DefaultCoordinateSequenceFactoryE@Base 3.8.0 - _ZTSN4geos4geom4prep13PreparedPointE@Base 3.4.2 - _ZTSN4geos4geom4prep15PreparedPolygonE@Base 3.4.2 - _ZTSN4geos4geom4prep16PreparedGeometryE@Base 3.4.2 - _ZTSN4geos4geom4prep18PreparedLineStringE@Base 3.4.2 - _ZTSN4geos4geom4prep21BasicPreparedGeometryE@Base 3.4.2 - _ZTSN4geos4geom4prep21PreparedPolygonCoversE@Base 3.4.2 - _ZTSN4geos4geom4prep22LocationMatchingFilterE@Base 3.8.0 - _ZTSN4geos4geom4prep23OutermostLocationFilterE@Base 3.8.0 - _ZTSN4geos4geom4prep23PreparedPolygonContainsE@Base 3.4.2 - _ZTSN4geos4geom4prep24PreparedPolygonPredicateE@Base 3.4.2 - _ZTSN4geos4geom4prep25LocationNotMatchingFilterE@Base 3.8.0 - _ZTSN4geos4geom4prep25PreparedPolygonIntersectsE@Base 3.4.2 - _ZTSN4geos4geom4prep31AbstractPreparedPolygonContainsE@Base 3.4.2 - _ZTSN4geos4geom4prep31PreparedPolygonContainsProperlyE@Base 3.4.2 - _ZTSN4geos4geom4util14PointExtracterE@Base 3.4.2 - _ZTSN4geos4geom4util16PolygonExtracterE@Base 3.4.2 - _ZTSN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 - _ZTSN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 - _ZTSN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 - _ZTSN4geos4geom4util19CoordinateOperationE@Base 3.4.2 - _ZTSN4geos4geom4util19GeometryTransformerE@Base 3.4.2 - _ZTSN4geos4geom4util21NoOpGeometryOperationE@Base 3.10.0 - _ZTSN4geos4geom4util23GeometryEditorOperationE@Base 3.4.2 - _ZTSN4geos4geom4util24LinearComponentExtracterE@Base 3.4.2 - _ZTSN4geos4geom4util28ComponentCoordinateExtracterE@Base 3.4.2 - _ZTSN4geos4geom4util29ShortCircuitedGeometryVisitorE@Base 3.4.2 - _ZTSN4geos4geom4util9Densifier18DensifyTransformerE@Base 3.8.0 - _ZTSN4geos4geom5PointE@Base 3.4.2 - _ZTSN4geos4geom7PolygonE@Base 3.4.2 - _ZTSN4geos4geom8Geometry21GeometryChangedFilterE@Base 3.4.2 - _ZTSN4geos4geom8GeometryE@Base 3.4.2 - _ZTSN4geos4util13GEOSExceptionE@Base 3.4.2 - _ZTSN4geos4util17TopologyExceptionE@Base 3.4.2 - _ZTSN4geos4util20InterruptedExceptionE@Base 3.4.2 - _ZTSN4geos4util21GeometricShapeFactoryE@Base 3.4.2 - _ZTSN4geos4util21IllegalStateExceptionE@Base 3.4.2 - _ZTSN4geos4util24AssertionFailedExceptionE@Base 3.4.2 - _ZTSN4geos4util24IllegalArgumentExceptionE@Base 3.4.2 - _ZTSN4geos4util27UniqueCoordinateArrayFilterE@Base 3.4.2 - _ZTSN4geos4util29UnsupportedOperationExceptionE@Base 3.4.2 - _ZTSN4geos5index11ItemVisitorE@Base 3.4.2 - _ZTSN4geos5index12SpatialIndexE@Base 3.4.2 - _ZTSN4geos5index13intervalrtree17IntervalRTreeNodeE@Base 3.4.2 - _ZTSN4geos5index13intervalrtree21IntervalRTreeLeafNodeE@Base 3.4.2 - _ZTSN4geos5index13intervalrtree23IntervalRTreeBranchNodeE@Base 3.4.2 - _ZTSN4geos5index5chain12ChainBuilderE@Base 3.10.0 - _ZTSN4geos5index5chain25MonotoneChainSelectActionE@Base 3.4.2 - _ZTSN4geos5index5chain26MonotoneChainOverlapActionE@Base 3.4.2 - _ZTSN4geos5index6kdtree13KdNodeVisitorE@Base 3.9.0 - _ZTSN4geos5index6kdtree6KdTree16BestMatchVisitorE@Base 3.9.0 - _ZTSN4geos5index6kdtree6KdTree19AccumulatingVisitorE@Base 3.9.0 - _ZTSN4geos5index7bintree4NodeE@Base 3.4.2 - _ZTSN4geos5index7bintree4RootE@Base 3.4.2 - _ZTSN4geos5index7bintree8NodeBaseE@Base 3.4.2 - _ZTSN4geos5index7strtree12AbstractNodeE@Base 3.4.2 - _ZTSN4geos5index7strtree12ItemDistanceE@Base 3.6.0 - _ZTSN4geos5index7strtree13ItemBoundableE@Base 3.4.2 - _ZTSN4geos5index7strtree13SimpleSTRnodeE@Base 3.9.0 - _ZTSN4geos5index7strtree13SimpleSTRtreeE@Base 3.9.0 - _ZTSN4geos5index7strtree15AbstractSTRtree12IntersectsOpE@Base 3.4.2 - _ZTSN4geos5index7strtree15AbstractSTRtreeE@Base 3.4.2 - _ZTSN4geos5index7strtree15SIRAbstractNodeE@Base 3.4.2 - _ZTSN4geos5index7strtree15STRAbstractNodeE@Base 3.4.2 - _ZTSN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTSN4geos5index7strtree20GeometryItemDistanceE@Base 3.6.0 - _ZTSN4geos5index7strtree7SIRtree15SIRIntersectsOpE@Base 3.4.2 - _ZTSN4geos5index7strtree7SIRtreeE@Base 3.4.2 - _ZTSN4geos5index7strtree7STRtree15STRIntersectsOpE@Base 3.4.2 - _ZTSN4geos5index7strtree7STRtreeE@Base 3.4.2 - _ZTSN4geos5index7strtree9BoundableE@Base 3.4.2 - _ZTSN4geos5index8quadtree4NodeE@Base 3.4.2 - _ZTSN4geos5index8quadtree4RootE@Base 3.4.2 - _ZTSN4geos5index8quadtree8NodeBaseE@Base 3.4.2 - _ZTSN4geos5index8quadtree8QuadtreeE@Base 3.4.2 - _ZTSN4geos6noding11ScaledNoder6ScalerE@Base 3.4.2 - _ZTSN4geos6noding11ScaledNoder8ReScalerE@Base 3.4.2 - _ZTSN4geos6noding11ScaledNoderE@Base 3.4.2 - _ZTSN4geos6noding11SimpleNoderE@Base 3.4.2 - _ZTSN4geos6noding12MCIndexNoder20SegmentOverlapActionE@Base 3.4.2 - _ZTSN4geos6noding12MCIndexNoderE@Base 3.4.2 - _ZTSN4geos6noding13IteratedNoderE@Base 3.4.2 - _ZTSN4geos6noding13SegmentStringE@Base 3.4.2 - _ZTSN4geos6noding15SinglePassNoderE@Base 3.4.2 - _ZTSN4geos6noding15ValidatingNoderE@Base 3.9.0 - _ZTSN4geos6noding17IntersectionAdderE@Base 3.4.2 - _ZTSN4geos6noding18BasicSegmentStringE@Base 3.4.2 - _ZTSN4geos6noding18NodedSegmentStringE@Base 3.4.2 - _ZTSN4geos6noding18SegmentIntersectorE@Base 3.4.2 - _ZTSN4geos6noding20NodableSegmentStringE@Base 3.4.2 - _ZTSN4geos6noding23IntersectionFinderAdderE@Base 3.4.2 - _ZTSN4geos6noding24NodingIntersectionFinderE@Base 3.8.0 - _ZTSN4geos6noding27SegmentIntersectionDetectorE@Base 3.4.2 - _ZTSN4geos6noding27SegmentSetMutualIntersectorE@Base 3.4.2 - _ZTSN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionE@Base 3.4.2 - _ZTSN4geos6noding34MCIndexSegmentSetMutualIntersectorE@Base 3.4.2 - _ZTSN4geos6noding4snap13SnappingNoderE@Base 3.9.0 - _ZTSN4geos6noding4snap25SnappingIntersectionAdderE@Base 3.9.0 - _ZTSN4geos6noding5NoderE@Base 3.4.2 - _ZTSN4geos6noding9snapround17SnapRoundingNoderE@Base 3.9.0 - _ZTSN4geos6noding9snapround18HotPixelSnapActionE@Base 3.4.2 - _ZTSN4geos6noding9snapround18MCIndexSnapRounderE@Base 3.4.2 - _ZTSN4geos6noding9snapround26MCIndexPointSnapperVisitorE@Base 3.4.2 - _ZTSN4geos6noding9snapround29SnapRoundingIntersectionAdderE@Base 3.9.0 - _ZTSN4geos8simplify13DPTransformerE@Base 3.4.2 - _ZTSN4geos8simplify18LineSegmentVisitorE@Base 3.4.2 - _ZTSN4geos9algorithm11PointInRingE@Base 3.10.0 - _ZTSN4geos9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZTSN4geos9algorithm17SimplePointInRingE@Base 3.10.0 - _ZTSN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 - _ZTSN4geos9algorithm6locate22PointOnGeometryLocatorE@Base 3.4.2 - _ZTSN4geos9algorithm6locate25IndexedPointInAreaLocatorE@Base 3.4.2 - _ZTSN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterE@Base 3.4.2 - _ZTSN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterE@Base 3.4.2 - _ZTSN4geos9edgegraph8HalfEdgeE@Base 3.9.0 - _ZTSN4geos9geomgraph11EdgeEndStarE@Base 3.4.2 - _ZTSN4geos9geomgraph11NodeFactoryE@Base 3.4.2 - _ZTSN4geos9geomgraph11PlanarGraphE@Base 3.4.2 - _ZTSN4geos9geomgraph12DirectedEdgeE@Base 3.4.2 - _ZTSN4geos9geomgraph13GeometryGraphE@Base 3.4.2 - _ZTSN4geos9geomgraph14GraphComponentE@Base 3.4.2 - _ZTSN4geos9geomgraph16DirectedEdgeStarE@Base 3.4.2 - _ZTSN4geos9geomgraph4EdgeE@Base 3.4.2 - _ZTSN4geos9geomgraph4NodeE@Base 3.4.2 - _ZTSN4geos9geomgraph5DepthE@Base 3.4.2 - _ZTSN4geos9geomgraph5index13MonotoneChainE@Base 3.4.2 - _ZTSN4geos9geomgraph5index16SweepLineSegmentE@Base 3.4.2 - _ZTSN4geos9geomgraph5index17SweepLineEventOBJE@Base 3.4.2 - _ZTSN4geos9geomgraph5index18EdgeSetIntersectorE@Base 3.4.2 - _ZTSN4geos9geomgraph5index18SegmentIntersectorE@Base 3.4.2 - _ZTSN4geos9geomgraph5index24SimpleEdgeSetIntersectorE@Base 3.4.2 - _ZTSN4geos9geomgraph5index26SimpleSweepLineIntersectorE@Base 3.4.2 - _ZTSN4geos9geomgraph5index28SimpleMCSweepLineIntersectorE@Base 3.4.2 - _ZTSN4geos9geomgraph7EdgeEndE@Base 3.4.2 - _ZTSN4geos9geomgraph7NodeMapE@Base 3.4.2 - _ZTSN4geos9geomgraph8EdgeListE@Base 3.4.2 - _ZTSN4geos9geomgraph8EdgeRingE@Base 3.4.2 - _ZTSN4geos9operation10polygonize11Polygonizer15LineStringAdderE@Base 3.4.2 - _ZTSN4geos9operation10polygonize14PolygonizeEdgeE@Base 3.4.2 - _ZTSN4geos9operation10polygonize15PolygonizeGraphE@Base 3.4.2 - _ZTSN4geos9operation10polygonize22PolygonizeDirectedEdgeE@Base 3.4.2 - _ZTSN4geos9operation22GeometryGraphOperationE@Base 3.4.2 - _ZTSN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderE@Base 3.10.0 - _ZTSN4geos9operation5valid19RepeatedPointFilterE@Base 3.10.0 - _ZTSN4geos9operation5valid26RepeatedInvalidPointFilterE@Base 3.10.0 - _ZTSN4geos9operation5valid27PolygonIntersectionAnalyzerE@Base 3.10.0 - _ZTSN4geos9operation6relate10RelateNodeE@Base 3.4.2 - _ZTSN4geos9operation6relate13EdgeEndBundleE@Base 3.4.2 - _ZTSN4geos9operation6relate15RelateNodeGraphE@Base 3.4.2 - _ZTSN4geos9operation6relate17EdgeEndBundleStarE@Base 3.4.2 - _ZTSN4geos9operation6relate17RelateNodeFactoryE@Base 3.4.2 - _ZTSN4geos9operation6relate8RelateOpE@Base 3.4.2 - _ZTSN4geos9operation7overlay15MaximalEdgeRingE@Base 3.4.2 - _ZTSN4geos9operation7overlay15MinimalEdgeRingE@Base 3.4.2 - _ZTSN4geos9operation7overlay18OverlayNodeFactoryE@Base 3.4.2 - _ZTSN4geos9operation7overlay21ElevationMatrixFilterE@Base 3.4.2 - _ZTSN4geos9operation7overlay4snap15SnapTransformerE@Base 3.4.2 - _ZTSN4geos9operation7overlay9OverlayOpE@Base 3.4.2 - _ZTSN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeE@Base 3.9.0 - _ZTSN4geos9operation8distance27ConnectedElementPointFilterE@Base 3.4.2 - _ZTSN4geos9operation8distance30ConnectedElementLocationFilterE@Base 3.4.2 - _ZTSN4geos9operation8geounion13UnionStrategyE@Base 3.9.0 - _ZTSN4geos9operation8geounion20ClassicUnionStrategyE@Base 3.9.0 - _ZTSN4geos9operation9linemerge13LineMergeEdgeE@Base 3.4.2 - _ZTSN4geos9operation9linemerge14LineMergeGraphE@Base 3.4.2 - _ZTSN4geos9operation9linemerge21LineMergeDirectedEdgeE@Base 3.4.2 - _ZTSN4geos9operation9overlayng11OverlayEdgeE@Base 3.9.0 - _ZTSN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyE@Base 3.9.0 - _ZTSN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterE@Base 3.9.0 - _ZTSN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyE@Base 3.9.0 - _ZTSN4geos9operation9overlayng25IndexedPointOnLineLocatorE@Base 3.9.0 - _ZTSN4geos9operation9predicate20ContainsPointVisitorE@Base 3.4.2 - _ZTSN4geos9operation9predicate21LineIntersectsVisitorE@Base 3.4.2 - _ZTSN4geos9operation9predicate25EnvelopeIntersectsVisitorE@Base 3.4.2 - _ZTSN4geos9precision10TranslaterE@Base 3.4.2 - _ZTSN4geos9precision22CommonCoordinateFilterE@Base 3.4.2 - _ZTSN4geos9precision22PrecisionReducerFilterE@Base 3.10.0 - _ZTSN4geos9precision27PrecisionReducerTransformerE@Base 3.10.0 - _ZTSN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 - _ZTSN4geos9precision36PointwisePrecisionReducerTransformerE@Base 3.10.0 - (arch=armel riscv64)_ZTSN9__gnu_cxx7__mutexE@Base 3.10.0 - (arch=armel riscv64)_ZTSSt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 - (arch=!armel !riscv64)_ZTSSt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 - (arch=armel riscv64)_ZTSSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 - (arch=!armel !riscv64)_ZTSSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 - _ZTSSt19_Sp_make_shared_tag@Base 3.10.0 - (arch=armel riscv64)_ZTSSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 - (arch=!armel !riscv64)_ZTSSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 - _ZTVN13geos_nlohmann6detail10type_errorE@Base 3.10.0 - _ZTVN13geos_nlohmann6detail11other_errorE@Base 3.10.0 - _ZTVN13geos_nlohmann6detail11parse_errorE@Base 3.10.0 - _ZTVN13geos_nlohmann6detail12out_of_rangeE@Base 3.10.0 - _ZTVN13geos_nlohmann6detail16invalid_iteratorE@Base 3.10.0 - _ZTVN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE@Base 3.10.0 - _ZTVN13geos_nlohmann6detail9exceptionE@Base 3.10.0 - _ZTVN4geos11planargraph11PlanarGraphE@Base 3.4.2 - _ZTVN4geos11planargraph12DirectedEdgeE@Base 3.4.2 - _ZTVN4geos11planargraph16DirectedEdgeStarE@Base 3.4.2 - _ZTVN4geos11planargraph4EdgeE@Base 3.4.2 - _ZTVN4geos11planargraph4NodeE@Base 3.4.2 - _ZTVN4geos11planargraph7NodeMapE@Base 3.4.2 - _ZTVN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorE@Base 3.4.2 - _ZTVN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorE@Base 3.5.0 - _ZTVN4geos11triangulate8quadedge19QuadEdgeSubdivisionE@Base 3.4.2 - _ZTVN4geos11triangulate8quadedge22LocateFailureExceptionE@Base 3.4.2 - _ZTVN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorE@Base 3.4.2 - _ZTVN4geos2io14ParseExceptionE@Base 3.4.2 - _ZTVN4geos4geom10LineStringE@Base 3.4.2 - _ZTVN4geos4geom10LinearRingE@Base 3.4.2 - _ZTVN4geos4geom10MultiPointE@Base 3.4.2 - _ZTVN4geos4geom12MultiPolygonE@Base 3.4.2 - _ZTVN4geos4geom15GeometryFactoryE@Base 3.4.2 - _ZTVN4geos4geom15MultiLineStringE@Base 3.4.2 - _ZTVN4geos4geom18CoordinateSequenceE@Base 3.4.2 - _ZTVN4geos4geom18GeometryCollectionE@Base 3.4.2 - _ZTVN4geos4geom23CoordinateArraySequenceE@Base 3.4.2 - _ZTVN4geos4geom23GeometryComponentFilterE@Base 3.4.2 - (arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZTVN4geos4geom27FixedSizeCoordinateSequenceILj0EEE@Base 3.9.0 - (arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZTVN4geos4geom27FixedSizeCoordinateSequenceILm0EEE@Base 3.9.0 - (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EEE@Base 3.8.0 - (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EEE@Base 3.8.0 - (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EEE@Base 3.8.0 - (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EEE@Base 3.8.0 - (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EEE@Base 3.8.0 - _ZTVN4geos4geom30CoordinateArraySequenceFactoryE@Base 3.4.2 - _ZTVN4geos4geom32DefaultCoordinateSequenceFactoryE@Base 3.8.0 - _ZTVN4geos4geom4prep13PreparedPointE@Base 3.4.2 - _ZTVN4geos4geom4prep15PreparedPolygonE@Base 3.4.2 - _ZTVN4geos4geom4prep18PreparedLineStringE@Base 3.4.2 - _ZTVN4geos4geom4prep21BasicPreparedGeometryE@Base 3.4.2 - _ZTVN4geos4geom4prep21PreparedPolygonCoversE@Base 3.4.2 - _ZTVN4geos4geom4prep22LocationMatchingFilterE@Base 3.8.0 - _ZTVN4geos4geom4prep23OutermostLocationFilterE@Base 3.8.0 - _ZTVN4geos4geom4prep23PreparedPolygonContainsE@Base 3.4.2 - _ZTVN4geos4geom4prep25LocationNotMatchingFilterE@Base 3.8.0 - _ZTVN4geos4geom4prep25PreparedPolygonIntersectsE@Base 3.4.2 - _ZTVN4geos4geom4prep31PreparedPolygonContainsProperlyE@Base 3.4.2 - _ZTVN4geos4geom4util14PointExtracterE@Base 3.4.2 - _ZTVN4geos4geom4util16PolygonExtracterE@Base 3.4.2 - _ZTVN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 - _ZTVN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 - _ZTVN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 - _ZTVN4geos4geom4util19CoordinateOperationE@Base 3.4.2 - _ZTVN4geos4geom4util19GeometryTransformerE@Base 3.4.2 - _ZTVN4geos4geom4util21NoOpGeometryOperationE@Base 3.10.0 - _ZTVN4geos4geom4util24LinearComponentExtracterE@Base 3.4.2 - _ZTVN4geos4geom4util28ComponentCoordinateExtracterE@Base 3.4.2 - _ZTVN4geos4geom4util9Densifier18DensifyTransformerE@Base 3.8.0 - _ZTVN4geos4geom5PointE@Base 3.4.2 - _ZTVN4geos4geom7PolygonE@Base 3.4.2 - _ZTVN4geos4geom8Geometry21GeometryChangedFilterE@Base 3.4.2 - _ZTVN4geos4geom8GeometryE@Base 3.4.2 - _ZTVN4geos4util13GEOSExceptionE@Base 3.4.2 - _ZTVN4geos4util17TopologyExceptionE@Base 3.4.2 - _ZTVN4geos4util20InterruptedExceptionE@Base 3.4.2 - _ZTVN4geos4util21GeometricShapeFactoryE@Base 3.4.2 - _ZTVN4geos4util21IllegalStateExceptionE@Base 3.4.2 - _ZTVN4geos4util24AssertionFailedExceptionE@Base 3.4.2 - _ZTVN4geos4util24IllegalArgumentExceptionE@Base 3.4.2 - _ZTVN4geos4util27UniqueCoordinateArrayFilterE@Base 3.4.2 - _ZTVN4geos4util29UnsupportedOperationExceptionE@Base 3.4.2 - _ZTVN4geos5index13intervalrtree21IntervalRTreeLeafNodeE@Base 3.4.2 - _ZTVN4geos5index13intervalrtree23IntervalRTreeBranchNodeE@Base 3.4.2 - _ZTVN4geos5index5chain12ChainBuilderE@Base 3.10.0 - _ZTVN4geos5index5chain25MonotoneChainSelectActionE@Base 3.4.2 - _ZTVN4geos5index5chain26MonotoneChainOverlapActionE@Base 3.4.2 - _ZTVN4geos5index6kdtree6KdTree16BestMatchVisitorE@Base 3.9.0 - _ZTVN4geos5index6kdtree6KdTree19AccumulatingVisitorE@Base 3.9.0 - _ZTVN4geos5index7bintree4NodeE@Base 3.4.2 - _ZTVN4geos5index7bintree4RootE@Base 3.4.2 - _ZTVN4geos5index7bintree8NodeBaseE@Base 3.4.2 - _ZTVN4geos5index7strtree12AbstractNodeE@Base 3.4.2 - _ZTVN4geos5index7strtree13ItemBoundableE@Base 3.4.2 - _ZTVN4geos5index7strtree13SimpleSTRnodeE@Base 3.9.0 - _ZTVN4geos5index7strtree13SimpleSTRtreeE@Base 3.9.0 - _ZTVN4geos5index7strtree15AbstractSTRtreeE@Base 3.4.2 - _ZTVN4geos5index7strtree15SIRAbstractNodeE@Base 3.4.2 - _ZTVN4geos5index7strtree15STRAbstractNodeE@Base 3.4.2 - _ZTVN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTVN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTVN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTVN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTVN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 - _ZTVN4geos5index7strtree20GeometryItemDistanceE@Base 3.6.0 - _ZTVN4geos5index7strtree7SIRtree15SIRIntersectsOpE@Base 3.4.2 - _ZTVN4geos5index7strtree7SIRtreeE@Base 3.4.2 - _ZTVN4geos5index7strtree7STRtree15STRIntersectsOpE@Base 3.4.2 - _ZTVN4geos5index7strtree7STRtreeE@Base 3.4.2 - _ZTVN4geos5index8quadtree4NodeE@Base 3.4.2 - _ZTVN4geos5index8quadtree4RootE@Base 3.4.2 - _ZTVN4geos5index8quadtree8NodeBaseE@Base 3.4.2 - _ZTVN4geos5index8quadtree8QuadtreeE@Base 3.4.2 - _ZTVN4geos6noding11ScaledNoder6ScalerE@Base 3.4.2 - _ZTVN4geos6noding11ScaledNoder8ReScalerE@Base 3.4.2 - _ZTVN4geos6noding11ScaledNoderE@Base 3.4.2 - _ZTVN4geos6noding11SimpleNoderE@Base 3.4.2 - _ZTVN4geos6noding12MCIndexNoder20SegmentOverlapActionE@Base 3.4.2 - _ZTVN4geos6noding12MCIndexNoderE@Base 3.4.2 - _ZTVN4geos6noding13IteratedNoderE@Base 3.4.2 - _ZTVN4geos6noding13SegmentStringE@Base 3.4.2 - _ZTVN4geos6noding15ValidatingNoderE@Base 3.9.0 - _ZTVN4geos6noding17IntersectionAdderE@Base 3.4.2 - _ZTVN4geos6noding18BasicSegmentStringE@Base 3.4.2 - _ZTVN4geos6noding18NodedSegmentStringE@Base 3.4.2 - _ZTVN4geos6noding23IntersectionFinderAdderE@Base 3.4.2 - _ZTVN4geos6noding24NodingIntersectionFinderE@Base 3.8.0 - _ZTVN4geos6noding27SegmentIntersectionDetectorE@Base 3.4.2 - _ZTVN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionE@Base 3.4.2 - _ZTVN4geos6noding34MCIndexSegmentSetMutualIntersectorE@Base 3.4.2 - _ZTVN4geos6noding4snap13SnappingNoderE@Base 3.9.0 - _ZTVN4geos6noding4snap25SnappingIntersectionAdderE@Base 3.9.0 - _ZTVN4geos6noding9snapround17SnapRoundingNoderE@Base 3.9.0 - _ZTVN4geos6noding9snapround18HotPixelSnapActionE@Base 3.4.2 - _ZTVN4geos6noding9snapround18MCIndexSnapRounderE@Base 3.4.2 - _ZTVN4geos6noding9snapround26MCIndexPointSnapperVisitorE@Base 3.4.2 - _ZTVN4geos6noding9snapround29SnapRoundingIntersectionAdderE@Base 3.9.0 - _ZTVN4geos8simplify13DPTransformerE@Base 3.4.2 - _ZTVN4geos8simplify18LineSegmentVisitorE@Base 3.4.2 - _ZTVN4geos9algorithm17SimplePointInRingE@Base 3.10.0 - _ZTVN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 - _ZTVN4geos9algorithm6locate25IndexedPointInAreaLocatorE@Base 3.4.2 - _ZTVN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterE@Base 3.4.2 - _ZTVN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterE@Base 3.4.2 - _ZTVN4geos9edgegraph8HalfEdgeE@Base 3.9.0 - _ZTVN4geos9geomgraph11EdgeEndStarE@Base 3.4.2 - _ZTVN4geos9geomgraph11NodeFactoryE@Base 3.4.2 - _ZTVN4geos9geomgraph11PlanarGraphE@Base 3.4.2 - _ZTVN4geos9geomgraph12DirectedEdgeE@Base 3.4.2 - _ZTVN4geos9geomgraph13GeometryGraphE@Base 3.4.2 - _ZTVN4geos9geomgraph14GraphComponentE@Base 3.4.2 - _ZTVN4geos9geomgraph16DirectedEdgeStarE@Base 3.4.2 - _ZTVN4geos9geomgraph4EdgeE@Base 3.4.2 - _ZTVN4geos9geomgraph4NodeE@Base 3.4.2 - _ZTVN4geos9geomgraph5DepthE@Base 3.4.2 - _ZTVN4geos9geomgraph5index13MonotoneChainE@Base 3.4.2 - _ZTVN4geos9geomgraph5index16SweepLineSegmentE@Base 3.4.2 - _ZTVN4geos9geomgraph5index18SegmentIntersectorE@Base 3.4.2 - _ZTVN4geos9geomgraph5index24SimpleEdgeSetIntersectorE@Base 3.4.2 - _ZTVN4geos9geomgraph5index26SimpleSweepLineIntersectorE@Base 3.4.2 - _ZTVN4geos9geomgraph5index28SimpleMCSweepLineIntersectorE@Base 3.4.2 - _ZTVN4geos9geomgraph7EdgeEndE@Base 3.4.2 - _ZTVN4geos9geomgraph7NodeMapE@Base 3.4.2 - _ZTVN4geos9geomgraph8EdgeListE@Base 3.4.2 - _ZTVN4geos9geomgraph8EdgeRingE@Base 3.4.2 - _ZTVN4geos9operation10polygonize11Polygonizer15LineStringAdderE@Base 3.4.2 - _ZTVN4geos9operation10polygonize14PolygonizeEdgeE@Base 3.4.2 - _ZTVN4geos9operation10polygonize15PolygonizeGraphE@Base 3.4.2 - _ZTVN4geos9operation10polygonize22PolygonizeDirectedEdgeE@Base 3.4.2 - _ZTVN4geos9operation22GeometryGraphOperationE@Base 3.4.2 - _ZTVN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderE@Base 3.10.0 - _ZTVN4geos9operation5valid19RepeatedPointFilterE@Base 3.10.0 - _ZTVN4geos9operation5valid26RepeatedInvalidPointFilterE@Base 3.10.0 - _ZTVN4geos9operation5valid27PolygonIntersectionAnalyzerE@Base 3.10.0 - _ZTVN4geos9operation6relate10RelateNodeE@Base 3.4.2 - _ZTVN4geos9operation6relate13EdgeEndBundleE@Base 3.4.2 - _ZTVN4geos9operation6relate15RelateNodeGraphE@Base 3.4.2 - _ZTVN4geos9operation6relate17EdgeEndBundleStarE@Base 3.4.2 - _ZTVN4geos9operation6relate17RelateNodeFactoryE@Base 3.4.2 - _ZTVN4geos9operation6relate8RelateOpE@Base 3.4.2 - _ZTVN4geos9operation7overlay15MaximalEdgeRingE@Base 3.4.2 - _ZTVN4geos9operation7overlay15MinimalEdgeRingE@Base 3.4.2 - _ZTVN4geos9operation7overlay18OverlayNodeFactoryE@Base 3.4.2 - _ZTVN4geos9operation7overlay21ElevationMatrixFilterE@Base 3.4.2 - _ZTVN4geos9operation7overlay4snap15SnapTransformerE@Base 3.4.2 - _ZTVN4geos9operation7overlay9OverlayOpE@Base 3.4.2 - _ZTVN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeE@Base 3.9.0 - _ZTVN4geos9operation8distance27ConnectedElementPointFilterE@Base 3.4.2 - _ZTVN4geos9operation8distance30ConnectedElementLocationFilterE@Base 3.4.2 - _ZTVN4geos9operation8geounion13UnionStrategyE@Base 3.10.0 - _ZTVN4geos9operation8geounion20ClassicUnionStrategyE@Base 3.9.0 - _ZTVN4geos9operation9linemerge13LineMergeEdgeE@Base 3.4.2 - _ZTVN4geos9operation9linemerge14LineMergeGraphE@Base 3.4.2 - _ZTVN4geos9operation9linemerge21LineMergeDirectedEdgeE@Base 3.4.2 - _ZTVN4geos9operation9overlayng11OverlayEdgeE@Base 3.9.0 - _ZTVN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyE@Base 3.9.0 - _ZTVN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterE@Base 3.9.0 - _ZTVN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyE@Base 3.9.0 - _ZTVN4geos9operation9overlayng25IndexedPointOnLineLocatorE@Base 3.9.0 - _ZTVN4geos9operation9predicate20ContainsPointVisitorE@Base 3.4.2 - _ZTVN4geos9operation9predicate21LineIntersectsVisitorE@Base 3.4.2 - _ZTVN4geos9operation9predicate25EnvelopeIntersectsVisitorE@Base 3.4.2 - _ZTVN4geos9precision10TranslaterE@Base 3.4.2 - _ZTVN4geos9precision22CommonCoordinateFilterE@Base 3.4.2 - _ZTVN4geos9precision22PrecisionReducerFilterE@Base 3.10.0 - _ZTVN4geos9precision27PrecisionReducerTransformerE@Base 3.10.0 - _ZTVN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 - _ZTVN4geos9precision36PointwisePrecisionReducerTransformerE@Base 3.10.0 - (arch=armel riscv64)_ZTVSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 - (arch=!armel !riscv64)_ZTVSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIS9_ELN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 - _ZZ19getMachineByteOrdervE12endian_check@Base 3.4.2 - (optional=templinst|subst)_ZZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerIhLi0EEEvT_E12digits_to_99@Base 3.10.0 - (optional=templinst|subst)_ZZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerI{int64_t}Li0EEEvT_E12digits_to_99@Base 3.10.0 - (optional=templinst|subst)_ZZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerI{uint64_t}Li0EEEvT_E12digits_to_99@Base 3.10.0 - (optional=templinst|subst)_ZZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE6decodeERhRjhE5utf8d@Base 3.10.0 - _ZZN13geos_nlohmann6detail9dtoa_impl36get_cached_power_for_binary_exponentEiE13kCachedPowers@Base 3.10.0 - _ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag@Base 3.10.0 - (optional=templinst)_ZZNSt8__detail18__to_chars_10_implIjEEvPcjT_E8__digits@Base 3.10.0 - (optional=templinst|subst)_ZZNSt8__detail18__to_chars_10_implI{size_t}EEvPcjT_E8__digits@Base 3.9.0 - geos_d2sexp_buffered_n@Base 3.10.0 - geos_d2sfixed_buffered_n@Base 3.10.0 - (c++)"non-virtual thunk to geos::index::strtree::STRtree::insert(geos::geom::Envelope const*, void*)@Base" 3.4.2 - (c++)"non-virtual thunk to geos::index::strtree::STRtree::query(geos::geom::Envelope const*, geos::index::ItemVisitor&)@Base" 3.4.2 - (c++)"non-virtual thunk to geos::index::strtree::STRtree::query(geos::geom::Envelope const*, std::vector >&)@Base" 3.4.2 - (c++)"non-virtual thunk to geos::index::strtree::STRtree::remove(geos::geom::Envelope const*, void*)@Base" 3.4.2 - (c++)"non-virtual thunk to geos::index::strtree::STRtree::~STRtree()@Base" 3.4.2 diff -Nru geos-3.10.2/debian/libgeos3.11.1.install geos-3.11.1/debian/libgeos3.11.1.install --- geos-3.10.2/debian/libgeos3.11.1.install 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.11.1/debian/libgeos3.11.1.install 2022-11-16 04:59:18.000000000 +0000 @@ -0,0 +1 @@ +usr/lib/*/libgeos.so.* diff -Nru geos-3.10.2/debian/libgeos3.11.1.lintian-overrides geos-3.11.1/debian/libgeos3.11.1.lintian-overrides --- geos-3.10.2/debian/libgeos3.11.1.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.11.1/debian/libgeos3.11.1.lintian-overrides 2022-11-16 04:59:18.000000000 +0000 @@ -0,0 +1,3 @@ +# Truncated changelog +debian-news-entry-has-unknown-version * + diff -Nru geos-3.10.2/debian/libgeos3.11.1.symbols geos-3.11.1/debian/libgeos3.11.1.symbols --- geos-3.10.2/debian/libgeos3.11.1.symbols 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.11.1/debian/libgeos3.11.1.symbols 2022-11-16 05:11:54.000000000 +0000 @@ -0,0 +1,5970 @@ +# SymbolsHelper-Confirmed: 3.11.1 amd64 arm64 armel armhf i386 ia64 powerpc ppc64 riscv64 s390x sparc64 x32 +libgeos.so.3.11.1 #PACKAGE# #MINVER# +* Build-Depends-Package: libgeos++-dev + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE10json_value7destroyENS_6detail7value_tE@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE9push_backEOSC_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE9push_backERKSC_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC1ERKSC_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC1ESt16initializer_listINS_6detail8json_refISC_EEEbNSE_7value_tE@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC2ERKSC_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC2ESt16initializer_listINS_6detail8json_refISC_EEEbNSE_7value_tE@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEixERKS8_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEixIKcEERSC_PT_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE10json_value7destroyENS_6detail7value_tE@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE10json_valueC1ENS_6detail7value_tE@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE10json_valueC2ENS_6detail7value_tE@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE5eraseINS_6detail9iter_implISC_EELi0EEET_SH_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE5parseIRKS8_EESC_OT_St8functionIFbiNS_6detail13parse_event_tERSC_EEbb@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE6createIS8_JRKS8_EEEPT_DpOT0_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC1ERKSC_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEEC2ERKSC_@Base 3.10.0 + (optional=templinst|arch=armel armhf)_ZN13geos_nlohmann11ordered_mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10basic_jsonIS0_St6vectorS6_bxydSaNS_14adl_serializerES8_IhSaIhEEEESt4lessIS6_ESaISt4pairIKS6_SC_EEEixERSG_@Base 3.11.1 + (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_escapedERKSA_b@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerIhLi0EEEvT_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerI{int64_t}Li0EEEvT_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerI{uint64_t}Li0EEEvT_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE4dumpERKSE_bbjj@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEED1Ev@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEED2Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail10type_error6createEiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + _ZN13geos_nlohmann6detail10type_errorD0Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail10type_errorD1Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail10type_errorD2Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail11other_error6createEiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + _ZN13geos_nlohmann6detail11other_errorD0Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail11other_errorD1Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail11other_errorD2Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail11parse_error15position_stringB5cxx11ERKNS0_10position_tE@Base 3.11.1 + _ZN13geos_nlohmann6detail11parse_error6createEiRKNS0_10position_tERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + _ZN13geos_nlohmann6detail11parse_errorD0Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail11parse_errorD1Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail11parse_errorD2Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail12out_of_range6createEiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + _ZN13geos_nlohmann6detail12out_of_rangeD0Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail12out_of_rangeD1Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail12out_of_rangeD2Ev@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail13int_to_stringINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEvRT_{size_t}@Base 3.10.0 + _ZN13geos_nlohmann6detail16invalid_iterator6createEiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + _ZN13geos_nlohmann6detail16invalid_iteratorD0Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail16invalid_iteratorD1Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail16invalid_iteratorD2Ev@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail19json_sax_dom_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE11start_arrayE{size_t}@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail19json_sax_dom_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12start_objectE{size_t}@Base 3.10.0 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN13geos_nlohmann6detail20external_constructorILNS0_7value_tE2EE9constructINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS_14adl_serializerES7_IhSaIhEEEES7_IS7_IS7_ISt4pairIddESaISJ_EESaISL_EESaISN_EELi0EEEvRT_RKT0_@Base 3.10.0 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN13geos_nlohmann6detail20external_constructorILNS0_7value_tE2EE9constructINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS_14adl_serializerES7_IhSaIhEEEES7_IS7_ISt4pairIddESaISJ_EESaISL_EELi0EEEvRT_RKT0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hppa i386 powerpc x32)_ZN13geos_nlohmann6detail20external_constructorILNS0_7value_tE2EE9constructINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS_14adl_serializerES7_IhSaIhEEEES7_IS7_IS7_ISt4pairIddESaISJ_EESaISL_EESaISN_EELi0EEEvRT_RKT0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hppa i386 powerpc x32)_ZN13geos_nlohmann6detail20external_constructorILNS0_7value_tE2EE9constructINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS_14adl_serializerES7_IhSaIhEEEES7_IS7_ISt4pairIddESaISJ_EESaISL_EELi0EEEvRT_RKT0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc sh4)_ZN13geos_nlohmann6detail20external_constructorILNS0_7value_tE2EE9constructINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS_14adl_serializerES7_IhSaIhEEEES7_ISt4pairIddESaISJ_EELi0EEEvRT_RKT0_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail20get_arithmetic_valueINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEdLi0EEEvRKT_RT0_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail21iteration_proxy_valueINS0_9iter_implIKNS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES5_IhSaIhEEEEEEED1Ev@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail21iteration_proxy_valueINS0_9iter_implIKNS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES5_IhSaIhEEEEEEED2Ev@Base 3.10.0 + (optional=templinst)_ZN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE15write_characterEc@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE16write_charactersEPKc{size_t}@Base 3.10.0 + (optional=templinst)_ZN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED0Ev@Base 3.10.0 + (optional=templinst)_ZN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev@Base 3.10.0 + (optional=templinst)_ZN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE10end_objectEv@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE11start_arrayE{size_t}@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12handle_valueINS0_7value_tEEESt4pairIbPSE_EOT_b@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12start_objectE{size_t}@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE3keyERSA_@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64 !hppa !ia64 !riscv64 !sh4 !sparc64 !x32|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE4nullEv@Base 3.10.0 + (optional=templinst|subst|arch=!i386 !powerpc !x32)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE9end_arrayEv@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEED1Ev@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail28json_sax_dom_callback_parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEED2Ev@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE11scan_numberEv@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE11scan_stringEv@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE13get_codepointEv@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE18next_byte_in_rangeESt16initializer_listIiE@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE3getEv@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE4scanEv@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEED1Ev@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEED2Ev@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail6parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE17exception_messageENS0_10lexer_baseISE_E10token_typeERKSA_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail6parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE18sax_parse_internalINS0_19json_sax_dom_parserISE_EEEEbPT_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail6parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE18sax_parse_internalINS0_28json_sax_dom_callback_parserISE_EEEEbPT_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail6parserINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE5parseEbRSE_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail7to_jsonINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEddLi0EEEvRT_RKSt4pairIT0_T1_E@Base 3.10.0 + _ZN13geos_nlohmann6detail9dtoa_impl13format_bufferEPciiii@Base 3.10.0 + (optional=templinst|arch=armel armhf powerpc)_ZN13geos_nlohmann6detail9dtoa_impl18compute_boundariesIdEENS1_10boundariesET_@Base 3.11.1 + (optional=templinst)_ZN13geos_nlohmann6detail9dtoa_impl6grisu2IdEEvPcRiS4_T_@Base 3.10.0 + _ZN13geos_nlohmann6detail9exception4nameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi@Base 3.10.0 + _ZN13geos_nlohmann6detail9exceptionD0Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail9exceptionD1Ev@Base 3.10.0 + _ZN13geos_nlohmann6detail9exceptionD2Ev@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEEEvRKT_RNSF_8string_tE@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEEEvRKT_RNSF_9boolean_tE@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEES4_IS4_IS4_IS4_IdSaIdEESaISG_EESaISI_EESaISK_EELi0EEEDTcmcmcl20from_json_array_implfp_fp0_cvNS0_12priority_tagILj3EEEilEEcldtfp_3getINT0_10value_typeEEEcvv_EERKT_RSP_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEES4_IS4_IS4_IdSaIdEESaISG_EESaISI_EELi0EEEDTcmcmcl20from_json_array_implfp_fp0_cvNS0_12priority_tagILj3EEEilEEcldtfp_3getINT0_10value_typeEEEcvv_EERKT_RSN_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEES4_IS4_IdSaIdEESaISG_EELi0EEEDTcmcmcl20from_json_array_implfp_fp0_cvNS0_12priority_tagILj3EEEilEEcldtfp_3getINT0_10value_typeEEEcvv_EERKT_RSL_@Base 3.10.0 + (optional=templinst|subst)_ZN13geos_nlohmann6detail9from_jsonINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEES4_IdSaIdEELi0EEEDTcmcmcl20from_json_array_implfp_fp0_cvNS0_12priority_tagILj3EEEilEEcldtfp_3getINT0_10value_typeEEEcvv_EERKT_RSJ_@Base 3.10.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos11planargraph11PlanarGraph17findNodesOfDegreeEj@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos11planargraph11PlanarGraph17findNodesOfDegreeEjRSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos11planargraph11PlanarGraph17findNodesOfDegreeEm@Base 3.7.0 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos11planargraph11PlanarGraph17findNodesOfDegreeEmRSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.7.0 + _ZN4geos11planargraph11PlanarGraph3addEPNS0_4EdgeE@Base 3.4.2 + _ZN4geos11planargraph11PlanarGraph6removeEPNS0_12DirectedEdgeE@Base 3.4.2 + _ZN4geos11planargraph11PlanarGraph6removeEPNS0_4EdgeE@Base 3.4.2 + _ZN4geos11planargraph11PlanarGraph6removeEPNS0_4NodeE@Base 3.4.2 + _ZN4geos11planargraph11PlanarGraphD0Ev@Base 3.4.2 + _ZN4geos11planargraph11PlanarGraphD1Ev@Base 3.4.2 + _ZN4geos11planargraph11PlanarGraphD2Ev@Base 3.4.2 + _ZN4geos11planargraph11pdeLessThanEPNS0_12DirectedEdgeES2_@Base 3.4.2 + _ZN4geos11planargraph12DirectedEdge6setSymEPS1_@Base 3.4.2 + _ZN4geos11planargraph12DirectedEdge7setEdgeEPNS0_4EdgeE@Base 3.4.2 + _ZN4geos11planargraph12DirectedEdge7toEdgesERSt6vectorIPS1_SaIS3_EE@Base 3.4.2 + _ZN4geos11planargraph12DirectedEdge7toEdgesERSt6vectorIPS1_SaIS3_EERS2_IPNS0_4EdgeESaIS8_EE@Base 3.4.2 + _ZN4geos11planargraph12DirectedEdgeC1EPNS0_4NodeES3_RKNS_4geom10CoordinateEb@Base 3.4.2 + _ZN4geos11planargraph12DirectedEdgeC2EPNS0_4NodeES3_RKNS_4geom10CoordinateEb@Base 3.4.2 + _ZN4geos11planargraph12DirectedEdgeD0Ev@Base 3.4.2 + _ZN4geos11planargraph12DirectedEdgeD1Ev@Base 3.4.2 + _ZN4geos11planargraph12DirectedEdgeD2Ev@Base 3.4.2 + _ZN4geos11planargraph14GraphComponent10setVisitedEb@Base 3.4.2 + _ZN4geos11planargraph14GraphComponent9setMarkedEb@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStar11getNextEdgeEPNS0_12DirectedEdgeE@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStar3addEPNS0_12DirectedEdgeE@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStar3endEv@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStar5beginEv@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStar6removeEPNS0_12DirectedEdgeE@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStar8getEdgesEv@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStar8getIndexEPKNS0_12DirectedEdgeE@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStar8getIndexEPKNS0_4EdgeE@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStarD0Ev@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStarD1Ev@Base 3.4.2 + _ZN4geos11planargraph16DirectedEdgeStarD2Ev@Base 3.4.2 + _ZN4geos11planargraph4Edge10getDirEdgeEPNS0_4NodeE@Base 3.4.2 + _ZN4geos11planargraph4Edge10getDirEdgeEi@Base 3.4.2 + _ZN4geos11planargraph4Edge15getOppositeNodeEPNS0_4NodeE@Base 3.4.2 + _ZN4geos11planargraph4Edge16setDirectedEdgesEPNS0_12DirectedEdgeES3_@Base 3.4.2 + _ZN4geos11planargraph4EdgeD0Ev@Base 3.4.2 + _ZN4geos11planargraph4EdgeD1Ev@Base 3.4.2 + _ZN4geos11planargraph4EdgeD2Ev@Base 3.4.2 + _ZN4geos11planargraph4Node15getEdgesBetweenEPS1_S2_@Base 3.4.2 + _ZN4geos11planargraph4NodeD0Ev@Base 3.4.2 + _ZN4geos11planargraph4NodeD1Ev@Base 3.4.2 + _ZN4geos11planargraph4NodeD2Ev@Base 3.4.2 + _ZN4geos11planargraph7NodeMap10getNodeMapEv@Base 3.4.2 + _ZN4geos11planargraph7NodeMap3addEPNS0_4NodeE@Base 3.4.2 + _ZN4geos11planargraph7NodeMap4findERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos11planargraph7NodeMap6removeERNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos11planargraph7NodeMap8getNodesERSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.4.2 + _ZN4geos11planargraph7NodeMapC1Ev@Base 3.4.2 + _ZN4geos11planargraph7NodeMapC2Ev@Base 3.4.2 + _ZN4geos11planargraph7NodeMapD0Ev@Base 3.4.2 + _ZN4geos11planargraph7NodeMapD1Ev@Base 3.4.2 + _ZN4geos11planargraph7NodeMapD2Ev@Base 3.4.2 + _ZN4geos11planargraph8Subgraph3addEPNS0_4EdgeE@Base 3.4.2 + _ZN4geos11planargraph9algorithm23ConnectedSubgraphFinder12addReachableEPNS0_4NodeEPNS0_8SubgraphE@Base 3.4.2 + _ZN4geos11planargraph9algorithm23ConnectedSubgraphFinder12findSubgraphEPNS0_4NodeE@Base 3.4.2 + _ZN4geos11planargraph9algorithm23ConnectedSubgraphFinder21getConnectedSubgraphsERSt6vectorIPNS0_8SubgraphESaIS5_EE@Base 3.4.2 + _ZN4geos11planargraph9algorithm23ConnectedSubgraphFinder8addEdgesEPNS0_4NodeERSt5stackIS4_St5dequeIS4_SaIS4_EEEPNS0_8SubgraphE@Base 3.4.2 + _ZN4geos11planargraphlsERSoRKNS0_12DirectedEdgeE@Base 3.4.2 + _ZN4geos11planargraphlsERSoRKNS0_4EdgeE@Base 3.4.2 + _ZN4geos11planargraphlsERSoRKNS0_4NodeE@Base 3.4.2 + _ZN4geos11triangulate21VoronoiDiagramBuilder10getDiagramERKNS_4geom15GeometryFactoryE@Base 3.5.0 + _ZN4geos11triangulate21VoronoiDiagramBuilder12setToleranceEd@Base 3.5.0 + _ZN4geos11triangulate21VoronoiDiagramBuilder14getSubdivisionEv@Base 3.5.0 + _ZN4geos11triangulate21VoronoiDiagramBuilder15getDiagramEdgesERKNS_4geom15GeometryFactoryE@Base 3.5.0 + _ZN4geos11triangulate21VoronoiDiagramBuilder15setClipEnvelopeEPKNS_4geom8EnvelopeE@Base 3.5.0 + _ZN4geos11triangulate21VoronoiDiagramBuilder22clipGeometryCollectionERSt6vectorISt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EESaIS8_EERKNS4_8EnvelopeE@Base 3.8.0 + _ZN4geos11triangulate21VoronoiDiagramBuilder6createEv@Base 3.5.0 + _ZN4geos11triangulate21VoronoiDiagramBuilder8setSitesERKNS_4geom18CoordinateSequenceE@Base 3.5.0 + _ZN4geos11triangulate21VoronoiDiagramBuilder8setSitesERKNS_4geom8GeometryE@Base 3.5.0 + _ZN4geos11triangulate21VoronoiDiagramBuilderC1Ev@Base 3.5.0 + _ZN4geos11triangulate21VoronoiDiagramBuilderC2Ev@Base 3.5.0 + _ZN4geos11triangulate28DelaunayTriangulationBuilder10toVerticesERKNS_4geom18CoordinateSequenceE@Base 3.8.0 + _ZN4geos11triangulate28DelaunayTriangulationBuilder12getTrianglesERKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos11triangulate28DelaunayTriangulationBuilder14getSubdivisionEv@Base 3.4.2 + _ZN4geos11triangulate28DelaunayTriangulationBuilder24extractUniqueCoordinatesERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos11triangulate28DelaunayTriangulationBuilder6createEv@Base 3.4.2 + _ZN4geos11triangulate28DelaunayTriangulationBuilder6uniqueEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 + _ZN4geos11triangulate28DelaunayTriangulationBuilder8envelopeERKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos11triangulate28DelaunayTriangulationBuilder8getEdgesERKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos11triangulate28DelaunayTriangulationBuilder8setSitesERKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos11triangulate28DelaunayTriangulationBuilder8setSitesERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos11triangulate28DelaunayTriangulationBuilderC1Ev@Base 3.4.2 + _ZN4geos11triangulate28DelaunayTriangulationBuilderC2Ev@Base 3.4.2 + _ZN4geos11triangulate31IncrementalDelaunayTriangulator10insertSiteERKNS0_8quadedge6VertexE@Base 3.4.2 + _ZN4geos11triangulate31IncrementalDelaunayTriangulator11insertSitesERKSt6vectorINS0_8quadedge6VertexESaIS4_EE@Base 3.8.0 + _ZN4geos11triangulate31IncrementalDelaunayTriangulatorC1EPNS0_8quadedge19QuadEdgeSubdivisionE@Base 3.4.2 + _ZN4geos11triangulate31IncrementalDelaunayTriangulatorC2EPNS0_8quadedge19QuadEdgeSubdivisionE@Base 3.4.2 + _ZN4geos11triangulate3tri20TriangulationBuilder11addAdjacentEPNS1_3TriES4_RKNS_4geom10CoordinateES8_@Base 3.10.0 + _ZN4geos11triangulate3tri20TriangulationBuilder3addEPNS1_3TriE@Base 3.10.0 + _ZN4geos11triangulate3tri20TriangulationBuilder5buildERNS1_7TriListINS1_3TriEEE@Base 3.11.0~beta1 + _ZN4geos11triangulate3tri20TriangulationBuilderC1ERNS1_7TriListINS1_3TriEEE@Base 3.11.0~beta1 + _ZN4geos11triangulate3tri20TriangulationBuilderC2ERNS1_7TriListINS1_3TriEEE@Base 3.11.0~beta1 + _ZN4geos11triangulate3tri3Tri10toGeometryERSt3setIPS2_St4lessIS4_ESaIS4_EEPKNS_4geom15GeometryFactoryE@Base 3.11.0~beta1 + _ZN4geos11triangulate3tri3Tri11setAdjacentEPS2_S3_S3_@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri11setAdjacentERKNS_4geom10CoordinateEPS2_@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri14setCoordinatesERKNS_4geom10CoordinateES6_S6_@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri15getAdjacentTrisEPS2_ii@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri16validateAdjacentEi@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri4flipEPS2_iiRKNS_4geom10CoordinateES7_S7_S7_@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri4flipEi@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri4nextEi@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri4prevEi@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri6removeERNS1_7TriListIS2_EE@Base 3.11.0~beta1 + _ZN4geos11triangulate3tri3Tri6removeEi@Base 3.11.0~beta1 + _ZN4geos11triangulate3tri3Tri6removeEv@Base 3.11.0~beta1 + _ZN4geos11triangulate3tri3Tri6setTriEiPS2_@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri7oppEdgeEi@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri7replaceEPS2_S3_@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri8validateEv@Base 3.10.0 + _ZN4geos11triangulate3tri3Tri9oppVertexEi@Base 3.10.0 + _ZN4geos11triangulate3tri7TriEdge9normalizeEv@Base 3.10.0 + _ZN4geos11triangulate3trieqERKNS1_7TriEdgeES4_@Base 3.10.0 + _ZN4geos11triangulate3trilsERSoRKNS1_3TriE@Base 3.10.0 + _ZN4geos11triangulate3trilsERSoRKNS1_7TriEdgeE@Base 3.10.0 + (subst)_ZN4geos11triangulate7polygon17PolygonEarClipper10isValidEarE{size_t}RKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 + (subst)_ZN4geos11triangulate7polygon17PolygonEarClipper10nextCornerERSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonEarClipper11triangulateERSt6vectorINS_4geom10CoordinateESaIS5_EERNS0_3tri7TriListINS9_3TriEEE@Base 3.11.0~beta1 + _ZN4geos11triangulate7polygon17PolygonEarClipper12removeCornerEv@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonEarClipper15initCornerIndexEv@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonEarClipper18setSkipFlatCornersEb@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonEarClipper7computeERNS0_3tri7TriListINS3_3TriEEE@Base 3.11.0~beta1 + (subst)_ZN4geos11triangulate7polygon17PolygonEarClipper8envelopeERKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonEarClipperC1ERSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonEarClipperC2ERSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonEarClipperD1Ev@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonEarClipperD2Ev@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner13joinAsPolygonEPKNS_4geom7PolygonE@Base 3.10.0 + (subst)_ZN4geos11triangulate7polygon17PolygonHoleJoiner14addHoleToShellE{size_t}PKNS_4geom18CoordinateSequenceE{size_t}@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner15ringCoordinatesEPKNS_4geom10LinearRingE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner16findLeftVerticesEPKNS_4geom10LinearRingE@Base 3.10.3 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner18getShellCoordIndexERKNS_4geom10CoordinateES6_@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner21findLeftShellVerticesERKNS_4geom10CoordinateE@Base 3.10.3 + (subst)_ZN4geos11triangulate7polygon17PolygonHoleJoiner22getShellCoordIndexSkipERKNS_4geom10CoordinateE{size_t}@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner24createPolygonIntersectorEPKNS_4geom7PolygonE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner4joinEPKNS_4geom7PolygonE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner7computeEv@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner8joinHoleEPKNS_4geom10LinearRingE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner9joinHolesEv@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoiner9sortHolesEPKNS_4geom7PolygonE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoinerC1EPKNS_4geom7PolygonE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoinerC2EPKNS_4geom7PolygonE@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoinerD1Ev@Base 3.10.0 + _ZN4geos11triangulate7polygon17PolygonHoleJoinerD2Ev@Base 3.10.0 + _ZN4geos11triangulate7polygon19PolygonTriangulator11triangulateEPKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos11triangulate7polygon19PolygonTriangulator18triangulatePolygonEPKNS_4geom7PolygonERNS0_3tri7TriListINS7_3TriEEE@Base 3.11.0~beta1 + _ZN4geos11triangulate7polygon19PolygonTriangulator7computeEv@Base 3.10.0 + _ZN4geos11triangulate7polygon19TriDelaunayImprover10isDelaunayERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 + _ZN4geos11triangulate7polygon19TriDelaunayImprover10isInCircleERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 + _ZN4geos11triangulate7polygon19TriDelaunayImprover11improveScanERNS0_3tri7TriListINS3_3TriEEE@Base 3.11.0~beta1 + _ZN4geos11triangulate7polygon19TriDelaunayImprover18improveNonDelaunayEPNS0_3tri3TriEi@Base 3.10.0 + _ZN4geos11triangulate7polygon19TriDelaunayImprover7improveERNS0_3tri7TriListINS3_3TriEEE@Base 3.11.0~beta1 + _ZN4geos11triangulate7polygon19TriDelaunayImprover7improveEv@Base 3.10.0 + _ZN4geos11triangulate7polygon19TriDelaunayImprover8isConvexERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 + _ZN4geos11triangulate7polygon31ConstrainedDelaunayTriangulator10toGeometryEPKNS_4geom15GeometryFactoryERKSt6vectorISt10unique_ptrINS0_3tri7TriListINS9_3TriEEESt14default_deleteISC_EESaISF_EE@Base 3.11.0~beta1 + _ZN4geos11triangulate7polygon31ConstrainedDelaunayTriangulator11triangulateEPKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos11triangulate7polygon31ConstrainedDelaunayTriangulator18triangulatePolygonEPKNS_4geom7PolygonERNS0_3tri7TriListINS7_3TriEEE@Base 3.11.0~beta1 + _ZN4geos11triangulate7polygon31ConstrainedDelaunayTriangulator7computeEv@Base 3.10.0 + _ZN4geos11triangulate8quadedge17TrianglePredicate16isInCircleRobustERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 + _ZN4geos11triangulate8quadedge17TrianglePredicate19isInCircleNonRobustERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 + _ZN4geos11triangulate8quadedge17TrianglePredicate20isInCircleNormalizedERKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 + _ZN4geos11triangulate8quadedge17TrianglePredicate7triAreaERKNS_4geom10CoordinateES6_S6_@Base 3.10.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision10initSubdivEv@Base 3.9.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision10insertSiteERKNS1_6VertexE@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision11createFrameERKNS_4geom8EnvelopeE@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision12getTrianglesERKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision12prepareVisitEv@Base 3.8.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision14visitTrianglesEPNS1_15TriangleVisitorEb@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision15getPrimaryEdgesEb@Base 3.5.1 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision16getTriangleEdgesERKNS1_8QuadEdgeEPPS4_@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision17getVoronoiDiagramERKNS_4geom15GeometryFactoryE@Base 3.5.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision18getVoronoiCellEdgeEPKNS1_8QuadEdgeERKNS_4geom15GeometryFactoryE@Base 3.8.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision19getVoronoiCellEdgesERKNS_4geom15GeometryFactoryE@Base 3.5.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision20fetchTriangleToVisitEPNS1_8QuadEdgeERSt5stackIS4_St5dequeIS4_SaIS4_EEEb@Base 3.8.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision20getVertexUniqueEdgesEb@Base 3.5.1 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision21getVoronoiCellPolygonEPKNS1_8QuadEdgeERKNS_4geom15GeometryFactoryE@Base 3.8.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision22getTriangleCoordinatesEPSt6vectorISt10unique_ptrINS_4geom18CoordinateSequenceESt14default_deleteIS6_EESaIS9_EEb@Base 3.8.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision22getVoronoiCellPolygonsERKNS_4geom15GeometryFactoryE@Base 3.5.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision22getVoronoiDiagramEdgesERKNS_4geom15GeometryFactoryE@Base 3.5.0 + (subst)_ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitor5visitERSt5arrayIPNS1_8QuadEdgeEL{size_t}3EE@Base 3.10.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD0Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD1Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD2Ev@Base 3.4.2 + (subst)_ZN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitor5visitERSt5arrayIPNS1_8QuadEdgeEL{size_t}3EE@Base 3.10.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorD0Ev@Base 3.5.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorD1Ev@Base 3.5.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorD2Ev@Base 3.5.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision6locateERKNS_4geom10CoordinateES6_@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision6removeERNS1_8QuadEdgeE@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision7connectERNS1_8QuadEdgeES4_@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision8getEdgesERKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision8makeEdgeERKNS1_6VertexES5_@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivisionC1ERKNS_4geom8EnvelopeEd@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivisionC2ERKNS_4geom8EnvelopeEd@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivisionD0Ev@Base 3.5.0 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivisionD1Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivisionD2Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge22LocateFailureExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos11triangulate8quadedge22LocateFailureExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos11triangulate8quadedge22LocateFailureExceptionD0Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge22LocateFailureExceptionD1Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge22LocateFailureExceptionD2Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocator4initEv@Base 3.4.2 + _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocator6locateERKNS1_6VertexE@Base 3.4.2 + _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocator8findEdgeEv@Base 3.4.2 + _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorC1EPNS1_19QuadEdgeSubdivisionE@Base 3.4.2 + _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorC2EPNS1_19QuadEdgeSubdivisionE@Base 3.4.2 + _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorD0Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorD1Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorD2Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge6Vertex12interpolateZERKNS_4geom10CoordinateES6_S6_@Base 3.4.2 + _ZN4geos11triangulate8quadedge6Vertex12interpolateZERKNS_4geom10CoordinateES6_S6_S6_@Base 3.4.2 + _ZN4geos11triangulate8quadedge6Vertex17circumRadiusRatioERKS2_S4_@Base 3.4.2 + _ZN4geos11triangulate8quadedge6Vertex8bisectorERKS2_S4_@Base 3.4.2 + _ZN4geos11triangulate8quadedge6Vertex8classifyERKS2_S4_@Base 3.4.2 + _ZN4geos11triangulate8quadedge6Vertex8midPointERKS2_@Base 3.4.2 + _ZN4geos11triangulate8quadedge6VertexC1ERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos11triangulate8quadedge6VertexC1Edd@Base 3.4.2 + _ZN4geos11triangulate8quadedge6VertexC1Eddd@Base 3.4.2 + _ZN4geos11triangulate8quadedge6VertexC1Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge6VertexC2ERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos11triangulate8quadedge6VertexC2Edd@Base 3.4.2 + _ZN4geos11triangulate8quadedge6VertexC2Eddd@Base 3.4.2 + _ZN4geos11triangulate8quadedge6VertexC2Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge8QuadEdge10getPrimaryEv@Base 3.9.0 + _ZN4geos11triangulate8quadedge8QuadEdge4swapERS2_@Base 3.4.2 + _ZN4geos11triangulate8quadedge8QuadEdge6removeEv@Base 3.4.2 + _ZN4geos11triangulate8quadedge8QuadEdge6spliceERS2_S3_@Base 3.4.2 + _ZN4geos11triangulate8quadedge8QuadEdge7connectERS2_S3_RSt5dequeINS1_15QuadEdgeQuartetESaIS5_EE@Base 3.9.0 + _ZN4geos11triangulate8quadedge8QuadEdge8makeEdgeERKNS1_6VertexES5_RSt5dequeINS1_15QuadEdgeQuartetESaIS7_EE@Base 3.9.0 + _ZN4geos11triangulate8quadedgelsERSoPKNS1_8QuadEdgeE@Base 3.9.0 + _ZN4geos2io10CLocalizerC1Ev@Base 3.4.2 + _ZN4geos2io10CLocalizerC2Ev@Base 3.4.2 + _ZN4geos2io10CLocalizerD1Ev@Base 3.4.2 + _ZN4geos2io10CLocalizerD2Ev@Base 3.4.2 + _ZN4geos2io12GeoJSONValue7cleanupEv@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC1ERKS1_@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC1ERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES1_St4lessIS8_ESaISt4pairIKS8_S1_EEE@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC1ERKSt6vectorIS1_SaIS1_EE@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC1Eb@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC1Ed@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC1Ev@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC2ERKS1_@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC2ERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES1_St4lessIS8_ESaISt4pairIKS8_S1_EEE@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC2ERKSt6vectorIS1_SaIS1_EE@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC2Eb@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC2Ed@Base 3.10.0 + _ZN4geos2io12GeoJSONValueC2Ev@Base 3.10.0 + _ZN4geos2io12GeoJSONValueD1Ev@Base 3.10.0 + _ZN4geos2io12GeoJSONValueD2Ev@Base 3.10.0 + _ZN4geos2io12GeoJSONValueaSERKS1_@Base 3.10.0 + _ZN4geos2io13GeoJSONReaderC1ERKNS_4geom15GeometryFactoryE@Base 3.10.0 + _ZN4geos2io13GeoJSONReaderC1Ev@Base 3.10.0 + _ZN4geos2io13GeoJSONReaderC2ERKNS_4geom15GeometryFactoryE@Base 3.10.0 + _ZN4geos2io13GeoJSONReaderC2Ev@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter11encodePointEPKNS_4geom5PointERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter13encodeFeatureEPKNS_4geom8GeometryERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter13encodeFeatureERKNS0_14GeoJSONFeatureERN13geos_nlohmann10basic_jsonINS5_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS5_14adl_serializerES8_IhSaIhEEEE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter13encodePolygonEPKNS_4geom7PolygonERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter14encodeGeometryEPKNS_4geom8GeometryERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 + _ZN4geos2io13GeoJSONWriter14writeFormattedB5cxx11EPKNS_4geom8GeometryENS0_11GeoJSONTypeEi@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter16encodeLineStringEPKNS_4geom10LineStringERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter16encodeMultiPointEPKNS_4geom10MultiPointERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 + _ZN4geos2io13GeoJSONWriter17convertCoordinateEPKNS_4geom10CoordinateE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter18encodeGeoJSONValueERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS0_12GeoJSONValueERN13geos_nlohmann10basic_jsonINSD_11ordered_mapESt6vectorS7_b{int64_t}{uint64_t}dSaNSD_14adl_serializerESG_IhSaIhEEEE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter18encodeMultiPolygonEPKNS_4geom12MultiPolygonERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter21encodeMultiLineStringEPKNS_4geom15MultiLineStringERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter23encodeFeatureCollectionEPKNS_4geom8GeometryERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter24encodeGeometryCollectionEPKNS_4geom18GeometryCollectionERN13geos_nlohmann10basic_jsonINS6_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS6_14adl_serializerES9_IhSaIhEEEE@Base 3.10.0 + _ZN4geos2io13GeoJSONWriter25convertCoordinateSequenceEPKNS_4geom18CoordinateSequenceE@Base 3.10.0 + _ZN4geos2io13GeoJSONWriter5writeB5cxx11EPKNS_4geom8GeometryENS0_11GeoJSONTypeE@Base 3.10.0 + _ZN4geos2io13GeoJSONWriter5writeB5cxx11ERKNS0_14GeoJSONFeatureE@Base 3.10.0 + _ZN4geos2io13GeoJSONWriter5writeB5cxx11ERKNS0_24GeoJSONFeatureCollectionE@Base 3.10.0 + (subst)_ZN4geos2io13GeoJSONWriter6encodeEPKNS_4geom8GeometryENS0_11GeoJSONTypeERN13geos_nlohmann10basic_jsonINS7_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS7_14adl_serializerESA_IhSaIhEEEE@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureC1EOS1_@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureC1ERKS1_@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureC1ESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS4_EEOSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS0_12GeoJSONValueESt4lessISE_ESaISt4pairIKSE_SF_EEE@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureC1ESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS4_EERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS0_12GeoJSONValueESt4lessISE_ESaISt4pairIKSE_SF_EEE@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureC2EOS1_@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureC2ERKS1_@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureC2ESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS4_EEOSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS0_12GeoJSONValueESt4lessISE_ESaISt4pairIKSE_SF_EEE@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureC2ESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS4_EERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS0_12GeoJSONValueESt4lessISE_ESaISt4pairIKSE_SF_EEE@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureD1Ev@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureD2Ev@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureaSEOS1_@Base 3.10.0 + _ZN4geos2io14GeoJSONFeatureaSERKS1_@Base 3.10.0 + _ZN4geos2io14ParseException9stringifyB5cxx11Ed@Base 3.5.1 + _ZN4geos2io14ParseExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos2io14ParseExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 + _ZN4geos2io14ParseExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEd@Base 3.5.1 + _ZN4geos2io14ParseExceptionC1Ev@Base 3.4.2 + _ZN4geos2io14ParseExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos2io14ParseExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 + _ZN4geos2io14ParseExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEd@Base 3.5.1 + _ZN4geos2io14ParseExceptionC2Ev@Base 3.4.2 + _ZN4geos2io14ParseExceptionD0Ev@Base 3.4.2 + _ZN4geos2io14ParseExceptionD1Ev@Base 3.4.2 + _ZN4geos2io14ParseExceptionD2Ev@Base 3.4.2 + _ZN4geos2io15ByteOrderValues11getUnsignedEPKhi@Base 3.10.0 + _ZN4geos2io15ByteOrderValues11putUnsignedEjPhi@Base 3.10.0 + _ZN4geos2io15ByteOrderValues6getIntEPKhi@Base 3.4.2 + _ZN4geos2io15ByteOrderValues6putIntEiPhi@Base 3.4.2 + _ZN4geos2io15ByteOrderValues7getLongEPKhi@Base 3.4.2 + (subst)_ZN4geos2io15ByteOrderValues7putLongE{int64_t}Phi@Base 3.8.0 + _ZN4geos2io15ByteOrderValues9getDoubleEPKhi@Base 3.4.2 + _ZN4geos2io15ByteOrderValues9putDoubleEdPhi@Base 3.4.2 + _ZN4geos2io15StringTokenizer13peekNextTokenEv@Base 3.4.2 + _ZN4geos2io15StringTokenizer9nextTokenEv@Base 3.4.2 + _ZN4geos2io15StringTokenizerC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos2io15StringTokenizerC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos2io18strtod_with_vc_fixEPKcPPc@Base 3.5.0 + _ZN4geos2io24GeoJSONFeatureCollectionC1EOSt6vectorINS0_14GeoJSONFeatureESaIS3_EE@Base 3.10.0 + _ZN4geos2io24GeoJSONFeatureCollectionC1ERKSt6vectorINS0_14GeoJSONFeatureESaIS3_EE@Base 3.10.0 + _ZN4geos2io24GeoJSONFeatureCollectionC2EOSt6vectorINS0_14GeoJSONFeatureESaIS3_EE@Base 3.10.0 + _ZN4geos2io24GeoJSONFeatureCollectionC2ERKSt6vectorINS0_14GeoJSONFeatureESaIS3_EE@Base 3.10.0 + _ZN4geos2io6Unload7ReleaseEv@Base 3.4.2 + _ZN4geos2io6Writer5writeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos2io6Writer7reserveEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos2io6Writer7reserveEm@Base 3.7.0 + _ZN4geos2io6Writer8toStringB5cxx11Ev@Base 3.5.1 + _ZN4geos2io6WriterC1Ev@Base 3.4.2 + _ZN4geos2io6WriterC2Ev@Base 3.4.2 + (subst)_ZN4geos2io9WKBReader10minMemSizeEi{uint64_t}@Base 3.10.0 + _ZN4geos2io9WKBReader11readPolygonEv@Base 3.4.2 + _ZN4geos2io9WKBReader12readGeometryEv@Base 3.4.2 + _ZN4geos2io9WKBReader14readCoordinateEv@Base 3.4.2 + _ZN4geos2io9WKBReader14readLineStringEv@Base 3.4.2 + _ZN4geos2io9WKBReader14readLinearRingEv@Base 3.4.2 + _ZN4geos2io9WKBReader14readMultiPointEv@Base 3.4.2 + _ZN4geos2io9WKBReader15setFixStructureEb@Base 3.11.0~beta2 + _ZN4geos2io9WKBReader16readMultiPolygonEv@Base 3.4.2 + _ZN4geos2io9WKBReader19readMultiLineStringEv@Base 3.4.2 + _ZN4geos2io9WKBReader22readCoordinateSequenceEj@Base 3.10.0 + _ZN4geos2io9WKBReader22readGeometryCollectionEv@Base 3.4.2 + (subst)_ZN4geos2io9WKBReader4readEPKh{size_t}@Base 3.10.0 + _ZN4geos2io9WKBReader4readERSi@Base 3.4.2 + _ZN4geos2io9WKBReader7readHEXERSi@Base 3.4.2 + _ZN4geos2io9WKBReader8printHEXERSiRSo@Base 3.4.2 + _ZN4geos2io9WKBReader9readPointEv@Base 3.4.2 + _ZN4geos2io9WKBReaderC1ERKNS_4geom15GeometryFactoryE@Base 3.9.0 + _ZN4geos2io9WKBReaderC1Ev@Base 3.4.2 + _ZN4geos2io9WKBReaderC2ERKNS_4geom15GeometryFactoryE@Base 3.9.0 + _ZN4geos2io9WKBReaderC2Ev@Base 3.4.2 + _ZN4geos2io9WKBWriter10writePointERKNS_4geom5PointE@Base 3.4.2 + _ZN4geos2io9WKBWriter12setByteOrderEi@Base 3.4.2 + _ZN4geos2io9WKBWriter12writePolygonERKNS_4geom7PolygonE@Base 3.4.2 + _ZN4geos2io9WKBWriter14writeByteOrderEv@Base 3.4.2 + (subst)_ZN4geos2io9WKBWriter15writeCoordinateERKNS_4geom18CoordinateSequenceE{size_t}b@Base 3.8.0 + _ZN4geos2io9WKBWriter15writeLineStringERKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos2io9WKBWriter15writePointEmptyERKNS_4geom5PointE@Base 3.9.0 + _ZN4geos2io9WKBWriter17writeGeometryTypeEii@Base 3.4.2 + _ZN4geos2io9WKBWriter18setOutputDimensionEh@Base 3.9.0 + _ZN4geos2io9WKBWriter23writeCoordinateSequenceERKNS_4geom18CoordinateSequenceEb@Base 3.4.2 + _ZN4geos2io9WKBWriter23writeGeometryCollectionERKNS_4geom18GeometryCollectionEi@Base 3.4.2 + _ZN4geos2io9WKBWriter5writeERKNS_4geom8GeometryERSo@Base 3.4.2 + _ZN4geos2io9WKBWriter8writeHEXERKNS_4geom8GeometryERSo@Base 3.4.2 + _ZN4geos2io9WKBWriter8writeIntEi@Base 3.4.2 + _ZN4geos2io9WKBWriter9setFlavorEi@Base 3.10.0 + _ZN4geos2io9WKBWriter9writeSRIDEi@Base 3.4.2 + _ZN4geos2io9WKBWriterC1Ehibi@Base 3.10.0 + _ZN4geos2io9WKBWriterC2Ehibi@Base 3.10.0 + _ZN4geos2io9WKTReader11getNextWordB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 + _ZN4geos2io9WKTReader12isNumberNextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader13getNextCloserB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 + _ZN4geos2io9WKTReader13getNextNumberEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader20getNextCloserOrCommaB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 + (subst)_ZN4geos2io9WKTReader20getNextEmptyOrOpenerB5cxx11EPNS0_15StringTokenizerER{size_t}@Base 3.9.0 + _ZN4geos2io9WKTWriter12toLineStringB5cxx11ERKNS_4geom10CoordinateES5_@Base 3.5.1 + _ZN4geos2io9WKTWriter12toLineStringB5cxx11ERKNS_4geom18CoordinateSequenceE@Base 3.5.1 + _ZN4geos2io9WKTWriter14writeFormattedB5cxx11EPKNS_4geom8GeometryE@Base 3.5.1 + _ZN4geos2io9WKTWriter14writeFormattedEPKNS_4geom8GeometryEPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter14writeFormattedEPKNS_4geom8GeometryEbPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter15appendPointTextEPKNS_4geom10CoordinateEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter16appendCoordinateEPKNS_4geom10CoordinateEPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter17appendPolygonTextEPKNS_4geom7PolygonEibPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter18setOutputDimensionEh@Base 3.9.0 + _ZN4geos2io9WKTWriter20appendLineStringTextEPKNS_4geom10LineStringEibPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter20appendMultiPointTextEPKNS_4geom10MultiPointEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter20setRoundingPrecisionEi@Base 3.4.2 + _ZN4geos2io9WKTWriter21appendPointTaggedTextEPKNS_4geom10CoordinateEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter22appendMultiPolygonTextEPKNS_4geom12MultiPolygonEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter23appendPolygonTaggedTextEPKNS_4geom7PolygonEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter24appendGeometryTaggedTextEPKNS_4geom8GeometryEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter25appendMultiLineStringTextEPKNS_4geom15MultiLineStringEibPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter26appendLineStringTaggedTextEPKNS_4geom10LineStringEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter26appendLinearRingTaggedTextEPKNS_4geom10LinearRingEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter26appendMultiPointTaggedTextEPKNS_4geom10MultiPointEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter28appendGeometryCollectionTextEPKNS_4geom18GeometryCollectionEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter28appendMultiPolygonTaggedTextEPKNS_4geom12MultiPolygonEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter31appendMultiLineStringTaggedTextEPKNS_4geom15MultiLineStringEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter34appendGeometryCollectionTaggedTextEPKNS_4geom18GeometryCollectionEiPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter5writeB5cxx11EPKNS_4geom8GeometryE@Base 3.5.1 + _ZN4geos2io9WKTWriter5writeEPKNS_4geom8GeometryEPNS0_6WriterE@Base 3.4.2 + _ZN4geos2io9WKTWriter7setTrimEb@Base 3.4.2 + _ZN4geos2io9WKTWriter7toPointB5cxx11ERKNS_4geom10CoordinateE@Base 3.5.1 + _ZN4geos2io9WKTWriterC1Ev@Base 3.4.2 + _ZN4geos2io9WKTWriterC2Ev@Base 3.4.2 + _ZN4geos4geom10Coordinate10_nullCoordE@Base 3.6.0 + _ZN4geos4geom10Coordinate7getNullEv@Base 3.4.2 + _ZN4geos4geom10LineString15normalizeClosedEv@Base 3.9.0 + _ZN4geos4geom10LineString18releaseCoordinatesEv@Base 3.10.0 + _ZN4geos4geom10LineString20validateConstructionEv@Base 3.4.2 + _ZN4geos4geom10LineString8apply_rwEPKNS0_16CoordinateFilterE@Base 3.4.2 + _ZN4geos4geom10LineString8apply_rwEPNS0_14GeometryFilterE@Base 3.4.2 + _ZN4geos4geom10LineString8apply_rwEPNS0_23GeometryComponentFilterE@Base 3.4.2 + _ZN4geos4geom10LineString8apply_rwERNS0_24CoordinateSequenceFilterE@Base 3.4.2 + _ZN4geos4geom10LineString9normalizeEv@Base 3.4.2 + _ZN4geos4geom10LineStringC1EOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom10LineStringC1EOSt6vectorINS0_10CoordinateESaIS3_EERKNS0_15GeometryFactoryE@Base 3.11.0~beta1 + _ZN4geos4geom10LineStringC1EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom10LineStringC1ERKS1_@Base 3.4.2 + _ZN4geos4geom10LineStringC2EOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom10LineStringC2EOSt6vectorINS0_10CoordinateESaIS3_EERKNS0_15GeometryFactoryE@Base 3.11.0~beta1 + _ZN4geos4geom10LineStringC2EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom10LineStringC2ERKS1_@Base 3.4.2 + _ZN4geos4geom10LineStringD0Ev@Base 3.4.2 + _ZN4geos4geom10LineStringD1Ev@Base 3.4.2 + _ZN4geos4geom10LineStringD2Ev@Base 3.4.2 + _ZN4geos4geom10LinearRing20validateConstructionEv@Base 3.4.2 + _ZN4geos4geom10LinearRing9setPointsEPKNS0_18CoordinateSequenceE@Base 3.8.0 + _ZN4geos4geom10LinearRingC1EOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom10LinearRingC1EOSt6vectorINS0_10CoordinateESaIS3_EERKNS0_15GeometryFactoryE@Base 3.11.0~beta1 + _ZN4geos4geom10LinearRingC1EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom10LinearRingC1ERKS1_@Base 3.4.2 + _ZN4geos4geom10LinearRingC2EOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom10LinearRingC2EOSt6vectorINS0_10CoordinateESaIS3_EERKNS0_15GeometryFactoryE@Base 3.11.0~beta1 + _ZN4geos4geom10LinearRingC2EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom10LinearRingC2ERKS1_@Base 3.4.2 + _ZN4geos4geom10LinearRingD0Ev@Base 3.4.2 + _ZN4geos4geom10LinearRingD1Ev@Base 3.4.2 + _ZN4geos4geom10LinearRingD2Ev@Base 3.4.2 + _ZN4geos4geom10MultiPointC1EOSt6vectorISt10unique_ptrINS0_5PointESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom10MultiPointC1EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom10MultiPointC1EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom10MultiPointC2EOSt6vectorISt10unique_ptrINS0_5PointESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom10MultiPointC2EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom10MultiPointC2EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom10MultiPointD0Ev@Base 3.4.2 + _ZN4geos4geom10MultiPointD1Ev@Base 3.4.2 + _ZN4geos4geom10MultiPointD2Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom10commonTypeISt6vectorIPKNS0_8GeometryESaIS5_EEEENS0_14GeometryTypeIdERKT_@Base 3.8.0 + (optional=templinst)_ZN4geos4geom10commonTypeISt6vectorIPNS0_8GeometryESaIS4_EEEENS0_14GeometryTypeIdERKT_@Base 3.8.0 + (optional=templinst)_ZN4geos4geom10commonTypeISt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EEEENS0_14GeometryTypeIdERKT_@Base 3.8.0 + _ZN4geos4geom11LineSegment13closestPointsERKS1_@Base 3.4.2 + _ZN4geos4geom11LineSegment6offsetEd@Base 3.11.0~beta1 + _ZN4geos4geom11LineSegment7reverseEv@Base 3.4.2 + _ZN4geos4geom11geosversionB5cxx11Ev@Base 3.5.1 + _ZN4geos4geom12MultiPolygonC1EOSt6vectorISt10unique_ptrINS0_7PolygonESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom12MultiPolygonC1EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom12MultiPolygonC1EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom12MultiPolygonC2EOSt6vectorISt10unique_ptrINS0_7PolygonESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom12MultiPolygonC2EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom12MultiPolygonC2EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom12MultiPolygonD0Ev@Base 3.4.2 + _ZN4geos4geom12MultiPolygonD1Ev@Base 3.4.2 + _ZN4geos4geom12MultiPolygonD2Ev@Base 3.4.2 + _ZN4geos4geom14GeometryFilter9filter_roEPKNS0_8GeometryE@Base 3.10.0 + _ZN4geos4geom14GeometryFilter9filter_rwEPNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom14PrecisionModel19maximumPreciseValueE@Base 3.4.2 + _ZN4geos4geom14PrecisionModel8setScaleEd@Base 3.4.2 + _ZN4geos4geom14PrecisionModelC1ENS1_4TypeE@Base 3.4.2 + _ZN4geos4geom14PrecisionModelC1Ed@Base 3.4.2 + _ZN4geos4geom14PrecisionModelC1Eddd@Base 3.4.2 + _ZN4geos4geom14PrecisionModelC1Ev@Base 3.4.2 + _ZN4geos4geom14PrecisionModelC2ENS1_4TypeE@Base 3.4.2 + _ZN4geos4geom14PrecisionModelC2Ed@Base 3.4.2 + _ZN4geos4geom14PrecisionModelC2Eddd@Base 3.4.2 + _ZN4geos4geom14PrecisionModelC2Ev@Base 3.4.2 + _ZN4geos4geom15GeometryFactory18getDefaultInstanceEv@Base 3.4.2 + _ZN4geos4geom15GeometryFactory6createEPKNS0_14PrecisionModelE@Base 3.6.0 + _ZN4geos4geom15GeometryFactory6createEPKNS0_14PrecisionModelEi@Base 3.6.0 + _ZN4geos4geom15GeometryFactory6createEPKNS0_14PrecisionModelEiPNS0_25CoordinateSequenceFactoryE@Base 3.6.0 + _ZN4geos4geom15GeometryFactory6createEPNS0_25CoordinateSequenceFactoryE@Base 3.6.0 + _ZN4geos4geom15GeometryFactory6createERKS1_@Base 3.6.0 + _ZN4geos4geom15GeometryFactory6createEv@Base 3.6.0 + _ZN4geos4geom15GeometryFactory7destroyEv@Base 3.6.0 + _ZN4geos4geom15GeometryFactoryC1EPKNS0_14PrecisionModelE@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC1EPKNS0_14PrecisionModelEi@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC1EPKNS0_14PrecisionModelEiPNS0_25CoordinateSequenceFactoryE@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC1EPNS0_25CoordinateSequenceFactoryE@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC1ERKS1_@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC1Ev@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC2EPKNS0_14PrecisionModelE@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC2EPKNS0_14PrecisionModelEi@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC2EPKNS0_14PrecisionModelEiPNS0_25CoordinateSequenceFactoryE@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC2EPNS0_25CoordinateSequenceFactoryE@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC2ERKS1_@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryC2Ev@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryD0Ev@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryD1Ev@Base 3.4.2 + _ZN4geos4geom15GeometryFactoryD2Ev@Base 3.4.2 + _ZN4geos4geom15MultiLineStringC1EOSt6vectorISt10unique_ptrINS0_10LineStringESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom15MultiLineStringC1EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom15MultiLineStringC1EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom15MultiLineStringC2EOSt6vectorISt10unique_ptrINS0_10LineStringESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom15MultiLineStringC2EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom15MultiLineStringC2EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom15MultiLineStringD0Ev@Base 3.4.2 + _ZN4geos4geom15MultiLineStringD1Ev@Base 3.4.2 + _ZN4geos4geom15MultiLineStringD2Ev@Base 3.4.2 + _ZN4geos4geom16CoordinateFilter9filter_roEPKNS0_10CoordinateE@Base 3.4.2 + _ZN4geos4geom16HeuristicOverlayEPKNS0_8GeometryES3_i@Base 3.9.0 + _ZN4geos4geom18CoordinateSequence17hasRepeatedPointsEPKS1_@Base 3.4.2 + _ZN4geos4geom18CoordinateSequence19increasingDirectionERKS1_@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom18CoordinateSequence28atLeastNCoordinatesOrNothingEjPS1_@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom18CoordinateSequence28atLeastNCoordinatesOrNothingEmPS1_@Base 3.7.0 + _ZN4geos4geom18CoordinateSequence6equalsEPKS1_S3_@Base 3.4.2 + _ZN4geos4geom18CoordinateSequence6scrollEPS1_PKNS0_10CoordinateE@Base 3.4.2 + _ZN4geos4geom18CoordinateSequence7indexOfEPKNS0_10CoordinateEPKS1_@Base 3.4.2 + _ZN4geos4geom18CoordinateSequence7reverseEPS1_@Base 3.4.2 + _ZN4geos4geom18GeometryCollection17releaseGeometriesEv@Base 3.10.0 + _ZN4geos4geom18GeometryCollection7setSRIDEi@Base 3.8.0 + _ZN4geos4geom18GeometryCollection8apply_rwEPKNS0_16CoordinateFilterE@Base 3.4.2 + _ZN4geos4geom18GeometryCollection8apply_rwEPNS0_14GeometryFilterE@Base 3.4.2 + _ZN4geos4geom18GeometryCollection8apply_rwEPNS0_23GeometryComponentFilterE@Base 3.4.2 + _ZN4geos4geom18GeometryCollection8apply_rwERNS0_24CoordinateSequenceFilterE@Base 3.4.2 + _ZN4geos4geom18GeometryCollection9normalizeEv@Base 3.4.2 + _ZN4geos4geom18GeometryCollectionC1EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom18GeometryCollectionC1EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom18GeometryCollectionC1ERKS1_@Base 3.4.2 + _ZN4geos4geom18GeometryCollectionC2EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom18GeometryCollectionC2EPSt6vectorIPNS0_8GeometryESaIS4_EEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom18GeometryCollectionC2ERKS1_@Base 3.4.2 + _ZN4geos4geom18GeometryCollectionD0Ev@Base 3.4.2 + _ZN4geos4geom18GeometryCollectionD1Ev@Base 3.4.2 + _ZN4geos4geom18GeometryCollectionD2Ev@Base 3.4.2 + _ZN4geos4geom18IntersectionMatrix10setAtLeastENS0_8LocationES2_i@Base 3.8.0 + _ZN4geos4geom18IntersectionMatrix10setAtLeastENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4geom18IntersectionMatrix17setAtLeastIfValidENS0_8LocationES2_i@Base 3.8.0 + _ZN4geos4geom18IntersectionMatrix3addEPS1_@Base 3.4.2 + _ZN4geos4geom18IntersectionMatrix3setENS0_8LocationES2_i@Base 3.8.0 + _ZN4geos4geom18IntersectionMatrix3setERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4geom18IntersectionMatrix6setAllEi@Base 3.4.2 + _ZN4geos4geom18IntersectionMatrix7matchesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 + _ZN4geos4geom18IntersectionMatrix7matchesEic@Base 3.4.2 + _ZN4geos4geom18IntersectionMatrix8firstDimE@Base 3.4.2 + _ZN4geos4geom18IntersectionMatrix9secondDimE@Base 3.4.2 + _ZN4geos4geom18IntersectionMatrix9transposeEv@Base 3.4.2 + _ZN4geos4geom18IntersectionMatrixC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4geom18IntersectionMatrixC1ERKS1_@Base 3.4.2 + _ZN4geos4geom18IntersectionMatrixC1Ev@Base 3.4.2 + _ZN4geos4geom18IntersectionMatrixC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4geom18IntersectionMatrixC2ERKS1_@Base 3.4.2 + _ZN4geos4geom18IntersectionMatrixC2Ev@Base 3.4.2 + _ZN4geos4geom19GeometryGreaterThenclEPKNS0_8GeometryES4_@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequence11setOrdinateEjjd@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequence11setOrdinateEmmd@Base 3.7.0 + _ZN4geos4geom23CoordinateArraySequence3addEPKNS0_18CoordinateSequenceEbb@Base 3.8.0 + _ZN4geos4geom23CoordinateArraySequence3addERKNS0_10CoordinateE@Base 3.4.2 + _ZN4geos4geom23CoordinateArraySequence3addERKNS0_10CoordinateEb@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequence3addEjRKNS0_10CoordinateEb@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequence3addEmRKNS0_10CoordinateEb@Base 3.7.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequence5setAtERKNS0_10CoordinateEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequence5setAtERKNS0_10CoordinateEm@Base 3.7.0 + _ZN4geos4geom23CoordinateArraySequence8apply_rwEPKNS0_16CoordinateFilterE@Base 3.4.2 + _ZN4geos4geom23CoordinateArraySequence9closeRingEv@Base 3.10.0 + _ZN4geos4geom23CoordinateArraySequence9setPointsERKSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.4.2 + (subst)_ZN4geos4geom23CoordinateArraySequenceC1EOSt6vectorINS0_10CoordinateESaIS3_EE{size_t}@Base 3.8.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequenceC1EPSt6vectorINS0_10CoordinateESaIS3_EEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequenceC1EPSt6vectorINS0_10CoordinateESaIS3_EEm@Base 3.7.0 + _ZN4geos4geom23CoordinateArraySequenceC1ERKNS0_18CoordinateSequenceE@Base 3.4.2 + _ZN4geos4geom23CoordinateArraySequenceC1ERKS1_@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequenceC1Ejj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequenceC1Emm@Base 3.7.0 + _ZN4geos4geom23CoordinateArraySequenceC1Ev@Base 3.4.2 + (subst)_ZN4geos4geom23CoordinateArraySequenceC2EOSt6vectorINS0_10CoordinateESaIS3_EE{size_t}@Base 3.8.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequenceC2EPSt6vectorINS0_10CoordinateESaIS3_EEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequenceC2EPSt6vectorINS0_10CoordinateESaIS3_EEm@Base 3.7.0 + _ZN4geos4geom23CoordinateArraySequenceC2ERKNS0_18CoordinateSequenceE@Base 3.4.2 + _ZN4geos4geom23CoordinateArraySequenceC2ERKS1_@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom23CoordinateArraySequenceC2Ejj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom23CoordinateArraySequenceC2Emm@Base 3.7.0 + _ZN4geos4geom23CoordinateArraySequenceC2Ev@Base 3.4.2 + _ZN4geos4geom23CoordinateArraySequenceD0Ev@Base 3.4.2 + _ZN4geos4geom23CoordinateArraySequenceD1Ev@Base 3.4.2 + _ZN4geos4geom23CoordinateArraySequenceD2Ev@Base 3.4.2 + _ZN4geos4geom23GeometryComponentFilter6isDoneEv@Base 3.8.0 + _ZN4geos4geom23GeometryComponentFilter9filter_roEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom23GeometryComponentFilter9filter_rwEPNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom23GeometryComponentFilterD0Ev@Base 3.4.2 + _ZN4geos4geom23GeometryComponentFilterD1Ev@Base 3.4.2 + _ZN4geos4geom23GeometryComponentFilterD2Ev@Base 3.4.2 + (subst)_ZN4geos4geom24CoordinateSequenceFilter9filter_roERKNS0_18CoordinateSequenceE{size_t}@Base 3.10.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom24CoordinateSequenceFilter9filter_rwERNS0_18CoordinateSequenceEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom24CoordinateSequenceFilter9filter_rwERNS0_18CoordinateSequenceEm@Base 3.7.0 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EE11setOrdinateEjjd@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EE5setAtERKNS0_10CoordinateEj@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EED0Ev@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EED1Ev@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZN4geos4geom27FixedSizeCoordinateSequenceILj0EED2Ev@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EE11setOrdinateEmmd@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EE5setAtERKNS0_10CoordinateEm@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EED0Ev@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EED1Ev@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom27FixedSizeCoordinateSequenceILm0EED2Ev@Base 3.8.1 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EED0Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EED1Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EED2Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EED0Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EED1Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EED2Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EED0Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EED1Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EED2Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EED0Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EED1Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EED2Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE9setPointsERKSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EED0Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EED1Ev@Base 3.8.0 + (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EED2Ev@Base 3.8.0 + _ZN4geos4geom30CoordinateArraySequenceFactory8instanceEv@Base 3.4.2 + _ZN4geos4geom30CoordinateArraySequenceFactoryD0Ev@Base 3.4.2 + _ZN4geos4geom30CoordinateArraySequenceFactoryD1Ev@Base 3.4.2 + _ZN4geos4geom30CoordinateArraySequenceFactoryD2Ev@Base 3.4.2 + _ZN4geos4geom32DefaultCoordinateSequenceFactory8instanceEv@Base 3.8.0 + _ZN4geos4geom32DefaultCoordinateSequenceFactoryD0Ev@Base 3.8.0 + _ZN4geos4geom32DefaultCoordinateSequenceFactoryD1Ev@Base 3.8.0 + _ZN4geos4geom32DefaultCoordinateSequenceFactoryD2Ev@Base 3.8.0 + _ZN4geos4geom4prep13PreparedPointD0Ev@Base 3.4.2 + _ZN4geos4geom4prep13PreparedPointD1Ev@Base 3.4.2 + _ZN4geos4geom4prep13PreparedPointD2Ev@Base 3.4.2 + _ZN4geos4geom4prep15PreparedPolygonC1EPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep15PreparedPolygonC2EPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep15PreparedPolygonD0Ev@Base 3.4.2 + _ZN4geos4geom4prep15PreparedPolygonD1Ev@Base 3.4.2 + _ZN4geos4geom4prep15PreparedPolygonD2Ev@Base 3.4.2 + _ZN4geos4geom4prep18PreparedLineString21getIntersectionFinderEv@Base 3.4.2 + _ZN4geos4geom4prep18PreparedLineStringD0Ev@Base 3.4.2 + _ZN4geos4geom4prep18PreparedLineStringD1Ev@Base 3.4.2 + _ZN4geos4geom4prep18PreparedLineStringD2Ev@Base 3.4.2 + _ZN4geos4geom4prep21BasicPreparedGeometry11setGeometryEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep21BasicPreparedGeometry8toStringB5cxx11Ev@Base 3.5.1 + _ZN4geos4geom4prep21BasicPreparedGeometryC1EPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep21BasicPreparedGeometryC2EPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep21BasicPreparedGeometryD0Ev@Base 3.4.2 + _ZN4geos4geom4prep21BasicPreparedGeometryD1Ev@Base 3.4.2 + _ZN4geos4geom4prep21BasicPreparedGeometryD2Ev@Base 3.4.2 + _ZN4geos4geom4prep21PreparedPolygonCovers24fullTopologicalPredicateEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep21PreparedPolygonCoversD0Ev@Base 3.4.2 + _ZN4geos4geom4prep21PreparedPolygonCoversD1Ev@Base 3.4.2 + _ZN4geos4geom4prep21PreparedPolygonCoversD2Ev@Base 3.4.2 + _ZN4geos4geom4prep22LocationMatchingFilter6isDoneEv@Base 3.8.0 + _ZN4geos4geom4prep22LocationMatchingFilter9filter_roEPKNS0_8GeometryE@Base 3.8.0 + _ZN4geos4geom4prep22LocationMatchingFilterD0Ev@Base 3.8.0 + _ZN4geos4geom4prep22LocationMatchingFilterD1Ev@Base 3.8.0 + _ZN4geos4geom4prep22LocationMatchingFilterD2Ev@Base 3.8.0 + _ZN4geos4geom4prep23OutermostLocationFilter6isDoneEv@Base 3.8.0 + _ZN4geos4geom4prep23OutermostLocationFilter9filter_roEPKNS0_8GeometryE@Base 3.8.0 + _ZN4geos4geom4prep23OutermostLocationFilterD0Ev@Base 3.8.0 + _ZN4geos4geom4prep23OutermostLocationFilterD1Ev@Base 3.8.0 + _ZN4geos4geom4prep23OutermostLocationFilterD2Ev@Base 3.8.0 + _ZN4geos4geom4prep23PreparedPolygonContains24fullTopologicalPredicateEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep23PreparedPolygonContainsC1EPKNS1_15PreparedPolygonE@Base 3.4.2 + _ZN4geos4geom4prep23PreparedPolygonContainsC2EPKNS1_15PreparedPolygonE@Base 3.4.2 + _ZN4geos4geom4prep23PreparedPolygonContainsD0Ev@Base 3.4.2 + _ZN4geos4geom4prep23PreparedPolygonContainsD1Ev@Base 3.4.2 + _ZN4geos4geom4prep23PreparedPolygonContainsD2Ev@Base 3.4.2 + _ZN4geos4geom4prep25LocationNotMatchingFilter6isDoneEv@Base 3.8.0 + _ZN4geos4geom4prep25LocationNotMatchingFilter9filter_roEPKNS0_8GeometryE@Base 3.8.0 + _ZN4geos4geom4prep25LocationNotMatchingFilterD0Ev@Base 3.8.0 + _ZN4geos4geom4prep25LocationNotMatchingFilterD1Ev@Base 3.8.0 + _ZN4geos4geom4prep25LocationNotMatchingFilterD2Ev@Base 3.8.0 + _ZN4geos4geom4prep25PreparedPolygonIntersects10intersectsEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep25PreparedPolygonIntersectsD0Ev@Base 3.4.2 + _ZN4geos4geom4prep25PreparedPolygonIntersectsD1Ev@Base 3.4.2 + _ZN4geos4geom4prep25PreparedPolygonIntersectsD2Ev@Base 3.4.2 + _ZN4geos4geom4prep31AbstractPreparedPolygonContains13isSingleShellERKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep31AbstractPreparedPolygonContains17evalPointTestGeomEPKNS0_8GeometryENS0_8LocationE@Base 3.8.0 + _ZN4geos4geom4prep31AbstractPreparedPolygonContains28findAndClassifyIntersectionsEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep31AbstractPreparedPolygonContains48isProperIntersectionImpliesNotContainedSituationEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep31AbstractPreparedPolygonContains4evalEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep31PreparedPolygonContainsProperly16containsProperlyEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4prep31PreparedPolygonContainsProperlyD0Ev@Base 3.4.2 + _ZN4geos4geom4prep31PreparedPolygonContainsProperlyD1Ev@Base 3.4.2 + _ZN4geos4geom4prep31PreparedPolygonContainsProperlyD2Ev@Base 3.4.2 + _ZN4geos4geom4util13GeometryFixer16setKeepCollapsedEb@Base 3.10.0 + _ZN4geos4geom4util13GeometryFixer3fixEPKNS0_8GeometryE@Base 3.10.0 + _ZN4geos4geom4util14GeometryEditor11editPolygonEPKNS0_7PolygonEPNS1_23GeometryEditorOperationE@Base 3.4.2 + _ZN4geos4geom4util14GeometryEditor22editGeometryCollectionEPKNS0_18GeometryCollectionEPNS1_23GeometryEditorOperationE@Base 3.4.2 + _ZN4geos4geom4util14GeometryEditor4editEPKNS0_8GeometryEPNS1_23GeometryEditorOperationE@Base 3.4.2 + _ZN4geos4geom4util14GeometryEditorC1EPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom4util14GeometryEditorC1Ev@Base 3.4.2 + _ZN4geos4geom4util14GeometryEditorC2EPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom4util14GeometryEditorC2Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util14GeometryMapper3mapERKNS0_8GeometryESt8functionIFSt10unique_ptrIS3_St14default_deleteIS3_EES5_EE@Base 3.11.0~beta1 + _ZN4geos4geom4util14GeometryMapper7addFlatERSt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EERSt6vectorIS7_SaIS7_EE@Base 3.11.0~beta1 + (optional=templinst)_ZN4geos4geom4util14GeometryMapper7flatMapERKNS0_8GeometryESt8functionIFSt10unique_ptrIS3_St14default_deleteIS3_EES5_EERSt6vectorISA_SaISA_EE@Base 3.11.0~beta1 + (optional=templinst)_ZN4geos4geom4util14GeometryMapper7flatMapERKNS0_8GeometryEiSt8functionIFSt10unique_ptrIS3_St14default_deleteIS3_EES5_EE@Base 3.11.0~beta1 + _ZN4geos4geom4util14PointExtracter9filter_roEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util14PointExtracter9filter_rwEPNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util14PointExtracter9getPointsERKNS0_8GeometryERSt6vectorIPKNS0_5PointESaIS9_EE@Base 3.5.0 + _ZN4geos4geom4util14PointExtracterC1ERSt6vectorIPKNS0_5PointESaIS6_EE@Base 3.5.0 + _ZN4geos4geom4util14PointExtracterC2ERSt6vectorIPKNS0_5PointESaIS6_EE@Base 3.5.0 + _ZN4geos4geom4util14PointExtracterD0Ev@Base 3.4.2 + _ZN4geos4geom4util14PointExtracterD1Ev@Base 3.4.2 + _ZN4geos4geom4util14PointExtracterD2Ev@Base 3.4.2 + _ZN4geos4geom4util16GeometryCombiner12setSkipEmptyEb@Base 3.10.0 + _ZN4geos4geom4util16GeometryCombiner7combineEOSt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EES8_@Base 3.10.0 + _ZN4geos4geom4util16GeometryCombiner7combineEOSt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EES8_S8_@Base 3.10.0 + _ZN4geos4geom4util16GeometryCombiner7combineEOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS5_EESaIS8_EE@Base 3.10.0 + _ZN4geos4geom4util16GeometryCombiner7combineEPKNS0_8GeometryES5_@Base 3.4.2 + _ZN4geos4geom4util16GeometryCombiner7combineEPKNS0_8GeometryES5_S5_@Base 3.4.2 + _ZN4geos4geom4util16GeometryCombiner7combineERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.0 + _ZN4geos4geom4util16GeometryCombiner7combineEv@Base 3.4.2 + _ZN4geos4geom4util16GeometryCombinerC1EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS5_EESaIS8_EE@Base 3.10.0 + _ZN4geos4geom4util16GeometryCombinerC1ERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.0 + _ZN4geos4geom4util16GeometryCombinerC2EOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS5_EESaIS8_EE@Base 3.10.0 + _ZN4geos4geom4util16GeometryCombinerC2ERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.0 + _ZN4geos4geom4util16PolygonExtracter11getPolygonsERKNS0_8GeometryERSt6vectorIPKNS0_7PolygonESaIS9_EE@Base 3.5.0 + _ZN4geos4geom4util16PolygonExtracter9filter_roEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util16PolygonExtracter9filter_rwEPNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util16PolygonExtracterC1ERSt6vectorIPKNS0_7PolygonESaIS6_EE@Base 3.5.0 + _ZN4geos4geom4util16PolygonExtracterC2ERSt6vectorIPKNS0_7PolygonESaIS6_EE@Base 3.5.0 + _ZN4geos4geom4util16PolygonExtracterD0Ev@Base 3.4.2 + _ZN4geos4geom4util16PolygonExtracterD1Ev@Base 3.4.2 + _ZN4geos4geom4util16PolygonExtracterD2Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEE9filter_roEPKNS0_8GeometryE@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEED0Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEED1Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEED2Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEE9filter_roEPKNS0_8GeometryE@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEED0Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEED1Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEED2Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEE9filter_roEPKNS0_8GeometryE@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEED0Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEED1Ev@Base 3.4.2 + (optional=templinst)_ZN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEED2Ev@Base 3.4.2 + _ZN4geos4geom4util19CoordinateOperation4editEPKNS0_8GeometryEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformer14transformPointEPKNS0_5PointEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformer16transformPolygonEPKNS0_7PolygonEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformer19transformLineStringEPKNS0_10LineStringEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformer19transformLinearRingEPKNS0_10LinearRingEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformer19transformMultiPointEPKNS0_10MultiPointEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformer20transformCoordinatesEPKNS0_18CoordinateSequenceEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformer21transformMultiPolygonEPKNS0_12MultiPolygonEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformer24createCoordinateSequenceESt10unique_ptrISt6vectorINS0_10CoordinateESaIS5_EESt14default_deleteIS7_EE@Base 3.7.0 + _ZN4geos4geom4util19GeometryTransformer24transformMultiLineStringEPKNS0_15MultiLineStringEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformer27transformGeometryCollectionEPKNS0_18GeometryCollectionEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformer38setSkipTransformedInvalidInteriorRingsEb@Base 3.6.1 + _ZN4geos4geom4util19GeometryTransformer9transformEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformerC1Ev@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformerC2Ev@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformerD0Ev@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformerD1Ev@Base 3.4.2 + _ZN4geos4geom4util19GeometryTransformerD2Ev@Base 3.4.2 + _ZN4geos4geom4util21NoOpGeometryOperation4editEPKNS0_8GeometryEPKNS0_15GeometryFactoryE@Base 3.10.0 + _ZN4geos4geom4util21NoOpGeometryOperationD0Ev@Base 3.10.0 + _ZN4geos4geom4util21NoOpGeometryOperationD1Ev@Base 3.10.0 + _ZN4geos4geom4util21NoOpGeometryOperationD2Ev@Base 3.10.0 + _ZN4geos4geom4util24LinearComponentExtracter8getLinesERKNS0_8GeometryERSt6vectorIPKNS0_10LineStringESaIS9_EE@Base 3.5.0 + _ZN4geos4geom4util24LinearComponentExtracter9filter_roEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util24LinearComponentExtracter9filter_rwEPNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util24LinearComponentExtracterC1ERSt6vectorIPKNS0_10LineStringESaIS6_EE@Base 3.5.0 + _ZN4geos4geom4util24LinearComponentExtracterC2ERSt6vectorIPKNS0_10LineStringESaIS6_EE@Base 3.5.0 + _ZN4geos4geom4util24LinearComponentExtracterD0Ev@Base 3.4.2 + _ZN4geos4geom4util24LinearComponentExtracterD1Ev@Base 3.4.2 + _ZN4geos4geom4util24LinearComponentExtracterD2Ev@Base 3.4.2 + _ZN4geos4geom4util28ComponentCoordinateExtracter14getCoordinatesERKNS0_8GeometryERSt6vectorIPKNS0_10CoordinateESaIS9_EE@Base 3.5.0 + _ZN4geos4geom4util28ComponentCoordinateExtracter9filter_roEPKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util28ComponentCoordinateExtracter9filter_rwEPNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util28ComponentCoordinateExtracterC1ERSt6vectorIPKNS0_10CoordinateESaIS6_EE@Base 3.5.0 + _ZN4geos4geom4util28ComponentCoordinateExtracterC2ERSt6vectorIPKNS0_10CoordinateESaIS6_EE@Base 3.5.0 + _ZN4geos4geom4util28ComponentCoordinateExtracterD0Ev@Base 3.4.2 + _ZN4geos4geom4util28ComponentCoordinateExtracterD1Ev@Base 3.4.2 + _ZN4geos4geom4util28ComponentCoordinateExtracterD2Ev@Base 3.4.2 + _ZN4geos4geom4util29ShortCircuitedGeometryVisitor7applyToERKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geom4util9Densifier13densifyPointsESt6vectorINS0_10CoordinateESaIS4_EEdPKNS0_14PrecisionModelE@Base 3.8.0 + _ZN4geos4geom4util9Densifier18DensifyTransformer15createValidAreaEPKNS0_8GeometryE@Base 3.8.0 + _ZN4geos4geom4util9Densifier18DensifyTransformer16transformPolygonEPKNS0_7PolygonEPKNS0_8GeometryE@Base 3.8.0 + _ZN4geos4geom4util9Densifier18DensifyTransformer20transformCoordinatesEPKNS0_18CoordinateSequenceEPKNS0_8GeometryE@Base 3.8.0 + _ZN4geos4geom4util9Densifier18DensifyTransformer21transformMultiPolygonEPKNS0_12MultiPolygonEPKNS0_8GeometryE@Base 3.8.0 + _ZN4geos4geom4util9Densifier18DensifyTransformerC1Ed@Base 3.8.0 + _ZN4geos4geom4util9Densifier18DensifyTransformerC2Ed@Base 3.8.0 + _ZN4geos4geom4util9Densifier18DensifyTransformerD0Ev@Base 3.8.0 + _ZN4geos4geom4util9Densifier18DensifyTransformerD1Ev@Base 3.8.0 + _ZN4geos4geom4util9Densifier18DensifyTransformerD2Ev@Base 3.8.0 + _ZN4geos4geom4util9Densifier20setDistanceToleranceEd@Base 3.8.0 + _ZN4geos4geom4util9Densifier7densifyEPKNS0_8GeometryEd@Base 3.8.0 + _ZN4geos4geom4util9DensifierC1EPKNS0_8GeometryE@Base 3.8.0 + _ZN4geos4geom4util9DensifierC2EPKNS0_8GeometryE@Base 3.8.0 + _ZN4geos4geom5Point8apply_rwEPKNS0_16CoordinateFilterE@Base 3.4.2 + _ZN4geos4geom5Point8apply_rwEPNS0_14GeometryFilterE@Base 3.4.2 + _ZN4geos4geom5Point8apply_rwEPNS0_23GeometryComponentFilterE@Base 3.4.2 + _ZN4geos4geom5Point8apply_rwERNS0_24CoordinateSequenceFilterE@Base 3.4.2 + _ZN4geos4geom5Point9normalizeEv@Base 3.4.2 + _ZN4geos4geom5PointC1EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom5PointC1ERKNS0_10CoordinateEPKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom5PointC1ERKS1_@Base 3.4.2 + _ZN4geos4geom5PointC2EPNS0_18CoordinateSequenceEPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom5PointC2ERKNS0_10CoordinateEPKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom5PointC2ERKS1_@Base 3.4.2 + _ZN4geos4geom5PointD0Ev@Base 3.4.2 + _ZN4geos4geom5PointD1Ev@Base 3.4.2 + _ZN4geos4geom5PointD2Ev@Base 3.4.2 + _ZN4geos4geom6SnapOpEPKNS0_8GeometryES3_i@Base 3.9.0 + _ZN4geos4geom7Polygon19releaseExteriorRingEv@Base 3.10.0 + _ZN4geos4geom7Polygon20releaseInteriorRingsEv@Base 3.10.0 + _ZN4geos4geom7Polygon8apply_rwEPKNS0_16CoordinateFilterE@Base 3.4.2 + _ZN4geos4geom7Polygon8apply_rwEPNS0_14GeometryFilterE@Base 3.4.2 + _ZN4geos4geom7Polygon8apply_rwEPNS0_23GeometryComponentFilterE@Base 3.4.2 + _ZN4geos4geom7Polygon8apply_rwERNS0_24CoordinateSequenceFilterE@Base 3.4.2 + _ZN4geos4geom7Polygon9normalizeEPNS0_10LinearRingEb@Base 3.4.2 + _ZN4geos4geom7Polygon9normalizeEv@Base 3.4.2 + _ZN4geos4geom7PolygonC1EOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EEOSt6vectorIS6_SaIS6_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom7PolygonC1EOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom7PolygonC1EPNS0_10LinearRingEPSt6vectorIS3_SaIS3_EEPKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom7PolygonC1ERKS1_@Base 3.4.2 + _ZN4geos4geom7PolygonC2EOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EEOSt6vectorIS6_SaIS6_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom7PolygonC2EOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EERKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom7PolygonC2EPNS0_10LinearRingEPSt6vectorIS3_SaIS3_EEPKNS0_15GeometryFactoryE@Base 3.8.0 + _ZN4geos4geom7PolygonC2ERKS1_@Base 3.4.2 + _ZN4geos4geom7PolygonD0Ev@Base 3.4.2 + _ZN4geos4geom7PolygonD1Ev@Base 3.4.2 + _ZN4geos4geom7PolygonD2Ev@Base 3.4.2 + _ZN4geos4geom7jtsportB5cxx11Ev@Base 3.5.1 + _ZN4geos4geom8Envelope10intersectsERKNS0_10CoordinateES4_S4_@Base 3.4.2 + _ZN4geos4geom8Envelope5splitERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 + _ZN4geos4geom8Envelope8expandByEdd@Base 3.4.2 + _ZN4geos4geom8Envelope9translateEdd@Base 3.4.2 + _ZN4geos4geom8EnvelopeC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4geom8EnvelopeC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4geom8Geometry15geometryChangedEv@Base 3.4.2 + _ZN4geos4geom8Geometry15hasNullElementsEPKNS0_18CoordinateSequenceE@Base 3.4.2 + _ZN4geos4geom8Geometry21GeometryChangedFilter9filter_rwEPS1_@Base 3.4.2 + _ZN4geos4geom8Geometry21GeometryChangedFilterD0Ev@Base 3.4.2 + _ZN4geos4geom8Geometry21GeometryChangedFilterD1Ev@Base 3.4.2 + _ZN4geos4geom8Geometry21GeometryChangedFilterD2Ev@Base 3.4.2 + _ZN4geos4geom8Geometry21geometryChangedActionEv@Base 3.4.2 + _ZN4geos4geom8Geometry21geometryChangedFilterE@Base 3.4.2 + _ZN4geos4geom8Geometry26checkNotGeometryCollectionEPKS1_@Base 3.4.2 + _ZN4geos4geom8Geometry7setSRIDEi@Base 3.4.2 + _ZN4geos4geom8Geometry8apply_rwEPNS0_14GeometryFilterE@Base 3.4.2 + _ZN4geos4geom8Geometry8apply_rwEPNS0_23GeometryComponentFilterE@Base 3.4.2 + _ZN4geos4geom8GeometryC1EPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom8GeometryC1ERKS1_@Base 3.4.2 + _ZN4geos4geom8GeometryC2EPKNS0_15GeometryFactoryE@Base 3.4.2 + _ZN4geos4geom8GeometryC2ERKS1_@Base 3.4.2 + _ZN4geos4geom8GeometryD0Ev@Base 3.4.2 + _ZN4geos4geom8GeometryD1Ev@Base 3.4.2 + _ZN4geos4geom8GeometryD2Ev@Base 3.4.2 + _ZN4geos4geom8Position8oppositeEi@Base 3.9.0 + _ZN4geos4geom8Quadrant13isInHalfPlaneEii@Base 3.9.0 + _ZN4geos4geom8Quadrant15commonHalfPlaneEii@Base 3.9.0 + (arch=x32)_ZN4geos4geom8Quadrant8quadrantERKNS0_10CoordinateES4_@Base 3.10.0 + _ZN4geos4geom8Quadrant8quadrantEdd@Base 3.9.0 + _ZN4geos4geom8Triangle10intersectsERKNS0_10CoordinateES4_S4_S4_@Base 3.10.0 + _ZN4geos4geom8Triangle10isIsocelesEv@Base 3.8.0 + _ZN4geos4geom8Triangle12circumcentreERKNS0_10CoordinateES4_S4_@Base 3.8.0 + _ZN4geos4geom8Triangle12circumcentreERNS0_10CoordinateE@Base 3.5.0 + _ZN4geos4geom8Triangle14circumcentreDDERNS0_10CoordinateE@Base 3.8.0 + _ZN4geos4geom8Triangle17longestSideLengthERKNS0_10CoordinateES4_S4_@Base 3.11.0~beta1 + _ZN4geos4geom8Triangle4areaERKNS0_10CoordinateES4_S4_@Base 3.11.0~beta1 + _ZN4geos4geom8Triangle5isCCWERKNS0_10CoordinateES4_S4_@Base 3.10.0 + _ZN4geos4geom8Triangle6lengthERKNS0_10CoordinateES4_S4_@Base 3.11.0~beta1 + _ZN4geos4geom8Triangle7isAcuteERKNS0_10CoordinateES4_S4_@Base 3.10.0 + _ZN4geos4geom8Triangle8inCentreERNS0_10CoordinateE@Base 3.4.2 + _ZN4geos4geom9Dimension16toDimensionValueEc@Base 3.4.2 + _ZN4geos4geom9Dimension17toDimensionSymbolEi@Base 3.4.2 + _ZN4geos4geomeqERKNS0_14PrecisionModelES3_@Base 3.4.2 + _ZN4geos4geomeqERKNS0_18CoordinateSequenceES3_@Base 3.4.2 + _ZN4geos4geomlsERSoRKNS0_10CoordinateE@Base 3.4.2 + _ZN4geos4geomlsERSoRKNS0_11LineSegmentE@Base 3.11.0~beta1 + _ZN4geos4geomlsERSoRKNS0_18CoordinateSequenceE@Base 3.4.2 + _ZN4geos4geomlsERSoRKNS0_18IntersectionMatrixE@Base 3.4.2 + _ZN4geos4geomlsERSoRKNS0_8EnvelopeE@Base 3.7.0 + _ZN4geos4geomlsERSoRKNS0_8GeometryE@Base 3.4.2 + _ZN4geos4geomlsERSoRKNS0_8LocationE@Base 3.8.0 + _ZN4geos4geomltERKNS0_8EnvelopeES3_@Base 3.10.0 + _ZN4geos4geomneERKNS0_18CoordinateSequenceES3_@Base 3.4.2 + _ZN4geos4math2DD10selfDivideERKS1_@Base 3.9.0 + _ZN4geos4math2DD10selfDivideEd@Base 3.9.0 + _ZN4geos4math2DD10selfDivideEdd@Base 3.9.0 + _ZN4geos4math2DD11determinantERKS1_S3_S3_S3_@Base 3.9.0 + _ZN4geos4math2DD11determinantEdddd@Base 3.9.0 + _ZN4geos4math2DD12selfMultiplyERKS1_@Base 3.9.0 + _ZN4geos4math2DD12selfMultiplyEd@Base 3.9.0 + _ZN4geos4math2DD12selfMultiplyEdd@Base 3.9.0 + _ZN4geos4math2DD12selfSubtractERKS1_@Base 3.9.0 + _ZN4geos4math2DD12selfSubtractEd@Base 3.9.0 + _ZN4geos4math2DD12selfSubtractEdd@Base 3.9.0 + _ZN4geos4math2DD3absERKS1_@Base 3.9.0 + _ZN4geos4math2DD3powERKS1_i@Base 3.9.0 + _ZN4geos4math2DD5truncERKS1_@Base 3.9.0 + _ZN4geos4math2DD7selfAddERKS1_@Base 3.9.0 + _ZN4geos4math2DD7selfAddEd@Base 3.9.0 + _ZN4geos4math2DD7selfAddEdd@Base 3.9.0 + _ZN4geos4mathdvERKNS0_2DDES3_@Base 3.9.0 + _ZN4geos4mathdvERKNS0_2DDEd@Base 3.9.0 + _ZN4geos4mathmiERKNS0_2DDES3_@Base 3.9.0 + _ZN4geos4mathmiERKNS0_2DDEd@Base 3.9.0 + _ZN4geos4mathmlERKNS0_2DDES3_@Base 3.9.0 + _ZN4geos4mathmlERKNS0_2DDEd@Base 3.9.0 + _ZN4geos4mathplERKNS0_2DDES3_@Base 3.9.0 + _ZN4geos4mathplERKNS0_2DDEd@Base 3.9.0 + _ZN4geos4util13GEOSExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 + _ZN4geos4util13GEOSExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 + _ZN4geos4util13GEOSExceptionD0Ev@Base 3.4.2 + _ZN4geos4util13GEOSExceptionD1Ev@Base 3.4.2 + _ZN4geos4util13GEOSExceptionD2Ev@Base 3.4.2 + _ZN4geos4util15java_math_roundEd@Base 3.4.2 + _ZN4geos4util17TopologyExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util17TopologyExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_4geom10CoordinateE@Base 3.5.1 + (arch=amd64 arm64 x32)_ZN4geos4util17TopologyExceptionC1Ev@Base 3.9.0 + _ZN4geos4util17TopologyExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util17TopologyExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_4geom10CoordinateE@Base 3.5.1 + (arch=amd64 arm64 x32)_ZN4geos4util17TopologyExceptionC2Ev@Base 3.9.0 + _ZN4geos4util17TopologyExceptionD0Ev@Base 3.4.2 + _ZN4geos4util17TopologyExceptionD1Ev@Base 3.4.2 + _ZN4geos4util17TopologyExceptionD2Ev@Base 3.4.2 + _ZN4geos4util20InterruptedExceptionC1Ev@Base 3.8.0 + _ZN4geos4util20InterruptedExceptionC2Ev@Base 3.8.0 + _ZN4geos4util20InterruptedExceptionD0Ev@Base 3.4.2 + _ZN4geos4util20InterruptedExceptionD1Ev@Base 3.4.2 + _ZN4geos4util20InterruptedExceptionD2Ev@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory10Dimensions7setBaseERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory10Dimensions7setSizeEd@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory10Dimensions8setWidthEd@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory10Dimensions9setCentreERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory10Dimensions9setHeightEd@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory10DimensionsC1Ev@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory10DimensionsC2Ev@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory12createCircleEv@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory12setNumPointsEj@Base 3.9.0 + _ZN4geos4util21GeometricShapeFactory15createRectangleEv@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory16createArcPolygonEdd@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory7setBaseERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory7setSizeEd@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory8setWidthEd@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory9createArcEdd@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory9setCentreERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactory9setHeightEd@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactoryC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactoryC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactoryD0Ev@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactoryD1Ev@Base 3.4.2 + _ZN4geos4util21GeometricShapeFactoryD2Ev@Base 3.4.2 + _ZN4geos4util21IllegalStateExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + _ZN4geos4util21IllegalStateExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + _ZN4geos4util21IllegalStateExceptionD0Ev@Base 3.4.2 + _ZN4geos4util21IllegalStateExceptionD1Ev@Base 3.4.2 + _ZN4geos4util21IllegalStateExceptionD2Ev@Base 3.4.2 + _ZN4geos4util24AssertionFailedExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.8.0 + _ZN4geos4util24AssertionFailedExceptionC1Ev@Base 3.8.0 + _ZN4geos4util24AssertionFailedExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.8.0 + _ZN4geos4util24AssertionFailedExceptionC2Ev@Base 3.8.0 + _ZN4geos4util24AssertionFailedExceptionD0Ev@Base 3.4.2 + _ZN4geos4util24AssertionFailedExceptionD1Ev@Base 3.4.2 + _ZN4geos4util24AssertionFailedExceptionD2Ev@Base 3.4.2 + _ZN4geos4util24IllegalArgumentExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util24IllegalArgumentExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util24IllegalArgumentExceptionD0Ev@Base 3.4.2 + _ZN4geos4util24IllegalArgumentExceptionD1Ev@Base 3.4.2 + _ZN4geos4util24IllegalArgumentExceptionD2Ev@Base 3.4.2 + _ZN4geos4util27UniqueCoordinateArrayFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos4util27UniqueCoordinateArrayFilterD0Ev@Base 3.4.2 + _ZN4geos4util27UniqueCoordinateArrayFilterD1Ev@Base 3.4.2 + _ZN4geos4util27UniqueCoordinateArrayFilterD2Ev@Base 3.4.2 + _ZN4geos4util29UnsupportedOperationExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util29UnsupportedOperationExceptionC1Ev@Base 3.4.2 + _ZN4geos4util29UnsupportedOperationExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util29UnsupportedOperationExceptionC2Ev@Base 3.4.2 + _ZN4geos4util29UnsupportedOperationExceptionD0Ev@Base 3.4.2 + _ZN4geos4util29UnsupportedOperationExceptionD1Ev@Base 3.4.2 + _ZN4geos4util29UnsupportedOperationExceptionD2Ev@Base 3.4.2 + _ZN4geos4util5clampEddd@Base 3.11.0~beta1 + _ZN4geos4util6Assert20shouldNeverReachHereERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util6Assert6equalsERKNS_4geom10CoordinateES5_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util6Assert6isTrueEbRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util7ProfileC1ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util7ProfileC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util7rint_vcEd@Base 3.4.2 + _ZN4geos4util8Profiler3getENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util8Profiler4stopENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util8Profiler5startENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4util8Profiler8instanceEv@Base 3.4.2 + _ZN4geos4util8ProfilerD1Ev@Base 3.4.2 + _ZN4geos4util8ProfilerD2Ev@Base 3.4.2 + _ZN4geos4util9Interrupt16registerCallbackEPFvvE@Base 3.4.2 + _ZN4geos4util9Interrupt5checkEv@Base 3.4.2 + _ZN4geos4util9Interrupt6cancelEv@Base 3.4.2 + _ZN4geos4util9Interrupt7processEv@Base 3.4.2 + _ZN4geos4util9Interrupt7requestEv@Base 3.4.2 + _ZN4geos4util9Interrupt9interruptEv@Base 3.4.2 + _ZN4geos4util9sym_roundEd@Base 3.4.2 + _ZN4geos4utillsERSoRKNS0_7ProfileE@Base 3.4.2 + _ZN4geos4utillsERSoRKNS0_8ProfilerE@Base 3.4.2 + _ZN4geos5index13intervalrtree21IntervalRTreeLeafNodeD0Ev@Base 3.4.2 + _ZN4geos5index13intervalrtree21IntervalRTreeLeafNodeD1Ev@Base 3.4.2 + _ZN4geos5index13intervalrtree21IntervalRTreeLeafNodeD2Ev@Base 3.4.2 + _ZN4geos5index13intervalrtree23IntervalRTreeBranchNodeD0Ev@Base 3.4.2 + _ZN4geos5index13intervalrtree23IntervalRTreeBranchNodeD1Ev@Base 3.4.2 + _ZN4geos5index13intervalrtree23IntervalRTreeBranchNodeD2Ev@Base 3.4.2 + _ZN4geos5index13intervalrtree25SortedPackedIntervalRTree10buildLevelERSt6vectorIPKNS1_17IntervalRTreeNodeESaIS6_EES9_@Base 3.8.0 + _ZN4geos5index13intervalrtree25SortedPackedIntervalRTree4initEv@Base 3.4.2 + _ZN4geos5index13intervalrtree25SortedPackedIntervalRTree5queryEddPNS0_11ItemVisitorE@Base 3.4.2 + _ZN4geos5index13intervalrtree25SortedPackedIntervalRTree9buildTreeEv@Base 3.4.2 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index25VertexSequencePackedRtree11ceilDivisorEjj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos5index25VertexSequencePackedRtree11ceilDivisorEmm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index25VertexSequencePackedRtree11isNodeEmptyEjj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos5index25VertexSequencePackedRtree11isNodeEmptyEmm@Base 3.11.1 + _ZN4geos5index25VertexSequencePackedRtree12createBoundsEv@Base 3.11.0~beta1 + _ZN4geos5index25VertexSequencePackedRtree14fillItemBoundsERSt6vectorINS_4geom8EnvelopeESaIS4_EE@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index25VertexSequencePackedRtree14levelNodeCountEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos5index25VertexSequencePackedRtree14levelNodeCountEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index25VertexSequencePackedRtree15fillLevelBoundsEjRSt6vectorINS_4geom8EnvelopeESaIS4_EE@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos5index25VertexSequencePackedRtree15fillLevelBoundsEmRSt6vectorINS_4geom8EnvelopeESaIS4_EE@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index25VertexSequencePackedRtree16isItemsNodeEmptyEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos5index25VertexSequencePackedRtree16isItemsNodeEmptyEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index25VertexSequencePackedRtree19computeItemEnvelopeERKSt6vectorINS_4geom10CoordinateESaIS4_EEjj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos5index25VertexSequencePackedRtree19computeItemEnvelopeERKSt6vectorINS_4geom10CoordinateESaIS4_EEmm@Base 3.11.1 + _ZN4geos5index25VertexSequencePackedRtree19computeLevelOffsetsEv@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index25VertexSequencePackedRtree19computeNodeEnvelopeERKSt6vectorINS_4geom8EnvelopeESaIS4_EEjj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos5index25VertexSequencePackedRtree19computeNodeEnvelopeERKSt6vectorINS_4geom8EnvelopeESaIS4_EEmm@Base 3.11.1 + _ZN4geos5index25VertexSequencePackedRtree5buildEv@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index25VertexSequencePackedRtree6removeEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos5index25VertexSequencePackedRtree6removeEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index25VertexSequencePackedRtree8clampMaxEjj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos5index25VertexSequencePackedRtree8clampMaxEmm@Base 3.11.1 + _ZN4geos5index25VertexSequencePackedRtree9getBoundsEv@Base 3.11.0~beta1 + _ZN4geos5index25VertexSequencePackedRtreeC1ERKSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.11.0~beta1 + _ZN4geos5index25VertexSequencePackedRtreeC2ERKSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.11.0~beta1 + _ZN4geos5index5chain12ChainBuilder9filter_roEPKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos5index5chain12ChainBuilderD0Ev@Base 3.10.0 + _ZN4geos5index5chain12ChainBuilderD1Ev@Base 3.10.0 + _ZN4geos5index5chain12ChainBuilderD2Ev@Base 3.10.0 + _ZN4geos5index5chain13MonotoneChain8overlapsERKNS_4geom10CoordinateES6_S6_S6_d@Base 3.10.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index5chain13MonotoneChainC1ERKNS_4geom18CoordinateSequenceEjjPv@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index5chain13MonotoneChainC1ERKNS_4geom18CoordinateSequenceEmmPv@Base 3.7.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index5chain13MonotoneChainC2ERKNS_4geom18CoordinateSequenceEjjPv@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index5chain13MonotoneChainC2ERKNS_4geom18CoordinateSequenceEmmPv@Base 3.7.0 + _ZN4geos5index5chain20MonotoneChainBuilder9getChainsEPKNS_4geom18CoordinateSequenceEPvRSt6vectorINS1_13MonotoneChainESaIS9_EE@Base 3.10.0 + (subst)_ZN4geos5index5chain25MonotoneChainSelectAction6selectERKNS1_13MonotoneChainE{size_t}@Base 3.10.0 + (subst)_ZN4geos5index5chain26MonotoneChainOverlapAction7overlapERKNS1_13MonotoneChainE{size_t}S5_{size_t}@Base 3.10.0 + _ZN4geos5index5chain26MonotoneChainOverlapAction7overlapERKNS_4geom11LineSegmentES6_@Base 3.4.2 + _ZN4geos5index5chain26MonotoneChainOverlapActionD0Ev@Base 3.4.2 + _ZN4geos5index5chain26MonotoneChainOverlapActionD1Ev@Base 3.4.2 + _ZN4geos5index5chain26MonotoneChainOverlapActionD2Ev@Base 3.4.2 + _ZN4geos5index6kdtree6KdNodeC1ERKNS_4geom10CoordinateEPv@Base 3.9.0 + _ZN4geos5index6kdtree6KdNodeC1EddPv@Base 3.9.0 + _ZN4geos5index6kdtree6KdNodeC2ERKNS_4geom10CoordinateEPv@Base 3.9.0 + _ZN4geos5index6kdtree6KdNodeC2EddPv@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree10createNodeERKNS_4geom10CoordinateEPv@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree11insertExactERKNS_4geom10CoordinateEPv@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree13toCoordinatesERSt6vectorIPNS1_6KdNodeESaIS5_EE@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree13toCoordinatesERSt6vectorIPNS1_6KdNodeESaIS5_EEb@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree14queryNodePointEPNS1_6KdNodeERKNS_4geom10CoordinateEb@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree16BestMatchVisitor13queryEnvelopeEv@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree16BestMatchVisitor5visitEPNS1_6KdNodeE@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree16BestMatchVisitor7getNodeEv@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree16BestMatchVisitorC1ERKNS_4geom10CoordinateEd@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree16BestMatchVisitorC2ERKNS_4geom10CoordinateEd@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree17findBestMatchNodeERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree19AccumulatingVisitor5visitEPNS1_6KdNodeE@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree5queryERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree5queryERKNS_4geom8EnvelopeE@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree5queryERKNS_4geom8EnvelopeERNS1_13KdNodeVisitorE@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree5queryERKNS_4geom8EnvelopeERSt6vectorIPNS1_6KdNodeESaIS9_EE@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree6insertERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree6insertERKNS_4geom10CoordinateEPv@Base 3.9.0 + _ZN4geos5index6kdtree6KdTree9queryNodeEPNS1_6KdNodeERKNS_4geom8EnvelopeEbRNS1_13KdNodeVisitorE@Base 3.9.0 + _ZN4geos5index7bintree3Key10computeKeyEPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree3Key11getIntervalEv@Base 3.4.2 + _ZN4geos5index7bintree3Key12computeLevelEPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree3Key15computeIntervalEiPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree3Key8getLevelEv@Base 3.4.2 + _ZN4geos5index7bintree3Key8getPointEv@Base 3.4.2 + _ZN4geos5index7bintree3KeyC1EPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree3KeyC2EPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree3KeyD1Ev@Base 3.4.2 + _ZN4geos5index7bintree3KeyD2Ev@Base 3.4.2 + _ZN4geos5index7bintree4Node10createNodeEPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree4Node10getSubnodeEi@Base 3.4.2 + _ZN4geos5index7bintree4Node11getIntervalEv@Base 3.4.2 + _ZN4geos5index7bintree4Node13createSubnodeEi@Base 3.4.2 + _ZN4geos5index7bintree4Node13isSearchMatchEPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree4Node14createExpandedEPS2_PNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree4Node4findEPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree4Node6insertEPS2_@Base 3.4.2 + _ZN4geos5index7bintree4Node7getNodeEPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree4NodeC1EPNS1_8IntervalEi@Base 3.4.2 + _ZN4geos5index7bintree4NodeC2EPNS1_8IntervalEi@Base 3.4.2 + _ZN4geos5index7bintree4NodeD0Ev@Base 3.4.2 + _ZN4geos5index7bintree4NodeD1Ev@Base 3.4.2 + _ZN4geos5index7bintree4NodeD2Ev@Base 3.4.2 + _ZN4geos5index7bintree4Root13isSearchMatchEPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree4Root15insertContainedEPNS1_4NodeEPNS1_8IntervalEPv@Base 3.4.2 + _ZN4geos5index7bintree4Root6insertEPNS1_8IntervalEPv@Base 3.4.2 + _ZN4geos5index7bintree4Root6originE@Base 3.4.2 + _ZN4geos5index7bintree4RootD0Ev@Base 3.4.2 + _ZN4geos5index7bintree4RootD1Ev@Base 3.4.2 + _ZN4geos5index7bintree4RootD2Ev@Base 3.4.2 + _ZN4geos5index7bintree7Bintree12collectStatsEPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree7Bintree12ensureExtentEPKNS1_8IntervalEd@Base 3.4.2 + _ZN4geos5index7bintree7Bintree4sizeEv@Base 3.4.2 + _ZN4geos5index7bintree7Bintree5depthEv@Base 3.4.2 + _ZN4geos5index7bintree7Bintree5queryEPNS1_8IntervalE@Base 3.4.2 + _ZN4geos5index7bintree7Bintree5queryEPNS1_8IntervalEPSt6vectorIPvSaIS6_EE@Base 3.4.2 + _ZN4geos5index7bintree7Bintree5queryEd@Base 3.4.2 + _ZN4geos5index7bintree7Bintree6insertEPNS1_8IntervalEPv@Base 3.4.2 + _ZN4geos5index7bintree7Bintree8iteratorEv@Base 3.4.2 + _ZN4geos5index7bintree7Bintree8nodeSizeEv@Base 3.4.2 + _ZN4geos5index7bintree7BintreeC1Ev@Base 3.4.2 + _ZN4geos5index7bintree7BintreeC2Ev@Base 3.4.2 + _ZN4geos5index7bintree7BintreeD1Ev@Base 3.4.2 + _ZN4geos5index7bintree7BintreeD2Ev@Base 3.4.2 + _ZN4geos5index7bintree8Interval15expandToIncludeEPS2_@Base 3.4.2 + _ZN4geos5index7bintree8Interval4initEdd@Base 3.4.2 + _ZN4geos5index7bintree8IntervalC1EPKS2_@Base 3.4.2 + _ZN4geos5index7bintree8IntervalC1Edd@Base 3.4.2 + _ZN4geos5index7bintree8IntervalC1Ev@Base 3.4.2 + _ZN4geos5index7bintree8IntervalC2EPKS2_@Base 3.4.2 + _ZN4geos5index7bintree8IntervalC2Edd@Base 3.4.2 + _ZN4geos5index7bintree8IntervalC2Ev@Base 3.4.2 + _ZN4geos5index7bintree8NodeBase11addAllItemsEPSt6vectorIPvSaIS4_EE@Base 3.4.2 + _ZN4geos5index7bintree8NodeBase15getSubnodeIndexEPNS1_8IntervalEd@Base 3.4.2 + _ZN4geos5index7bintree8NodeBase26addAllItemsFromOverlappingEPNS1_8IntervalEPSt6vectorIPvSaIS6_EE@Base 3.4.2 + _ZN4geos5index7bintree8NodeBase3addEPv@Base 3.4.2 + _ZN4geos5index7bintree8NodeBase4sizeEv@Base 3.4.2 + _ZN4geos5index7bintree8NodeBase5depthEv@Base 3.4.2 + _ZN4geos5index7bintree8NodeBase8getItemsEv@Base 3.4.2 + _ZN4geos5index7bintree8NodeBase8nodeSizeEv@Base 3.4.2 + _ZN4geos5index7bintree8NodeBaseC1Ev@Base 3.4.2 + _ZN4geos5index7bintree8NodeBaseC2Ev@Base 3.4.2 + _ZN4geos5index7bintree8NodeBaseD0Ev@Base 3.4.2 + _ZN4geos5index7bintree8NodeBaseD1Ev@Base 3.4.2 + _ZN4geos5index7bintree8NodeBaseD2Ev@Base 3.4.2 + _ZN4geos5index7strtree12EnvelopeUtil15maximumDistanceEPKNS_4geom8EnvelopeES6_@Base 3.8.0 + _ZN4geos5index7strtree13BoundablePair11isCompositeEPKNS1_9BoundableE@Base 3.6.0 + _ZN4geos5index7strtree13BoundablePair13expandToQueueERSt14priority_queueIPS2_St6vectorIS4_SaIS4_EENS2_25BoundablePairQueueCompareEEd@Base 3.6.0 + _ZN4geos5index7strtree13BoundablePair15maximumDistanceEv@Base 3.8.0 + _ZN4geos5index7strtree13BoundablePair4areaEPKNS1_9BoundableE@Base 3.6.0 + _ZN4geos5index7strtree13BoundablePair6expandEPKNS1_9BoundableES5_bRSt14priority_queueIPS2_St6vectorIS7_SaIS7_EENS2_25BoundablePairQueueCompareEEd@Base 3.8.0 + _ZN4geos5index7strtree13BoundablePairC1EPKNS1_9BoundableES5_PNS1_12ItemDistanceE@Base 3.6.0 + _ZN4geos5index7strtree13BoundablePairC2EPKNS1_9BoundableES5_PNS1_12ItemDistanceE@Base 3.6.0 + _ZN4geos5index7strtree13ItemBoundableD0Ev@Base 3.4.2 + _ZN4geos5index7strtree13ItemBoundableD1Ev@Base 3.4.2 + _ZN4geos5index7strtree13ItemBoundableD2Ev@Base 3.4.2 + _ZN4geos5index7strtree13SimpleSTRnode10removeItemEPv@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRnode11removeChildEPS2_@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRnode12addChildNodeEPS2_@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRnodeD0Ev@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRnodeD1Ev@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRnodeD2Ev@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRpair15maximumDistanceEv@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRpair8distanceEv@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree10createNodeEi@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree10createNodeEiPKNS_4geom8EnvelopeEPv@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree10sortNodesXERSt6vectorIPNS1_13SimpleSTRnodeESaIS5_EE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree10sortNodesYERSt6vectorIPNS1_13SimpleSTRnodeESaIS5_EE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree16isWithinDistanceERS2_PNS1_12ItemDistanceEd@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree16nearestNeighbourEPKNS_4geom8EnvelopeEPKvPNS1_12ItemDistanceE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree16nearestNeighbourEPNS1_12ItemDistanceE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree16nearestNeighbourERS2_PNS1_12ItemDistanceE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree17createParentNodesERSt6vectorIPNS1_13SimpleSTRnodeESaIS5_EEi@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree18createHigherLevelsERSt6vectorIPNS1_13SimpleSTRnodeESaIS5_EEi@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree31addParentNodesFromVerticalSliceERSt6vectorIPNS1_13SimpleSTRnodeESaIS5_EEiS8_@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree5buildEv@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree5queryEPKNS_4geom8EnvelopeEPKNS1_13SimpleSTRnodeERNS0_11ItemVisitorE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree5queryEPKNS_4geom8EnvelopeEPKNS1_13SimpleSTRnodeERSt6vectorIPvSaISB_EE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaIS8_EE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree6insertEPKNS_4geom8EnvelopeEPv@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree6insertEPNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree6removeEPKNS_4geom8EnvelopeEPNS1_13SimpleSTRnodeEPv@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree6removeEPKNS_4geom8EnvelopeEPv@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtree7iterateERNS0_11ItemVisitorE@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtreeD0Ev@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtreeD1Ev@Base 3.9.0 + _ZN4geos5index7strtree13SimpleSTRtreeD2Ev@Base 3.9.0 + _ZN4geos5index7strtree15AbstractSTRtree10removeItemERNS1_12AbstractNodeEPv@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree15getNodeCapacityEv@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree15sortBoundablesYEPKSt6vectorIPNS1_9BoundableESaIS5_EE@Base 3.9.0 + _ZN4geos5index7strtree15AbstractSTRtree17boundablesAtLevelEi@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree17boundablesAtLevelEiPNS1_12AbstractNodeEPSt6vectorIPNS1_9BoundableESaIS7_EE@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree18createHigherLevelsEPSt6vectorIPNS1_9BoundableESaIS5_EEi@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree22createParentBoundablesEPSt6vectorIPNS1_9BoundableESaIS5_EEi@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree5buildEv@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree5queryEPKvPKNS1_12AbstractNodeEPSt6vectorIPvSaIS9_EE@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree5queryEPKvRKNS1_12AbstractNodeERNS0_11ItemVisitorE@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree5queryEPKvRNS0_11ItemVisitorE@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree5queryEPKvRSt6vectorIPvSaIS6_EE@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree6insertEPKvPv@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree6removeEPKvPv@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree6removeEPKvRNS1_12AbstractNodeEPv@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree7getRootEv@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree7iterateERNS0_11ItemVisitorE@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree8lastNodeEPSt6vectorIPNS1_9BoundableESaIS5_EE@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree9itemsTreeEPNS1_12AbstractNodeE@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtree9itemsTreeEv@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtreeD0Ev@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtreeD1Ev@Base 3.4.2 + _ZN4geos5index7strtree15AbstractSTRtreeD2Ev@Base 3.4.2 + _ZN4geos5index7strtree15SIRAbstractNodeD0Ev@Base 3.4.2 + _ZN4geos5index7strtree15SIRAbstractNodeD1Ev@Base 3.4.2 + _ZN4geos5index7strtree15SIRAbstractNodeD2Ev@Base 3.4.2 + _ZN4geos5index7strtree15STRAbstractNodeD0Ev@Base 3.4.2 + _ZN4geos5index7strtree15STRAbstractNodeD1Ev@Base 3.4.2 + _ZN4geos5index7strtree15STRAbstractNodeD2Ev@Base 3.4.2 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaISE_EE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE6insertEPKNS_4geom8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE6removeEPKNS_4geom8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERSt6vectorIPvSaISD_EE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE6insertEPKNS3_8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE6removeEPKNS3_8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERSt6vectorIPvSaISD_EE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE6insertEPKNS3_8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE6removeEPKNS3_8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE5queryEPKNS3_8EnvelopeERSt6vectorIPvSaISD_EE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE6insertEPKNS3_8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE6removeEPKNS3_8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaISF_EE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE6insertEPKNS_4geom8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE6removeEPKNS_4geom8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaISE_EE@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE6insertEPKNS_4geom8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE6removeEPKNS_4geom8EnvelopeEPv@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 + (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 + _ZN4geos5index7strtree17SimpleSTRdistance10createPairEPNS1_13SimpleSTRnodeES4_PNS1_12ItemDistanceE@Base 3.9.0 + _ZN4geos5index7strtree17SimpleSTRdistance13expandToQueueEPNS1_13SimpleSTRpairERSt14priority_queueIS4_St6vectorIS4_SaIS4_EENS2_19STRpairQueueCompareEEd@Base 3.9.0 + _ZN4geos5index7strtree17SimpleSTRdistance16isWithinDistanceEPNS1_13SimpleSTRpairEd@Base 3.9.0 + _ZN4geos5index7strtree17SimpleSTRdistance16isWithinDistanceEd@Base 3.9.0 + _ZN4geos5index7strtree17SimpleSTRdistance16nearestNeighbourEPNS1_13SimpleSTRpairE@Base 3.9.0 + _ZN4geos5index7strtree17SimpleSTRdistance16nearestNeighbourEPNS1_13SimpleSTRpairEd@Base 3.9.0 + _ZN4geos5index7strtree17SimpleSTRdistance16nearestNeighbourEv@Base 3.9.0 + _ZN4geos5index7strtree17SimpleSTRdistance6expandEPNS1_13SimpleSTRnodeES4_bRSt14priority_queueIPNS1_13SimpleSTRpairESt6vectorIS7_SaIS7_EENS2_19STRpairQueueCompareEEd@Base 3.9.0 + _ZN4geos5index7strtree17SimpleSTRdistanceC1EPNS1_13SimpleSTRnodeES4_PNS1_12ItemDistanceE@Base 3.9.0 + _ZN4geos5index7strtree17SimpleSTRdistanceC2EPNS1_13SimpleSTRnodeES4_PNS1_12ItemDistanceE@Base 3.9.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplINS_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS1_14IntervalTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplINS_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS1_14IntervalTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 + (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 + (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 + (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 + (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS7_S8_EESt6vectorISD_SaISD_EEEEj@Base 3.10.2 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS7_S8_EESt6vectorISD_SaISD_EEEEm@Base 3.10.2 + (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEj@Base 3.10.2 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree19TemplateSTRtreeImplIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS6_S7_EESt6vectorISC_SaISC_EEEEm@Base 3.10.2 + (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 + _ZN4geos5index7strtree20GeometryItemDistance8distanceEPKNS1_13ItemBoundableES5_@Base 3.6.0 + _ZN4geos5index7strtree7SIRtree10createNodeEi@Base 3.4.2 + _ZN4geos5index7strtree7SIRtree14sortBoundablesEPKSt6vectorIPNS1_9BoundableESaIS5_EE@Base 3.4.2 + _ZN4geos5index7strtree7SIRtree15SIRIntersectsOp10intersectsEPKvS5_@Base 3.4.2 + _ZN4geos5index7strtree7SIRtree15SIRIntersectsOpD0Ev@Base 3.4.2 + _ZN4geos5index7strtree7SIRtree15SIRIntersectsOpD1Ev@Base 3.4.2 + _ZN4geos5index7strtree7SIRtree15SIRIntersectsOpD2Ev@Base 3.4.2 + _ZN4geos5index7strtree7SIRtree15getIntersectsOpEv@Base 3.4.2 + _ZN4geos5index7strtree7SIRtree22createParentBoundablesEPSt6vectorIPNS1_9BoundableESaIS5_EEi@Base 3.4.2 + _ZN4geos5index7strtree7SIRtree6insertEddPv@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree7SIRtreeC1Ej@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree7SIRtreeC1Em@Base 3.7.0 + _ZN4geos5index7strtree7SIRtreeC1Ev@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree7SIRtreeC2Ej@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree7SIRtreeC2Em@Base 3.7.0 + _ZN4geos5index7strtree7SIRtreeC2Ev@Base 3.4.2 + _ZN4geos5index7strtree7SIRtreeD0Ev@Base 3.4.2 + _ZN4geos5index7strtree7SIRtreeD1Ev@Base 3.4.2 + _ZN4geos5index7strtree7SIRtreeD2Ev@Base 3.4.2 + _ZN4geos5index7strtree7STRtree10createNodeEi@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree7STRtree14verticalSlicesEPSt6vectorIPNS1_9BoundableESaIS5_EEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree7STRtree14verticalSlicesEPSt6vectorIPNS1_9BoundableESaIS5_EEm@Base 3.7.0 + _ZN4geos5index7strtree7STRtree15STRIntersectsOp10intersectsEPKvS5_@Base 3.4.2 + _ZN4geos5index7strtree7STRtree15STRIntersectsOpD0Ev@Base 3.4.2 + _ZN4geos5index7strtree7STRtree15STRIntersectsOpD1Ev@Base 3.4.2 + _ZN4geos5index7strtree7STRtree15STRIntersectsOpD2Ev@Base 3.4.2 + _ZN4geos5index7strtree7STRtree15getIntersectsOpEv@Base 3.4.2 + _ZN4geos5index7strtree7STRtree15sortBoundablesXEPKSt6vectorIPNS1_9BoundableESaIS5_EE@Base 3.9.0 + _ZN4geos5index7strtree7STRtree15sortBoundablesYEPKSt6vectorIPNS1_9BoundableESaIS5_EE@Base 3.9.0 + _ZN4geos5index7strtree7STRtree16isWithinDistanceEPNS1_13BoundablePairEd@Base 3.8.0 + _ZN4geos5index7strtree7STRtree16isWithinDistanceEPS2_PNS1_12ItemDistanceEd@Base 3.8.0 + _ZN4geos5index7strtree7STRtree16nearestNeighbourEPKNS_4geom8EnvelopeEPKvPNS1_12ItemDistanceE@Base 3.6.0 + _ZN4geos5index7strtree7STRtree16nearestNeighbourEPNS1_12ItemDistanceE@Base 3.6.0 + _ZN4geos5index7strtree7STRtree16nearestNeighbourEPNS1_13BoundablePairE@Base 3.6.0 + _ZN4geos5index7strtree7STRtree16nearestNeighbourEPNS1_13BoundablePairEd@Base 3.6.0 + _ZN4geos5index7strtree7STRtree16nearestNeighbourEPS2_PNS1_12ItemDistanceE@Base 3.7.0 + _ZN4geos5index7strtree7STRtree22createParentBoundablesEPSt6vectorIPNS1_9BoundableESaIS5_EEi@Base 3.4.2 + _ZN4geos5index7strtree7STRtree39createParentBoundablesFromVerticalSliceEPSt6vectorIPNS1_9BoundableESaIS5_EEi@Base 3.4.2 + _ZN4geos5index7strtree7STRtree40createParentBoundablesFromVerticalSlicesEPSt6vectorIPS3_IPNS1_9BoundableESaIS5_EESaIS8_EEi@Base 3.4.2 + _ZN4geos5index7strtree7STRtree5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.4.2 + _ZN4geos5index7strtree7STRtree5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaIS8_EE@Base 3.4.2 + _ZN4geos5index7strtree7STRtree6insertEPKNS_4geom8EnvelopeEPv@Base 3.4.2 + _ZN4geos5index7strtree7STRtree6removeEPKNS_4geom8EnvelopeEPv@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree7STRtreeC1Ej@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree7STRtreeC1Em@Base 3.7.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index7strtree7STRtreeC2Ej@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index7strtree7STRtreeC2Em@Base 3.7.0 + _ZN4geos5index7strtree7STRtreeD0Ev@Base 3.4.2 + _ZN4geos5index7strtree7STRtreeD1Ev@Base 3.4.2 + _ZN4geos5index7strtree7STRtreeD2Ev@Base 3.4.2 + _ZN4geos5index7strtree9ItemsListD1Ev@Base 3.4.2 + _ZN4geos5index7strtree9ItemsListD2Ev@Base 3.4.2 + _ZN4geos5index7strtreelsERSoRKNS1_13SimpleSTRtreeE@Base 3.9.0 + _ZN4geos5index7strtreelsERSoRNS1_13SimpleSTRpairE@Base 3.9.0 + _ZN4geos5index8quadtree12IntervalSize11isZeroWidthEdd@Base 3.4.2 + _ZN4geos5index8quadtree3Key10computeKeyERKNS_4geom8EnvelopeE@Base 3.4.2 + _ZN4geos5index8quadtree3Key10computeKeyEiRKNS_4geom8EnvelopeE@Base 3.4.2 + _ZN4geos5index8quadtree3Key16computeQuadLevelERKNS_4geom8EnvelopeE@Base 3.4.2 + _ZN4geos5index8quadtree3KeyC1ERKNS_4geom8EnvelopeE@Base 3.4.2 + _ZN4geos5index8quadtree3KeyC2ERKNS_4geom8EnvelopeE@Base 3.4.2 + _ZN4geos5index8quadtree4Node10createNodeERKNS_4geom8EnvelopeE@Base 3.4.2 + _ZN4geos5index8quadtree4Node10getSubnodeEi@Base 3.4.2 + _ZN4geos5index8quadtree4Node10insertNodeESt10unique_ptrIS2_St14default_deleteIS2_EE@Base 3.7.0 + _ZN4geos5index8quadtree4Node13createSubnodeEi@Base 3.4.2 + _ZN4geos5index8quadtree4Node14createExpandedESt10unique_ptrIS2_St14default_deleteIS2_EERKNS_4geom8EnvelopeE@Base 3.7.0 + _ZN4geos5index8quadtree4Node4findEPKNS_4geom8EnvelopeE@Base 3.4.2 + _ZN4geos5index8quadtree4Node7getNodeEPKNS_4geom8EnvelopeE@Base 3.4.2 + _ZN4geos5index8quadtree4NodeD0Ev@Base 3.4.2 + _ZN4geos5index8quadtree4NodeD1Ev@Base 3.4.2 + _ZN4geos5index8quadtree4NodeD2Ev@Base 3.4.2 + _ZN4geos5index8quadtree4Root15insertContainedEPNS1_4NodeEPKNS_4geom8EnvelopeEPv@Base 3.4.2 + _ZN4geos5index8quadtree4Root6insertEPKNS_4geom8EnvelopeEPv@Base 3.4.2 + _ZN4geos5index8quadtree4Root6originE@Base 3.4.2 + _ZN4geos5index8quadtree4RootD0Ev@Base 3.4.2 + _ZN4geos5index8quadtree4RootD1Ev@Base 3.4.2 + _ZN4geos5index8quadtree4RootD2Ev@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBase10visitItemsEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBase15getSubnodeIndexEPKNS_4geom8EnvelopeERKNS3_10CoordinateE@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBase3addEPv@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBase5visitEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBase6removeEPKNS_4geom8EnvelopeEPv@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBase8getItemsEv@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBaseC1Ev@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBaseC2Ev@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBaseD0Ev@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBaseD1Ev@Base 3.4.2 + _ZN4geos5index8quadtree8NodeBaseD2Ev@Base 3.4.2 + _ZN4geos5index8quadtree8Quadtree12collectStatsERKNS_4geom8EnvelopeE@Base 3.4.2 + _ZN4geos5index8quadtree8Quadtree12ensureExtentEPKNS_4geom8EnvelopeEd@Base 3.4.2 + _ZN4geos5index8quadtree8Quadtree4sizeEv@Base 3.4.2 + _ZN4geos5index8quadtree8Quadtree5depthEv@Base 3.4.2 + _ZN4geos5index8quadtree8Quadtree5queryEPKNS_4geom8EnvelopeERNS0_11ItemVisitorE@Base 3.4.2 + _ZN4geos5index8quadtree8Quadtree5queryEPKNS_4geom8EnvelopeERSt6vectorIPvSaIS8_EE@Base 3.4.2 + _ZN4geos5index8quadtree8Quadtree6insertEPKNS_4geom8EnvelopeEPv@Base 3.4.2 + _ZN4geos5index8quadtree8Quadtree6removeEPKNS_4geom8EnvelopeEPv@Base 3.4.2 + _ZN4geos5index8quadtree8Quadtree8queryAllEv@Base 3.4.2 + _ZN4geos5index8quadtree8QuadtreeD0Ev@Base 3.4.2 + _ZN4geos5index8quadtree8QuadtreeD1Ev@Base 3.4.2 + _ZN4geos5index8quadtree8QuadtreeD2Ev@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineEvent11getIntervalEv@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineEvent14getInsertEventEv@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineEvent19getDeleteEventIndexEv@Base 3.4.2 + (subst)_ZN4geos5index9sweepline14SweepLineEvent19setDeleteEventIndexE{size_t}@Base 3.8.0 + _ZN4geos5index9sweepline14SweepLineEvent8isDeleteEv@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineEvent8isInsertEv@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineEventC1EdPS2_PNS1_17SweepLineIntervalE@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineEventC2EdPS2_PNS1_17SweepLineIntervalE@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineIndex10buildIndexEv@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineIndex15computeOverlapsEPNS1_22SweepLineOverlapActionE@Base 3.4.2 + (subst)_ZN4geos5index9sweepline14SweepLineIndex15processOverlapsE{size_t}{size_t}PNS1_17SweepLineIntervalEPNS1_22SweepLineOverlapActionE@Base 3.8.0 + _ZN4geos5index9sweepline14SweepLineIndex3addEPNS1_17SweepLineIntervalE@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineIndexC1Ev@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineIndexC2Ev@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineIndexD1Ev@Base 3.4.2 + _ZN4geos5index9sweepline14SweepLineIndexD2Ev@Base 3.4.2 + _ZN4geos5index9sweepline17SweepLineInterval6getMaxEv@Base 3.4.2 + _ZN4geos5index9sweepline17SweepLineInterval6getMinEv@Base 3.4.2 + _ZN4geos5index9sweepline17SweepLineInterval7getItemEv@Base 3.4.2 + _ZN4geos5index9sweepline17SweepLineIntervalC1EddPv@Base 3.4.2 + _ZN4geos5index9sweepline17SweepLineIntervalC2EddPv@Base 3.4.2 + _ZN4geos5shape7fractal10MortonCode10checkLevelEj@Base 3.9.0 + _ZN4geos5shape7fractal10MortonCode10interleaveEj@Base 3.9.0 + _ZN4geos5shape7fractal10MortonCode11maxOrdinateEj@Base 3.9.0 + _ZN4geos5shape7fractal10MortonCode12deinterleaveEj@Base 3.9.0 + _ZN4geos5shape7fractal10MortonCode5levelEj@Base 3.9.0 + _ZN4geos5shape7fractal10MortonCode6decodeEj@Base 3.9.0 + _ZN4geos5shape7fractal10MortonCode6encodeEii@Base 3.9.0 + _ZN4geos5shape7fractal10MortonCode9levelSizeEj@Base 3.9.0 + _ZN4geos5shape7fractal11HilbertCode10checkLevelEj@Base 3.10.0 + _ZN4geos5shape7fractal11HilbertCode10interleaveEj@Base 3.9.0 + _ZN4geos5shape7fractal11HilbertCode10prefixScanEj@Base 3.9.0 + _ZN4geos5shape7fractal11HilbertCode11maxOrdinateEj@Base 3.9.0 + _ZN4geos5shape7fractal11HilbertCode12deinterleaveEj@Base 3.9.0 + _ZN4geos5shape7fractal11HilbertCode5levelEj@Base 3.9.0 + _ZN4geos5shape7fractal11HilbertCode6decodeEjj@Base 3.9.0 + _ZN4geos5shape7fractal11HilbertCode6descanEj@Base 3.9.0 + _ZN4geos5shape7fractal11HilbertCode6encodeEjjj@Base 3.9.0 + _ZN4geos5shape7fractal11HilbertCode9levelSizeEj@Base 3.9.0 + _ZN4geos5shape7fractal14HilbertEncoder4sortERSt6vectorIPNS_4geom8GeometryESaIS6_EE@Base 3.9.0 + _ZN4geos5shape7fractal14HilbertEncoder6encodeEPKNS_4geom8EnvelopeE@Base 3.9.0 + _ZN4geos5shape7fractal14HilbertEncoderC1EjRNS_4geom8EnvelopeE@Base 3.9.0 + _ZN4geos5shape7fractal14HilbertEncoderC2EjRNS_4geom8EnvelopeE@Base 3.9.0 + (optional=templinst|subst)_ZN4geos6detail11make_uniqueISt6vectorINS_4geom10CoordinateESaIS4_EEJR{size_t}EEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@Base 3.9.0 + _ZN4geos6noding11ScaledNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 + _ZN4geos6noding11ScaledNoder6ScalerD0Ev@Base 3.4.2 + _ZN4geos6noding11ScaledNoder6ScalerD1Ev@Base 3.4.2 + _ZN4geos6noding11ScaledNoder6ScalerD2Ev@Base 3.4.2 + _ZN4geos6noding11ScaledNoder8ReScaler9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos6noding11ScaledNoder8ReScalerD0Ev@Base 3.4.2 + _ZN4geos6noding11ScaledNoder8ReScalerD1Ev@Base 3.4.2 + _ZN4geos6noding11ScaledNoder8ReScalerD2Ev@Base 3.4.2 + _ZN4geos6noding11ScaledNoderD0Ev@Base 3.4.2 + _ZN4geos6noding11ScaledNoderD1Ev@Base 3.4.2 + _ZN4geos6noding11ScaledNoderD2Ev@Base 3.4.2 + (subst)_ZN4geos6noding11SegmentNodeC1ERKNS0_18NodedSegmentStringERKNS_4geom10CoordinateE{size_t}i@Base 3.8.0 + (subst)_ZN4geos6noding11SegmentNodeC2ERKNS0_18NodedSegmentStringERKNS_4geom10CoordinateE{size_t}i@Base 3.8.0 + _ZN4geos6noding11SimpleNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 + _ZN4geos6noding11SimpleNoder17computeIntersectsEPNS0_13SegmentStringES3_@Base 3.4.2 + _ZN4geos6noding11SimpleNoderD0Ev@Base 3.4.2 + _ZN4geos6noding11SimpleNoderD1Ev@Base 3.4.2 + _ZN4geos6noding11SimpleNoderD2Ev@Base 3.4.2 + _ZN4geos6noding12MCIndexNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 + _ZN4geos6noding12MCIndexNoder15intersectChainsEv@Base 3.4.2 + (subst)_ZN4geos6noding12MCIndexNoder20SegmentOverlapAction7overlapERKNS_5index5chain13MonotoneChainE{size_t}S7_{size_t}@Base 3.10.0 + _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD0Ev@Base 3.4.2 + _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD1Ev@Base 3.4.2 + _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD2Ev@Base 3.4.2 + _ZN4geos6noding12MCIndexNoder3addEPNS0_13SegmentStringE@Base 3.4.2 + _ZN4geos6noding12MCIndexNoderD0Ev@Base 3.4.2 + _ZN4geos6noding12MCIndexNoderD1Ev@Base 3.4.2 + _ZN4geos6noding12MCIndexNoderD2Ev@Base 3.4.2 + _ZN4geos6noding13GeometryNoder10toGeometryERSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 + _ZN4geos6noding13GeometryNoder21extractSegmentStringsERKNS_4geom8GeometryERSt6vectorIPNS0_13SegmentStringESaIS8_EE@Base 3.4.2 + _ZN4geos6noding13GeometryNoder4nodeERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos6noding13GeometryNoder8getNodedEv@Base 3.4.2 + _ZN4geos6noding13GeometryNoder8getNoderEv@Base 3.4.2 + _ZN4geos6noding13GeometryNoderC1ERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos6noding13GeometryNoderC2ERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos6noding13IteratedNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 + _ZN4geos6noding13IteratedNoder4nodeEPSt6vectorIPNS0_13SegmentStringESaIS4_EERiRNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos6noding13IteratedNoderD0Ev@Base 3.4.2 + _ZN4geos6noding13IteratedNoderD1Ev@Base 3.4.2 + _ZN4geos6noding13IteratedNoderD2Ev@Base 3.4.2 + _ZN4geos6noding15NodingValidator10checkValidEv@Base 3.4.2 + _ZN4geos6noding15NodingValidator26checkInteriorIntersectionsERKNS0_13SegmentStringES4_@Base 3.4.2 + (subst)_ZN4geos6noding15NodingValidator26checkInteriorIntersectionsERKNS0_13SegmentStringE{size_t}S4_{size_t}@Base 3.8.0 + _ZN4geos6noding15NodingValidator26checkInteriorIntersectionsEv@Base 3.4.2 + _ZN4geos6noding15SegmentNodeList12addEndpointsEv@Base 3.4.2 + _ZN4geos6noding15SegmentNodeList13addSplitEdgesERSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 + _ZN4geos6noding15SegmentNodeList17addCollapsedNodesEv@Base 3.4.2 + (subst)_ZN4geos6noding15SegmentNodeList17findCollapseIndexERKNS0_11SegmentNodeES4_R{size_t}@Base 3.10.0 + _ZN4geos6noding15SegmentNodeList19getSplitCoordinatesEv@Base 3.9.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos6noding15SegmentNodeList3addERKNS_4geom10CoordinateEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos6noding15SegmentNodeList3addERKNS_4geom10CoordinateEm@Base 3.7.0 + _ZN4geos6noding15SinglePassNoder21setSegmentIntersectorEPNS0_18SegmentIntersectorE@Base 3.4.2 + _ZN4geos6noding15ValidatingNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.9.0 + _ZN4geos6noding15ValidatingNoder8validateEv@Base 3.9.0 + _ZN4geos6noding15ValidatingNoderD0Ev@Base 3.9.0 + _ZN4geos6noding15ValidatingNoderD1Ev@Base 3.9.0 + _ZN4geos6noding15ValidatingNoderD2Ev@Base 3.9.0 + (subst)_ZN4geos6noding17IntersectionAdder20processIntersectionsEPNS0_13SegmentStringE{size_t}S3_{size_t}@Base 3.8.0 + (subst)_ZN4geos6noding17IntersectionAdder21isTrivialIntersectionEPKNS0_13SegmentStringE{size_t}S4_{size_t}@Base 3.8.0 + _ZN4geos6noding17IntersectionAdderD0Ev@Base 3.4.2 + _ZN4geos6noding17IntersectionAdderD1Ev@Base 3.4.2 + _ZN4geos6noding17IntersectionAdderD2Ev@Base 3.4.2 + _ZN4geos6noding17SegmentStringUtil21extractSegmentStringsEPKNS_4geom8GeometryERSt6vectorIPKNS0_13SegmentStringESaIS9_EE@Base 3.9.0 + _ZN4geos6noding18BasicSegmentStringD0Ev@Base 3.4.2 + _ZN4geos6noding18BasicSegmentStringD1Ev@Base 3.4.2 + _ZN4geos6noding18BasicSegmentStringD2Ev@Base 3.4.2 + _ZN4geos6noding18NodedSegmentString11getNodeListEv@Base 3.4.2 + (subst)_ZN4geos6noding18NodedSegmentString15addIntersectionERKNS_4geom10CoordinateE{size_t}@Base 3.8.0 + _ZN4geos6noding18NodedSegmentString18getNodedSubstringsERKSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 + _ZN4geos6noding18NodedSegmentString18getNodedSubstringsERKSt6vectorIPNS0_13SegmentStringESaIS4_EEPS6_@Base 3.4.2 + _ZN4geos6noding18NodedSegmentString18releaseCoordinatesEv@Base 3.10.0 + _ZN4geos6noding18NodedSegmentString19getNodedCoordinatesEv@Base 3.9.0 + _ZN4geos6noding18NodedSegmentStringD0Ev@Base 3.4.2 + _ZN4geos6noding18NodedSegmentStringD1Ev@Base 3.4.2 + _ZN4geos6noding18NodedSegmentStringD2Ev@Base 3.4.2 + _ZN4geos6noding19FastNodingValidator10checkValidEv@Base 3.4.2 + _ZN4geos6noding19FastNodingValidator26checkInteriorIntersectionsEv@Base 3.4.2 + _ZN4geos6noding22SegmentExtractingNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.11.0~beta1 + _ZN4geos6noding22SegmentExtractingNoder15extractSegmentsEPKNS0_13SegmentStringERSt6vectorIPS2_SaIS6_EE@Base 3.11.0~beta1 + _ZN4geos6noding22SegmentExtractingNoder15extractSegmentsERKSt6vectorIPNS0_13SegmentStringESaIS4_EERS6_@Base 3.11.0~beta1 + _ZN4geos6noding22SegmentExtractingNoderD0Ev@Base 3.11.0~beta1 + _ZN4geos6noding22SegmentExtractingNoderD1Ev@Base 3.11.0~beta1 + _ZN4geos6noding22SegmentExtractingNoderD2Ev@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !hppa !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sh4 !sparc64 !x32)_ZN4geos6noding22SegmentPointComparator7compareEiRKNS_4geom10CoordinateES5_@Base 3.9.0 + (subst)_ZN4geos6noding23IntersectionFinderAdder20processIntersectionsEPNS0_13SegmentStringE{size_t}S3_{size_t}@Base 3.8.0 + _ZN4geos6noding23IntersectionFinderAdderD0Ev@Base 3.4.2 + _ZN4geos6noding23IntersectionFinderAdderD1Ev@Base 3.4.2 + _ZN4geos6noding23IntersectionFinderAdderD2Ev@Base 3.4.2 + _ZN4geos6noding23OrientedCoordinateArray11orientationERKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos6noding23OrientedCoordinateArray15compareOrientedERKNS_4geom18CoordinateSequenceEbS5_b@Base 3.4.2 + (subst)_ZN4geos6noding24NodingIntersectionFinder20processIntersectionsEPNS0_13SegmentStringE{size_t}S3_{size_t}@Base 3.8.0 + _ZN4geos6noding24NodingIntersectionFinderD0Ev@Base 3.8.0 + _ZN4geos6noding24NodingIntersectionFinderD1Ev@Base 3.8.0 + _ZN4geos6noding24NodingIntersectionFinderD2Ev@Base 3.8.0 + (subst)_ZN4geos6noding27SegmentIntersectionDetector20processIntersectionsEPNS0_13SegmentStringE{size_t}S3_{size_t}@Base 3.8.0 + _ZN4geos6noding27SegmentIntersectionDetectorD0Ev@Base 3.4.2 + _ZN4geos6noding27SegmentIntersectionDetectorD1Ev@Base 3.4.2 + _ZN4geos6noding27SegmentIntersectionDetectorD2Ev@Base 3.4.2 + _ZN4geos6noding32FastSegmentSetIntersectionFinder10intersectsEPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 + _ZN4geos6noding32FastSegmentSetIntersectionFinder10intersectsEPSt6vectorIPKNS0_13SegmentStringESaIS5_EEPNS0_27SegmentIntersectionDetectorE@Base 3.4.2 + _ZN4geos6noding32FastSegmentSetIntersectionFinderC1EPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 + _ZN4geos6noding32FastSegmentSetIntersectionFinderC2EPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector10addToIndexEPNS0_13SegmentStringE@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector15addToMonoChainsEPNS0_13SegmentStringE@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector15intersectChainsEv@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector15setBaseSegmentsEPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 + (subst)_ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapAction7overlapERKNS_5index5chain13MonotoneChainE{size_t}S7_{size_t}@Base 3.10.0 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD0Ev@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD1Ev@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD2Ev@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector7processEPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersectorD0Ev@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersectorD1Ev@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersectorD2Ev@Base 3.4.2 + _ZN4geos6noding4snap13SnappingNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.9.0 + _ZN4geos6noding4snap13SnappingNoder12snapVerticesEPNS0_13SegmentStringE@Base 3.9.0 + _ZN4geos6noding4snap13SnappingNoder12snapVerticesERSt6vectorIPNS0_13SegmentStringESaIS5_EES8_@Base 3.9.0 + _ZN4geos6noding4snap13SnappingNoder13seedSnapIndexERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.10.3 + _ZN4geos6noding4snap13SnappingNoder17snapIntersectionsERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.9.0 + _ZN4geos6noding4snap13SnappingNoder4snapEPNS_4geom18CoordinateSequenceE@Base 3.9.0 + _ZN4geos6noding4snap13SnappingNoderD0Ev@Base 3.9.0 + _ZN4geos6noding4snap13SnappingNoderD1Ev@Base 3.9.0 + _ZN4geos6noding4snap13SnappingNoderD2Ev@Base 3.9.0 + _ZN4geos6noding4snap18SnappingPointIndex4snapERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos6noding4snap18SnappingPointIndexC1Ed@Base 3.9.0 + _ZN4geos6noding4snap18SnappingPointIndexC2Ed@Base 3.9.0 + (subst)_ZN4geos6noding4snap25SnappingIntersectionAdder10isAdjacentEPNS0_13SegmentStringE{size_t}S4_{size_t}@Base 3.9.0 + (subst)_ZN4geos6noding4snap25SnappingIntersectionAdder17processNearVertexEPNS0_13SegmentStringE{size_t}RKNS_4geom10CoordinateES4_{size_t}S8_S8_@Base 3.9.0 + (subst)_ZN4geos6noding4snap25SnappingIntersectionAdder20processIntersectionsEPNS0_13SegmentStringE{size_t}S4_{size_t}@Base 3.9.0 + _ZN4geos6noding4snap25SnappingIntersectionAdderC1EdRNS1_18SnappingPointIndexE@Base 3.9.0 + _ZN4geos6noding4snap25SnappingIntersectionAdderC2EdRNS1_18SnappingPointIndexE@Base 3.9.0 + _ZN4geos6noding4snap25SnappingIntersectionAdderD0Ev@Base 3.9.0 + _ZN4geos6noding4snap25SnappingIntersectionAdderD1Ev@Base 3.9.0 + _ZN4geos6noding4snap25SnappingIntersectionAdderD2Ev@Base 3.9.0 + _ZN4geos6noding6Octant6octantERKNS_4geom10CoordinateES5_@Base 3.4.2 + _ZN4geos6noding6Octant6octantEdd@Base 3.4.2 + _ZN4geos6noding9snapround13HotPixelIndex3addEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 + _ZN4geos6noding9snapround13HotPixelIndex3addERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos6noding9snapround13HotPixelIndex3addERKSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.9.0 + _ZN4geos6noding9snapround13HotPixelIndex4findERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos6noding9snapround13HotPixelIndex5queryERKNS_4geom10CoordinateES6_RNS_5index6kdtree13KdNodeVisitorE@Base 3.9.0 + _ZN4geos6noding9snapround13HotPixelIndex5roundERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos6noding9snapround13HotPixelIndex8addNodesEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 + _ZN4geos6noding9snapround13HotPixelIndex8addNodesERKSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.9.0 + _ZN4geos6noding9snapround13HotPixelIndexC1EPKNS_4geom14PrecisionModelE@Base 3.9.0 + _ZN4geos6noding9snapround13HotPixelIndexC2EPKNS_4geom14PrecisionModelE@Base 3.9.0 + (subst)_ZN4geos6noding9snapround17SnapRoundingNoder11snapSegmentERNS_4geom10CoordinateES5_PNS0_18NodedSegmentStringE{size_t}@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoder12computeSnapsERKSt6vectorIPNS0_13SegmentStringESaIS5_EERS7_@Base 3.9.0 + (subst)_ZN4geos6noding9snapround17SnapRoundingNoder14snapVertexNodeERKNS_4geom10CoordinateEPNS0_18NodedSegmentStringE{size_t}@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoder15addVertexPixelsERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoder18addVertexNodeSnapsEPNS0_18NodedSegmentStringE@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoder19computeSegmentSnapsEPNS0_18NodedSegmentStringE@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoder21addIntersectionPixelsERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoder9snapRoundERSt6vectorIPNS0_13SegmentStringESaIS5_EES8_@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoderD0Ev@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoderD1Ev@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoderD2Ev@Base 3.9.0 + _ZN4geos6noding9snapround18HotPixelSnapAction6selectERKNS_4geom11LineSegmentE@Base 3.4.2 + (subst)_ZN4geos6noding9snapround18HotPixelSnapAction6selectERKNS_5index5chain13MonotoneChainE{size_t}@Base 3.10.0 + _ZN4geos6noding9snapround18HotPixelSnapActionD0Ev@Base 3.4.2 + _ZN4geos6noding9snapround18HotPixelSnapActionD1Ev@Base 3.4.2 + _ZN4geos6noding9snapround18HotPixelSnapActionD2Ev@Base 3.4.2 + _ZN4geos6noding9snapround18MCIndexSnapRounder12computeNodesEPSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.4.2 + _ZN4geos6noding9snapround18MCIndexSnapRounder16checkCorrectnessERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.4.2 + _ZN4geos6noding9snapround18MCIndexSnapRounder18computeVertexSnapsEPNS0_18NodedSegmentStringE@Base 3.4.2 + _ZN4geos6noding9snapround18MCIndexSnapRounder18computeVertexSnapsERSt6vectorIPNS0_13SegmentStringESaIS5_EE@Base 3.4.2 + _ZN4geos6noding9snapround18MCIndexSnapRounder24computeIntersectionSnapsERSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.4.2 + _ZN4geos6noding9snapround18MCIndexSnapRounder25findInteriorIntersectionsERNS0_12MCIndexNoderEPSt6vectorIPNS0_13SegmentStringESaIS7_EERS5_INS_4geom10CoordinateESaISC_EE@Base 3.4.2 + _ZN4geos6noding9snapround18MCIndexSnapRounder9snapRoundERNS0_12MCIndexNoderEPSt6vectorIPNS0_13SegmentStringESaIS7_EE@Base 3.4.2 + _ZN4geos6noding9snapround18MCIndexSnapRounderD0Ev@Base 3.4.2 + _ZN4geos6noding9snapround18MCIndexSnapRounderD1Ev@Base 3.4.2 + _ZN4geos6noding9snapround18MCIndexSnapRounderD2Ev@Base 3.4.2 + (subst)_ZN4geos6noding9snapround19MCIndexPointSnapper4snapERNS1_8HotPixelEPNS0_13SegmentStringE{size_t}@Base 3.8.0 + _ZN4geos6noding9snapround26MCIndexPointSnapperVisitor9visitItemEPv@Base 3.4.2 + _ZN4geos6noding9snapround26MCIndexPointSnapperVisitorD0Ev@Base 3.4.2 + _ZN4geos6noding9snapround26MCIndexPointSnapperVisitorD1Ev@Base 3.4.2 + _ZN4geos6noding9snapround26MCIndexPointSnapperVisitorD2Ev@Base 3.4.2 + (subst)_ZN4geos6noding9snapround29SnapRoundingIntersectionAdder17processNearVertexERKNS_4geom10CoordinateEPNS0_13SegmentStringE{size_t}S6_S6_@Base 3.9.0 + (subst)_ZN4geos6noding9snapround29SnapRoundingIntersectionAdder20processIntersectionsEPNS0_13SegmentStringE{size_t}S4_{size_t}@Base 3.9.0 + _ZN4geos6noding9snapround29SnapRoundingIntersectionAdderD0Ev@Base 3.9.0 + _ZN4geos6noding9snapround29SnapRoundingIntersectionAdderD1Ev@Base 3.9.0 + _ZN4geos6noding9snapround29SnapRoundingIntersectionAdderD2Ev@Base 3.9.0 + _ZN4geos6noding9snapround8HotPixelC1ERKNS_4geom10CoordinateEd@Base 3.9.0 + _ZN4geos6noding9snapround8HotPixelC2ERKNS_4geom10CoordinateEd@Base 3.9.0 + _ZN4geos6noding9snapround8HotPixellsERSo@Base 3.9.0 + _ZN4geos6nodinglsERSoRKNS0_11SegmentNodeE@Base 3.4.2 + _ZN4geos6nodinglsERSoRKNS0_13SegmentStringE@Base 3.4.2 + _ZN4geos6nodinglsERSoRKNS0_15SegmentNodeListE@Base 3.4.2 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify10LinkedRing15createNextLinksEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos8simplify10LinkedRing15createNextLinksEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify10LinkedRing15createPrevLinksEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos8simplify10LinkedRing15createPrevLinksEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify10LinkedRing6removeEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos8simplify10LinkedRing6removeEm@Base 3.11.1 + _ZN4geos8simplify13DPTransformer15createValidAreaEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos8simplify13DPTransformer16transformPolygonEPKNS_4geom7PolygonEPKNS2_8GeometryE@Base 3.4.2 + _ZN4geos8simplify13DPTransformer19transformLinearRingEPKNS_4geom10LinearRingEPKNS2_8GeometryE@Base 3.10.0 + _ZN4geos8simplify13DPTransformer20transformCoordinatesEPKNS_4geom18CoordinateSequenceEPKNS2_8GeometryE@Base 3.4.2 + _ZN4geos8simplify13DPTransformer21transformMultiPolygonEPKNS_4geom12MultiPolygonEPKNS2_8GeometryE@Base 3.4.2 + _ZN4geos8simplify13DPTransformerC1Ed@Base 3.4.2 + _ZN4geos8simplify13DPTransformerC2Ed@Base 3.4.2 + _ZN4geos8simplify13DPTransformerD0Ev@Base 3.4.2 + _ZN4geos8simplify13DPTransformerD1Ev@Base 3.4.2 + _ZN4geos8simplify13DPTransformerD2Ev@Base 3.4.2 + _ZN4geos8simplify13RingHullIndex3addEPKNS0_8RingHullE@Base 3.11.0~beta1 + _ZN4geos8simplify16LineSegmentIndex3addEPKNS_4geom11LineSegmentE@Base 3.4.2 + _ZN4geos8simplify16LineSegmentIndex3addERKNS0_16TaggedLineStringE@Base 3.4.2 + _ZN4geos8simplify16LineSegmentIndex5queryEPKNS_4geom11LineSegmentE@Base 3.8.0 + _ZN4geos8simplify16LineSegmentIndex6removeEPKNS_4geom11LineSegmentE@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify16TaggedLineString10getSegmentEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify16TaggedLineString10getSegmentEm@Base 3.7.0 + _ZN4geos8simplify16TaggedLineString11addToResultESt10unique_ptrINS0_17TaggedLineSegmentESt14default_deleteIS3_EE@Base 3.7.0 + _ZN4geos8simplify16TaggedLineString11getSegmentsEv@Base 3.4.2 + _ZN4geos8simplify16TaggedLineString18extractCoordinatesERKSt6vectorIPNS0_17TaggedLineSegmentESaIS4_EE@Base 3.4.2 + _ZN4geos8simplify16TaggedLineString4initEv@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify16TaggedLineStringC1EPKNS_4geom10LineStringEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify16TaggedLineStringC1EPKNS_4geom10LineStringEm@Base 3.7.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify16TaggedLineStringC2EPKNS_4geom10LineStringEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify16TaggedLineStringC2EPKNS_4geom10LineStringEm@Base 3.7.0 + _ZN4geos8simplify16TaggedLineStringD1Ev@Base 3.4.2 + _ZN4geos8simplify16TaggedLineStringD2Ev@Base 3.4.2 + _ZN4geos8simplify17TaggedLineSegmentC1ERKNS_4geom10CoordinateES5_@Base 3.4.2 + (subst)_ZN4geos8simplify17TaggedLineSegmentC1ERKNS_4geom10CoordinateES5_PKNS2_8GeometryE{size_t}@Base 3.8.0 + _ZN4geos8simplify17TaggedLineSegmentC1ERKS1_@Base 3.4.2 + _ZN4geos8simplify17TaggedLineSegmentC2ERKNS_4geom10CoordinateES5_@Base 3.4.2 + (subst)_ZN4geos8simplify17TaggedLineSegmentC2ERKNS_4geom10CoordinateES5_PKNS2_8GeometryE{size_t}@Base 3.8.0 + _ZN4geos8simplify17TaggedLineSegmentC2ERKS1_@Base 3.4.2 + _ZN4geos8simplify18LineSegmentVisitor9visitItemEPv@Base 3.4.2 + _ZN4geos8simplify18LineSegmentVisitorD0Ev@Base 3.4.2 + _ZN4geos8simplify18LineSegmentVisitorD1Ev@Base 3.4.2 + _ZN4geos8simplify18LineSegmentVisitorD2Ev@Base 3.4.2 + _ZN4geos8simplify21PolygonHullSimplifier11initPolygonEPKNS_4geom7PolygonERNS0_13RingHullIndexE@Base 3.11.0~beta1 + _ZN4geos8simplify21PolygonHullSimplifier14computePolygonEPKNS_4geom7PolygonE@Base 3.11.0~beta1 + _ZN4geos8simplify21PolygonHullSimplifier14createRingHullEPKNS_4geom10LinearRingEbdRNS0_13RingHullIndexE@Base 3.11.0~beta1 + _ZN4geos8simplify21PolygonHullSimplifier15hullByAreaDeltaEPKNS_4geom8GeometryEbd@Base 3.11.0~beta1 + _ZN4geos8simplify21PolygonHullSimplifier17setAreaDeltaRatioEd@Base 3.11.0~beta1 + _ZN4geos8simplify21PolygonHullSimplifier20setVertexNumFractionEd@Base 3.11.0~beta1 + _ZN4geos8simplify21PolygonHullSimplifier22computeMultiPolygonAllEPKNS_4geom12MultiPolygonE@Base 3.11.0~beta1 + _ZN4geos8simplify21PolygonHullSimplifier23computeMultiPolygonEachEPKNS_4geom12MultiPolygonE@Base 3.11.0~beta1 + _ZN4geos8simplify21PolygonHullSimplifier4hullEPKNS_4geom8GeometryEbd@Base 3.11.0~beta1 + _ZN4geos8simplify21PolygonHullSimplifier9getResultEv@Base 3.11.0~beta1 + _ZN4geos8simplify21TaggedLinesSimplifier20setDistanceToleranceEd@Base 3.4.2 + _ZN4geos8simplify21TaggedLinesSimplifier8simplifyERNS0_16TaggedLineStringE@Base 3.4.2 + _ZN4geos8simplify21TaggedLinesSimplifierC1Ev@Base 3.4.2 + _ZN4geos8simplify21TaggedLinesSimplifierC2Ev@Base 3.4.2 + _ZN4geos8simplify24DouglasPeuckerSimplifier17getResultGeometryEv@Base 3.4.2 + _ZN4geos8simplify24DouglasPeuckerSimplifier20setDistanceToleranceEd@Base 3.4.2 + _ZN4geos8simplify24DouglasPeuckerSimplifier8simplifyEPKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos8simplify24DouglasPeuckerSimplifierC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos8simplify24DouglasPeuckerSimplifierC2EPKNS_4geom8GeometryE@Base 3.4.2 + (subst)_ZN4geos8simplify26TaggedLineStringSimplifier15isInLineSectionEPKNS0_16TaggedLineStringERKSt4pairI{size_t}{size_t}EPKNS0_17TaggedLineSegmentE@Base 3.8.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier15simplifySectionEjjj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier15simplifySectionEmmm@Base 3.7.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier17findFurthestPointEPKNS_4geom18CoordinateSequenceEjjRd@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier17findFurthestPointEPKNS_4geom18CoordinateSequenceEmmRd@Base 3.7.0 + (subst)_ZN4geos8simplify26TaggedLineStringSimplifier18hasBadIntersectionEPKNS0_16TaggedLineStringERKSt4pairI{size_t}{size_t}ERKNS_4geom11LineSegmentE@Base 3.8.0 + (subst)_ZN4geos8simplify26TaggedLineStringSimplifier23hasBadInputIntersectionEPKNS0_16TaggedLineStringERKSt4pairI{size_t}{size_t}ERKNS_4geom11LineSegmentE@Base 3.8.0 + _ZN4geos8simplify26TaggedLineStringSimplifier24hasBadOutputIntersectionERKNS_4geom11LineSegmentE@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier6removeEPKNS0_16TaggedLineStringEjj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier6removeEPKNS0_16TaggedLineStringEmm@Base 3.7.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier7flattenEjj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify26TaggedLineStringSimplifier7flattenEmm@Base 3.7.0 + _ZN4geos8simplify26TaggedLineStringSimplifier8simplifyEPNS0_16TaggedLineStringE@Base 3.4.2 + _ZN4geos8simplify26TaggedLineStringSimplifierC1EPNS0_16LineSegmentIndexES3_@Base 3.4.2 + _ZN4geos8simplify26TaggedLineStringSimplifierC2EPNS0_16LineSegmentIndexES3_@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify28DouglasPeuckerLineSimplifier15simplifySectionEjj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos8simplify28DouglasPeuckerLineSimplifier15simplifySectionEmm@Base 3.7.0 + _ZN4geos8simplify28DouglasPeuckerLineSimplifier20setDistanceToleranceEd@Base 3.4.2 + _ZN4geos8simplify28DouglasPeuckerLineSimplifier8simplifyERKSt6vectorINS_4geom10CoordinateESaIS4_EEd@Base 3.4.2 + _ZN4geos8simplify28DouglasPeuckerLineSimplifier8simplifyEv@Base 3.4.2 + _ZN4geos8simplify28DouglasPeuckerLineSimplifierC1ERKSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.4.2 + _ZN4geos8simplify28DouglasPeuckerLineSimplifierC2ERKSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.4.2 + _ZN4geos8simplify28TopologyPreservingSimplifier17getResultGeometryEv@Base 3.4.2 + _ZN4geos8simplify28TopologyPreservingSimplifier20setDistanceToleranceEd@Base 3.4.2 + _ZN4geos8simplify28TopologyPreservingSimplifier8simplifyEPKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos8simplify28TopologyPreservingSimplifierC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos8simplify28TopologyPreservingSimplifierC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos8simplify8RingHull10isAtTargetERKNS1_6CornerE@Base 3.11.0~beta1 + _ZN4geos8simplify8RingHull12removeCornerERKNS1_6CornerERSt14priority_queueIS2_St6vectorIS2_SaIS2_EESt4lessIS2_EE@Base 3.11.0~beta1 + _ZN4geos8simplify8RingHull15setMaxAreaDeltaEd@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify8RingHull15setMinVertexNumEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos8simplify8RingHull15setMinVertexNumEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify8RingHull4areaERKNS0_10LinkedRingEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos8simplify8RingHull4areaERKNS0_10LinkedRingEm@Base 3.11.1 + _ZN4geos8simplify8RingHull4initERSt6vectorINS_4geom10CoordinateESaIS4_EEb@Base 3.11.0~beta1 + _ZN4geos8simplify8RingHull6Corner12toLineStringERKNS0_10LinkedRingE@Base 3.11.0~beta1 + _ZN4geos8simplify8RingHull7computeERNS0_13RingHullIndexE@Base 3.11.0~beta1 + _ZN4geos8simplify8RingHull7getHullERNS0_13RingHullIndexE@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify8RingHull8isConvexERKNS0_10LinkedRingEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos8simplify8RingHull8isConvexERKNS0_10LinkedRingEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos8simplify8RingHull9addCornerEjRSt14priority_queueINS1_6CornerESt6vectorIS3_SaIS3_EESt4lessIS3_EE@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos8simplify8RingHull9addCornerEmRSt14priority_queueINS1_6CornerESt6vectorIS3_SaIS3_EESt4lessIS3_EE@Base 3.11.1 + _ZN4geos8simplify8RingHull9queryHullERKNS_4geom8EnvelopeERSt6vectorINS2_10CoordinateESaIS7_EE@Base 3.11.0~beta1 + _ZN4geos8simplify8RingHullC1EPKNS_4geom10LinearRingEb@Base 3.11.0~beta1 + _ZN4geos8simplify8RingHullC2EPKNS_4geom10LinearRingEb@Base 3.11.0~beta1 + _ZN4geos9algorithm10ConvexHull10grahamScanERKSt6vectorIPKNS_4geom10CoordinateESaIS6_EERS8_@Base 3.4.2 + _ZN4geos9algorithm10ConvexHull13computeOctPtsERKSt6vectorIPKNS_4geom10CoordinateESaIS6_EERS8_@Base 3.4.2 + _ZN4geos9algorithm10ConvexHull13getConvexHullEv@Base 3.4.2 + _ZN4geos9algorithm10ConvexHull13lineOrPolygonERKSt6vectorIPKNS_4geom10CoordinateESaIS6_EE@Base 3.4.2 + _ZN4geos9algorithm10ConvexHull14computeOctRingERKSt6vectorIPKNS_4geom10CoordinateESaIS6_EERS8_@Base 3.4.2 + _ZN4geos9algorithm10ConvexHull20toCoordinateSequenceERSt6vectorIPKNS_4geom10CoordinateESaIS6_EE@Base 3.4.2 + _ZN4geos9algorithm10ConvexHull6reduceERSt6vectorIPKNS_4geom10CoordinateESaIS6_EE@Base 3.4.2 + _ZN4geos9algorithm10ConvexHull7preSortERSt6vectorIPKNS_4geom10CoordinateESaIS6_EE@Base 3.4.2 + _ZN4geos9algorithm10ConvexHull9cleanRingERKSt6vectorIPKNS_4geom10CoordinateESaIS6_EERS8_@Base 3.4.2 + _ZN4geos9algorithm10ConvexHull9isBetweenERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm10ConvexHull9padArray3ERSt6vectorIPKNS_4geom10CoordinateESaIS6_EE@Base 3.4.2 + _ZN4geos9algorithm11HCoordinate12intersectionERKNS_4geom10CoordinateES5_S5_S5_RS3_@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC1ERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC1ERKNS_4geom10CoordinateES5_@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC1ERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC1ERKS1_S3_@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC1Eddd@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC1Ev@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC2ERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC2ERKNS_4geom10CoordinateES5_@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC2ERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC2ERKS1_S3_@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC2Eddd@Base 3.4.2 + _ZN4geos9algorithm11HCoordinateC2Ev@Base 3.4.2 + _ZN4geos9algorithm11Orientation5indexERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 + _ZN4geos9algorithm11Orientation5isCCWEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 + _ZN4geos9algorithm11Orientation9isCCWAreaEPKNS_4geom18CoordinateSequenceE@Base 3.9.1 + _ZN4geos9algorithm12Intersection12intersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.8.0 + _ZN4geos9algorithm12PointLocator15computeLocationERKNS_4geom10CoordinateEPKNS2_8GeometryE@Base 3.4.2 + _ZN4geos9algorithm12PointLocator18updateLocationInfoENS_4geom8LocationE@Base 3.8.0 + _ZN4geos9algorithm12PointLocator19locateInPolygonRingERKNS_4geom10CoordinateEPKNS2_10LinearRingE@Base 3.4.2 + _ZN4geos9algorithm12PointLocator6locateERKNS_4geom10CoordinateEPKNS2_10LineStringE@Base 3.4.2 + _ZN4geos9algorithm12PointLocator6locateERKNS_4geom10CoordinateEPKNS2_5PointE@Base 3.5.1 + _ZN4geos9algorithm12PointLocator6locateERKNS_4geom10CoordinateEPKNS2_7PolygonE@Base 3.4.2 + _ZN4geos9algorithm12PointLocator6locateERKNS_4geom10CoordinateEPKNS2_8GeometryE@Base 3.4.2 + _ZN4geos9algorithm13PointLocation12locateInRingERKNS_4geom10CoordinateERKNS2_18CoordinateSequenceE@Base 3.8.0 + _ZN4geos9algorithm13PointLocation12locateInRingERKNS_4geom10CoordinateERKSt6vectorIPS4_SaIS7_EE@Base 3.8.0 + _ZN4geos9algorithm13PointLocation8isInRingERKNS_4geom10CoordinateEPKNS2_18CoordinateSequenceE@Base 3.8.0 + _ZN4geos9algorithm13PointLocation8isInRingERKNS_4geom10CoordinateERKSt6vectorIPS4_SaIS7_EE@Base 3.8.0 + _ZN4geos9algorithm13PointLocation8isOnLineERKNS_4geom10CoordinateEPKNS2_18CoordinateSequenceE@Base 3.8.0 + _ZN4geos9algorithm14CGAlgorithmsDD12intersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.8.0 + _ZN4geos9algorithm14CGAlgorithmsDD12signOfDet2x2ERKNS_4math2DDES5_S5_S5_@Base 3.9.0 + _ZN4geos9algorithm14CGAlgorithmsDD12signOfDet2x2Edddd@Base 3.8.0 + _ZN4geos9algorithm14CGAlgorithmsDD14circumcentreDDERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 + _ZN4geos9algorithm14CGAlgorithmsDD16orientationIndexERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 + _ZN4geos9algorithm14CGAlgorithmsDD16orientationIndexEdddddd@Base 3.9.0 + _ZN4geos9algorithm14CGAlgorithmsDD5detDDERKNS_4math2DDES5_S5_S5_@Base 3.9.0 + _ZN4geos9algorithm14CGAlgorithmsDD5detDDEdddd@Base 3.8.0 + _ZN4geos9algorithm15LineIntersector12interpolateZERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm15LineIntersector12zInterpolateERKNS_4geom10CoordinateES5_S5_@Base 3.9.0 + _ZN4geos9algorithm15LineIntersector12zInterpolateERKNS_4geom10CoordinateES5_S5_S5_S5_@Base 3.9.0 + _ZN4geos9algorithm15LineIntersector15hasIntersectionERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm15LineIntersector15nearestEndpointERKNS_4geom10CoordinateES5_S5_S5_@Base 3.9.0 + _ZN4geos9algorithm15LineIntersector16computeIntersectERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 + _ZN4geos9algorithm15LineIntersector19computeEdgeDistanceERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm15LineIntersector19computeIntLineIndexEv@Base 3.4.2 + (subst)_ZN4geos9algorithm15LineIntersector19computeIntLineIndexE{size_t}@Base 3.9.0 + _ZN4geos9algorithm15LineIntersector19computeIntersectionERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm15LineIntersector19computeIntersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 + (subst)_ZN4geos9algorithm15LineIntersector20getIndexAlongSegmentE{size_t}{size_t}@Base 3.9.0 + _ZN4geos9algorithm15LineIntersector20isSameSignAndNonZeroEdd@Base 3.4.2 + (subst)_ZN4geos9algorithm15LineIntersector27getIntersectionAlongSegmentE{size_t}{size_t}@Base 3.9.0 + _ZN4geos9algorithm15LineIntersector28computeCollinearIntersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameter11getDiameterEv@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameter12getNextIndexEPKNS_4geom18CoordinateSequenceEj@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameter18computeMaximumLineEPKNS_4geom18CoordinateSequenceEPKNS2_15GeometryFactoryE@Base 3.10.3 + _ZN4geos9algorithm15MinimumDiameter18computeWidthConvexEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameter18getMinimumDiameterEPNS_4geom8GeometryE@Base 3.6.0 + _ZN4geos9algorithm15MinimumDiameter18getWidthCoordinateEv@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameter19findMaxPerpDistanceEPKNS_4geom18CoordinateSequenceEPKNS2_11LineSegmentEj@Base 3.8.0 + _ZN4geos9algorithm15MinimumDiameter19getMinimumRectangleEPNS_4geom8GeometryE@Base 3.6.0 + _ZN4geos9algorithm15MinimumDiameter19getMinimumRectangleEv@Base 3.6.0 + _ZN4geos9algorithm15MinimumDiameter20getSupportingSegmentEv@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameter21computeSegmentForLineEddd@Base 3.6.0 + _ZN4geos9algorithm15MinimumDiameter22computeMinimumDiameterEv@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameter28computeConvexRingMinDiameterEPKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameter8computeCEddRKNS_4geom10CoordinateE@Base 3.6.0 + _ZN4geos9algorithm15MinimumDiameter9getLengthEv@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameterC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameterC1EPKNS_4geom8GeometryEb@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameterC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm15MinimumDiameterC2EPKNS_4geom8GeometryEb@Base 3.4.2 + _ZN4geos9algorithm16BoundaryNodeRule17getBoundaryOGCSFSEv@Base 3.4.2 + _ZN4geos9algorithm16BoundaryNodeRule19getBoundaryEndPointEv@Base 3.4.2 + _ZN4geos9algorithm16BoundaryNodeRule19getBoundaryRuleMod2Ev@Base 3.4.2 + _ZN4geos9algorithm16BoundaryNodeRule29getBoundaryMonovalentEndPointEv@Base 3.4.2 + _ZN4geos9algorithm16BoundaryNodeRule30getBoundaryMultivalentEndPointEv@Base 3.4.2 + _ZN4geos9algorithm17InteriorPointArea14processPolygonEPKNS_4geom7PolygonE@Base 3.8.0 + _ZN4geos9algorithm17InteriorPointArea7processEPKNS_4geom8GeometryE@Base 3.8.0 + _ZN4geos9algorithm17InteriorPointAreaC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm17InteriorPointAreaC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm17InteriorPointLine11addInteriorEPKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9algorithm17InteriorPointLine11addInteriorEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm17InteriorPointLine12addEndpointsEPKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9algorithm17InteriorPointLine12addEndpointsEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm17InteriorPointLine3addERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm17InteriorPointLineC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm17InteriorPointLineC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm17RobustDeterminant12signOfDet2x2Edddd@Base 3.4.2 + _ZN4geos9algorithm17SimplePointInRing8isInsideERKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9algorithm17SimplePointInRingC1EPNS_4geom10LinearRingE@Base 3.10.0 + _ZN4geos9algorithm17SimplePointInRingC2EPNS_4geom10LinearRingE@Base 3.10.0 + _ZN4geos9algorithm17SimplePointInRingD0Ev@Base 3.10.0 + _ZN4geos9algorithm17SimplePointInRingD1Ev@Base 3.10.0 + _ZN4geos9algorithm17SimplePointInRingD2Ev@Base 3.10.0 + _ZN4geos9algorithm18InteriorPointPoint3addEPKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm18InteriorPointPoint3addEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm18InteriorPointPointC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm18InteriorPointPointC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm18RayCrossingCounter12countSegmentERKNS_4geom10CoordinateES5_@Base 3.4.2 + _ZN4geos9algorithm18RayCrossingCounter17locatePointInRingERKNS_4geom10CoordinateERKNS2_18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9algorithm18RayCrossingCounter17locatePointInRingERKNS_4geom10CoordinateERKSt6vectorIPS4_SaIS7_EE@Base 3.4.2 + _ZN4geos9algorithm20RayCrossingCounterDD11getLocationEv@Base 3.8.0 + _ZN4geos9algorithm20RayCrossingCounterDD12countSegmentERKNS_4geom10CoordinateES5_@Base 3.8.0 + _ZN4geos9algorithm20RayCrossingCounterDD16isPointInPolygonEv@Base 3.8.0 + _ZN4geos9algorithm20RayCrossingCounterDD16orientationIndexERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 + _ZN4geos9algorithm20RayCrossingCounterDD17locatePointInRingERKNS_4geom10CoordinateERKNS2_18CoordinateSequenceE@Base 3.8.0 + _ZN4geos9algorithm20RayCrossingCounterDD17locatePointInRingERKNS_4geom10CoordinateERKSt6vectorIPS4_SaIS7_EE@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle11getDiameterEv@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle11lowestPointERSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle13computeCentreEv@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle14farthestPointsERSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.9.0 + _ZN4geos9algorithm21MinimumBoundingCircle17getExtremalPointsEv@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle18getMaximumDiameterEv@Base 3.9.0 + _ZN4geos9algorithm21MinimumBoundingCircle19computeCirclePointsEv@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle21pointWitMinAngleWithXERSt6vectorINS_4geom10CoordinateESaIS4_EERS4_@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle28pointWithMinAngleWithSegmentERSt6vectorINS_4geom10CoordinateESaIS4_EERS4_S8_@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle7computeEv@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle9getCentreEv@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle9getCircleEv@Base 3.8.0 + _ZN4geos9algorithm21MinimumBoundingCircle9getRadiusEv@Base 3.8.0 + _ZN4geos9algorithm25NotRepresentableExceptionC1ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos9algorithm25NotRepresentableExceptionC1Ev@Base 3.4.2 + _ZN4geos9algorithm25NotRepresentableExceptionC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos9algorithm25NotRepresentableExceptionC2Ev@Base 3.4.2 + _ZN4geos9algorithm25NotRepresentableExceptionD0Ev@Base 3.4.2 + _ZN4geos9algorithm25NotRepresentableExceptionD1Ev@Base 3.4.2 + _ZN4geos9algorithm25NotRepresentableExceptionD2Ev@Base 3.4.2 + _ZN4geos9algorithm4Area12ofRingSignedEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 + _ZN4geos9algorithm4Area12ofRingSignedERKSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.8.0 + _ZN4geos9algorithm4Area6ofRingEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 + _ZN4geos9algorithm4Area6ofRingERKSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.8.0 + _ZN4geos9algorithm4hull11ConcaveHull10removeHoleERNS_11triangulate3tri7TriListINS1_7HullTriEEEPS6_@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull10toGeometryERNS_11triangulate3tri7TriListINS1_7HullTriEEEPKNS_4geom15GeometryFactoryE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull11computeHullERNS_11triangulate3tri7TriListINS1_7HullTriEEE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull12addBorderTriEPNS1_7HullTriERSt14priority_queueIS4_St6vectorIS4_SaIS4_EENS3_14HullTriCompareEE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull15setHolesAllowedEb@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull16computeHullHolesERNS_11triangulate3tri7TriListINS1_7HullTriEEE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull17computeHullBorderERNS_11triangulate3tri7TriListINS1_7HullTriEEE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull17createBorderQueueERSt14priority_queueIPNS1_7HullTriESt6vectorIS5_SaIS5_EENS4_14HullTriCompareEERNS_11triangulate3tri7TriListIS4_EE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull17uniformEdgeLengthEPKNS_4geom8GeometryE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull18findCandidateHolesERNS_11triangulate3tri7TriListINS1_7HullTriEEEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull19concaveHullByLengthEPKNS_4geom8GeometryEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull19concaveHullByLengthEPKNS_4geom8GeometryEdb@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull20setMaximumEdgeLengthEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull23computeTargetEdgeLengthERNS_11triangulate3tri7TriListINS1_7HullTriEEEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull24concaveHullByLengthRatioEPKNS_4geom8GeometryEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull24concaveHullByLengthRatioEPKNS_4geom8GeometryEdb@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull25setMaximumEdgeLengthRatioEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull11ConcaveHull7getHullEv@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull17HullTriangulation13findBorderTriERNS_11triangulate3tri7TriListINS1_7HullTriEEE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull17HullTriangulation13nextBorderTriEPNS1_7HullTriE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull17HullTriangulation13traceBoundaryERNS_11triangulate3tri7TriListINS1_7HullTriEEE@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9algorithm4hull17HullTriangulation14HullTriVisitor5visitERSt5arrayIPNS_11triangulate8quadedge8QuadEdgeELj3EE@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos9algorithm4hull17HullTriangulation14HullTriVisitor5visitERSt5arrayIPNS_11triangulate8quadedge8QuadEdgeELm3EE@Base 3.11.1 + _ZN4geos9algorithm4hull17HullTriangulation14HullTriVisitorD0Ev@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull17HullTriangulation14HullTriVisitorD1Ev@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull17HullTriangulation14HullTriVisitorD2Ev@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull17HullTriangulation20traceBoundaryPolygonERNS_11triangulate3tri7TriListINS1_7HullTriEEEPKNS_4geom15GeometryFactoryE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull17HullTriangulation27createDelaunayTriangulationEPKNS_4geom8GeometryERNS_11triangulate3tri7TriListINS1_7HullTriEEE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull17HullTriangulation6toTrisERNS_11triangulate8quadedge19QuadEdgeSubdivisionERNS3_3tri7TriListINS1_7HullTriEEE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull17HullTriangulation9geomunionERNS_11triangulate3tri7TriListINS1_7HullTriEEEPKNS_4geom15GeometryFactoryE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons11createFrameEPKNS_4geom8EnvelopeE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons12addBorderTriEPNS_11triangulate3tri3TriEi@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons13addBorderTrisEPNS_11triangulate3tri3TriE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons13buildHullTrisEv@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons14removeHoleTrisEv@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons15createEmptyHullEv@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons15removeBorderTriEPNS_11triangulate3tri3TriE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons15setHolesAllowedEb@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons16removeBorderTrisEv@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons17extractShellRingsEPKNS_4geom8GeometryERSt6vectorIPKNS3_10LinearRingESaISA_EE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons18createHullGeometryEb@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons19concaveFillByLengthEPKNS_4geom8GeometryEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons19concaveHullByLengthEPKNS_4geom8GeometryEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons19concaveHullByLengthEPKNS_4geom8GeometryEdbb@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons20setMaximumEdgeLengthEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons21removeFrameCornerTrisERNS_11triangulate3tri7TriListINS4_3TriEEEPKNS_4geom18CoordinateSequenceE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons24concaveFillByLengthRatioEPKNS_4geom8GeometryEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons24concaveHullByLengthRatioEPKNS_4geom8GeometryEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons24concaveHullByLengthRatioEPKNS_4geom8GeometryEdbb@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons25setMaximumEdgeLengthRatioEd@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons7getFillEv@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons7getHullEv@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygons8setTightEb@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygonsC1EPKNS_4geom8GeometryE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygonsC2EPKNS_4geom8GeometryE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygonsD1Ev@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull21ConcaveHullOfPolygonsD2Ev@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull7HullTri10clearMarksERNS_11triangulate3tri7TriListIS2_EE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull7HullTri11isAllMarkedERNS_11triangulate3tri7TriListIS2_EE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull7HullTri11isConnectedERNS_11triangulate3tri7TriListIS2_EEPS2_@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull7HullTri13markConnectedEPS2_S3_@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull7HullTri17setSizeToBoundaryEv@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull7HullTri6removeERNS_11triangulate3tri7TriListIS2_EE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull7HullTri7findTriERNS_11triangulate3tri7TriListIS2_EEPNS4_3TriE@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull7HullTri9isRemovedEv@Base 3.11.0~beta1 + _ZN4geos9algorithm4hull7HullTri9setMarkedEb@Base 3.11.0~beta1 + _ZN4geos9algorithm4hulllsERSoRKNS1_7HullTriE@Base 3.11.0~beta1 + _ZN4geos9algorithm5Angle12angleBetweenERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm5Angle13interiorAngleERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm5Angle17normalizePositiveEd@Base 3.4.2 + _ZN4geos9algorithm5Angle20angleBetweenOrientedERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm5Angle4diffEdd@Base 3.4.2 + _ZN4geos9algorithm5Angle5angleERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm5Angle5angleERKNS_4geom10CoordinateES5_@Base 3.4.2 + _ZN4geos9algorithm5Angle7getTurnEdd@Base 3.4.2 + _ZN4geos9algorithm5Angle7isAcuteERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm5Angle8isObtuseERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm5Angle9normalizeEd@Base 3.4.2 + _ZN4geos9algorithm5Angle9toDegreesEd@Base 3.4.2 + _ZN4geos9algorithm5Angle9toRadiansEd@Base 3.4.2 + _ZN4geos9algorithm6Length6ofLineEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 + _ZN4geos9algorithm6locate24SimplePointInAreaLocator11isContainedERKNS_4geom10CoordinateEPKNS3_8GeometryE@Base 3.8.0 + _ZN4geos9algorithm6locate24SimplePointInAreaLocator16locateInGeometryERKNS_4geom10CoordinateEPKNS3_8GeometryE@Base 3.8.0 + _ZN4geos9algorithm6locate24SimplePointInAreaLocator20locatePointInPolygonERKNS_4geom10CoordinateEPKNS3_7PolygonE@Base 3.8.0 + _ZN4geos9algorithm6locate24SimplePointInAreaLocator6locateEPKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm6locate24SimplePointInAreaLocator6locateERKNS_4geom10CoordinateEPKNS3_8GeometryE@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator10buildIndexERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometry4initERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometry7addLineEPKNS_4geom18CoordinateSequenceE@Base 3.8.0 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometryC1ERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometryC2ERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator6locateEPKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocatorC1ERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocatorC2ERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocatorD0Ev@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocatorD1Ev@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocatorD2Ev@Base 3.4.2 + _ZN4geos9algorithm8Centroid11addTriangleERKNS_4geom10CoordinateES5_S5_b@Base 3.4.2 + _ZN4geos9algorithm8Centroid11getCentroidERKNS_4geom8GeometryERNS2_10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm8Centroid15addLineSegmentsERKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9algorithm8Centroid16setAreaBasePointERKNS_4geom10CoordinateE@Base 3.8.0 + _ZN4geos9algorithm8Centroid3addERKNS_4geom7PolygonE@Base 3.4.2 + _ZN4geos9algorithm8Centroid3addERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm8Centroid5area2ERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZN4geos9algorithm8Centroid7addHoleERKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9algorithm8Centroid8addPointERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm8Centroid8addShellERKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9algorithm8Centroid9centroid3ERKNS_4geom10CoordinateES5_S5_RS3_@Base 3.4.2 + _ZN4geos9algorithm8Distance14pointToSegmentERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 + _ZN4geos9algorithm8Distance16segmentToSegmentERKNS_4geom10CoordinateES5_S5_S5_@Base 3.8.0 + _ZN4geos9algorithm8Distance20pointToSegmentStringERKNS_4geom10CoordinateEPKNS2_18CoordinateSequenceE@Base 3.8.0 + _ZN4geos9algorithm8Distance24pointToLinePerpendicularERKNS_4geom10CoordinateES5_S5_@Base 3.8.0 + _ZN4geos9algorithm8distance15DistanceToPoint15computeDistanceERKNS_4geom10LineStringERKNS3_10CoordinateERNS1_17PointPairDistanceE@Base 3.4.2 + _ZN4geos9algorithm8distance15DistanceToPoint15computeDistanceERKNS_4geom11LineSegmentERKNS3_10CoordinateERNS1_17PointPairDistanceE@Base 3.4.2 + _ZN4geos9algorithm8distance15DistanceToPoint15computeDistanceERKNS_4geom7PolygonERKNS3_10CoordinateERNS1_17PointPairDistanceE@Base 3.4.2 + _ZN4geos9algorithm8distance15DistanceToPoint15computeDistanceERKNS_4geom8GeometryERKNS3_10CoordinateERNS1_17PointPairDistanceE@Base 3.4.2 + (subst)_ZN4geos9algorithm8distance23DiscreteFrechetDistance12getSegmentAtERKNS_4geom18CoordinateSequenceE{size_t}@Base 3.10.0 + (subst)_ZN4geos9algorithm8distance23DiscreteFrechetDistance17getFrecheDistanceERSt6vectorIS3_INS1_17PointPairDistanceESaIS4_EESaIS6_EE{size_t}{size_t}RKNS_4geom18CoordinateSequenceESD_@Base 3.7.0 + _ZN4geos9algorithm8distance23DiscreteFrechetDistance18setDensifyFractionEd@Base 3.10.0 + _ZN4geos9algorithm8distance23DiscreteFrechetDistance7computeERKNS_4geom8GeometryES6_@Base 3.7.0 + _ZN4geos9algorithm8distance23DiscreteFrechetDistance8distanceERKNS_4geom8GeometryES6_@Base 3.7.0 + _ZN4geos9algorithm8distance23DiscreteFrechetDistance8distanceERKNS_4geom8GeometryES6_d@Base 3.7.0 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance18setDensifyFractionEd@Base 3.10.0 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterD0Ev@Base 3.4.2 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterD1Ev@Base 3.4.2 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterD2Ev@Base 3.4.2 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance23computeOrientedDistanceERKNS_4geom8GeometryES6_RNS1_17PointPairDistanceE@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilter9filter_roERKNS_4geom18CoordinateSequenceEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilter9filter_roERKNS_4geom18CoordinateSequenceEm@Base 3.7.0 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterD0Ev@Base 3.4.2 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterD1Ev@Base 3.4.2 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterD2Ev@Base 3.4.2 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance8distanceERKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9algorithm8distance25DiscreteHausdorffDistance8distanceERKNS_4geom8GeometryES6_d@Base 3.4.2 + _ZN4geos9algorithm9construct18LargestEmptyCircle13getRadiusLineEPKNS_4geom8GeometryEd@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircle13getRadiusLineEv@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircle14getRadiusPointEv@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircle17createInitialGridEPKNS_4geom8EnvelopeERSt14priority_queueINS2_4CellESt6vectorIS8_SaIS8_EESt4lessIS8_EE@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircle18createCentroidCellEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircle21distanceToConstraintsERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircle21distanceToConstraintsEdd@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircle22mayContainCircleCenterERKNS2_4CellES5_@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircle7computeEv@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircle9getCenterEPKNS_4geom8GeometryEd@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircle9getCenterEv@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircleC1EPKNS_4geom8GeometryES6_d@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircleC1EPKNS_4geom8GeometryEd@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircleC2EPKNS_4geom8GeometryES6_d@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircleC2EPKNS_4geom8GeometryEd@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircleD1Ev@Base 3.9.0 + _ZN4geos9algorithm9construct18LargestEmptyCircleD2Ev@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircle13getRadiusLineEPKNS_4geom8GeometryEd@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircle13getRadiusLineEv@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircle14getRadiusPointEv@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircle17createInitialGridEPKNS_4geom8EnvelopeERSt14priority_queueINS2_4CellESt6vectorIS8_SaIS8_EESt4lessIS8_EE@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircle18createCentroidCellEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircle18distanceToBoundaryERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircle18distanceToBoundaryEdd@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircle7computeEv@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircle9getCenterEPKNS_4geom8GeometryEd@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircle9getCenterEv@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircleC1EPKNS_4geom8GeometryEd@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircleC2EPKNS_4geom8GeometryEd@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircleD1Ev@Base 3.9.0 + _ZN4geos9algorithm9construct22MaximumInscribedCircleD2Ev@Base 3.9.0 + _ZN4geos9algorithmlsERSoRKNS0_11HCoordinateE@Base 3.4.2 + _ZN4geos9edgegraph12MarkHalfEdge11setMarkBothEPNS0_8HalfEdgeEb@Base 3.9.0 + _ZN4geos9edgegraph12MarkHalfEdge4markEPNS0_8HalfEdgeE@Base 3.9.0 + _ZN4geos9edgegraph12MarkHalfEdge7setMarkEPNS0_8HalfEdgeEb@Base 3.9.0 + _ZN4geos9edgegraph12MarkHalfEdge8isMarkedEPNS0_8HalfEdgeE@Base 3.9.0 + _ZN4geos9edgegraph12MarkHalfEdge8markBothEPNS0_8HalfEdgeE@Base 3.9.0 + _ZN4geos9edgegraph16EdgeGraphBuilder3addEPKNS_4geom10LineStringE@Base 3.9.0 + _ZN4geos9edgegraph16EdgeGraphBuilder3addEPKNS_4geom18GeometryCollectionE@Base 3.9.0 + _ZN4geos9edgegraph16EdgeGraphBuilder3addEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9edgegraph16EdgeGraphBuilder5buildEPKNS_4geom18GeometryCollectionE@Base 3.9.0 + _ZN4geos9edgegraph16EdgeGraphBuilder8getGraphEv@Base 3.9.0 + _ZN4geos9edgegraph25EdgeGraphLinestringFilterD0Ev@Base 3.9.0 + _ZN4geos9edgegraph25EdgeGraphLinestringFilterD1Ev@Base 3.9.0 + _ZN4geos9edgegraph25EdgeGraphLinestringFilterD2Ev@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdge11insertAfterEPS1_@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdge12toStringNodeEPKS1_RSo@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdge13insertionEdgeEPS1_@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdge4findERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdge4linkEPS1_@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdge6createERKNS_4geom10CoordinateES5_@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdge6degreeEv@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdge6insertEPS1_@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdge8prevNodeEv@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdgeD0Ev@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdgeD1Ev@Base 3.9.0 + _ZN4geos9edgegraph8HalfEdgeD2Ev@Base 3.9.0 + _ZN4geos9edgegraph9EdgeGraph10createEdgeERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos9edgegraph9EdgeGraph11isValidEdgeERKNS_4geom10CoordinateES5_@Base 3.9.0 + _ZN4geos9edgegraph9EdgeGraph14getVertexEdgesERSt6vectorIPKNS0_8HalfEdgeESaIS5_EE@Base 3.9.0 + _ZN4geos9edgegraph9EdgeGraph6createERKNS_4geom10CoordinateES5_@Base 3.9.0 + _ZN4geos9edgegraph9EdgeGraph6insertERKNS_4geom10CoordinateES5_PNS0_8HalfEdgeE@Base 3.9.0 + _ZN4geos9edgegraph9EdgeGraph7addEdgeERKNS_4geom10CoordinateES5_@Base 3.9.0 + _ZN4geos9edgegraph9EdgeGraph8findEdgeERKNS_4geom10CoordinateES5_@Base 3.9.0 + _ZN4geos9edgegraphlsERSoRKNS0_8HalfEdgeE@Base 3.9.0 + _ZN4geos9geomgraph11EdgeEndStar11getLocationEjRKNS_4geom10CoordinateEPSt6vectorIPNS0_13GeometryGraphESaIS8_EE@Base 3.9.0 + _ZN4geos9geomgraph11EdgeEndStar13getCoordinateEv@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar13insertEdgeEndEPNS0_7EdgeEndE@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar16computeLabellingEPSt6vectorIPNS0_13GeometryGraphESaIS4_EE@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar19propagateSideLabelsEj@Base 3.9.0 + _ZN4geos9geomgraph11EdgeEndStar20computeEdgeEndLabelsERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar22isAreaLabelsConsistentERKNS0_13GeometryGraphE@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar25checkAreaLabelsConsistentEj@Base 3.9.0 + _ZN4geos9geomgraph11EdgeEndStar3endEv@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar4findEPNS0_7EdgeEndE@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar4rendEv@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar5beginEv@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar6rbeginEv@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar8getEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar9getDegreeEv@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStar9getNextCWEPNS0_7EdgeEndE@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStarC1Ev@Base 3.4.2 + _ZN4geos9geomgraph11EdgeEndStarC2Ev@Base 3.4.2 + _ZN4geos9geomgraph11NodeFactory8instanceEv@Base 3.4.2 + _ZN4geos9geomgraph11NodeFactoryD0Ev@Base 3.4.2 + _ZN4geos9geomgraph11NodeFactoryD1Ev@Base 3.4.2 + _ZN4geos9geomgraph11NodeFactoryD2Ev@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph10getNodeMapEv@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph10insertEdgeEPNS0_4EdgeE@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph10printEdgesB5cxx11Ev@Base 3.5.1 + _ZN4geos9geomgraph11PlanarGraph11findEdgeEndEPNS0_4EdgeE@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph11getEdgeEndsEv@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph14isBoundaryNodeEhRKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9geomgraph11PlanarGraph15getEdgeIteratorEv@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph15getNodeIteratorEv@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph20linkAllDirectedEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph20matchInSameDirectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph23findEdgeInSameDirectionERKNS_4geom10CoordinateES5_@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph23linkResultDirectedEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph3addEPNS0_7EdgeEndE@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph4findERNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph7addNodeEPNS0_4NodeE@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph7addNodeERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph8addEdgesERKSt6vectorIPNS0_4EdgeESaIS4_EE@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph8findEdgeERKNS_4geom10CoordinateES5_@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraph8getNodesERSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraphC1ERKNS0_11NodeFactoryE@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraphC1Ev@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraphC2ERKNS0_11NodeFactoryE@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraphC2Ev@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraphD0Ev@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraphD1Ev@Base 3.4.2 + _ZN4geos9geomgraph11PlanarGraphD2Ev@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge10isLineEdgeEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge11depthFactorENS_4geom8LocationES3_@Base 3.8.0 + _ZN4geos9geomgraph12DirectedEdge13setEdgeDepthsEii@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge14setVisitedEdgeEb@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge18isInteriorAreaEdgeEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge20computeDirectedLabelEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge8setDepthEii@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge9printEdgeB5cxx11Ev@Base 3.5.1 + _ZN4geos9geomgraph12DirectedEdgeC1EPNS0_4EdgeEb@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdgeC2EPNS0_4EdgeEb@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdgeD0Ev@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdgeD1Ev@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdgeD2Ev@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph10addPolygonEPKNS_4geom7PolygonE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph11insertPointEhRKNS_4geom10CoordinateENS2_8LocationE@Base 3.10.0 + _ZN4geos9geomgraph13GeometryGraph12isInBoundaryEi@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph13addCollectionEPKNS_4geom18GeometryCollectionE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph13addLineStringEPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph14addPolygonRingEPKNS_4geom10LinearRingENS2_8LocationES6_@Base 3.8.0 + _ZN4geos9geomgraph13GeometryGraph15getInvalidPointEv@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph15hasTooFewPointsEv@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph16computeSelfNodesERNS_9algorithm15LineIntersectorEbPKNS_4geom8EnvelopeE@Base 3.5.0 + _ZN4geos9geomgraph13GeometryGraph16getBoundaryNodesEv@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph17computeSplitEdgesEPSt6vectorIPNS0_4EdgeESaIS4_EE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph17determineBoundaryERKNS_9algorithm16BoundaryNodeRuleEi@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph17determineBoundaryEi@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph17getBoundaryPointsEv@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph19insertBoundaryPointEhRKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9geomgraph13GeometryGraph23addSelfIntersectionNodeEhRKNS_4geom10CoordinateENS2_8LocationE@Base 3.10.0 + _ZN4geos9geomgraph13GeometryGraph24addSelfIntersectionNodesEh@Base 3.10.0 + _ZN4geos9geomgraph13GeometryGraph24computeEdgeIntersectionsEPS1_PNS_9algorithm15LineIntersectorEbPKNS_4geom8EnvelopeE@Base 3.5.0 + _ZN4geos9geomgraph13GeometryGraph24createEdgeSetIntersectorEv@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph3addEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph7addEdgeEPNS0_4EdgeE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph8addPointEPKNS_4geom5PointE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph8addPointERNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph8getEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraphC1EhPKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos9geomgraph13GeometryGraphC1EhPKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.10.0 + _ZN4geos9geomgraph13GeometryGraphC2EhPKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos9geomgraph13GeometryGraphC2EhPKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.10.0 + _ZN4geos9geomgraph13GeometryGraphD0Ev@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraphD1Ev@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraphD2Ev@Base 3.4.2 + _ZN4geos9geomgraph14GraphComponent10setCoveredEb@Base 3.4.2 + _ZN4geos9geomgraph14GraphComponent10setVisitedEb@Base 3.4.2 + _ZN4geos9geomgraph14GraphComponent11setInResultEb@Base 3.4.2 + _ZN4geos9geomgraph14GraphComponent8updateIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 + _ZN4geos9geomgraph14GraphComponentC1ERKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph14GraphComponentC1Ev@Base 3.4.2 + _ZN4geos9geomgraph14GraphComponentC2ERKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph14GraphComponentC2Ev@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar13computeDepthsEPNS0_12DirectedEdgeE@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar13computeDepthsESt23_Rb_tree_const_iteratorIPNS0_7EdgeEndEES5_i@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar14mergeSymLabelsEv@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar15updateLabellingERKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar16computeLabellingEPSt6vectorIPNS0_13GeometryGraphESaIS4_EE@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar16getRightmostEdgeEv@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar17getOutgoingDegreeEPNS0_8EdgeRingE@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar17getOutgoingDegreeEv@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar18getResultAreaEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar20findCoveredLineEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar20linkAllDirectedEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar23linkResultDirectedEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar24linkMinimalDirectedEdgesEPNS0_8EdgeRingE@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStar6insertEPNS0_7EdgeEndE@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStarD0Ev@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStarD1Ev@Base 3.4.2 + _ZN4geos9geomgraph16DirectedEdgeStarD2Ev@Base 3.4.2 + _ZN4geos9geomgraph16TopologyLocation5mergeERKS1_@Base 3.4.2 + _ZN4geos9geomgraph19EdgeNodingValidator16toSegmentStringsERSt6vectorIPNS0_4EdgeESaIS4_EE@Base 3.4.2 + _ZN4geos9geomgraph19EdgeNodingValidatorD1Ev@Base 3.4.2 + _ZN4geos9geomgraph19EdgeNodingValidatorD2Ev@Base 3.4.2 + _ZN4geos9geomgraph20EdgeIntersectionList12addEndpointsEv@Base 3.4.2 + _ZN4geos9geomgraph20EdgeIntersectionList13addSplitEdgesEPSt6vectorIPNS0_4EdgeESaIS4_EE@Base 3.4.2 + _ZN4geos9geomgraph20EdgeIntersectionList15createSplitEdgeEPKNS0_16EdgeIntersectionES4_@Base 3.8.0 + (subst)_ZN4geos9geomgraph20EdgeIntersectionList3addERKNS_4geom10CoordinateE{size_t}d@Base 3.8.0 + _ZN4geos9geomgraph20EdgeIntersectionListC1EPKNS0_4EdgeE@Base 3.8.0 + _ZN4geos9geomgraph20EdgeIntersectionListC2EPKNS0_4EdgeE@Base 3.8.0 + (optional=templinst)_ZN4geos9geomgraph26collect_intersecting_edgesIN9__gnu_cxx17__normal_iteratorIPPNS0_4EdgeESt6vectorIS5_SaIS5_EEEES9_EEvPKNS_4geom8EnvelopeET_SF_RT0_@Base 3.5.0 + _ZN4geos9geomgraph4Edge11getEnvelopeEv@Base 3.4.2 + _ZN4geos9geomgraph4Edge11setIsolatedEb@Base 3.4.2 + _ZN4geos9geomgraph4Edge13setDepthDeltaEi@Base 3.4.2 + (subst)_ZN4geos9geomgraph4Edge15addIntersectionEPNS_9algorithm15LineIntersectorE{size_t}{size_t}{size_t}@Base 3.8.0 + (subst)_ZN4geos9geomgraph4Edge16addIntersectionsEPNS_9algorithm15LineIntersectorE{size_t}{size_t}@Base 3.8.0 + _ZN4geos9geomgraph4Edge16getCollapsedEdgeEv@Base 3.4.2 + _ZN4geos9geomgraph4Edge20getMonotoneChainEdgeEv@Base 3.4.2 + _ZN4geos9geomgraph4Edge23getEdgeIntersectionListEv@Base 3.4.2 + _ZN4geos9geomgraph4Edge8getDepthEv@Base 3.4.2 + _ZN4geos9geomgraph4Edge8updateIMERKNS0_5LabelERNS_4geom18IntersectionMatrixE@Base 3.4.2 + _ZN4geos9geomgraph4Edge9computeIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 + _ZN4geos9geomgraph4EdgeC1EPNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9geomgraph4EdgeC1EPNS_4geom18CoordinateSequenceERKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph4EdgeC2EPNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9geomgraph4EdgeC2EPNS_4geom18CoordinateSequenceERKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph4EdgeD0Ev@Base 3.4.2 + _ZN4geos9geomgraph4EdgeD1Ev@Base 3.4.2 + _ZN4geos9geomgraph4EdgeD2Ev@Base 3.4.2 + _ZN4geos9geomgraph4Node10mergeLabelERKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph4Node10mergeLabelERKS1_@Base 3.4.2 + _ZN4geos9geomgraph4Node16setLabelBoundaryEh@Base 3.10.0 + _ZN4geos9geomgraph4Node21computeMergedLocationERKNS0_5LabelEh@Base 3.10.0 + _ZN4geos9geomgraph4Node3addEPNS0_7EdgeEndE@Base 3.4.2 + _ZN4geos9geomgraph4Node4addZEd@Base 3.4.2 + _ZN4geos9geomgraph4Node5printB5cxx11Ev@Base 3.5.1 + _ZN4geos9geomgraph4Node8getEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph4Node8setLabelEhNS_4geom8LocationE@Base 3.10.0 + _ZN4geos9geomgraph4Node9computeIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 + _ZN4geos9geomgraph4NodeC1ERKNS_4geom10CoordinateEPNS0_11EdgeEndStarE@Base 3.4.2 + _ZN4geos9geomgraph4NodeC2ERKNS_4geom10CoordinateEPNS0_11EdgeEndStarE@Base 3.4.2 + _ZN4geos9geomgraph4NodeD0Ev@Base 3.4.2 + _ZN4geos9geomgraph4NodeD1Ev@Base 3.4.2 + _ZN4geos9geomgraph4NodeD2Ev@Base 3.4.2 + _ZN4geos9geomgraph5Depth3addERKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph5Depth9normalizeEv@Base 3.4.2 + _ZN4geos9geomgraph5DepthD0Ev@Base 3.4.2 + _ZN4geos9geomgraph5DepthD1Ev@Base 3.4.2 + _ZN4geos9geomgraph5DepthD2Ev@Base 3.4.2 + _ZN4geos9geomgraph5index13MonotoneChainD0Ev@Base 3.4.2 + _ZN4geos9geomgraph5index13MonotoneChainD1Ev@Base 3.4.2 + _ZN4geos9geomgraph5index13MonotoneChainD2Ev@Base 3.4.2 + _ZN4geos9geomgraph5index14SweepLineEvent5printB5cxx11Ev@Base 3.5.1 + _ZN4geos9geomgraph5index14SweepLineEvent9compareToEPS2_@Base 3.4.2 + _ZN4geos9geomgraph5index14SweepLineEventC1EPvdPS2_PNS1_17SweepLineEventOBJE@Base 3.4.2 + _ZN4geos9geomgraph5index14SweepLineEventC2EPvdPS2_PNS1_17SweepLineEventOBJE@Base 3.4.2 + _ZN4geos9geomgraph5index16SweepLineSegment20computeIntersectionsEPS2_PNS1_18SegmentIntersectorE@Base 3.4.2 + _ZN4geos9geomgraph5index16SweepLineSegment7getMaxXEv@Base 3.4.2 + _ZN4geos9geomgraph5index16SweepLineSegment7getMinXEv@Base 3.4.2 + (subst)_ZN4geos9geomgraph5index16SweepLineSegmentC1EPNS0_4EdgeE{size_t}@Base 3.8.0 + (subst)_ZN4geos9geomgraph5index16SweepLineSegmentC2EPNS0_4EdgeE{size_t}@Base 3.8.0 + _ZN4geos9geomgraph5index16SweepLineSegmentD0Ev@Base 3.4.2 + _ZN4geos9geomgraph5index16SweepLineSegmentD1Ev@Base 3.4.2 + _ZN4geos9geomgraph5index16SweepLineSegmentD2Ev@Base 3.4.2 + _ZN4geos9geomgraph5index17MonotoneChainEdge14getCoordinatesEv@Base 3.4.2 + _ZN4geos9geomgraph5index17MonotoneChainEdge15getStartIndexesEv@Base 3.4.2 + _ZN4geos9geomgraph5index17MonotoneChainEdge17computeIntersectsERKS2_RNS1_18SegmentIntersectorE@Base 3.4.2 + (subst)_ZN4geos9geomgraph5index17MonotoneChainEdge25computeIntersectsForChainE{size_t}RKS2_{size_t}RNS1_18SegmentIntersectorE@Base 3.8.0 + (subst)_ZN4geos9geomgraph5index17MonotoneChainEdge25computeIntersectsForChainE{size_t}{size_t}RKS2_{size_t}{size_t}RNS1_18SegmentIntersectorE@Base 3.8.0 + (subst)_ZN4geos9geomgraph5index17MonotoneChainEdge7getMaxXE{size_t}@Base 3.8.0 + (subst)_ZN4geos9geomgraph5index17MonotoneChainEdge7getMinXE{size_t}@Base 3.8.0 + (subst)_ZN4geos9geomgraph5index17MonotoneChainEdge8overlapsE{size_t}{size_t}RKS2_{size_t}{size_t}@Base 3.8.0 + _ZN4geos9geomgraph5index17MonotoneChainEdgeC1EPNS0_4EdgeE@Base 3.4.2 + _ZN4geos9geomgraph5index17MonotoneChainEdgeC2EPNS0_4EdgeE@Base 3.4.2 + _ZN4geos9geomgraph5index18SegmentIntersector15isBoundaryPointEPNS_9algorithm15LineIntersectorEPSt6vectorIPNS0_4NodeESaIS8_EE@Base 3.4.2 + (subst)_ZN4geos9geomgraph5index18SegmentIntersector16addIntersectionsEPNS0_4EdgeE{size_t}S4_{size_t}@Base 3.8.0 + (subst)_ZN4geos9geomgraph5index18SegmentIntersector21isTrivialIntersectionEPNS0_4EdgeE{size_t}S4_{size_t}@Base 3.8.0 + _ZN4geos9geomgraph5index18SegmentIntersectorD0Ev@Base 3.4.2 + _ZN4geos9geomgraph5index18SegmentIntersectorD1Ev@Base 3.4.2 + _ZN4geos9geomgraph5index18SegmentIntersectorD2Ev@Base 3.4.2 + (subst)_ZN4geos9geomgraph5index20MonotoneChainIndexer12findChainEndEPKNS_4geom18CoordinateSequenceE{size_t}@Base 3.8.0 + (subst)_ZN4geos9geomgraph5index20MonotoneChainIndexer20getChainStartIndicesEPKNS_4geom18CoordinateSequenceERSt6vectorI{size_t}SaI{size_t}EE@Base 3.8.0 + _ZN4geos9geomgraph5index24SimpleEdgeSetIntersector17computeIntersectsEPNS0_4EdgeES4_PNS1_18SegmentIntersectorE@Base 3.4.2 + _ZN4geos9geomgraph5index24SimpleEdgeSetIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EEPNS1_18SegmentIntersectorEb@Base 3.4.2 + _ZN4geos9geomgraph5index24SimpleEdgeSetIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EES8_PNS1_18SegmentIntersectorE@Base 3.4.2 + _ZN4geos9geomgraph5index24SimpleEdgeSetIntersectorC1Ev@Base 3.4.2 + _ZN4geos9geomgraph5index24SimpleEdgeSetIntersectorC2Ev@Base 3.4.2 + _ZN4geos9geomgraph5index24SimpleEdgeSetIntersectorD0Ev@Base 3.4.2 + _ZN4geos9geomgraph5index24SimpleEdgeSetIntersectorD1Ev@Base 3.4.2 + _ZN4geos9geomgraph5index24SimpleEdgeSetIntersectorD2Ev@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersector13prepareEventsEv@Base 3.4.2 + (subst)_ZN4geos9geomgraph5index26SimpleSweepLineIntersector15processOverlapsE{size_t}{size_t}PNS1_14SweepLineEventEPNS1_18SegmentIntersectorE@Base 3.8.0 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersector20computeIntersectionsEPNS1_18SegmentIntersectorE@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EEPNS1_18SegmentIntersectorEb@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EES8_PNS1_18SegmentIntersectorE@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersector3addEPNS0_4EdgeEPv@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersector3addEPSt6vectorIPNS0_4EdgeESaIS5_EE@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersector3addEPSt6vectorIPNS0_4EdgeESaIS5_EEPv@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersectorC1Ev@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersectorC2Ev@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersectorD0Ev@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersectorD1Ev@Base 3.4.2 + _ZN4geos9geomgraph5index26SimpleSweepLineIntersectorD2Ev@Base 3.4.2 + _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector13prepareEventsEv@Base 3.4.2 + (subst)_ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector15processOverlapsE{size_t}{size_t}PNS1_14SweepLineEventEPNS1_18SegmentIntersectorE@Base 3.8.0 + _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector20computeIntersectionsEPNS1_18SegmentIntersectorE@Base 3.4.2 + _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EEPNS1_18SegmentIntersectorEb@Base 3.4.2 + _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector20computeIntersectionsEPSt6vectorIPNS0_4EdgeESaIS5_EES8_PNS1_18SegmentIntersectorE@Base 3.4.2 + _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector3addEPNS0_4EdgeEPv@Base 3.4.2 + _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector3addEPSt6vectorIPNS0_4EdgeESaIS5_EE@Base 3.4.2 + _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersector3addEPSt6vectorIPNS0_4EdgeESaIS5_EEPv@Base 3.4.2 + _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersectorD0Ev@Base 3.4.2 + _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersectorD1Ev@Base 3.4.2 + _ZN4geos9geomgraph5index28SimpleMCSweepLineIntersectorD2Ev@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEnd11getQuadrantEv@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEnd12computeLabelERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEnd13getCoordinateEv@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEnd21getDirectedCoordinateEv@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEnd4initERKNS_4geom10CoordinateES5_@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEnd5getDxEv@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEnd5getDyEv@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEnd7getNodeEv@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEnd7setNodeEPNS0_4NodeE@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndC1EPNS0_4EdgeE@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndC1EPNS0_4EdgeERKNS_4geom10CoordinateES7_@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndC1EPNS0_4EdgeERKNS_4geom10CoordinateES7_RKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndC1Ev@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndC2EPNS0_4EdgeE@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndC2EPNS0_4EdgeERKNS_4geom10CoordinateES7_@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndC2EPNS0_4EdgeERKNS_4geom10CoordinateES7_RKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndC2Ev@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndD0Ev@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndD1Ev@Base 3.4.2 + _ZN4geos9geomgraph7EdgeEndD2Ev@Base 3.4.2 + _ZN4geos9geomgraph7NodeMap3addEPNS0_7EdgeEndE@Base 3.4.2 + _ZN4geos9geomgraph7NodeMap7addNodeEPNS0_4NodeE@Base 3.4.2 + _ZN4geos9geomgraph7NodeMap7addNodeERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9geomgraph7NodeMapC1ERKNS0_11NodeFactoryE@Base 3.4.2 + _ZN4geos9geomgraph7NodeMapC2ERKNS0_11NodeFactoryE@Base 3.4.2 + _ZN4geos9geomgraph7NodeMapD0Ev@Base 3.4.2 + _ZN4geos9geomgraph7NodeMapD1Ev@Base 3.4.2 + _ZN4geos9geomgraph7NodeMapD2Ev@Base 3.4.2 + _ZN4geos9geomgraph8EdgeList3addEPNS0_4EdgeE@Base 3.4.2 + (subst)_ZN4geos9geomgraph8EdgeList3getE{size_t}@Base 3.10.0 + _ZN4geos9geomgraph8EdgeList5printB5cxx11Ev@Base 3.5.1 + _ZN4geos9geomgraph8EdgeList6addAllERKSt6vectorIPNS0_4EdgeESaIS4_EE@Base 3.4.2 + _ZN4geos9geomgraph8EdgeList9clearListEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeListD0Ev@Base 3.4.2 + _ZN4geos9geomgraph8EdgeListD1Ev@Base 3.4.2 + _ZN4geos9geomgraph8EdgeListD2Ev@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing10isIsolatedEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing10mergeLabelERKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing10mergeLabelERKNS0_5LabelEh@Base 3.10.0 + _ZN4geos9geomgraph8EdgeRing11computeRingEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing11setInResultEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing13computePointsEPNS0_12DirectedEdgeE@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing13containsPointERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing13getLinearRingEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing16getMaxNodeDegreeEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing20computeMaxNodeDegreeEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing6isHoleEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing7addHoleEPS1_@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing7isShellEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing8getEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing8getLabelEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing8getShellEv@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing8setShellEPS1_@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing9addPointsEPNS0_4EdgeEbb@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRing9toPolygonEPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRingC1EPNS0_12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRingC2EPNS0_12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRingD0Ev@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRingD1Ev@Base 3.4.2 + _ZN4geos9geomgraph8EdgeRingD2Ev@Base 3.4.2 + _ZN4geos9geomgraphlsERSoRKNS0_11EdgeEndStarE@Base 3.6.0 + _ZN4geos9geomgraphlsERSoRKNS0_16TopologyLocationE@Base 3.4.2 + _ZN4geos9geomgraphlsERSoRKNS0_20EdgeIntersectionListE@Base 3.4.2 + _ZN4geos9geomgraphlsERSoRKNS0_4EdgeE@Base 3.4.2 + _ZN4geos9geomgraphlsERSoRKNS0_4NodeE@Base 3.4.2 + _ZN4geos9geomgraphlsERSoRKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraphlsERSoRKNS0_7EdgeEndE@Base 3.4.2 + _ZN4geos9geomgraphlsERSoRKNS0_8EdgeListE@Base 3.4.2 + _ZN4geos9geomgraphlsERSoRKNS0_8EdgeRingE@Base 3.4.2 + _ZN4geos9linearref14LinearIterator15loadCurrentLineEv@Base 3.4.2 + _ZN4geos9linearref14LinearIterator21segmentEndVertexIndexERKNS0_14LinearLocationE@Base 3.4.2 + _ZN4geos9linearref14LinearIterator4nextEv@Base 3.4.2 + _ZN4geos9linearref14LinearIteratorC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref14LinearIteratorC1EPKNS_4geom8GeometryERKNS0_14LinearLocationE@Base 3.4.2 + (subst)_ZN4geos9linearref14LinearIteratorC1EPKNS_4geom8GeometryE{size_t}{size_t}@Base 3.8.0 + _ZN4geos9linearref14LinearIteratorC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref14LinearIteratorC2EPKNS_4geom8GeometryERKNS0_14LinearLocationE@Base 3.4.2 + (subst)_ZN4geos9linearref14LinearIteratorC2EPKNS_4geom8GeometryE{size_t}{size_t}@Base 3.8.0 + _ZN4geos9linearref14LinearLocation12snapToVertexEPKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos9linearref14LinearLocation14getEndLocationEPKNS_4geom8GeometryE@Base 3.4.2 + (subst)_ZN4geos9linearref14LinearLocation21compareLocationValuesE{size_t}{size_t}d{size_t}{size_t}d@Base 3.8.0 + _ZN4geos9linearref14LinearLocation27pointAlongSegmentByFractionERKNS_4geom10CoordinateES5_d@Base 3.4.2 + _ZN4geos9linearref14LinearLocation5clampEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref14LinearLocation8setToEndEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref14LinearLocation9normalizeEv@Base 3.4.2 + (subst)_ZN4geos9linearref14LinearLocationC1E{size_t}d@Base 3.8.0 + (subst)_ZN4geos9linearref14LinearLocationC1E{size_t}{size_t}d@Base 3.8.0 + (subst)_ZN4geos9linearref14LinearLocationC2E{size_t}d@Base 3.8.0 + (subst)_ZN4geos9linearref14LinearLocationC2E{size_t}{size_t}d@Base 3.8.0 + _ZN4geos9linearref17LengthIndexedLineC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref17LengthIndexedLineC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref17LengthLocationMap9getLengthEPKNS_4geom8GeometryERKNS0_14LinearLocationE@Base 3.4.2 + _ZN4geos9linearref17LengthLocationMapC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref17LengthLocationMapC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref18LengthIndexOfPoint12indexOfAfterEPKNS_4geom8GeometryERKNS2_10CoordinateEd@Base 3.4.2 + _ZN4geos9linearref18LengthIndexOfPoint7indexOfEPKNS_4geom8GeometryERKNS2_10CoordinateE@Base 3.4.2 + _ZN4geos9linearref18LengthIndexOfPointC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref18LengthIndexOfPointC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref19LocationIndexOfLine9indicesOfEPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9linearref19LocationIndexOfLineC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref19LocationIndexOfLineC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref20LocationIndexOfPoint12indexOfAfterEPKNS_4geom8GeometryERKNS2_10CoordinateEPKNS0_14LinearLocationE@Base 3.4.2 + _ZN4geos9linearref20LocationIndexOfPoint7indexOfEPKNS_4geom8GeometryERKNS2_10CoordinateE@Base 3.4.2 + _ZN4geos9linearref20LocationIndexOfPointC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref20LocationIndexOfPointC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref21ExtractLineByLocation11computeLineERKNS0_14LinearLocationES4_@Base 3.4.2 + _ZN4geos9linearref21ExtractLineByLocation13computeLinearERKNS0_14LinearLocationES4_@Base 3.4.2 + _ZN4geos9linearref21ExtractLineByLocation7extractEPKNS_4geom8GeometryERKNS0_14LinearLocationES8_@Base 3.4.2 + _ZN4geos9linearref21ExtractLineByLocation7extractERKNS0_14LinearLocationES4_@Base 3.4.2 + _ZN4geos9linearref21ExtractLineByLocation7reverseEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref21ExtractLineByLocationC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref21ExtractLineByLocationC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9linearref21LinearGeometryBuilder11getGeometryEv@Base 3.4.2 + _ZN4geos9linearref21LinearGeometryBuilder18setFixInvalidLinesEb@Base 3.4.2 + _ZN4geos9linearref21LinearGeometryBuilder21setIgnoreInvalidLinesEb@Base 3.4.2 + _ZN4geos9linearref21LinearGeometryBuilder3addERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9linearref21LinearGeometryBuilder3addERKNS_4geom10CoordinateEb@Base 3.4.2 + _ZN4geos9linearref21LinearGeometryBuilder7endLineEv@Base 3.4.2 + _ZN4geos9linearref21LinearGeometryBuilderC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9linearref21LinearGeometryBuilderC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9linearref21LinearGeometryBuilderD1Ev@Base 3.4.2 + _ZN4geos9linearref21LinearGeometryBuilderD2Ev@Base 3.4.2 + _ZN4geos9linearreflsERSoRKNS0_14LinearLocationE@Base 3.4.2 + _ZN4geos9operation10BoundaryOp11getBoundaryERKNS_4geom8GeometryE@Base 3.11.1 + _ZN4geos9operation10BoundaryOp11getBoundaryERKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.11.1 + _ZN4geos9operation10BoundaryOp11getBoundaryEv@Base 3.11.1 + _ZN4geos9operation10BoundaryOp11hasBoundaryERKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.11.1 + _ZN4geos9operation10BoundaryOp18boundaryLineStringERKNS_4geom10LineStringE@Base 3.11.1 + _ZN4geos9operation10BoundaryOp23boundaryMultiLineStringERKNS_4geom15MultiLineStringE@Base 3.11.1 + _ZN4geos9operation10BoundaryOp26computeBoundaryCoordinatesERKNS_4geom15MultiLineStringE@Base 3.11.1 + _ZN4geos9operation10BoundaryOpC1ERKNS_4geom8GeometryE@Base 3.11.1 + _ZN4geos9operation10BoundaryOpC1ERKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.11.1 + _ZN4geos9operation10BoundaryOpC2ERKNS_4geom8GeometryE@Base 3.11.1 + _ZN4geos9operation10BoundaryOpC2ERKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.11.1 + _ZN4geos9operation10polygonize11Polygonizer10getDanglesEv@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer10hasDanglesEv@Base 3.8.0 + _ZN4geos9operation10polygonize11Polygonizer10polygonizeEv@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer11getCutEdgesEv@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer11getPolygonsEv@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer11hasCutEdgesEv@Base 3.8.0 + _ZN4geos9operation10polygonize11Polygonizer14findValidRingsERKSt6vectorIPNS1_8EdgeRingESaIS5_EERS7_RS3_ISt10unique_ptrINS_4geom10LineStringESt14default_deleteISD_EESaISG_EE@Base 3.8.0 + _ZN4geos9operation10polygonize11Polygonizer15LineStringAdder9filter_roEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer15LineStringAdderC1EPS2_@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer15LineStringAdderC2EPS2_@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer15LineStringAdderD0Ev@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer15LineStringAdderD1Ev@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer15LineStringAdderD2Ev@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer15extractPolygonsERSt6vectorIPNS1_8EdgeRingESaIS5_EEb@Base 3.8.0 + _ZN4geos9operation10polygonize11Polygonizer15findOuterShellsERSt6vectorIPNS1_8EdgeRingESaIS5_EE@Base 3.8.0 + _ZN4geos9operation10polygonize11Polygonizer18findDisjointShellsEv@Base 3.8.0 + _ZN4geos9operation10polygonize11Polygonizer18findShellsAndHolesERKSt6vectorIPNS1_8EdgeRingESaIS5_EE@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer19getInvalidRingLinesEv@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer19hasInvalidRingLinesEv@Base 3.8.0 + _ZN4geos9operation10polygonize11Polygonizer21allInputsFormPolygonsEv@Base 3.8.0 + _ZN4geos9operation10polygonize11Polygonizer3addEPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer3addEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer3addEPNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer3addEPSt6vectorIPKNS_4geom8GeometryESaIS7_EE@Base 3.4.2 + _ZN4geos9operation10polygonize11Polygonizer3addEPSt6vectorIPNS_4geom8GeometryESaIS6_EE@Base 3.4.2 + _ZN4geos9operation10polygonize11PolygonizerC1Eb@Base 3.8.0 + _ZN4geos9operation10polygonize11PolygonizerC2Eb@Base 3.8.0 + _ZN4geos9operation10polygonize11PolygonizerD1Ev@Base 3.4.2 + _ZN4geos9operation10polygonize11PolygonizerD2Ev@Base 3.4.2 + _ZN4geos9operation10polygonize12HoleAssigner10buildIndexEv@Base 3.8.0 + _ZN4geos9operation10polygonize12HoleAssigner10findShellsERKNS_4geom8EnvelopeE@Base 3.8.0 + _ZN4geos9operation10polygonize12HoleAssigner17assignHoleToShellEPNS1_8EdgeRingE@Base 3.8.0 + _ZN4geos9operation10polygonize12HoleAssigner19assignHolesToShellsERSt6vectorIPNS1_8EdgeRingESaIS5_EE@Base 3.8.0 + _ZN4geos9operation10polygonize12HoleAssigner19assignHolesToShellsERSt6vectorIPNS1_8EdgeRingESaIS5_EES8_@Base 3.8.0 + _ZN4geos9operation10polygonize12HoleAssigner22findEdgeRingContainingEPNS1_8EdgeRingE@Base 3.8.0 + _ZN4geos9operation10polygonize14PolygonizeEdge7getLineEv@Base 3.4.2 + _ZN4geos9operation10polygonize14PolygonizeEdgeC1EPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation10polygonize14PolygonizeEdgeC2EPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation10polygonize14PolygonizeEdgeD0Ev@Base 3.4.2 + _ZN4geos9operation10polygonize14PolygonizeEdgeD1Ev@Base 3.4.2 + _ZN4geos9operation10polygonize14PolygonizeEdgeD2Ev@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph12findEdgeRingEPNS1_22PolygonizeDirectedEdgeE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph12getEdgeRingsERSt6vectorIPNS1_8EdgeRingESaIS5_EE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph13deleteDanglesERSt6vectorIPKNS_4geom10LineStringESaIS7_EE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph14deleteAllEdgesEPNS_11planargraph4NodeE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph14deleteCutEdgesERSt6vectorIPKNS_4geom10LineStringESaIS7_EE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph18computeNextCWEdgesEPNS_11planargraph4NodeE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph18computeNextCWEdgesEv@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph19computeNextCCWEdgesEPNS_11planargraph4NodeEl@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph19getDegreeNonDeletedEPNS_11planargraph4NodeE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph20findLabeledEdgeRingsERSt6vectorIPNS_11planargraph12DirectedEdgeESaIS6_EERS3_IPNS1_22PolygonizeDirectedEdgeESaISB_EE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph21findIntersectionNodesEPNS1_22PolygonizeDirectedEdgeElRSt6vectorIPNS_11planargraph4NodeESaIS8_EE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph32convertMaximalToMinimalEdgeRingsERSt6vectorIPNS1_22PolygonizeDirectedEdgeESaIS5_EE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph5labelERSt6vectorIPNS1_22PolygonizeDirectedEdgeESaIS5_EEl@Base 3.8.0 + _ZN4geos9operation10polygonize15PolygonizeGraph5labelERSt6vectorIPNS_11planargraph12DirectedEdgeESaIS6_EEl@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph7addEdgeEPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph7getNodeERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraph9getDegreeEPNS_11planargraph4NodeEl@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraphC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraphC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraphD0Ev@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraphD1Ev@Base 3.4.2 + _ZN4geos9operation10polygonize15PolygonizeGraphD2Ev@Base 3.4.2 + _ZN4geos9operation10polygonize22PolygonizeDirectedEdge7setNextEPS2_@Base 3.4.2 + _ZN4geos9operation10polygonize22PolygonizeDirectedEdge7setRingEPNS1_8EdgeRingE@Base 3.4.2 + _ZN4geos9operation10polygonize22PolygonizeDirectedEdge8setLabelEl@Base 3.4.2 + _ZN4geos9operation10polygonize22PolygonizeDirectedEdgeC1EPNS_11planargraph4NodeES5_RKNS_4geom10CoordinateEb@Base 3.4.2 + _ZN4geos9operation10polygonize22PolygonizeDirectedEdgeC2EPNS_11planargraph4NodeES5_RKNS_4geom10CoordinateEb@Base 3.4.2 + _ZN4geos9operation10polygonize22PolygonizeDirectedEdgeD0Ev@Base 3.4.2 + _ZN4geos9operation10polygonize22PolygonizeDirectedEdgeD1Ev@Base 3.4.2 + _ZN4geos9operation10polygonize22PolygonizeDirectedEdgeD2Ev@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRing10getPolygonEv@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRing11computeHoleEv@Base 3.8.0 + _ZN4geos9operation10polygonize8EdgeRing11ptNotInListEPKNS_4geom18CoordinateSequenceES6_@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRing13getLineStringEv@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRing14getCoordinatesEv@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRing15getRingInternalEv@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRing16getRingOwnershipEv@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRing18findDirEdgesInRingEPNS1_22PolygonizeDirectedEdgeE@Base 3.8.0 + _ZN4geos9operation10polygonize8EdgeRing22findEdgeRingContainingERKSt6vectorIPS2_SaIS4_EE@Base 3.8.0 + _ZN4geos9operation10polygonize8EdgeRing23updateIncludedRecursiveEv@Base 3.8.0 + _ZN4geos9operation10polygonize8EdgeRing3addEPKNS1_22PolygonizeDirectedEdgeE@Base 3.8.0 + _ZN4geos9operation10polygonize8EdgeRing5buildEPNS1_22PolygonizeDirectedEdgeE@Base 3.8.0 + _ZN4geos9operation10polygonize8EdgeRing7addEdgeEPKNS_4geom18CoordinateSequenceEbPNS3_23CoordinateArraySequenceE@Base 3.8.0 + _ZN4geos9operation10polygonize8EdgeRing7addHoleEPNS_4geom10LinearRingE@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRing7addHoleEPS2_@Base 3.8.0 + _ZN4geos9operation10polygonize8EdgeRing7isValidEv@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRing8isInListERKNS_4geom10CoordinateEPKNS3_18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRingC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation10polygonize8EdgeRingC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation10polygonize9BuildArea5buildEPKNS_4geom8GeometryE@Base 3.8.0 + _ZN4geos9operation11sharedpaths13SharedPathsOp10clearEdgesERSt6vectorIPNS_4geom10LineStringESaIS6_EE@Base 3.4.2 + _ZN4geos9operation11sharedpaths13SharedPathsOp13sharedPathsOpERKNS_4geom8GeometryES6_RSt6vectorIPNS3_10LineStringESaIS9_EESC_@Base 3.4.2 + _ZN4geos9operation11sharedpaths13SharedPathsOp14getSharedPathsERSt6vectorIPNS_4geom10LineStringESaIS6_EES9_@Base 3.4.2 + _ZN4geos9operation11sharedpaths13SharedPathsOp16checkLinealInputERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation11sharedpaths13SharedPathsOp23findLinearIntersectionsERSt6vectorIPNS_4geom10LineStringESaIS6_EE@Base 3.4.2 + _ZN4geos9operation11sharedpaths13SharedPathsOp9isForwardERKNS_4geom10LineStringERKNS3_8GeometryE@Base 3.4.2 + _ZN4geos9operation11sharedpaths13SharedPathsOpC1ERKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation11sharedpaths13SharedPathsOpC2ERKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation12intersection13clip_to_edgesERdS2_ddRKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection14normalize_ringERSt6vectorINS_4geom10CoordinateESaIS4_EE@Base 3.5.0 + (subst)_ZN4geos9operation12intersection14reverse_pointsERSt6vectorINS_4geom10CoordinateESaIS4_EE{size_t}{size_t}@Base 3.8.0 + _ZN4geos9operation12intersection21RectangleIntersection10clip_pointEPKNS_4geom5PointERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection12clipBoundaryERKNS_4geom8GeometryERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection12clipBoundaryEv@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection12clip_polygonEPKNS_4geom7PolygonERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleEb@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection15clip_linestringEPKNS_4geom10LineStringERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection15clip_multipointEPKNS_4geom10MultiPointERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection17clip_multipolygonEPKNS_4geom12MultiPolygonERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleEb@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection20clip_multilinestringEPKNS_4geom15MultiLineStringERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection21clip_linestring_partsEPKNS_4geom10LineStringERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection23clip_geometrycollectionEPKNS_4geom18GeometryCollectionERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleEb@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection24clip_polygon_to_polygonsEPKNS_4geom7PolygonERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection27clip_polygon_to_linestringsEPKNS_4geom7PolygonERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection4clipERKNS_4geom8GeometryERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection4clipEv@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersection9clip_geomEPKNS_4geom8GeometryERNS1_28RectangleIntersectionBuilderERKNS1_9RectangleEb@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersectionC1ERKNS_4geom8GeometryERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection21RectangleIntersectionC2ERKNS_4geom8GeometryERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder10close_ringERKNS1_9RectangleEPSt6vectorINS_4geom10CoordinateESaIS8_EE@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder12reverseLinesEv@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder14close_boundaryERKNS1_9RectangleEPSt6vectorINS_4geom10CoordinateESaIS8_EEdddd@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder17reconnectPolygonsERKNS1_9RectangleE@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder3addEPNS_4geom10LineStringE@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder3addEPNS_4geom5PointE@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder3addEPNS_4geom7PolygonE@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder5buildEv@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder5clearEv@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder7releaseERS2_@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilder9reconnectEv@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilderD1Ev@Base 3.5.0 + _ZN4geos9operation12intersection28RectangleIntersectionBuilderD2Ev@Base 3.5.0 + _ZN4geos9operation12intersection8distanceERKNS1_9RectangleERKSt6vectorINS_4geom10CoordinateESaIS7_EE@Base 3.5.0 + _ZN4geos9operation12intersection8distanceERKNS1_9RectangleERKSt6vectorINS_4geom10CoordinateESaIS7_EEPKNS6_10LineStringE@Base 3.5.0 + _ZN4geos9operation12intersection8distanceERKNS1_9RectangleEdddd@Base 3.5.0 + _ZN4geos9operation12intersection9RectangleC1Edddd@Base 3.5.0 + _ZN4geos9operation12intersection9RectangleC2Edddd@Base 3.5.0 + _ZN4geos9operation22GeometryGraphOperation23setComputationPrecisionEPKNS_4geom14PrecisionModelE@Base 3.4.2 + _ZN4geos9operation22GeometryGraphOperationC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation22GeometryGraphOperationC1EPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9operation22GeometryGraphOperationC1EPKNS_4geom8GeometryES5_RKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9operation22GeometryGraphOperationC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation22GeometryGraphOperationC2EPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9operation22GeometryGraphOperationC2EPKNS_4geom8GeometryES5_RKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9operation22GeometryGraphOperationD0Ev@Base 3.4.2 + _ZN4geos9operation22GeometryGraphOperationD1Ev@Base 3.4.2 + _ZN4geos9operation22GeometryGraphOperationD2Ev@Base 3.4.2 + _ZN4geos9operation5valid10IsSimpleOp13computeSimpleERKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp17isSimplePolygonalERKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp17removeRepeatedPtsERKNS_4geom8GeometryE@Base 3.10.3 + _ZN4geos9operation5valid10IsSimpleOp18isSimpleMultiPointERKNS_4geom10MultiPointE@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp19setFindAllLocationsEb@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp20createSegmentStringsERSt6vectorISt10unique_ptrINS_4geom23CoordinateArraySequenceESt14default_deleteIS6_EESaIS9_EE@Base 3.10.3 + _ZN4geos9operation5valid10IsSimpleOp20getNonSimpleLocationERKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp20getNonSimpleLocationEv@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp21getNonSimpleLocationsEv@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp22isSimpleLinearGeometryERKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp26isSimpleGeometryCollectionERKNS_4geom8GeometryE@Base 3.10.0 + (subst)_ZN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder16findIntersectionEPNS_6noding13SegmentStringE{size_t}S6_{size_t}RKNS_4geom10CoordinateESA_SA_SA_@Base 3.10.0 + (subst)_ZN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder20processIntersectionsEPNS_6noding13SegmentStringE{size_t}S6_{size_t}@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderD0Ev@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderD1Ev@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderD2Ev@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp7computeEv@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp8isSimpleERKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos9operation5valid10IsSimpleOp8isSimpleEv@Base 3.10.0 + _ZN4geos9operation5valid11PolygonNode10isCrossingEPKNS_4geom10CoordinateES6_S6_S6_S6_@Base 3.10.0 + _ZN4geos9operation5valid11PolygonNode14isAngleGreaterEPKNS_4geom10CoordinateES6_S6_@Base 3.10.0 + _ZN4geos9operation5valid11PolygonNode17isInteriorSegmentEPKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 + _ZN4geos9operation5valid11PolygonNode8quadrantEPKNS_4geom10CoordinateES6_@Base 3.10.0 + _ZN4geos9operation5valid11PolygonNode9isBetweenEPKNS_4geom10CoordinateES6_S6_S6_@Base 3.10.0 + _ZN4geos9operation5valid11PolygonRing12addSelfTouchERKNS_4geom10CoordinateEPS5_S7_S7_S7_@Base 3.10.0 + _ZN4geos9operation5valid11PolygonRing16scanForHoleCycleEPNS1_16PolygonRingTouchEPS2_RSt5stackIS4_St5dequeIS4_SaIS4_EEE@Base 3.10.0 + _ZN4geos9operation5valid11PolygonRing20findInteriorSelfNodeESt6vectorIPS2_SaIS4_EE@Base 3.10.0 + _ZN4geos9operation5valid11PolygonRing20findInteriorSelfNodeEv@Base 3.10.0 + _ZN4geos9operation5valid11PolygonRing21findHoleCycleLocationESt6vectorIPS2_SaIS4_EE@Base 3.10.0 + _ZN4geos9operation5valid11PolygonRing21findHoleCycleLocationEv@Base 3.10.0 + _ZN4geos9operation5valid11PolygonRing4initEPS2_RSt5stackIPNS1_16PolygonRingTouchESt5dequeIS6_SaIS6_EEE@Base 3.10.0 + _ZN4geos9operation5valid11PolygonRing7isShellEPKS2_@Base 3.10.0 + _ZN4geos9operation5valid11PolygonRing8addTouchEPS2_RKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9operation5valid11PolygonRing8addTouchEPS2_S3_RKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9operation5valid19RepeatedPointFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9operation5valid19RepeatedPointFilterD0Ev@Base 3.10.0 + _ZN4geos9operation5valid19RepeatedPointFilterD1Ev@Base 3.10.0 + _ZN4geos9operation5valid19RepeatedPointFilterD2Ev@Base 3.10.0 + _ZN4geos9operation5valid19RepeatedPointTester13getCoordinateEv@Base 3.4.2 + _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom12MultiPolygonE@Base 3.4.2 + _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom15MultiLineStringE@Base 3.4.2 + _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom18GeometryCollectionE@Base 3.4.2 + _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom7PolygonE@Base 3.4.2 + _ZN4geos9operation5valid19RepeatedPointTester16hasRepeatedPointEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation5valid20RepeatedPointRemover20removeRepeatedPointsEPKNS_4geom18CoordinateSequenceEd@Base 3.11.0~beta1 + _ZN4geos9operation5valid20RepeatedPointRemover20removeRepeatedPointsEPKNS_4geom8GeometryEd@Base 3.11.0~beta1 + _ZN4geos9operation5valid20RepeatedPointRemover30removeRepeatedAndInvalidPointsEPKNS_4geom18CoordinateSequenceEd@Base 3.11.0~beta1 + _ZN4geos9operation5valid23IndexedNestedHoleTester8isNestedEv@Base 3.10.0 + _ZN4geos9operation5valid23IndexedNestedHoleTester9loadIndexEv@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer12isRingNestedEPKNS_4geom10LinearRingES6_@Base 3.10.3 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9operation5valid23PolygonTopologyAnalyzer13ringIndexNextEPKNS_4geom18CoordinateSequenceEj@Base 3.10.3 + (arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos9operation5valid23PolygonTopologyAnalyzer13ringIndexNextEPKNS_4geom18CoordinateSequenceEm@Base 3.11.0~beta1 + (subst)_ZN4geos9operation5valid23PolygonTopologyAnalyzer13ringIndexPrevEPKNS_4geom18CoordinateSequenceE{size_t}@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer15createSegStringEPKNS_4geom10LinearRingEPKNS1_11PolygonRingE@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer15getPolygonRingsERKSt6vectorIPNS_6noding13SegmentStringESaIS6_EE@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer17createPolygonRingEPKNS_4geom10LinearRingE@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer17createPolygonRingEPKNS_4geom10LinearRingEiPNS1_11PolygonRingE@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer18findNonEqualVertexEPKNS_4geom10LinearRingERKNS3_10CoordinateE@Base 3.10.3 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9operation5valid23PolygonTopologyAnalyzer18findRingVertexNextEPKNS_4geom18CoordinateSequenceEjRKNS3_10CoordinateE@Base 3.10.3 + (arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos9operation5valid23PolygonTopologyAnalyzer18findRingVertexNextEPKNS_4geom18CoordinateSequenceEmRKNS3_10CoordinateE@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9operation5valid23PolygonTopologyAnalyzer18findRingVertexPrevEPKNS_4geom18CoordinateSequenceEjRKNS3_10CoordinateE@Base 3.10.3 + (arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos9operation5valid23PolygonTopologyAnalyzer18findRingVertexPrevEPKNS_4geom18CoordinateSequenceEmRKNS3_10CoordinateE@Base 3.11.0~beta1 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer20createSegmentStringsEPKNS_4geom8GeometryEb@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer20findSelfIntersectionEPKNS_4geom10LinearRingE@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer20intersectingSegIndexEPKNS_4geom18CoordinateSequenceEPKNS3_10CoordinateE@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer22isInteriorDisconnectedEv@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer23isIncidentSegmentInRingEPKNS_4geom10CoordinateES6_PKNS3_18CoordinateSequenceE@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer36checkInteriorDisconnectedByHoleCycleEv@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzer36checkInteriorDisconnectedBySelfTouchEv@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzerC1EPKNS_4geom8GeometryEb@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzerC2EPKNS_4geom8GeometryEb@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzerD1Ev@Base 3.10.0 + _ZN4geos9operation5valid23PolygonTopologyAnalyzerD2Ev@Base 3.10.0 + _ZN4geos9operation5valid23TopologyValidationError6errMsgE@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationErrorC1Ei@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationErrorC1EiRKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationErrorC2Ei@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationErrorC2EiRKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation5valid26IndexedNestedPolygonTester10getLocatorEPKNS_4geom7PolygonE@Base 3.10.0 + _ZN4geos9operation5valid26IndexedNestedPolygonTester15findNestedPointEPKNS_4geom10LinearRingEPKNS3_7PolygonERNS_9algorithm6locate25IndexedPointInAreaLocatorERNS3_10CoordinateE@Base 3.10.0 + _ZN4geos9operation5valid26IndexedNestedPolygonTester30findIncidentSegmentNestedPointEPKNS_4geom10LinearRingEPKNS3_7PolygonERNS3_10CoordinateE@Base 3.10.3 + _ZN4geos9operation5valid26IndexedNestedPolygonTester8isNestedEv@Base 3.10.0 + _ZN4geos9operation5valid26IndexedNestedPolygonTester9loadIndexEv@Base 3.10.0 + _ZN4geos9operation5valid26IndexedNestedPolygonTesterC1EPKNS_4geom12MultiPolygonE@Base 3.10.0 + _ZN4geos9operation5valid26IndexedNestedPolygonTesterC2EPKNS_4geom12MultiPolygonE@Base 3.10.0 + _ZN4geos9operation5valid26RepeatedInvalidPointFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9operation5valid26RepeatedInvalidPointFilterD0Ev@Base 3.10.0 + _ZN4geos9operation5valid26RepeatedInvalidPointFilterD1Ev@Base 3.10.0 + _ZN4geos9operation5valid26RepeatedInvalidPointFilterD2Ev@Base 3.10.0 + _ZN4geos9operation5valid27PolygonIntersectionAnalyzer12addSelfTouchEPKNS_6noding13SegmentStringERKNS_4geom10CoordinateEPS9_SB_SB_SB_@Base 3.10.0 + _ZN4geos9operation5valid27PolygonIntersectionAnalyzer14addDoubleTouchEPKNS_6noding13SegmentStringES6_RKNS_4geom10CoordinateE@Base 3.10.0 + (subst)_ZN4geos9operation5valid27PolygonIntersectionAnalyzer20processIntersectionsEPNS_6noding13SegmentStringE{size_t}S5_{size_t}@Base 3.10.0 + (subst)_ZN4geos9operation5valid27PolygonIntersectionAnalyzer23findInvalidIntersectionEPKNS_6noding13SegmentStringE{size_t}S6_{size_t}@Base 3.10.0 + _ZN4geos9operation5valid27PolygonIntersectionAnalyzerD0Ev@Base 3.10.0 + _ZN4geos9operation5valid27PolygonIntersectionAnalyzerD1Ev@Base 3.10.0 + _ZN4geos9operation5valid27PolygonIntersectionAnalyzerD2Ev@Base 3.10.0 + _ZN4geos9operation5valid32RepeatedPointCoordinateOperation4editEPKNS_4geom18CoordinateSequenceEPKNS3_8GeometryE@Base 3.11.0~beta1 + _ZN4geos9operation5valid32RepeatedPointCoordinateOperationD0Ev@Base 3.11.0~beta1 + _ZN4geos9operation5valid32RepeatedPointCoordinateOperationD1Ev@Base 3.11.0~beta1 + _ZN4geos9operation5valid32RepeatedPointCoordinateOperationD2Ev@Base 3.11.0~beta1 + _ZN4geos9operation5valid9IsValidOp10logInvalidEiPKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp15checkRingClosedEPKNS_4geom10LinearRingE@Base 3.11.0~beta1 + _ZN4geos9operation5valid9IsValidOp15checkRingSimpleEPKNS_4geom10LinearRingE@Base 3.11.0~beta1 + _ZN4geos9operation5valid9IsValidOp15isValidGeometryEPKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp16checkRingsClosedEPKNS_4geom7PolygonE@Base 3.11.0~beta1 + _ZN4geos9operation5valid9IsValidOp17checkHolesInShellEPKNS_4geom7PolygonE@Base 3.11.0~beta1 + (subst)_ZN4geos9operation5valid9IsValidOp17checkTooFewPointsEPKNS_4geom10LineStringE{size_t}@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp18checkRingPointSizeEPKNS_4geom10LinearRingE@Base 3.11.0~beta1 + _ZN4geos9operation5valid9IsValidOp18getValidationErrorEv@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp19checkHolesNotNestedEPKNS_4geom7PolygonE@Base 3.11.0~beta1 + _ZN4geos9operation5valid9IsValidOp19checkRingsPointSizeEPKNS_4geom7PolygonE@Base 3.11.0~beta1 + _ZN4geos9operation5valid9IsValidOp20checkShellsNotNestedEPKNS_4geom12MultiPolygonE@Base 3.11.0~beta1 + _ZN4geos9operation5valid9IsValidOp21checkCoordinatesValidEPKNS_4geom18CoordinateSequenceE@Base 3.11.0~beta1 + _ZN4geos9operation5valid9IsValidOp21checkCoordinatesValidEPKNS_4geom7PolygonE@Base 3.11.0~beta1 + _ZN4geos9operation5valid9IsValidOp22checkAreaIntersectionsERNS1_23PolygonTopologyAnalyzerE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp22checkInteriorConnectedERNS1_23PolygonTopologyAnalyzerE@Base 3.11.0~beta1 + (subst)_ZN4geos9operation5valid9IsValidOp24isNonRepeatedSizeAtLeastEPKNS_4geom10LineStringE{size_t}@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp25findHoleOutsideShellPointEPKNS_4geom10LinearRingES6_@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom10LineStringE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom10LinearRingE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom10MultiPointE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom12MultiPolygonE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom18GeometryCollectionE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom5PointE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp7isValidEPKNS_4geom7PolygonE@Base 3.10.0 + _ZN4geos9operation5valid9IsValidOp7isValidEv@Base 3.4.2 + _ZN4geos9operation5valid9MakeValid5buildEPKNS_4geom8GeometryE@Base 3.8.0 + _ZN4geos9operation6buffer11OffsetCurve12computeCurveEPKNS_4geom18CoordinateSequenceERSt6vectorIPS4_SaIS8_EE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve12computeCurveERKNS_4geom10LineStringEd@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve13offsetSegmentEPKNS_4geom18CoordinateSequenceEd@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve14extractSectionEPKNS_4geom18CoordinateSequenceEiRSt6vectorIbSaIbEERS7_INS3_10CoordinateESaISB_EE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve17getBufferOrientedERKNS_4geom10LineStringEdRNS1_16BufferParametersE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve18extractLongestHoleERKNS_4geom7PolygonE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve19subsegmentMatchFracERKNS_4geom10CoordinateES6_S6_S6_d@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve20markMatchingSegmentsERKNS_4geom10CoordinateES6_RNS1_14SegmentMCIndexEPKNS3_18CoordinateSequenceERSt6vectorIbSaIbEE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve21extractMaxAreaPolygonERKNS_4geom8GeometryE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve23MatchCurveSegmentAction6selectERKNS_4geom11LineSegmentE@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9operation6buffer11OffsetCurve23MatchCurveSegmentAction6selectERKNS_5index5chain13MonotoneChainEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos9operation6buffer11OffsetCurve23MatchCurveSegmentAction6selectERKNS_5index5chain13MonotoneChainEm@Base 3.11.1 + _ZN4geos9operation6buffer11OffsetCurve23MatchCurveSegmentActionD0Ev@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve23MatchCurveSegmentActionD1Ev@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve23MatchCurveSegmentActionD2Ev@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9operation6buffer11OffsetCurve4nextEjj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZN4geos9operation6buffer11OffsetCurve4nextEmm@Base 3.11.1 + _ZN4geos9operation6buffer11OffsetCurve8getCurveERKNS_4geom8GeometryEd@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve8getCurveERKNS_4geom8GeometryEdiNS1_16BufferParameters9JoinStyleEd@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve8getCurveEv@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve9rawOffsetERKNS_4geom10LineStringEdRNS1_16BufferParametersERSt6vectorIPNS3_18CoordinateSequenceESaISB_EE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer11OffsetCurve9rawOffsetERKNS_4geom10LineStringEdRSt6vectorIPNS3_18CoordinateSequenceESaIS9_EE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer13BufferBuilder10depthDeltaERKNS_9geomgraph5LabelE@Base 3.4.2 + _ZN4geos9operation6buffer13BufferBuilder14buildSubgraphsERKSt6vectorIPNS1_14BufferSubgraphESaIS5_EERNS0_7overlay14PolygonBuilderE@Base 3.4.2 + _ZN4geos9operation6buffer13BufferBuilder15createSubgraphsEPNS_9geomgraph11PlanarGraphERSt6vectorIPNS1_14BufferSubgraphESaIS8_EE@Base 3.4.2 + _ZN4geos9operation6buffer13BufferBuilder16insertUniqueEdgeEPNS_9geomgraph4EdgeE@Base 3.4.2 + _ZN4geos9operation6buffer13BufferBuilder17computeNodedEdgesERSt6vectorIPNS_6noding13SegmentStringESaIS6_EEPKNS_4geom14PrecisionModelE@Base 3.4.2 + _ZN4geos9operation6buffer13BufferBuilder21bufferLineSingleSidedEPKNS_4geom8GeometryEdb@Base 3.4.2 + _ZN4geos9operation6buffer13BufferBuilder6bufferEPKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos9operation6buffer13BufferBuilder8getNoderEPKNS_4geom14PrecisionModelE@Base 3.4.2 + _ZN4geos9operation6buffer13BufferBuilderD1Ev@Base 3.4.2 + _ZN4geos9operation6buffer13BufferBuilderD2Ev@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph11getEnvelopeEv@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph12addReachableEPNS_9geomgraph4NodeE@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph12computeDepthEi@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph13computeDepthsEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph13copySymDepthsEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph15findResultEdgesEv@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph16computeNodeDepthEPNS_9geomgraph4NodeE@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph17clearVisitedEdgesEv@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph3addEPNS_9geomgraph4NodeEPSt6vectorIS5_SaIS5_EE@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph6createEPNS_9geomgraph4NodeE@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph8containsERSt3setIPNS_9geomgraph4NodeESt4lessIS6_ESaIS6_EES6_@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraph9compareToEPS2_@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraphC1Ev@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraphC2Ev@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraphD1Ev@Base 3.4.2 + _ZN4geos9operation6buffer14BufferSubgraphD2Ev@Base 3.4.2 + _ZN4geos9operation6buffer14SegmentMCIndex10buildIndexEPKNS_4geom18CoordinateSequenceE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer14SegmentMCIndex5queryEPKNS_4geom8EnvelopeERNS_5index5chain25MonotoneChainSelectActionE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer14SegmentMCIndexC1EPKNS_4geom18CoordinateSequenceE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer14SegmentMCIndexC2EPKNS_4geom18CoordinateSequenceE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer16BufferParameters19DEFAULT_MITRE_LIMITE@Base 3.4.2 + _ZN4geos9operation6buffer16BufferParameters19bufferDistanceErrorEi@Base 3.4.2 + _ZN4geos9operation6buffer16BufferParameters19setQuadrantSegmentsEi@Base 3.4.2 + _ZN4geos9operation6buffer16BufferParametersC1Ei@Base 3.4.2 + _ZN4geos9operation6buffer16BufferParametersC1EiNS2_11EndCapStyleE@Base 3.4.2 + _ZN4geos9operation6buffer16BufferParametersC1EiNS2_11EndCapStyleENS2_9JoinStyleEd@Base 3.4.2 + _ZN4geos9operation6buffer16BufferParametersC1Ev@Base 3.4.2 + _ZN4geos9operation6buffer16BufferParametersC2Ei@Base 3.4.2 + _ZN4geos9operation6buffer16BufferParametersC2EiNS2_11EndCapStyleE@Base 3.4.2 + _ZN4geos9operation6buffer16BufferParametersC2EiNS2_11EndCapStyleENS2_9JoinStyleEd@Base 3.4.2 + _ZN4geos9operation6buffer16BufferParametersC2Ev@Base 3.4.2 + _ZN4geos9operation6buffer16BufferSubgraphGTEPNS1_14BufferSubgraphES3_@Base 3.4.2 + _ZN4geos9operation6buffer18OffsetCurveBuilder12getLineCurveEPKNS_4geom18CoordinateSequenceEdRSt6vectorIPS4_SaIS8_EE@Base 3.4.2 + _ZN4geos9operation6buffer18OffsetCurveBuilder12getRingCurveEPKNS_4geom18CoordinateSequenceEidRSt6vectorIPS4_SaIS8_EE@Base 3.4.2 + _ZN4geos9operation6buffer18OffsetCurveBuilder14getOffsetCurveEPKNS_4geom18CoordinateSequenceEdRSt6vectorIPS4_SaIS8_EE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer18OffsetCurveBuilder15SIMPLIFY_FACTORE@Base 3.4.2 + _ZN4geos9operation6buffer18OffsetCurveBuilder17computePointCurveERKNS_4geom10CoordinateERNS1_22OffsetSegmentGeneratorE@Base 3.4.2 + _ZN4geos9operation6buffer18OffsetCurveBuilder17isLineOffsetEmptyEd@Base 3.9.0 + _ZN4geos9operation6buffer18OffsetCurveBuilder17simplifyToleranceEd@Base 3.4.2 + _ZN4geos9operation6buffer18OffsetCurveBuilder22computeLineBufferCurveERKNS_4geom18CoordinateSequenceERNS1_22OffsetSegmentGeneratorE@Base 3.4.2 + _ZN4geos9operation6buffer18OffsetCurveBuilder22computeRingBufferCurveERKNS_4geom18CoordinateSequenceEiRNS1_22OffsetSegmentGeneratorE@Base 3.4.2 + _ZN4geos9operation6buffer18OffsetCurveBuilder23getSingleSidedLineCurveEPKNS_4geom18CoordinateSequenceEdRSt6vectorIPS4_SaIS8_EEbb@Base 3.4.2 + _ZN4geos9operation6buffer18OffsetCurveBuilder29computeSingleSidedBufferCurveERKNS_4geom18CoordinateSequenceEbRNS1_22OffsetSegmentGeneratorE@Base 3.4.2 + _ZN4geos9operation6buffer18OffsetCurveBuilder9getSegGenEd@Base 3.4.2 + (arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZN4geos9operation6buffer19OffsetSegmentString5addPtERKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9operation6buffer19RightmostEdgeFinder16getRightmostSideEPNS_9geomgraph12DirectedEdgeEi@Base 3.4.2 + _ZN4geos9operation6buffer19RightmostEdgeFinder23findRightmostEdgeAtNodeEv@Base 3.4.2 + _ZN4geos9operation6buffer19RightmostEdgeFinder25findRightmostEdgeAtVertexEv@Base 3.4.2 + _ZN4geos9operation6buffer19RightmostEdgeFinder25getRightmostSideOfSegmentEPNS_9geomgraph12DirectedEdgeEi@Base 3.4.2 + _ZN4geos9operation6buffer19RightmostEdgeFinder27checkForRightmostCoordinateEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 + _ZN4geos9operation6buffer19RightmostEdgeFinder8findEdgeEPSt6vectorIPNS_9geomgraph12DirectedEdgeESaIS6_EE@Base 3.4.2 + _ZN4geos9operation6buffer19RightmostEdgeFinderC1Ev@Base 3.4.2 + _ZN4geos9operation6buffer19RightmostEdgeFinderC2Ev@Base 3.4.2 + _ZN4geos9operation6buffer20SubgraphDepthLocater19findStabbedSegmentsERKNS_4geom10CoordinateEPNS_9geomgraph12DirectedEdgeERSt6vectorIPNS1_12DepthSegmentESaISC_EE@Base 3.4.2 + _ZN4geos9operation6buffer20SubgraphDepthLocater19findStabbedSegmentsERKNS_4geom10CoordinateEPSt6vectorIPNS_9geomgraph12DirectedEdgeESaISA_EERS7_IPNS1_12DepthSegmentESaISF_EE@Base 3.4.2 + _ZN4geos9operation6buffer20SubgraphDepthLocater19findStabbedSegmentsERKNS_4geom10CoordinateERSt6vectorIPNS1_12DepthSegmentESaIS9_EE@Base 3.4.2 + _ZN4geos9operation6buffer20SubgraphDepthLocater8getDepthERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation6buffer21BufferCurveSetBuilder10addPolygonEPKNS_4geom7PolygonE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder11addRingSideEPKNS_4geom18CoordinateSequenceEdiNS3_8LocationES7_@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder11maxDistanceEPKNS_4geom18CoordinateSequenceES6_@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder13addCollectionEPKNS_4geom18GeometryCollectionE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder13addLineStringEPKNS_4geom10LineStringE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder16addRingBothSidesEPKNS_4geom18CoordinateSequenceEd@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder18isErodedCompletelyEPKNS_4geom10LinearRingEd@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder19isRingCurveInvertedEPKNS_4geom18CoordinateSequenceEdS6_@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder26isTriangleErodedCompletelyEPKNS_4geom18CoordinateSequenceEd@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder3addERKNS_4geom8GeometryE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder8addCurveEPNS_4geom18CoordinateSequenceENS3_8LocationES6_@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder8addPointEPKNS_4geom5PointE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder9addCurvesERKSt6vectorIPNS_4geom18CoordinateSequenceESaIS6_EENS4_8LocationESB_@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilder9getCurvesEv@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilderD1Ev@Base 3.11.0~beta1 + _ZN4geos9operation6buffer21BufferCurveSetBuilderD2Ev@Base 3.11.0~beta1 + _ZN4geos9operation6buffer22OffsetSegmentGenerator12addBevelJoinERKNS_4geom11LineSegmentES6_@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator12addCollinearEb@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator12addMitreJoinERKNS_4geom10CoordinateERKNS3_11LineSegmentES9_d@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator12createCircleERKNS_4geom10CoordinateEd@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator12createSquareERKNS_4geom10CoordinateEd@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator13addInsideTurnEib@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator13addLineEndCapERKNS_4geom10CoordinateES6_@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator14addNextSegmentERKNS_4geom10CoordinateEb@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator14addOutsideTurnEib@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator15SIMPLIFY_FACTORE@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator16initSideSegmentsERKNS_4geom10CoordinateES6_i@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator17addDirectedFilletERKNS_4geom10CoordinateES6_S6_id@Base 3.9.0 + _ZN4geos9operation6buffer22OffsetSegmentGenerator17addDirectedFilletERKNS_4geom10CoordinateEddid@Base 3.9.0 + _ZN4geos9operation6buffer22OffsetSegmentGenerator19addLimitedMitreJoinERKNS_4geom11LineSegmentES6_dd@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator20computeOffsetSegmentERKNS_4geom11LineSegmentEidRS4_@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator32OFFSET_SEGMENT_SEPARATION_FACTORE@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator33CURVE_VERTEX_SNAP_DISTANCE_FACTORE@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator39INSIDE_TURN_VERTEX_SNAP_DISTANCE_FACTORE@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator4initEd@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGenerator6extendERKNS_4geom11LineSegmentEd@Base 3.11.0~beta1 + _ZN4geos9operation6buffer22OffsetSegmentGenerator7projectERKNS_4geom10CoordinateEdd@Base 3.11.0~beta1 + _ZN4geos9operation6buffer22OffsetSegmentGeneratorC1EPKNS_4geom14PrecisionModelERKNS1_16BufferParametersEd@Base 3.4.2 + _ZN4geos9operation6buffer22OffsetSegmentGeneratorC2EPKNS_4geom14PrecisionModelERKNS1_16BufferParametersEd@Base 3.4.2 + _ZN4geos9operation6buffer25BufferInputLineSimplifier24deleteShallowConcavitiesEv@Base 3.4.2 + _ZN4geos9operation6buffer25BufferInputLineSimplifier8simplifyERKNS_4geom18CoordinateSequenceEd@Base 3.4.2 + _ZN4geos9operation6buffer25BufferInputLineSimplifier8simplifyEd@Base 3.4.2 + _ZN4geos9operation6buffer25BufferInputLineSimplifierC1ERKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9operation6buffer25BufferInputLineSimplifierC2ERKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9operation6buffer8BufferOp12bufferByZeroEPKNS_4geom8GeometryEb@Base 3.10.0 + _ZN4geos9operation6buffer8BufferOp15computeGeometryEv@Base 3.4.2 + _ZN4geos9operation6buffer8BufferOp15extractPolygonsEPNS_4geom8GeometryERSt6vectorISt10unique_ptrIS4_St14default_deleteIS4_EESaISA_EE@Base 3.10.0 + _ZN4geos9operation6buffer8BufferOp17getResultGeometryEd@Base 3.4.2 + _ZN4geos9operation6buffer8BufferOp20bufferFixedPrecisionERKNS_4geom14PrecisionModelE@Base 3.4.2 + _ZN4geos9operation6buffer8BufferOp20precisionScaleFactorEPKNS_4geom8GeometryEdi@Base 3.4.2 + _ZN4geos9operation6buffer8BufferOp22bufferReducedPrecisionEi@Base 3.4.2 + _ZN4geos9operation6buffer8BufferOp22bufferReducedPrecisionEv@Base 3.4.2 + _ZN4geos9operation6buffer8BufferOp23bufferOriginalPrecisionEv@Base 3.4.2 + _ZN4geos9operation6buffer8BufferOp8bufferOpEPKNS_4geom8GeometryEdRNS1_16BufferParametersE@Base 3.11.0~beta1 + _ZN4geos9operation6buffer8BufferOp8bufferOpEPKNS_4geom8GeometryEdii@Base 3.4.2 + _ZN4geos9operation6buffer8BufferOpD1Ev@Base 3.10.0 + _ZN4geos9operation6buffer8BufferOpD2Ev@Base 3.10.0 + _ZN4geos9operation6bufferlsERSoRKNS1_14BufferSubgraphE@Base 3.4.2 + _ZN4geos9operation6relate10RelateNode17updateIMFromEdgesERNS_4geom18IntersectionMatrixE@Base 3.4.2 + _ZN4geos9operation6relate10RelateNode9computeIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 + _ZN4geos9operation6relate10RelateNodeC1ERKNS_4geom10CoordinateEPNS_9geomgraph11EdgeEndStarE@Base 3.4.2 + _ZN4geos9operation6relate10RelateNodeC2ERKNS_4geom10CoordinateEPNS_9geomgraph11EdgeEndStarE@Base 3.4.2 + _ZN4geos9operation6relate10RelateNodeD0Ev@Base 3.4.2 + _ZN4geos9operation6relate10RelateNodeD1Ev@Base 3.4.2 + _ZN4geos9operation6relate10RelateNodeD2Ev@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundle11getEdgeEndsEv@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundle12computeLabelERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundle14computeLabelOnEhRKNS_9algorithm16BoundaryNodeRuleE@Base 3.10.0 + _ZN4geos9operation6relate13EdgeEndBundle16computeLabelSideEhj@Base 3.10.0 + _ZN4geos9operation6relate13EdgeEndBundle17computeLabelSidesEh@Base 3.10.0 + _ZN4geos9operation6relate13EdgeEndBundle6insertEPNS_9geomgraph7EdgeEndE@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundle8updateIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundleC1EPNS_9geomgraph7EdgeEndE@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundleC2EPNS_9geomgraph7EdgeEndE@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundleD0Ev@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundleD1Ev@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundleD2Ev@Base 3.4.2 + _ZN4geos9operation6relate14EdgeEndBuilder15computeEdgeEndsEPNS_9geomgraph4EdgeEPSt6vectorIPNS3_7EdgeEndESaIS8_EE@Base 3.4.2 + _ZN4geos9operation6relate14EdgeEndBuilder15computeEdgeEndsEPSt6vectorIPNS_9geomgraph4EdgeESaIS6_EE@Base 3.4.2 + _ZN4geos9operation6relate14EdgeEndBuilder20createEdgeEndForNextEPNS_9geomgraph4EdgeEPSt6vectorIPNS3_7EdgeEndESaIS8_EEPKNS3_16EdgeIntersectionESE_@Base 3.8.0 + _ZN4geos9operation6relate14EdgeEndBuilder20createEdgeEndForPrevEPNS_9geomgraph4EdgeEPSt6vectorIPNS3_7EdgeEndESaIS8_EEPKNS3_16EdgeIntersectionESE_@Base 3.8.0 + _ZN4geos9operation6relate14RelateComputer14getBoundaryDimERKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.11.1 + _ZN4geos9operation6relate14RelateComputer14insertEdgeEndsEPSt6vectorIPNS_9geomgraph7EdgeEndESaIS6_EE@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer14labelNodeEdgesEv@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer17computeDisjointIMEPNS_4geom18IntersectionMatrixERKNS_9algorithm16BoundaryNodeRuleE@Base 3.11.1 + _ZN4geos9operation6relate14RelateComputer17labelIsolatedEdgeEPNS_9geomgraph4EdgeEhPKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos9operation6relate14RelateComputer17labelIsolatedNodeEPNS_9geomgraph4NodeEh@Base 3.10.0 + _ZN4geos9operation6relate14RelateComputer18copyNodesAndLabelsEh@Base 3.10.0 + _ZN4geos9operation6relate14RelateComputer18labelIsolatedEdgesEhh@Base 3.10.0 + _ZN4geos9operation6relate14RelateComputer18labelIsolatedNodesEv@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer22labelIntersectionNodesEh@Base 3.10.0 + _ZN4geos9operation6relate14RelateComputer24computeIntersectionNodesEh@Base 3.10.0 + _ZN4geos9operation6relate14RelateComputer27computeProperIntersectionIMEPNS_9geomgraph5index18SegmentIntersectorEPNS_4geom18IntersectionMatrixE@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer8updateIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer9computeIMEv@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputerC1EPSt6vectorIPNS_9geomgraph13GeometryGraphESaIS6_EE@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputerC2EPSt6vectorIPNS_9geomgraph13GeometryGraphESaIS6_EE@Base 3.4.2 + _ZN4geos9operation6relate15RelateNodeGraph10getNodeMapEv@Base 3.4.2 + _ZN4geos9operation6relate15RelateNodeGraph14insertEdgeEndsEPSt6vectorIPNS_9geomgraph7EdgeEndESaIS6_EE@Base 3.4.2 + _ZN4geos9operation6relate15RelateNodeGraph18copyNodesAndLabelsEPNS_9geomgraph13GeometryGraphEh@Base 3.10.0 + _ZN4geos9operation6relate15RelateNodeGraph24computeIntersectionNodesEPNS_9geomgraph13GeometryGraphEh@Base 3.10.0 + _ZN4geos9operation6relate15RelateNodeGraph5buildEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation6relate15RelateNodeGraphC1Ev@Base 3.4.2 + _ZN4geos9operation6relate15RelateNodeGraphC2Ev@Base 3.4.2 + _ZN4geos9operation6relate15RelateNodeGraphD0Ev@Base 3.4.2 + _ZN4geos9operation6relate15RelateNodeGraphD1Ev@Base 3.4.2 + _ZN4geos9operation6relate15RelateNodeGraphD2Ev@Base 3.4.2 + _ZN4geos9operation6relate17EdgeEndBundleStar6insertEPNS_9geomgraph7EdgeEndE@Base 3.4.2 + _ZN4geos9operation6relate17EdgeEndBundleStar8updateIMERNS_4geom18IntersectionMatrixE@Base 3.4.2 + _ZN4geos9operation6relate17EdgeEndBundleStarD0Ev@Base 3.4.2 + _ZN4geos9operation6relate17EdgeEndBundleStarD1Ev@Base 3.4.2 + _ZN4geos9operation6relate17EdgeEndBundleStarD2Ev@Base 3.4.2 + _ZN4geos9operation6relate17RelateNodeFactory8instanceEv@Base 3.4.2 + _ZN4geos9operation6relate17RelateNodeFactoryD0Ev@Base 3.4.2 + _ZN4geos9operation6relate17RelateNodeFactoryD1Ev@Base 3.4.2 + _ZN4geos9operation6relate17RelateNodeFactoryD2Ev@Base 3.4.2 + _ZN4geos9operation6relate8RelateOp21getIntersectionMatrixEv@Base 3.4.2 + _ZN4geos9operation6relate8RelateOp6relateEPKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation6relate8RelateOp6relateEPKNS_4geom8GeometryES6_RKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9operation6relate8RelateOpC1EPKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation6relate8RelateOpC1EPKNS_4geom8GeometryES6_RKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9operation6relate8RelateOpC2EPKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation6relate8RelateOpC2EPKNS_4geom8GeometryES6_RKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9operation6relate8RelateOpD0Ev@Base 3.4.2 + _ZN4geos9operation6relate8RelateOpD1Ev@Base 3.4.2 + _ZN4geos9operation6relate8RelateOpD2Ev@Base 3.4.2 + _ZN4geos9operation7overlay11LineBuilder10buildLinesENS1_9OverlayOp6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay11LineBuilder10propagateZEPNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9operation7overlay11LineBuilder12collectLinesENS1_9OverlayOp6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay11LineBuilder15collectLineEdgeEPNS_9geomgraph12DirectedEdgeENS1_9OverlayOp6OpCodeEPSt6vectorIPNS3_4EdgeESaISA_EE@Base 3.4.2 + _ZN4geos9operation7overlay11LineBuilder17labelIsolatedLineEPNS_9geomgraph4EdgeEh@Base 3.10.0 + _ZN4geos9operation7overlay11LineBuilder18labelIsolatedLinesEPSt6vectorIPNS_9geomgraph4EdgeESaIS6_EE@Base 3.4.2 + _ZN4geos9operation7overlay11LineBuilder20findCoveredLineEdgesEv@Base 3.4.2 + _ZN4geos9operation7overlay11LineBuilder24collectBoundaryTouchEdgeEPNS_9geomgraph12DirectedEdgeENS1_9OverlayOp6OpCodeEPSt6vectorIPNS3_4EdgeESaISA_EE@Base 3.4.2 + _ZN4geos9operation7overlay11LineBuilder5buildENS1_9OverlayOp6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay11LineBuilderC1EPNS1_9OverlayOpEPKNS_4geom15GeometryFactoryEPNS_9algorithm12PointLocatorE@Base 3.4.2 + _ZN4geos9operation7overlay11LineBuilderC2EPNS1_9OverlayOpEPKNS_4geom15GeometryFactoryEPNS_9algorithm12PointLocatorE@Base 3.4.2 + _ZN4geos9operation7overlay12EdgeSetNoder13getNodedEdgesEv@Base 3.4.2 + _ZN4geos9operation7overlay12EdgeSetNoder8addEdgesEPSt6vectorIPNS_9geomgraph4EdgeESaIS6_EE@Base 3.4.2 + _ZN4geos9operation7overlay12PointBuilder24filterCoveredNodeToPointEPKNS_9geomgraph4NodeE@Base 3.4.2 + _ZN4geos9operation7overlay12PointBuilder28extractNonCoveredResultNodesENS1_9OverlayOp6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay12PointBuilder5buildENS1_9OverlayOp6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilder11getPolygonsEv@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilder14placeFreeHolesERSt6vectorINS2_11FastPIPRingESaIS4_EERS3_IPNS_9geomgraph8EdgeRingESaISA_EE@Base 3.8.0 + _ZN4geos9operation7overlay14PolygonBuilder15computePolygonsERSt6vectorIPNS_9geomgraph8EdgeRingESaIS6_EE@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilder17placePolygonHolesEPNS_9geomgraph8EdgeRingEPSt6vectorIPNS1_15MinimalEdgeRingESaIS8_EE@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilder18sortShellsAndHolesERSt6vectorIPNS1_15MaximalEdgeRingESaIS5_EERS3_IPNS_9geomgraph8EdgeRingESaISB_EESE_@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilder21buildMaximalEdgeRingsEPKSt6vectorIPNS_9geomgraph12DirectedEdgeESaIS6_EERS3_IPNS1_15MaximalEdgeRingESaISC_EE@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilder21buildMinimalEdgeRingsERSt6vectorIPNS1_15MaximalEdgeRingESaIS5_EERS3_IPNS_9geomgraph8EdgeRingESaISB_EESE_S8_@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilder22findEdgeRingContainingEPNS_9geomgraph8EdgeRingERSt6vectorINS2_11FastPIPRingESaIS7_EE@Base 3.8.0 + _ZN4geos9operation7overlay14PolygonBuilder3addEPKSt6vectorIPNS_9geomgraph12DirectedEdgeESaIS6_EEPKS3_IPNS4_4NodeESaISC_EE@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilder3addEPNS_9geomgraph11PlanarGraphE@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilder9findShellEPSt6vectorIPNS1_15MinimalEdgeRingESaIS5_EE@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilderC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilderC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilderD1Ev@Base 3.4.2 + _ZN4geos9operation7overlay14PolygonBuilderD2Ev@Base 3.4.2 + _ZN4geos9operation7overlay15ElevationMatrix3addEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation7overlay15ElevationMatrix3addERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation7overlay15ElevationMatrix7getCellERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation7overlay15ElevationMatrixC1ERKNS_4geom8EnvelopeEjj@Base 3.4.2 + _ZN4geos9operation7overlay15ElevationMatrixC2ERKNS_4geom8EnvelopeEjj@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRing11setEdgeRingEPNS_9geomgraph12DirectedEdgeEPNS3_8EdgeRingE@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRing17buildMinimalRingsERSt6vectorIPNS1_15MinimalEdgeRingESaIS5_EE@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRing17buildMinimalRingsERSt6vectorIPNS_9geomgraph8EdgeRingESaIS6_EE@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRing17buildMinimalRingsEv@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRing36linkDirectedEdgesForMinimalEdgeRingsEv@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRing7getNextEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRingC1EPNS_9geomgraph12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRingC2EPNS_9geomgraph12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRingD0Ev@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRingD1Ev@Base 3.4.2 + _ZN4geos9operation7overlay15MaximalEdgeRingD2Ev@Base 3.4.2 + _ZN4geos9operation7overlay15MinimalEdgeRing11setEdgeRingEPNS_9geomgraph12DirectedEdgeEPNS3_8EdgeRingE@Base 3.4.2 + _ZN4geos9operation7overlay15MinimalEdgeRing7getNextEPNS_9geomgraph12DirectedEdgeE@Base 3.4.2 + _ZN4geos9operation7overlay15MinimalEdgeRingC1EPNS_9geomgraph12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation7overlay15MinimalEdgeRingC2EPNS_9geomgraph12DirectedEdgeEPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation7overlay15MinimalEdgeRingD0Ev@Base 3.4.2 + _ZN4geos9operation7overlay15MinimalEdgeRingD1Ev@Base 3.4.2 + _ZN4geos9operation7overlay15MinimalEdgeRingD2Ev@Base 3.4.2 + _ZN4geos9operation7overlay18OverlayNodeFactory8instanceEv@Base 3.4.2 + _ZN4geos9operation7overlay18OverlayNodeFactoryD0Ev@Base 3.4.2 + _ZN4geos9operation7overlay18OverlayNodeFactoryD1Ev@Base 3.4.2 + _ZN4geos9operation7overlay18OverlayNodeFactoryD2Ev@Base 3.4.2 + _ZN4geos9operation7overlay19ElevationMatrixCell3addERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation7overlay19ElevationMatrixCell3addEd@Base 3.4.2 + _ZN4geos9operation7overlay19ElevationMatrixCellC1Ev@Base 3.4.2 + _ZN4geos9operation7overlay19ElevationMatrixCellC2Ev@Base 3.4.2 + _ZN4geos9operation7overlay21ElevationMatrixFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation7overlay21ElevationMatrixFilterC1ERNS1_15ElevationMatrixE@Base 3.4.2 + _ZN4geos9operation7overlay21ElevationMatrixFilterC2ERNS1_15ElevationMatrixE@Base 3.4.2 + _ZN4geos9operation7overlay21ElevationMatrixFilterD0Ev@Base 3.4.2 + _ZN4geos9operation7overlay21ElevationMatrixFilterD1Ev@Base 3.4.2 + _ZN4geos9operation7overlay21ElevationMatrixFilterD2Ev@Base 3.4.2 + _ZN4geos9operation7overlay4snap13SnapOverlayOp13prepareResultERNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation7overlay4snap13SnapOverlayOp16removeCommonBitsERKNS_4geom8GeometryES7_RNS4_11GeomPtrPairE@Base 3.4.2 + _ZN4geos9operation7overlay4snap13SnapOverlayOp17getResultGeometryENS1_9OverlayOp6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay4snap13SnapOverlayOp20computeSnapToleranceEv@Base 3.4.2 + _ZN4geos9operation7overlay4snap13SnapOverlayOp4snapERNS_4geom11GeomPtrPairE@Base 3.4.2 + _ZN4geos9operation7overlay4snap15GeometrySnapper10snapToSelfERKNS_4geom8GeometryEdb@Base 3.4.2 + _ZN4geos9operation7overlay4snap15GeometrySnapper10snapToSelfEdb@Base 3.4.2 + _ZN4geos9operation7overlay4snap15GeometrySnapper19snapPrecisionFactorE@Base 3.4.2 + _ZN4geos9operation7overlay4snap15GeometrySnapper24extractTargetCoordinatesERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation7overlay4snap15GeometrySnapper27computeOverlaySnapToleranceERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation7overlay4snap15GeometrySnapper27computeOverlaySnapToleranceERKNS_4geom8GeometryES7_@Base 3.4.2 + _ZN4geos9operation7overlay4snap15GeometrySnapper29computeSizeBasedSnapToleranceERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation7overlay4snap15GeometrySnapper4snapERKNS_4geom8GeometryES7_dRNS4_11GeomPtrPairE@Base 3.4.2 + _ZN4geos9operation7overlay4snap15GeometrySnapper6snapToERKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos9operation7overlay4snap15SnapTransformer20transformCoordinatesEPKNS_4geom18CoordinateSequenceEPKNS4_8GeometryE@Base 3.4.2 + (arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZN4geos9operation7overlay4snap15SnapTransformer8snapLineEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 + _ZN4geos9operation7overlay4snap15SnapTransformerD0Ev@Base 3.4.2 + _ZN4geos9operation7overlay4snap15SnapTransformerD1Ev@Base 3.4.2 + _ZN4geos9operation7overlay4snap15SnapTransformerD2Ev@Base 3.4.2 + _ZN4geos9operation7overlay4snap17LineStringSnapper12snapSegmentsERNS_4geom14CoordinateListERKSt6vectorIPKNS4_10CoordinateESaISA_EE@Base 3.4.2 + _ZN4geos9operation7overlay4snap17LineStringSnapper12snapVerticesERNS_4geom14CoordinateListERKSt6vectorIPKNS4_10CoordinateESaISA_EE@Base 3.4.2 + _ZN4geos9operation7overlay4snap17LineStringSnapper16findVertexToSnapERKNS_4geom10CoordinateESt14_List_iteratorIS5_ES9_@Base 3.4.2 + _ZN4geos9operation7overlay4snap17LineStringSnapper17findSegmentToSnapERKNS_4geom10CoordinateESt14_List_iteratorIS5_ES9_@Base 3.4.2 + _ZN4geos9operation7overlay4snap17LineStringSnapper17findSnapForVertexERKNS_4geom10CoordinateERKSt6vectorIPS6_SaIS9_EE@Base 3.4.2 + _ZN4geos9operation7overlay4snap17LineStringSnapper6snapToERKSt6vectorIPKNS_4geom10CoordinateESaIS8_EE@Base 3.4.2 + _ZN4geos9operation7overlay8validate17FuzzyPointLocator11getLineWorkERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation7overlay8validate17FuzzyPointLocator11getLocationERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation7overlay8validate17FuzzyPointLocator15extractLineWorkERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation7overlay8validate17FuzzyPointLocatorC1ERKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos9operation7overlay8validate17FuzzyPointLocatorC2ERKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos9operation7overlay8validate20OffsetPointGenerator13extractPointsEPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation7overlay8validate20OffsetPointGenerator14computeOffsetsERKNS_4geom10CoordinateES7_@Base 3.4.2 + _ZN4geos9operation7overlay8validate20OffsetPointGenerator9getPointsEv@Base 3.4.2 + _ZN4geos9operation7overlay8validate20OffsetPointGeneratorC1ERKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos9operation7overlay8validate20OffsetPointGeneratorC2ERKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos9operation7overlay8validate22OverlayResultValidator10addTestPtsERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation7overlay8validate22OverlayResultValidator11addVerticesERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation7overlay8validate22OverlayResultValidator13isValidResultENS1_9OverlayOp6OpCodeERSt6vectorINS_4geom8LocationESaIS8_EE@Base 3.8.0 + _ZN4geos9operation7overlay8validate22OverlayResultValidator32computeBoundaryDistanceToleranceERKNS_4geom8GeometryES7_@Base 3.4.2 + _ZN4geos9operation7overlay8validate22OverlayResultValidator7isValidENS1_9OverlayOp6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay8validate22OverlayResultValidator7isValidERKNS_4geom8GeometryES7_NS1_9OverlayOp6OpCodeES7_@Base 3.4.2 + _ZN4geos9operation7overlay8validate22OverlayResultValidator9testValidENS1_9OverlayOp6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay8validate22OverlayResultValidator9testValidENS1_9OverlayOp6OpCodeERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation7overlay8validate22OverlayResultValidatorC1ERKNS_4geom8GeometryES7_S7_@Base 3.4.2 + _ZN4geos9operation7overlay8validate22OverlayResultValidatorC2ERKNS_4geom8GeometryES7_S7_@Base 3.4.2 + _ZN4geos9operation7overlay8validate22OverlayResultValidatorD1Ev@Base 3.8.1 + _ZN4geos9operation7overlay8validate22OverlayResultValidatorD2Ev@Base 3.8.1 + _ZN4geos9operation7overlay9OverlayOp10copyPointsEhPKNS_4geom8EnvelopeE@Base 3.10.0 + _ZN4geos9operation7overlay9OverlayOp11getAverageZEPKNS_4geom7PolygonE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp11getAverageZEh@Base 3.10.0 + _ZN4geos9operation7overlay9OverlayOp12isCoveredByAERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp12isResultOfOpENS_4geom8LocationES4_NS2_6OpCodeE@Base 3.8.0 + _ZN4geos9operation7overlay9OverlayOp12isResultOfOpERKNS_9geomgraph5LabelENS2_6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp13isCoveredByLAERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp14computeOverlayENS2_6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp14mergeSymLabelsEv@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp15computeGeometryEPSt6vectorIPNS_4geom5PointESaIS6_EEPS3_IPNS4_10LineStringESaISB_EEPS3_IPNS4_7PolygonESaISG_EENS2_6OpCodeE@Base 3.8.0 + _ZN4geos9operation7overlay9OverlayOp15resultDimensionENS2_6OpCodeEPKNS_4geom8GeometryES7_@Base 3.8.0 + _ZN4geos9operation7overlay9OverlayOp16computeLabellingEv@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp16insertUniqueEdgeEPNS_9geomgraph4EdgeE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp17createEmptyResultENS2_6OpCodeEPKNS_4geom8GeometryES7_PKNS4_15GeometryFactoryE@Base 3.8.0 + _ZN4geos9operation7overlay9OverlayOp17getResultGeometryENS2_6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp17insertUniqueEdgesEPSt6vectorIPNS_9geomgraph4EdgeESaIS6_EEPKNS_4geom8EnvelopeE@Base 3.5.0 + _ZN4geos9operation7overlay9OverlayOp19findResultAreaEdgesENS2_6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp19labelIncompleteNodeEPNS_9geomgraph4NodeEh@Base 3.10.0 + _ZN4geos9operation7overlay9OverlayOp19updateNodeLabellingEv@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp20labelIncompleteNodesEv@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp21replaceCollapsedEdgesEv@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp23computeLabelsFromDepthsEv@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp25checkObviouslyWrongResultENS2_6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp26cancelDuplicateResultEdgesEv@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp9isCoveredERKNS_4geom10CoordinateEPSt6vectorIPNS3_10LineStringESaIS9_EE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp9isCoveredERKNS_4geom10CoordinateEPSt6vectorIPNS3_7PolygonESaIS9_EE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp9isCoveredERKNS_4geom10CoordinateEPSt6vectorIPNS3_8GeometryESaIS9_EE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp9overlayOpEPKNS_4geom8GeometryES6_NS2_6OpCodeE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOpC1EPKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOpC2EPKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOpD0Ev@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOpD1Ev@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOpD2Ev@Base 3.4.2 + (subst)_ZN4geos9operation8distance10DistanceOp13computeInsideERSt6vectorISt10unique_ptrINS1_16GeometryLocationESt14default_deleteIS5_EESaIS8_EERKS3_IPKNS_4geom7PolygonESaISF_EERSt5arrayIS8_L{size_t}2EE@Base 3.8.0 + _ZN4geos9operation8distance10DistanceOp13nearestPointsEPKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOp13nearestPointsEv@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOp16isWithinDistanceERKNS_4geom8GeometryES6_d@Base 3.4.2 + (subst)_ZN4geos9operation8distance10DistanceOp17updateMinDistanceERSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteIS5_EEL{size_t}2EEb@Base 3.8.0 + (subst)_ZN4geos9operation8distance10DistanceOp18computeMinDistanceEPKNS_4geom10LineStringEPKNS3_5PointERSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteISC_EEL{size_t}2EE@Base 3.8.0 + (subst)_ZN4geos9operation8distance10DistanceOp18computeMinDistanceEPKNS_4geom10LineStringES6_RSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteIS9_EEL{size_t}2EE@Base 3.8.0 + _ZN4geos9operation8distance10DistanceOp18computeMinDistanceEv@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOp20computeFacetDistanceEv@Base 3.4.2 + (subst)_ZN4geos9operation8distance10DistanceOp23computeMinDistanceLinesERKSt6vectorIPKNS_4geom10LineStringESaIS7_EESB_RSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteISE_EEL{size_t}2EE@Base 3.8.0 + (subst)_ZN4geos9operation8distance10DistanceOp24computeMinDistancePointsERKSt6vectorIPKNS_4geom5PointESaIS7_EESB_RSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteISE_EEL{size_t}2EE@Base 3.8.0 + _ZN4geos9operation8distance10DistanceOp26computeContainmentDistanceEv@Base 3.4.2 + (subst)_ZN4geos9operation8distance10DistanceOp29computeMinDistanceLinesPointsERKSt6vectorIPKNS_4geom10LineStringESaIS7_EERKS3_IPKNS4_5PointESaISE_EERSt5arrayISt10unique_ptrINS1_16GeometryLocationESt14default_deleteISL_EEL{size_t}2EE@Base 3.8.0 + _ZN4geos9operation8distance10DistanceOp8distanceEPKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOp8distanceERKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOp8distanceEv@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOpC1EPKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOpC1ERKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOpC1ERKNS_4geom8GeometryES6_d@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOpC2EPKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOpC2ERKNS_4geom8GeometryES6_@Base 3.4.2 + _ZN4geos9operation8distance10DistanceOpC2ERKNS_4geom8GeometryES6_d@Base 3.4.2 + _ZN4geos9operation8distance13FacetSequence15computeEnvelopeEv@Base 3.6.0 + (subst)_ZN4geos9operation8distance13FacetSequenceC1EPKNS_4geom18CoordinateSequenceE{size_t}{size_t}@Base 3.6.0 + (subst)_ZN4geos9operation8distance13FacetSequenceC1EPKNS_4geom8GeometryEPKNS3_18CoordinateSequenceE{size_t}{size_t}@Base 3.8.0 + (subst)_ZN4geos9operation8distance13FacetSequenceC2EPKNS_4geom18CoordinateSequenceE{size_t}{size_t}@Base 3.6.0 + (subst)_ZN4geos9operation8distance13FacetSequenceC2EPKNS_4geom8GeometryEPKNS3_18CoordinateSequenceE{size_t}{size_t}@Base 3.8.0 + _ZN4geos9operation8distance16GeometryLocation12isInsideAreaEv@Base 3.4.2 + _ZN4geos9operation8distance16GeometryLocation13getCoordinateEv@Base 3.4.2 + _ZN4geos9operation8distance16GeometryLocation15getSegmentIndexEv@Base 3.4.2 + _ZN4geos9operation8distance16GeometryLocation20getGeometryComponentEv@Base 3.4.2 + _ZN4geos9operation8distance16GeometryLocation8toStringB5cxx11Ev@Base 3.8.0 + _ZN4geos9operation8distance16GeometryLocationC1EPKNS_4geom8GeometryERKNS3_10CoordinateE@Base 3.4.2 + (subst)_ZN4geos9operation8distance16GeometryLocationC1EPKNS_4geom8GeometryE{size_t}RKNS3_10CoordinateE@Base 3.8.0 + _ZN4geos9operation8distance16GeometryLocationC2EPKNS_4geom8GeometryERKNS3_10CoordinateE@Base 3.4.2 + (subst)_ZN4geos9operation8distance16GeometryLocationC2EPKNS_4geom8GeometryE{size_t}RKNS3_10CoordinateE@Base 3.8.0 + _ZN4geos9operation8distance20IndexedFacetDistance13nearestPointsEPKNS_4geom8GeometryES6_@Base 3.8.0 + _ZN4geos9operation8distance20IndexedFacetDistance8distanceEPKNS_4geom8GeometryES6_@Base 3.7.0 + _ZN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeC1EOSt6vectorINS1_13FacetSequenceESaIS5_EE@Base 3.10.0 + _ZN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeC2EOSt6vectorINS1_13FacetSequenceESaIS5_EE@Base 3.10.0 + _ZN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeD0Ev@Base 3.9.0 + _ZN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeD1Ev@Base 3.9.0 + _ZN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeD2Ev@Base 3.9.0 + _ZN4geos9operation8distance24FacetSequenceTreeBuilder17addFacetSequencesEPKNS_4geom8GeometryEPKNS3_18CoordinateSequenceERSt6vectorINS1_13FacetSequenceESaISB_EE@Base 3.9.0 + _ZN4geos9operation8distance24FacetSequenceTreeBuilder21computeFacetSequencesEPKNS_4geom8GeometryE@Base 3.6.0 + _ZN4geos9operation8distance24FacetSequenceTreeBuilder5buildEPKNS_4geom8GeometryE@Base 3.6.0 + _ZN4geos9operation8distance27ConnectedElementPointFilter14getCoordinatesEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation8distance27ConnectedElementPointFilter9filter_roEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation8distance27ConnectedElementPointFilterD0Ev@Base 3.4.2 + _ZN4geos9operation8distance27ConnectedElementPointFilterD1Ev@Base 3.4.2 + _ZN4geos9operation8distance27ConnectedElementPointFilterD2Ev@Base 3.4.2 + _ZN4geos9operation8distance30ConnectedElementLocationFilter12getLocationsEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation8distance30ConnectedElementLocationFilter9filter_roEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation8distance30ConnectedElementLocationFilter9filter_rwEPNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation8distance30ConnectedElementLocationFilterD0Ev@Base 3.4.2 + _ZN4geos9operation8distance30ConnectedElementLocationFilterD1Ev@Base 3.4.2 + _ZN4geos9operation8distance30ConnectedElementLocationFilterD2Ev@Base 3.4.2 + _ZN4geos9operation8geounion12OverlapUnion11unionBufferEPKNS_4geom8GeometryES6_@Base 3.8.0 + _ZN4geos9operation8geounion12OverlapUnion15overlapEnvelopeEPKNS_4geom8GeometryES6_@Base 3.8.0 + _ZN4geos9operation8geounion12OverlapUnion17extractByEnvelopeERKNS_4geom8EnvelopeEPKNS3_8GeometryERSt6vectorISt10unique_ptrIS7_St14default_deleteIS7_EESaISE_EE@Base 3.8.0 + _ZN4geos9operation8geounion12OverlapUnion20isBorderSegmentsSameEPKNS_4geom8GeometryERKNS3_8EnvelopeE@Base 3.8.0 + _ZN4geos9operation8geounion12OverlapUnion21extractBorderSegmentsEPKNS_4geom8GeometryERKNS3_8EnvelopeERSt6vectorINS3_11LineSegmentESaISB_EE@Base 3.8.1 + _ZN4geos9operation8geounion12OverlapUnion21extractBorderSegmentsEPKNS_4geom8GeometryES6_RKNS3_8EnvelopeE@Base 3.8.0 + _ZN4geos9operation8geounion12OverlapUnion7combineERSt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EERSt6vectorIS8_SaIS8_EE@Base 3.8.0 + _ZN4geos9operation8geounion12OverlapUnion7doUnionEv@Base 3.8.0 + _ZN4geos9operation8geounion12OverlapUnion7isEqualERSt6vectorINS_4geom11LineSegmentESaIS5_EES8_@Base 3.8.1 + _ZN4geos9operation8geounion12OverlapUnion9unionFullEPKNS_4geom8GeometryES6_@Base 3.8.0 + (optional=templinst)_ZN4geos9operation8geounion12UnaryUnionOp12extractGeomsISt6vectorIPKNS_4geom8GeometryESaIS8_EEEEvRKT_@Base 3.10.0 + _ZN4geos9operation8geounion12UnaryUnionOp13unionWithNullESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EES8_@Base 3.7.0 + _ZN4geos9operation8geounion12UnaryUnionOp5UnionEv@Base 3.4.2 + _ZN4geos9operation8geounion12UnaryUnionOp7extractERKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation8geounion13CoverageUnion10polygonizeEPKNS_4geom15GeometryFactoryE@Base 3.8.0 + _ZN4geos9operation8geounion13CoverageUnion15extractSegmentsEPKNS_4geom10LineStringE@Base 3.8.0 + _ZN4geos9operation8geounion13CoverageUnion15extractSegmentsEPKNS_4geom7PolygonE@Base 3.8.0 + _ZN4geos9operation8geounion13CoverageUnion15extractSegmentsEPKNS_4geom8GeometryE@Base 3.8.0 + _ZN4geos9operation8geounion13CoverageUnion5UnionEPKNS_4geom8GeometryE@Base 3.8.0 + _ZN4geos9operation8geounion13UnionStrategy5UnionEOSt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EES9_@Base 3.10.0 + _ZN4geos9operation8geounion18PointGeometryUnion5UnionERKNS_4geom8GeometryES6_@Base 3.8.0 + _ZN4geos9operation8geounion18PointGeometryUnionC1ERKNS_4geom8GeometryES6_@Base 3.8.0 + _ZN4geos9operation8geounion18PointGeometryUnionC2ERKNS_4geom8GeometryES6_@Base 3.8.0 + (subst)_ZN4geos9operation8geounion20CascadedPolygonUnion11binaryUnionERKSt6vectorIPKNS_4geom8GeometryESaIS7_EE{size_t}{size_t}@Base 3.10.0 + _ZN4geos9operation8geounion20CascadedPolygonUnion18restrictToPolygonsESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EE@Base 3.7.0 + _ZN4geos9operation8geounion20CascadedPolygonUnion5UnionEPKNS_4geom12MultiPolygonE@Base 3.4.2 + _ZN4geos9operation8geounion20CascadedPolygonUnion5UnionEPSt6vectorIPNS_4geom7PolygonESaIS6_EE@Base 3.4.2 + _ZN4geos9operation8geounion20CascadedPolygonUnion5UnionEPSt6vectorIPNS_4geom7PolygonESaIS6_EEPNS1_13UnionStrategyE@Base 3.9.0 + _ZN4geos9operation8geounion20CascadedPolygonUnion5UnionEv@Base 3.4.2 + _ZN4geos9operation8geounion20CascadedPolygonUnion9unionSafeEOSt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EES9_@Base 3.10.0 + _ZN4geos9operation8geounion20ClassicUnionStrategy21unionPolygonsByBufferEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation8geounion20ClassicUnionStrategy5UnionEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation8geounion20ClassicUnionStrategyD0Ev@Base 3.9.0 + _ZN4geos9operation8geounion20ClassicUnionStrategyD1Ev@Base 3.9.0 + _ZN4geos9operation8geounion20ClassicUnionStrategyD2Ev@Base 3.9.0 + _ZN4geos9operation9linemerge10EdgeString12toLineStringEv@Base 3.4.2 + _ZN4geos9operation9linemerge10EdgeString14getCoordinatesEv@Base 3.4.2 + _ZN4geos9operation9linemerge10EdgeString3addEPNS1_21LineMergeDirectedEdgeE@Base 3.4.2 + _ZN4geos9operation9linemerge10EdgeStringC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation9linemerge10EdgeStringC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMerger20getMergedLineStringsEv@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMerger26buildEdgeStringsStartingAtEPNS_11planargraph4NodeE@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMerger27buildEdgeStringStartingWithEPNS1_21LineMergeDirectedEdgeE@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMerger32buildEdgeStringsForIsolatedLoopsEv@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMerger34buildEdgeStringsForNonDegree2NodesEv@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMerger35buildEdgeStringsForUnprocessedNodesEv@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMerger36buildEdgeStringsForObviousStartNodesEv@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMerger3addEPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMerger3addEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMerger3addEPSt6vectorIPKNS_4geom8GeometryESaIS7_EE@Base 3.8.0 + _ZN4geos9operation9linemerge10LineMerger5mergeEv@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMergerC1Eb@Base 3.11.0~beta1 + _ZN4geos9operation9linemerge10LineMergerC2Eb@Base 3.11.0~beta1 + _ZN4geos9operation9linemerge10LineMergerD1Ev@Base 3.4.2 + _ZN4geos9operation9linemerge10LineMergerD2Ev@Base 3.4.2 + _ZN4geos9operation9linemerge13LineMergeEdgeC1EPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation9linemerge13LineMergeEdgeC2EPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation9linemerge13LineMergeEdgeD0Ev@Base 3.4.2 + _ZN4geos9operation9linemerge13LineMergeEdgeD1Ev@Base 3.4.2 + _ZN4geos9operation9linemerge13LineMergeEdgeD2Ev@Base 3.4.2 + _ZN4geos9operation9linemerge13LineSequencer11hasSequenceERNS_11planargraph8SubgraphE@Base 3.4.2 + _ZN4geos9operation9linemerge13LineSequencer11isSequencedEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation9linemerge13LineSequencer12findSequenceB5cxx11ERNS_11planargraph8SubgraphE@Base 3.5.1 + _ZN4geos9operation9linemerge13LineSequencer13findSequencesB5cxx11Ev@Base 3.5.1 + _ZN4geos9operation9linemerge13LineSequencer15computeSequenceEv@Base 3.4.2 + _ZN4geos9operation9linemerge13LineSequencer17addReverseSubpathEPKNS_11planargraph12DirectedEdgeERNSt7__cxx114listIPS4_SaIS9_EEESt14_List_iteratorIS9_Eb@Base 3.5.1 + _ZN4geos9operation9linemerge13LineSequencer20findLowestDegreeNodeERKNS_11planargraph8SubgraphE@Base 3.4.2 + _ZN4geos9operation9linemerge13LineSequencer22buildSequencedGeometryERKSt6vectorIPNSt7__cxx114listIPNS_11planargraph12DirectedEdgeESaIS8_EEESaISB_EE@Base 3.5.1 + _ZN4geos9operation9linemerge13LineSequencer27findUnvisitedBestOrientedDEEPKNS_11planargraph4NodeE@Base 3.4.2 + _ZN4geos9operation9linemerge13LineSequencer6delAllERSt6vectorIPNSt7__cxx114listIPNS_11planargraph12DirectedEdgeESaIS8_EEESaISB_EE@Base 3.5.1 + _ZN4geos9operation9linemerge13LineSequencer6orientEPNSt7__cxx114listIPNS_11planargraph12DirectedEdgeESaIS7_EEE@Base 3.5.1 + _ZN4geos9operation9linemerge13LineSequencer7addLineEPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation9linemerge13LineSequencer7reverseERNSt7__cxx114listIPNS_11planargraph12DirectedEdgeESaIS7_EEE@Base 3.5.1 + _ZN4geos9operation9linemerge14LineMergeGraph7addEdgeEPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation9linemerge14LineMergeGraph7getNodeERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation9linemerge14LineMergeGraphD0Ev@Base 3.4.2 + _ZN4geos9operation9linemerge14LineMergeGraphD1Ev@Base 3.4.2 + _ZN4geos9operation9linemerge14LineMergeGraphD2Ev@Base 3.4.2 + _ZN4geos9operation9linemerge21LineMergeDirectedEdge7getNextEb@Base 3.11.0~beta1 + _ZN4geos9operation9linemerge21LineMergeDirectedEdgeC1EPNS_11planargraph4NodeES5_RKNS_4geom10CoordinateEb@Base 3.4.2 + _ZN4geos9operation9linemerge21LineMergeDirectedEdgeC2EPNS_11planargraph4NodeES5_RKNS_4geom10CoordinateEb@Base 3.4.2 + _ZN4geos9operation9linemerge21LineMergeDirectedEdgeD0Ev@Base 3.4.2 + _ZN4geos9operation9linemerge21LineMergeDirectedEdgeD1Ev@Base 3.4.2 + _ZN4geos9operation9linemerge21LineMergeDirectedEdgeD2Ev@Base 3.4.2 + _ZN4geos9operation9linemerge25LMGeometryComponentFilterD0Ev@Base 3.4.2 + _ZN4geos9operation9linemerge25LMGeometryComponentFilterD1Ev@Base 3.4.2 + _ZN4geos9operation9linemerge25LMGeometryComponentFilterD2Ev@Base 3.4.2 + _ZN4geos9operation9overlayng10EdgeMerger5mergeERSt6vectorIPNS1_4EdgeESaIS5_EE@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder13degreeOfLinesEPNS1_11OverlayEdgeE@Base 3.10.0 + _ZN4geos9operation9overlayng11LineBuilder14addResultLinesEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder15markResultLinesEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder17effectiveLocationEPKNS1_12OverlayLabelEh@Base 3.10.0 + _ZN4geos9operation9overlayng11LineBuilder19addResultLinesRingsEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder20addResultLinesMergedEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder21nextLineEdgeUnvisitedEPNS1_11OverlayEdgeE@Base 3.10.0 + _ZN4geos9operation9overlayng11LineBuilder22addResultLinesForNodesEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder8getLinesEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder9buildLineEPNS1_11OverlayEdgeE@Base 3.9.0 + _ZN4geos9operation9overlayng11LineLimiter10addOutsideEPKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos9operation9overlayng11LineLimiter12startSectionEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineLimiter13finishSectionEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineLimiter13isSectionOpenEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineLimiter25isLastSegmentIntersectingEPKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos9operation9overlayng11LineLimiter5limitEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 + _ZN4geos9operation9overlayng11LineLimiter8addPointEPKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge22getCoordinatesOrientedEv@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdgeD0Ev@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdgeD1Ev@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdgeD2Ev@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil10isDisjointEPKNS_4geom8EnvelopeES6_PKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil10isFloatingEPKNS_4geom14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil13isEmptyResultEiPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil13isEnvDisjointEPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil14resultEnvelopeEiPKNS1_13InputGeometryEPKNS_4geom14PrecisionModelERNS6_8EnvelopeE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil15resultDimensionEiii@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil16clippingEnvelopeEiPKNS1_13InputGeometryEPKNS_4geom14PrecisionModelERNS6_8EnvelopeE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil17createEmptyResultEiPKNS_4geom15GeometryFactoryE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil18safeExpandDistanceEPKNS_4geom8EnvelopeEPKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil20createResultGeometryERSt6vectorISt10unique_ptrINS_4geom7PolygonESt14default_deleteIS6_EESaIS9_EERS3_IS4_INS5_10LineStringES7_ISD_EESaISF_EERS3_IS4_INS5_5PointES7_ISJ_EESaISL_EEPKNS5_15GeometryFactoryE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil22isResultAreaConsistentEPKNS_4geom8GeometryES6_iS6_@Base 3.10.3 + _ZN4geos9operation9overlayng11OverlayUtil5roundEPKNS_4geom5PointEPKNS3_14PrecisionModelERNS3_10CoordinateE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil7isEmptyEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil7safeEnvEPKNS_4geom8EnvelopeEPKNS3_14PrecisionModelERS4_@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayUtil7toLinesEPNS1_12OverlayGraphEbPKNS_4geom15GeometryFactoryE@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraph12getNodeEdgesEv@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraph14createEdgePairEPKNS_4geom18CoordinateSequenceEPNS1_12OverlayLabelE@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraph17createOverlayEdgeEPKNS_4geom18CoordinateSequenceEPNS1_12OverlayLabelEb@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraph18createOverlayLabelEPKNS1_4EdgeE@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraph18getResultAreaEdgesEv@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraph6insertEPNS1_11OverlayEdgeE@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraph7addEdgeEPNS1_4EdgeE@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraph8getEdgesEv@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraphC1Ev@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraphC2Ev@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraphD1Ev@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayGraphD2Ev@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayLabel11initNotPartEh@Base 3.10.0 + _ZN4geos9operation9overlayng12OverlayLabel12initBoundaryEhNS_4geom8LocationES4_b@Base 3.10.0 + _ZN4geos9operation9overlayng12OverlayLabel12initCollapseEhb@Base 3.10.0 + _ZN4geos9operation9overlayng12OverlayLabel14setLocationAllEhNS_4geom8LocationE@Base 3.10.0 + _ZN4geos9operation9overlayng12OverlayLabel15setLocationLineEhNS_4geom8LocationE@Base 3.10.0 + _ZN4geos9operation9overlayng12OverlayLabel19setLocationCollapseEh@Base 3.10.0 + _ZN4geos9operation9overlayng12OverlayLabel8initLineEh@Base 3.10.0 + _ZN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategy5UnionEPKNS_4geom8GeometryES7_@Base 3.9.0 + _ZN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyD0Ev@Base 3.9.0 + _ZN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyD1Ev@Base 3.9.0 + _ZN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyD2Ev@Base 3.9.0 + _ZN4geos9operation9overlayng12UnaryUnionNG5UnionEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng12UnaryUnionNG5UnionEPKNS_4geom8GeometryERKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng13CoverageUnion9geomunionEPKNS_4geom8GeometryE@Base 3.11.0~beta1 + _ZN4geos9operation9overlayng13InputGeometry10getLocatorEh@Base 3.10.0 + _ZN4geos9operation9overlayng13InputGeometry12setCollapsedEhb@Base 3.10.0 + _ZN4geos9operation9overlayng13InputGeometry17locatePointInAreaEhRKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9operation9overlayng13InputGeometryC1EPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng13InputGeometryC2EPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng13OverlayPoints12computeUnionERSt3mapINS_4geom10CoordinateESt10unique_ptrINS4_5PointESt14default_deleteIS7_EESt4lessIS5_ESaISt4pairIKS5_SA_EEESI_RSt6vectorISA_SaISA_EE@Base 3.9.0 + _ZN4geos9operation9overlayng13OverlayPoints13buildPointMapEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng13OverlayPoints17computeDifferenceERSt3mapINS_4geom10CoordinateESt10unique_ptrINS4_5PointESt14default_deleteIS7_EESt4lessIS5_ESaISt4pairIKS5_SA_EEESI_RSt6vectorISA_SaISA_EE@Base 3.9.0 + _ZN4geos9operation9overlayng13OverlayPoints19computeIntersectionERSt3mapINS_4geom10CoordinateESt10unique_ptrINS4_5PointESt14default_deleteIS7_EESt4lessIS5_ESaISt4pairIKS5_SA_EEESI_RSt6vectorISA_SaISA_EE@Base 3.9.0 + _ZN4geos9operation9overlayng13OverlayPoints7overlayEiPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng13OverlayPoints9getResultEv@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil11robustScaleEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil11robustScaleEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil11robustScaleEdd@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil13inherentScaleEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil13inherentScaleEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil13inherentScaleEd@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil14precisionScaleEdi@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil16numberOfDecimalsEd@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil17maxBoundMagnitudeEPKNS_4geom8EnvelopeE@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterD0Ev@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterD1Ev@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterD2Ev@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil8robustPMEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil8robustPMEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil9safeScaleEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil9safeScaleEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng13PrecisionUtil9safeScaleEd@Base 3.9.0 + _ZN4geos9operation9overlayng14EdgeComparatorEPKNS1_4EdgeES4_@Base 3.9.0 + _ZN4geos9operation9overlayng14EdgeSourceInfoC1Eh@Base 3.10.0 + _ZN4geos9operation9overlayng14EdgeSourceInfoC1Ehib@Base 3.10.0 + _ZN4geos9operation9overlayng14EdgeSourceInfoC2Eh@Base 3.10.0 + _ZN4geos9operation9overlayng14EdgeSourceInfoC2Ehib@Base 3.10.0 + _ZN4geos9operation9overlayng14ElevationModel16DEFAULT_CELL_NUME@Base 3.9.0 + _ZN4geos9operation9overlayng14ElevationModel3addERKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng14ElevationModel3addEddd@Base 3.9.0 + _ZN4geos9operation9overlayng14ElevationModel4getZEdd@Base 3.9.0 + _ZN4geos9operation9overlayng14ElevationModel4initEv@Base 3.9.0 + _ZN4geos9operation9overlayng14ElevationModel6createERKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng14ElevationModel6createERKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng14ElevationModel7getCellEdd@Base 3.9.0 + _ZN4geos9operation9overlayng14ElevationModel9populateZERNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng14ElevationModelC1ERKNS_4geom8EnvelopeEii@Base 3.9.0 + _ZN4geos9operation9overlayng14ElevationModelC2ERKNS_4geom8EnvelopeEii@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder10buildRingsERKSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.10.0 + _ZN4geos9operation9overlayng14PolygonBuilder11assignHolesEPNS1_15OverlayEdgeRingERKSt6vectorIS4_SaIS4_EE@Base 3.10.0 + _ZN4geos9operation9overlayng14PolygonBuilder15findSingleShellERKSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.10.0 + _ZN4geos9operation9overlayng14PolygonBuilder17buildMaximalRingsERKSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.10.0 + _ZN4geos9operation9overlayng14PolygonBuilder17buildMinimalRingsERKSt6vectorISt10unique_ptrINS1_15MaximalEdgeRingESt14default_deleteIS5_EESaIS8_EE@Base 3.10.0 + _ZN4geos9operation9overlayng14PolygonBuilder17storeMinimalRingsERSt6vectorISt10unique_ptrINS1_15OverlayEdgeRingESt14default_deleteIS5_EESaIS8_EE@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder20assignShellsAndHolesERKSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.10.0 + _ZN4geos9operation9overlayng14PolygonBuilder22linkResultAreaEdgesMaxERKSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.10.0 + _ZN4geos9operation9overlayng14PolygonBuilderD1Ev@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilderD2Ev@Base 3.9.0 + _ZN4geos9operation9overlayng15MaximalEdgeRing11attachEdgesEPNS1_11OverlayEdgeE@Base 3.9.0 + _ZN4geos9operation9overlayng15MaximalEdgeRing13linkMaxInEdgeEPNS1_11OverlayEdgeES4_PS2_@Base 3.9.0 + _ZN4geos9operation9overlayng15MaximalEdgeRing15isAlreadyLinkedEPNS1_11OverlayEdgeEPS2_@Base 3.9.0 + _ZN4geos9operation9overlayng15MaximalEdgeRing16linkMinimalRingsEv@Base 3.9.0 + _ZN4geos9operation9overlayng15MaximalEdgeRing16selectMaxOutEdgeEPNS1_11OverlayEdgeEPS2_@Base 3.9.0 + _ZN4geos9operation9overlayng15MaximalEdgeRing17buildMinimalRingsEPKNS_4geom15GeometryFactoryE@Base 3.9.0 + _ZN4geos9operation9overlayng15MaximalEdgeRing22linkMinRingEdgesAtNodeEPNS1_11OverlayEdgeEPS2_@Base 3.9.0 + _ZN4geos9operation9overlayng15MaximalEdgeRing27linkResultAreaMaxRingAtNodeEPNS1_11OverlayEdgeE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing10getLocatorEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing11computeRingEOSt10unique_ptrINS_4geom23CoordinateArraySequenceESt14default_deleteIS5_EEPKNS4_15GeometryFactoryE@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing13getCoordinateEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing14computeRingPtsEPNS1_11OverlayEdgeERNS_4geom23CoordinateArraySequenceE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing14getCoordinatesEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing22findEdgeRingContainingERKSt6vectorIPS2_SaIS4_EE@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing7addHoleEPS2_@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing7getEdgeEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing7getRingEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing8isInRingERKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing8setShellEPS2_@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing9closeRingERNS_4geom23CoordinateArraySequenceE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing9toPolygonEPKNS_4geom15GeometryFactoryE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRingC1EPNS1_11OverlayEdgeEPKNS_4geom15GeometryFactoryE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRingC2EPNS1_11OverlayEdgeEPKNS_4geom15GeometryFactoryE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller10locateEdgeEhPNS1_11OverlayEdgeE@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayLabeller16computeLabellingEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller16markInResultAreaEPNS1_11OverlayEdgeEi@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller18labelAreaNodeEdgesERSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller18labelCollapsedEdgeEPNS1_11OverlayEdgeEh@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayLabeller18locateEdgeBothEndsEhPNS1_11OverlayEdgeE@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayLabeller19labelCollapsedEdgesEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller19markResultAreaEdgesEi@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller21labelDisconnectedEdgeEPNS1_11OverlayEdgeEh@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayLabeller22labelDisconnectedEdgesEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller22propagateAreaLocationsEPNS1_11OverlayEdgeEh@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayLabeller24findPropagationStartEdgeEPNS1_11OverlayEdgeEh@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayLabeller24propagateLinearLocationsEh@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayLabeller25labelConnectedLinearEdgesEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller27findLinearEdgesWithLocationERKSt6vectorIPNS1_11OverlayEdgeESaIS5_EEh@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayLabeller29propagateLinearLocationAtNodeEPNS1_11OverlayEdgeEhbRSt5dequeIS4_SaIS4_EE@Base 3.10.0 + _ZN4geos9operation9overlayng15OverlayLabeller34unmarkDuplicateEdgesFromResultAreaEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust10DifferenceEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust12IntersectionEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust13SymDifferenceEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust13snapToleranceEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust13snapToleranceEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust14overlaySnapTolEPKNS_4geom8GeometryES6_id@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategy5UnionEPKNS_4geom8GeometryES7_@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyD0Ev@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyD1Ev@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyD2Ev@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust15overlaySnapBothEPKNS_4geom8GeometryES6_id@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust15overlaySnappingEPKNS_4geom8GeometryES6_id@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust16overlaySnapTriesEPKNS_4geom8GeometryES6_i@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust17ordinateMagnitudeEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust5UnionEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust5UnionEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust7OverlayEPKNS_4geom8GeometryES6_i@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust8snapSelfEPKNS_4geom8GeometryEd@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayNGRobust9overlaySREPKNS_4geom8GeometryES6_i@Base 3.9.0 + _ZN4geos9operation9overlayng16PrecisionReducer15reducePrecisionEPKNS_4geom8GeometryEPKNS3_14PrecisionModelEb@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder10addPolygonEPKNS_4geom7PolygonEh@Base 3.10.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder11createEdgesEPSt6vectorIPNS_6noding13SegmentStringESaIS6_EE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder13addCollectionEPKNS_4geom18GeometryCollectionEh@Base 3.10.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder14addPolygonRingEPKNS_4geom10LinearRingEbh@Base 3.10.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder15setClipEnvelopeEPKNS_4geom8EnvelopeE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder17computeDepthDeltaEPKNS_4geom10LinearRingEb@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder19isClippedCompletelyEPKNS_4geom8EnvelopeE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder20createEdgeSourceInfoEh@Base 3.10.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder20createEdgeSourceInfoEhib@Base 3.10.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder20removeRepeatedPointsEPKNS_4geom10LineStringE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder21addGeometryCollectionEPKNS_4geom18GeometryCollectionEhi@Base 3.10.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder25createFixedPrecisionNoderEPKNS_4geom14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder28createFloatingPrecisionNoderEb@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder3addEPKNS_4geom8GeometryEh@Base 3.10.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder4clipEPKNS_4geom10LinearRingE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder4nodeEPSt6vectorIPNS_6noding13SegmentStringESaIS6_EE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder5buildEPKNS_4geom8GeometryES6_@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder5limitEPKNS_4geom10LineStringE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder7addEdgeERSt10unique_ptrINS_4geom23CoordinateArraySequenceESt14default_deleteIS5_EEPKNS1_14EdgeSourceInfoE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder7addEdgeESt10unique_ptrISt6vectorINS_4geom10CoordinateESaIS6_EESt14default_deleteIS8_EEPKNS1_14EdgeSourceInfoE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder7addLineEPKNS_4geom10LineStringEh@Base 3.10.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder7addLineERSt10unique_ptrINS_4geom23CoordinateArraySequenceESt14default_deleteIS5_EEh@Base 3.10.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder8getNoderEv@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilderC1EPKNS_4geom14PrecisionModelEPNS_6noding5NoderE@Base 3.11.0~beta1 + _ZN4geos9operation9overlayng17EdgeNodingBuilderC2EPKNS_4geom14PrecisionModelEPNS_6noding5NoderE@Base 3.11.0~beta1 + _ZN4geos9operation9overlayng17EdgeNodingBuilderD1Ev@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilderD2Ev@Base 3.9.0 + _ZN4geos9operation9overlayng18OverlayMixedPoints12computeUnionEPKNS_4geom23CoordinateArraySequenceE@Base 3.9.0 + _ZN4geos9operation9overlayng18OverlayMixedPoints13createLocatorEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng18OverlayMixedPoints15prepareNonPointEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng18OverlayMixedPoints17computeDifferenceEPKNS_4geom23CoordinateArraySequenceE@Base 3.9.0 + _ZN4geos9operation9overlayng18OverlayMixedPoints7overlayEiPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng18OverlayMixedPoints9getResultEv@Base 3.9.0 + _ZN4geos9operation9overlayng18OverlayMixedPointsC1EiPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng18OverlayMixedPointsC2EiPKNS_4geom8GeometryES6_PKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng21PointExtractingFilter9filter_roEPKNS_4geom8GeometryE@Base 3.11.1 + _ZN4geos9operation9overlayng21PointExtractingFilterD0Ev@Base 3.11.1 + _ZN4geos9operation9overlayng21PointExtractingFilterD1Ev@Base 3.11.1 + _ZN4geos9operation9overlayng21PointExtractingFilterD2Ev@Base 3.11.1 + _ZN4geos9operation9overlayng24IntersectionPointBuilder15addResultPointsEv@Base 3.9.0 + _ZN4geos9operation9overlayng24IntersectionPointBuilder9getPointsEv@Base 3.9.0 + _ZN4geos9operation9overlayng25IndexedPointOnLineLocator6locateEPKNS_4geom10CoordinateE@Base 3.9.0 + _ZN4geos9operation9overlayng25IndexedPointOnLineLocatorD0Ev@Base 3.9.0 + _ZN4geos9operation9overlayng25IndexedPointOnLineLocatorD1Ev@Base 3.9.0 + _ZN4geos9operation9overlayng25IndexedPointOnLineLocatorD2Ev@Base 3.9.0 + _ZN4geos9operation9overlayng26CoordinateExtractingFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.11.1 + _ZN4geos9operation9overlayng26CoordinateExtractingFilterD0Ev@Base 3.11.1 + _ZN4geos9operation9overlayng26CoordinateExtractingFilterD1Ev@Base 3.11.1 + _ZN4geos9operation9overlayng26CoordinateExtractingFilterD2Ev@Base 3.11.1 + _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer10addPolygonEPKNS_4geom7PolygonE@Base 3.9.0 + _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer10addSegmentERKNS_4geom10CoordinateES6_@Base 3.9.0 + _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer11getEnvelopeEPKNS_4geom8GeometryES6_PKNS3_8EnvelopeE@Base 3.9.0 + _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer11getEnvelopeEv@Base 3.9.0 + _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer13addCollectionEPKNS_4geom18GeometryCollectionE@Base 3.9.0 + _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer14addPolygonRingEPKNS_4geom10LinearRingE@Base 3.9.0 + _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer17intersectsSegmentEPKNS_4geom8EnvelopeERKNS3_10CoordinateES9_@Base 3.9.0 + _ZN4geos9operation9overlayng26RobustClipEnvelopeComputer3addEPKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation9overlayng26RobustClipEnvelopeComputerC1EPKNS_4geom8EnvelopeE@Base 3.9.0 + _ZN4geos9operation9overlayng26RobustClipEnvelopeComputerC2EPKNS_4geom8EnvelopeE@Base 3.9.0 + _ZN4geos9operation9overlayng4Edge11isCollapsedEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 + _ZN4geos9operation9overlayng4Edge9initLabelERNS1_12OverlayLabelEhiib@Base 3.10.0 + _ZN4geos9operation9overlayng4EdgeC1EPNS_4geom18CoordinateSequenceEPKNS1_14EdgeSourceInfoE@Base 3.9.0 + _ZN4geos9operation9overlayng4EdgeC2EPNS_4geom18CoordinateSequenceEPKNS1_14EdgeSourceInfoE@Base 3.9.0 + (arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZN4geos9operation9overlayng7EdgeKey10initPointsEPKNS1_4EdgeE@Base 3.10.0 + _ZN4geos9operation9overlayng9OverlayNG10labelGraphEPNS1_12OverlayGraphE@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG12isResultOfOpEiNS_4geom8LocationES4_@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG13extractResultEiPNS1_12OverlayGraphE@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG17createEmptyResultEv@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG17isResultOfOpPointEPKNS1_12OverlayLabelEi@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG18computeEdgeOverlayEv@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG7overlayEPKNS_4geom8GeometryES6_i@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG7overlayEPKNS_4geom8GeometryES6_iPKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG7overlayEPKNS_4geom8GeometryES6_iPKNS3_14PrecisionModelEPNS_6noding5NoderE@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG7overlayEPKNS_4geom8GeometryES6_iPNS_6noding5NoderE@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG9geomunionEPKNS_4geom8GeometryEPKNS3_14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG9geomunionEPKNS_4geom8GeometryEPKNS3_14PrecisionModelEPNS_6noding5NoderE@Base 3.9.0 + _ZN4geos9operation9overlayng9OverlayNG9getResultEv@Base 3.9.0 + _ZN4geos9operation9overlaynglsERSoRKNS1_11OverlayEdgeE@Base 3.9.0 + _ZN4geos9operation9overlaynglsERSoRKNS1_12OverlayGraphE@Base 3.9.0 + _ZN4geos9operation9overlaynglsERSoRKNS1_12OverlayLabelE@Base 3.9.0 + _ZN4geos9operation9overlaynglsERSoRKNS1_15MaximalEdgeRingE@Base 3.9.0 + _ZN4geos9operation9overlaynglsERSoRKNS1_4EdgeE@Base 3.9.0 + _ZN4geos9operation9predicate17RectangleContains21isContainedInBoundaryERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation9predicate17RectangleContains26isPointContainedInBoundaryERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation9predicate17RectangleContains26isPointContainedInBoundaryERKNS_4geom5PointE@Base 3.4.2 + _ZN4geos9operation9predicate17RectangleContains31isLineStringContainedInBoundaryERKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation9predicate17RectangleContains32isLineSegmentContainedInBoundaryERKNS_4geom10CoordinateES6_@Base 3.4.2 + _ZN4geos9operation9predicate17RectangleContains8containsERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation9predicate19RectangleIntersects10intersectsERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation9predicate20ContainsPointVisitor5visitERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation9predicate20ContainsPointVisitor6isDoneEv@Base 3.4.2 + _ZN4geos9operation9predicate20ContainsPointVisitorD0Ev@Base 3.4.2 + _ZN4geos9operation9predicate20ContainsPointVisitorD1Ev@Base 3.4.2 + _ZN4geos9operation9predicate20ContainsPointVisitorD2Ev@Base 3.4.2 + _ZN4geos9operation9predicate21LineIntersectsVisitor5visitERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation9predicate21LineIntersectsVisitor6isDoneEv@Base 3.4.2 + _ZN4geos9operation9predicate21LineIntersectsVisitorD0Ev@Base 3.4.2 + _ZN4geos9operation9predicate21LineIntersectsVisitorD1Ev@Base 3.4.2 + _ZN4geos9operation9predicate21LineIntersectsVisitorD2Ev@Base 3.4.2 + _ZN4geos9operation9predicate25EnvelopeIntersectsVisitor5visitERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation9predicate25EnvelopeIntersectsVisitor6isDoneEv@Base 3.4.2 + _ZN4geos9operation9predicate25EnvelopeIntersectsVisitorD0Ev@Base 3.4.2 + _ZN4geos9operation9predicate25EnvelopeIntersectsVisitorD1Ev@Base 3.4.2 + _ZN4geos9operation9predicate25EnvelopeIntersectsVisitorD2Ev@Base 3.4.2 + _ZN4geos9operation9predicate25SegmentIntersectionTester15hasIntersectionERKNS_4geom10LineStringES6_@Base 3.4.2 + _ZN4geos9operation9predicate25SegmentIntersectionTester30hasIntersectionWithLineStringsERKNS_4geom10LineStringERKSt6vectorIPS5_SaIS8_EE@Base 3.4.2 + _ZN4geos9operation9predicate25SegmentIntersectionTester33hasIntersectionWithEnvelopeFilterERKNS_4geom10LineStringES6_@Base 3.4.2 + (subst)_ZN4geos9precision10CommonBits11signExpBitsE{int64_t}@Base 3.8.0 + (subst)_ZN4geos9precision10CommonBits13zeroLowerBitsE{int64_t}i@Base 3.8.0 + (subst)_ZN4geos9precision10CommonBits28numCommonMostSigMantissaBitsE{int64_t}{int64_t}@Base 3.8.0 + _ZN4geos9precision10CommonBits3addEd@Base 3.4.2 + (subst)_ZN4geos9precision10CommonBits6getBitE{int64_t}i@Base 3.8.0 + _ZN4geos9precision10CommonBits9getCommonEv@Base 3.4.2 + _ZN4geos9precision10CommonBitsC1Ev@Base 3.4.2 + _ZN4geos9precision10CommonBitsC2Ev@Base 3.4.2 + _ZN4geos9precision10Translater9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9precision10TranslaterD0Ev@Base 3.4.2 + _ZN4geos9precision10TranslaterD1Ev@Base 3.4.2 + _ZN4geos9precision10TranslaterD2Ev@Base 3.4.2 + _ZN4geos9precision12CommonBitsOp10differenceEPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9precision12CommonBitsOp12intersectionEPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9precision12CommonBitsOp13symDifferenceEPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9precision12CommonBitsOp16removeCommonBitsEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9precision12CommonBitsOp16removeCommonBitsEPKNS_4geom8GeometryES5_RSt10unique_ptrIS3_St14default_deleteIS3_EESA_@Base 3.7.0 + _ZN4geos9precision12CommonBitsOp22computeResultPrecisionESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS4_EE@Base 3.8.0 + _ZN4geos9precision12CommonBitsOp5UnionEPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9precision12CommonBitsOp6bufferEPKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos9precision12CommonBitsOpC1Eb@Base 3.4.2 + _ZN4geos9precision12CommonBitsOpC1Ev@Base 3.4.2 + _ZN4geos9precision12CommonBitsOpC2Eb@Base 3.4.2 + _ZN4geos9precision12CommonBitsOpC2Ev@Base 3.4.2 + _ZN4geos9precision16MinimumClearance11getDistanceEv@Base 3.6.0 + _ZN4geos9precision16MinimumClearance7computeEv@Base 3.6.0 + _ZN4geos9precision16MinimumClearance7getLineEv@Base 3.6.0 + _ZN4geos9precision16MinimumClearanceC1EPKNS_4geom8GeometryE@Base 3.6.0 + _ZN4geos9precision16MinimumClearanceC2EPKNS_4geom8GeometryE@Base 3.6.0 + _ZN4geos9precision17CommonBitsRemover13addCommonBitsEPNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9precision17CommonBitsRemover16removeCommonBitsEPNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9precision17CommonBitsRemover19getCommonCoordinateEv@Base 3.4.2 + _ZN4geos9precision17CommonBitsRemover3addEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9precision17CommonBitsRemoverC1Ev@Base 3.4.2 + _ZN4geos9precision17CommonBitsRemoverC2Ev@Base 3.4.2 + _ZN4geos9precision17CommonBitsRemoverD1Ev@Base 3.4.2 + _ZN4geos9precision17CommonBitsRemoverD2Ev@Base 3.4.2 + _ZN4geos9precision19EnhancedPrecisionOp10differenceEPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9precision19EnhancedPrecisionOp12intersectionEPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9precision19EnhancedPrecisionOp13symDifferenceEPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9precision19EnhancedPrecisionOp5UnionEPKNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9precision19EnhancedPrecisionOp6bufferEPKNS_4geom8GeometryEd@Base 3.4.2 + _ZN4geos9precision22CommonCoordinateFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9precision22CommonCoordinateFilterD0Ev@Base 3.4.2 + _ZN4geos9precision22CommonCoordinateFilterD1Ev@Base 3.4.2 + _ZN4geos9precision22CommonCoordinateFilterD2Ev@Base 3.4.2 + _ZN4geos9precision22PrecisionReducerFilter9filter_roEPKNS_4geom10CoordinateE@Base 3.10.0 + _ZN4geos9precision22PrecisionReducerFilterD0Ev@Base 3.10.0 + _ZN4geos9precision22PrecisionReducerFilterD1Ev@Base 3.10.0 + _ZN4geos9precision22PrecisionReducerFilterD2Ev@Base 3.10.0 + _ZN4geos9precision24GeometryPrecisionReducer13createFactoryERKNS_4geom15GeometryFactoryERKNS2_14PrecisionModelE@Base 3.4.2 + _ZN4geos9precision24GeometryPrecisionReducer15reducePointwiseERKNS_4geom8GeometryERKNS2_14PrecisionModelE@Base 3.10.0 + _ZN4geos9precision24GeometryPrecisionReducer19reduceKeepCollapsedERKNS_4geom8GeometryERKNS2_14PrecisionModelE@Base 3.11.0~beta1 + _ZN4geos9precision24GeometryPrecisionReducer20fixPolygonalTopologyERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9precision24GeometryPrecisionReducer6reduceERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9precision24GeometryPrecisionReducer6reduceERKNS_4geom8GeometryERKNS2_14PrecisionModelE@Base 3.10.0 + _ZN4geos9precision24GeometryPrecisionReducer8changePMEPKNS_4geom8GeometryERKNS2_14PrecisionModelE@Base 3.10.0 + _ZN4geos9precision27PrecisionReducerTransformer10reduceAreaEPKNS_4geom8GeometryE@Base 3.10.0 + _ZN4geos9precision27PrecisionReducerTransformer16transformPolygonEPKNS_4geom7PolygonEPKNS2_8GeometryE@Base 3.10.0 + _ZN4geos9precision27PrecisionReducerTransformer20transformCoordinatesEPKNS_4geom18CoordinateSequenceEPKNS2_8GeometryE@Base 3.10.0 + _ZN4geos9precision27PrecisionReducerTransformer21transformMultiPolygonEPKNS_4geom12MultiPolygonEPKNS2_8GeometryE@Base 3.10.0 + (subst)_ZN4geos9precision27PrecisionReducerTransformer6extendERSt6vectorINS_4geom10CoordinateESaIS4_EE{size_t}@Base 3.10.0 + _ZN4geos9precision27PrecisionReducerTransformer6reduceERKNS_4geom8GeometryERKNS2_14PrecisionModelEb@Base 3.10.0 + _ZN4geos9precision27PrecisionReducerTransformerD0Ev@Base 3.10.0 + _ZN4geos9precision27PrecisionReducerTransformerD1Ev@Base 3.10.0 + _ZN4geos9precision27PrecisionReducerTransformerD2Ev@Base 3.10.0 + _ZN4geos9precision30SimpleGeometryPrecisionReducer17getPrecisionModelEv@Base 3.4.2 + _ZN4geos9precision30SimpleGeometryPrecisionReducer18getRemoveCollapsedEv@Base 3.4.2 + _ZN4geos9precision30SimpleGeometryPrecisionReducer28setRemoveCollapsedComponentsEb@Base 3.4.2 + _ZN4geos9precision30SimpleGeometryPrecisionReducer6reduceEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9precision30SimpleGeometryPrecisionReducerC1EPKNS_4geom14PrecisionModelE@Base 3.4.2 + _ZN4geos9precision30SimpleGeometryPrecisionReducerC2EPKNS_4geom14PrecisionModelE@Base 3.4.2 + _ZN4geos9precision35PrecisionReducerCoordinateOperation4editEPKNS_4geom18CoordinateSequenceEPKNS2_8GeometryE@Base 3.4.2 + _ZN4geos9precision35PrecisionReducerCoordinateOperationD0Ev@Base 3.4.2 + _ZN4geos9precision35PrecisionReducerCoordinateOperationD1Ev@Base 3.4.2 + _ZN4geos9precision35PrecisionReducerCoordinateOperationD2Ev@Base 3.4.2 + _ZN4geos9precision36PointwisePrecisionReducerTransformer15reducePointwiseEPKNS_4geom18CoordinateSequenceE@Base 3.10.0 + _ZN4geos9precision36PointwisePrecisionReducerTransformer20transformCoordinatesEPKNS_4geom18CoordinateSequenceEPKNS2_8GeometryE@Base 3.10.0 + _ZN4geos9precision36PointwisePrecisionReducerTransformer6reduceERKNS_4geom8GeometryERKNS2_14PrecisionModelE@Base 3.10.0 + _ZN4geos9precision36PointwisePrecisionReducerTransformerD0Ev@Base 3.10.0 + _ZN4geos9precision36PointwisePrecisionReducerTransformerD1Ev@Base 3.10.0 + _ZN4geos9precision36PointwisePrecisionReducerTransformerD2Ev@Base 3.10.0 + (optional=templinst|subst)_ZNK13geos_nlohmann10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES2_IhSaIhEEE4dumpEicbNS_6detail15error_handler_tE@Base 3.10.0 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS_14adl_serializerES2_IhSaIhEEE2atERKS8_@Base 3.10.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS_14adl_serializerES2_IhSaIhEEE2atERKS8_@Base 3.10.1 + (optional=templinst|subst)_ZNK13geos_nlohmann6detail5lexerINS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEENS0_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSA_EEEEE16get_token_stringEv@Base 3.10.0 + _ZNK13geos_nlohmann6detail9exception4whatEv@Base 3.10.0 + (optional=templinst|subst)_ZNK13geos_nlohmann6detail9iter_implIKNS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEEdeEv@Base 3.10.0 + (optional=templinst|subst|arch=!armel !armhf !s390x)_ZNK13geos_nlohmann6detail9iter_implIKNS_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEEeqISG_LDnEEEbRKT_@Base 3.10.0 + _ZNK4geos11planargraph12DirectedEdge11getFromNodeEv@Base 3.4.2 + _ZNK4geos11planargraph12DirectedEdge11getQuadrantEv@Base 3.4.2 + _ZNK4geos11planargraph12DirectedEdge13getCoordinateEv@Base 3.4.2 + _ZNK4geos11planargraph12DirectedEdge14getDirectionPtEv@Base 3.4.2 + _ZNK4geos11planargraph12DirectedEdge16compareDirectionEPKS1_@Base 3.4.2 + _ZNK4geos11planargraph12DirectedEdge16getEdgeDirectionEv@Base 3.4.2 + _ZNK4geos11planargraph12DirectedEdge5printB5cxx11Ev@Base 3.5.1 + _ZNK4geos11planargraph12DirectedEdge6getSymEv@Base 3.4.2 + _ZNK4geos11planargraph12DirectedEdge7getEdgeEv@Base 3.4.2 + _ZNK4geos11planargraph12DirectedEdge8getAngleEv@Base 3.4.2 + _ZNK4geos11planargraph12DirectedEdge9compareToEPKS1_@Base 3.4.2 + _ZNK4geos11planargraph12DirectedEdge9getToNodeEv@Base 3.4.2 + _ZNK4geos11planargraph14GraphComponent8isMarkedEv@Base 3.4.2 + _ZNK4geos11planargraph14GraphComponent9isVisitedEv@Base 3.4.2 + _ZNK4geos11planargraph16DirectedEdgeStar13getCoordinateEv@Base 3.4.2 + _ZNK4geos11planargraph16DirectedEdgeStar3endEv@Base 3.4.2 + _ZNK4geos11planargraph16DirectedEdgeStar5beginEv@Base 3.4.2 + _ZNK4geos11planargraph16DirectedEdgeStar8getIndexEi@Base 3.4.2 + _ZNK4geos11planargraph16DirectedEdgeStar9sortEdgesEv@Base 3.4.2 + _ZNK4geos11triangulate3tri20TriangulationBuilder4findERKNS_4geom10CoordinateES6_@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri10getEdgeEndEi@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri10isAdjacentEPS2_@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri10isBoundaryEi@Base 3.11.0~beta1 + _ZNK4geos11triangulate3tri3Tri11getAdjacentEi@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri11hasAdjacentEi@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri11hasAdjacentEv@Base 3.11.0~beta1 + _ZNK4geos11triangulate3tri3Tri11numAdjacentEv@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri12getEdgeStartEi@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri13getCoordinateEi@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri13hasCoordinateERKNS_4geom10CoordinateE@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri16isInteriorVertexEi@Base 3.11.0~beta1 + _ZNK4geos11triangulate3tri3Tri7getAreaEv@Base 3.11.0~beta1 + _ZNK4geos11triangulate3tri3Tri7getEdgeEPS2_@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri8getIndexEPKS2_@Base 3.11.0~beta1 + _ZNK4geos11triangulate3tri3Tri8getIndexERKNS_4geom10CoordinateE@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri8isBorderEv@Base 3.11.0~beta1 + _ZNK4geos11triangulate3tri3Tri8midpointEi@Base 3.10.0 + _ZNK4geos11triangulate3tri3Tri9getLengthEi@Base 3.11.0~beta1 + _ZNK4geos11triangulate3tri3Tri9getLengthEv@Base 3.11.0~beta1 + _ZNK4geos11triangulate3tri3Tri9toPolygonEPKNS_4geom15GeometryFactoryE@Base 3.10.0 + _ZNK4geos11triangulate3tri7TriEdge8HashCodeclERKS2_@Base 3.10.0 + (optional=templinst)_ZNK4geos11triangulate3tri7TriListINS1_3TriEE10toGeometryEPKNS_4geom15GeometryFactoryE@Base 3.11.0~beta1 + _ZNK4geos11triangulate7polygon17PolygonEarClipper10toGeometryEv@Base 3.10.0 + (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper11fetchCornerERSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 + (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper14isValidEarScanE{size_t}RKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 + (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper15createNextLinksE{size_t}@Base 3.10.0 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos11triangulate7polygon17PolygonEarClipper15isCornerInvalidERKSt5arrayINS_4geom10CoordinateELj3EE@Base 3.10.2 + (arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos11triangulate7polygon17PolygonEarClipper15isCornerInvalidERKSt5arrayINS_4geom10CoordinateELm3EE@Base 3.10.3 + (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper22findIntersectingVertexE{size_t}RKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 + (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper6isFlatERKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 + (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper8isConvexERKSt5arrayINS_4geom10CoordinateEL{size_t}3EE@Base 3.10.0 + (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper9isRemovedE{size_t}@Base 3.10.0 + (subst)_ZNK4geos11triangulate7polygon17PolygonEarClipper9nextIndexE{size_t}@Base 3.10.0 + _ZNK4geos11triangulate7polygon17PolygonHoleJoiner10isJoinableERKNS_4geom10CoordinateES6_@Base 3.10.0 + _ZNK4geos11triangulate7polygon17PolygonHoleJoiner14crossesPolygonERKNS_4geom10CoordinateES6_@Base 3.10.0 + _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision11isFrameEdgeERKNS1_8QuadEdgeE@Base 3.4.2 + _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision13isFrameVertexERKNS1_6VertexE@Base 3.4.2 + _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision14isVertexOfEdgeERKNS1_8QuadEdgeERKNS1_6VertexE@Base 3.4.2 + _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision14locateFromEdgeERKNS1_6VertexERKNS1_8QuadEdgeE@Base 3.4.2 + _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision17isFrameBorderEdgeERKNS1_8QuadEdgeE@Base 3.4.2 + _ZNK4geos11triangulate8quadedge19QuadEdgeSubdivision8isOnEdgeERKNS1_8QuadEdgeERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos11triangulate8quadedge6Vertex12circleCenterERKS2_S4_@Base 3.4.2 + _ZNK4geos11triangulate8quadedge6Vertex17interpolateZValueERKS2_S4_S4_@Base 3.4.2 + _ZNK4geos11triangulate8quadedge6Vertex6leftOfERKNS1_8QuadEdgeE@Base 3.4.2 + _ZNK4geos11triangulate8quadedge6Vertex7rightOfERKNS1_8QuadEdgeE@Base 3.4.2 + _ZNK4geos11triangulate8quadedge8QuadEdge13toLineSegmentEv@Base 3.4.2 + _ZNK4geos11triangulate8quadedge8QuadEdge14equalsOrientedERKS2_@Base 3.4.2 + _ZNK4geos11triangulate8quadedge8QuadEdge17equalsNonOrientedERKS2_@Base 3.4.2 + _ZNK4geos2io12GeoJSONValue10getBooleanEv@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue6isNullEv@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue7getNullEv@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue7isArrayEv@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue8getArrayEv@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue8isNumberEv@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue8isObjectEv@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue8isStringEv@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue9getNumberEv@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue9getObjectB5cxx11Ev@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue9getStringB5cxx11Ev@Base 3.10.0 + _ZNK4geos2io12GeoJSONValue9isBooleanEv@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader11readFeatureERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader11readPolygonERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + _ZNK4geos2io13GeoJSONReader11readPolygonERKSt6vectorIS2_IS2_IdSaIdEESaIS4_EESaIS6_EE@Base 3.10.0 + _ZNK4geos2io13GeoJSONReader12readFeaturesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader12readGeometryERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader12readPropertyERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + _ZNK4geos2io13GeoJSONReader14readCoordinateERKSt6vectorIdSaIdEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader14readLineStringERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader14readMultiPointERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader14readPropertiesERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader16readMultiPolygonERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader19readMultiLineStringERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader21readFeatureCollectionERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader22readFeatureForGeometryERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader22readGeometryCollectionERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader32readFeatureCollectionForGeometryERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + _ZNK4geos2io13GeoJSONReader4readERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + (subst)_ZNK4geos2io13GeoJSONReader9readPointERKN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEE@Base 3.10.0 + _ZNK4geos2io14GeoJSONFeature11getGeometryEv@Base 3.10.0 + _ZNK4geos2io14GeoJSONFeature13getPropertiesB5cxx11Ev@Base 3.10.0 + _ZNK4geos2io15StringTokenizer7getNValEv@Base 3.10.0 + _ZNK4geos2io15StringTokenizer7getSValB5cxx11Ev@Base 3.10.0 + _ZNK4geos2io24GeoJSONFeatureCollection11getFeaturesEv@Base 3.10.0 + _ZNK4geos2io9WKTReader13readPointTextEPNS0_15StringTokenizerE@Base 3.10.0 + _ZNK4geos2io9WKTReader14getCoordinatesEPNS0_15StringTokenizerE@Base 3.10.0 + _ZNK4geos2io9WKTReader15readPolygonTextEPNS0_15StringTokenizerE@Base 3.10.0 + _ZNK4geos2io9WKTReader18readLineStringTextEPNS0_15StringTokenizerE@Base 3.10.0 + _ZNK4geos2io9WKTReader18readLinearRingTextEPNS0_15StringTokenizerE@Base 3.10.0 + _ZNK4geos2io9WKTReader18readMultiPointTextEPNS0_15StringTokenizerE@Base 3.10.0 + (subst)_ZNK4geos2io9WKTReader20getPreciseCoordinateEPNS0_15StringTokenizerERNS_4geom10CoordinateER{size_t}@Base 3.10.0 + _ZNK4geos2io9WKTReader20readMultiPolygonTextEPNS0_15StringTokenizerE@Base 3.10.0 + _ZNK4geos2io9WKTReader22readGeometryTaggedTextEPNS0_15StringTokenizerE@Base 3.10.0 + _ZNK4geos2io9WKTReader23readMultiLineStringTextEPNS0_15StringTokenizerE@Base 3.10.0 + _ZNK4geos2io9WKTReader26readGeometryCollectionTextEPNS0_15StringTokenizerE@Base 3.10.0 + _ZNK4geos2io9WKTReader4readERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.10.0 + _ZNK4geos2io9WKTWriter11writeNumberB5cxx11Ed@Base 3.10.0 + _ZNK4geos2io9WKTWriter6indentEiPNS0_6WriterE@Base 3.10.0 + _ZNK4geos4geom10Coordinate8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom10LineString11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 + _ZNK4geos4geom10LineString11getBoundaryEv@Base 3.4.2 + _ZNK4geos4geom10LineString11getEndPointEv@Base 3.4.2 + _ZNK4geos4geom10LineString11reverseImplEv@Base 3.10.0 + _ZNK4geos4geom10LineString12getDimensionEv@Base 3.4.2 + _ZNK4geos4geom10LineString12getNumPointsEv@Base 3.4.2 + _ZNK4geos4geom10LineString12getSortIndexEv@Base 3.8.0 + _ZNK4geos4geom10LineString12isCoordinateERNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom10LineString13getCoordinateEv@Base 3.4.2 + _ZNK4geos4geom10LineString13getStartPointEv@Base 3.4.2 + (subst)_ZNK4geos4geom10LineString14getCoordinateNE{size_t}@Base 3.8.0 + _ZNK4geos4geom10LineString14getCoordinatesEv@Base 3.4.2 + _ZNK4geos4geom10LineString15getGeometryTypeB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom10LineString16getCoordinatesROEv@Base 3.4.2 + _ZNK4geos4geom10LineString17getGeometryTypeIdEv@Base 3.4.2 + _ZNK4geos4geom10LineString18compareToSameClassEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom10LineString20getBoundaryDimensionEv@Base 3.4.2 + _ZNK4geos4geom10LineString22getCoordinateDimensionEv@Base 3.4.2 + _ZNK4geos4geom10LineString23computeEnvelopeInternalEv@Base 3.4.2 + _ZNK4geos4geom10LineString6isRingEv@Base 3.4.2 + _ZNK4geos4geom10LineString7isEmptyEv@Base 3.4.2 + _ZNK4geos4geom10LineString8apply_roEPNS0_14GeometryFilterE@Base 3.4.2 + _ZNK4geos4geom10LineString8apply_roEPNS0_16CoordinateFilterE@Base 3.4.2 + _ZNK4geos4geom10LineString8apply_roEPNS0_23GeometryComponentFilterE@Base 3.4.2 + _ZNK4geos4geom10LineString8apply_roERNS0_24CoordinateSequenceFilterE@Base 3.4.2 + _ZNK4geos4geom10LineString8isClosedEv@Base 3.4.2 + _ZNK4geos4geom10LineString9cloneImplEv@Base 3.10.0 + _ZNK4geos4geom10LineString9getLengthEv@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom10LineString9getPointNEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom10LineString9getPointNEm@Base 3.7.0 + _ZNK4geos4geom10LinearRing11reverseImplEv@Base 3.10.0 + _ZNK4geos4geom10LinearRing12getSortIndexEv@Base 3.8.0 + _ZNK4geos4geom10LinearRing15getGeometryTypeB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom10LinearRing17getGeometryTypeIdEv@Base 3.4.2 + _ZNK4geos4geom10LinearRing20getBoundaryDimensionEv@Base 3.4.2 + _ZNK4geos4geom10LinearRing8isClosedEv@Base 3.4.2 + _ZNK4geos4geom10LinearRing9cloneImplEv@Base 3.10.0 + _ZNK4geos4geom10MultiPoint11getBoundaryEv@Base 3.4.2 + _ZNK4geos4geom10MultiPoint11reverseImplEv@Base 3.10.0 + _ZNK4geos4geom10MultiPoint12getDimensionEv@Base 3.4.2 + (subst)_ZNK4geos4geom10MultiPoint12getGeometryNE{size_t}@Base 3.9.0 + _ZNK4geos4geom10MultiPoint12getSortIndexEv@Base 3.8.0 + (subst)_ZNK4geos4geom10MultiPoint14getCoordinateNE{size_t}@Base 3.8.0 + _ZNK4geos4geom10MultiPoint15getGeometryTypeB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom10MultiPoint17getGeometryTypeIdEv@Base 3.4.2 + _ZNK4geos4geom10MultiPoint17isDimensionStrictENS0_9Dimension13DimensionTypeE@Base 3.8.0 + _ZNK4geos4geom10MultiPoint20getBoundaryDimensionEv@Base 3.4.2 + _ZNK4geos4geom10MultiPoint9cloneImplEv@Base 3.10.0 + _ZNK4geos4geom11LineSegment10equalsTopoERKS1_@Base 3.4.2 + _ZNK4geos4geom11LineSegment10toGeometryERKNS0_15GeometryFactoryE@Base 3.4.2 + _ZNK4geos4geom11LineSegment12closestPointERKNS0_10CoordinateERS2_@Base 3.4.2 + _ZNK4geos4geom11LineSegment12intersectionERKS1_@Base 3.8.0 + _ZNK4geos4geom11LineSegment15segmentFractionERKNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment16lineIntersectionERKS1_@Base 3.8.0 + _ZNK4geos4geom11LineSegment16orientationIndexERKS1_@Base 3.4.2 + _ZNK4geos4geom11LineSegment16pointAlongOffsetEddRNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment16projectionFactorERKNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment7projectERKNS0_10CoordinateERS2_@Base 3.4.2 + _ZNK4geos4geom11LineSegment7projectERKS1_RS1_@Base 3.4.2 + _ZNK4geos4geom11LineSegment7projectEdRNS0_10CoordinateE@Base 3.10.0 + _ZNK4geos4geom11LineSegment9compareToERKS1_@Base 3.4.2 + _ZNK4geos4geom12MultiPolygon11getBoundaryEv@Base 3.4.2 + _ZNK4geos4geom12MultiPolygon11reverseImplEv@Base 3.10.0 + _ZNK4geos4geom12MultiPolygon12getDimensionEv@Base 3.4.2 + (subst)_ZNK4geos4geom12MultiPolygon12getGeometryNE{size_t}@Base 3.9.0 + _ZNK4geos4geom12MultiPolygon12getSortIndexEv@Base 3.8.0 + _ZNK4geos4geom12MultiPolygon15getGeometryTypeB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom12MultiPolygon17getGeometryTypeIdEv@Base 3.4.2 + _ZNK4geos4geom12MultiPolygon17isDimensionStrictENS0_9Dimension13DimensionTypeE@Base 3.8.0 + _ZNK4geos4geom12MultiPolygon20getBoundaryDimensionEv@Base 3.4.2 + _ZNK4geos4geom12MultiPolygon9cloneImplEv@Base 3.10.0 + _ZNK4geos4geom14PrecisionModel10getOffsetXEv@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel10getOffsetYEv@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel10isFloatingEv@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel11makePreciseEd@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel27getMaximumSignificantDigitsEv@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom14PrecisionModel9compareToEPKS1_@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory10toGeometryEPKNS0_8EnvelopeE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory11createEmptyEi@Base 3.9.0 + _ZNK4geos4geom15GeometryFactory11createPointEPNS0_18CoordinateSequenceE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory11createPointERKNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory11createPointERKNS0_18CoordinateSequenceE@Base 3.4.2 + (subst)_ZNK4geos4geom15GeometryFactory11createPointE{size_t}@Base 3.9.0 + _ZNK4geos4geom15GeometryFactory13buildGeometryEOSt6vectorISt10unique_ptrINS0_10LineStringESt14default_deleteIS4_EESaIS7_EE@Base 3.9.0 + _ZNK4geos4geom15GeometryFactory13buildGeometryEOSt6vectorISt10unique_ptrINS0_5PointESt14default_deleteIS4_EESaIS7_EE@Base 3.9.0 + _ZNK4geos4geom15GeometryFactory13buildGeometryEOSt6vectorISt10unique_ptrINS0_7PolygonESt14default_deleteIS4_EESaIS7_EE@Base 3.9.0 + _ZNK4geos4geom15GeometryFactory13buildGeometryEOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory13buildGeometryEPSt6vectorIPNS0_8GeometryESaIS4_EE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory13buildGeometryERKSt6vectorIPKNS0_8GeometryESaIS5_EE@Base 3.8.0 + (optional=templinst)_ZNK4geos4geom15GeometryFactory13buildGeometryIN9__gnu_cxx17__normal_iteratorIPPKNS0_10LineStringESt6vectorIS7_SaIS7_EEEEEESt10unique_ptrINS0_8GeometryESt14default_deleteISE_EET_SI_@Base 3.9.0 + (optional=templinst)_ZNK4geos4geom15GeometryFactory13buildGeometryIN9__gnu_cxx17__normal_iteratorIPPKNS0_5PointESt6vectorIS7_SaIS7_EEEEEESt10unique_ptrINS0_8GeometryESt14default_deleteISE_EET_SI_@Base 3.9.0 + _ZNK4geos4geom15GeometryFactory13createPolygonEOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory13createPolygonEOSt10unique_ptrINS0_10LinearRingESt14default_deleteIS3_EEOSt6vectorIS6_SaIS6_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory13createPolygonEOSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.10.0 + _ZNK4geos4geom15GeometryFactory13createPolygonEPNS0_10LinearRingEPSt6vectorIS3_SaIS3_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory13createPolygonERKNS0_10LinearRingERKSt6vectorIPS2_SaIS6_EE@Base 3.8.0 + (subst)_ZNK4geos4geom15GeometryFactory13createPolygonE{size_t}@Base 3.9.0 + _ZNK4geos4geom15GeometryFactory14createGeometryEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory15destroyGeometryEPNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory16createLineStringEOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory16createLineStringEOSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.11.0~beta1 + _ZNK4geos4geom15GeometryFactory16createLineStringEPNS0_18CoordinateSequenceE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory16createLineStringERKNS0_10LineStringE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory16createLineStringERKNS0_18CoordinateSequenceE@Base 3.4.2 + (subst)_ZNK4geos4geom15GeometryFactory16createLineStringE{size_t}@Base 3.9.0 + _ZNK4geos4geom15GeometryFactory16createLinearRingEOSt10unique_ptrINS0_18CoordinateSequenceESt14default_deleteIS3_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory16createLinearRingEOSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.11.0~beta1 + _ZNK4geos4geom15GeometryFactory16createLinearRingEPNS0_18CoordinateSequenceE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory16createLinearRingERKNS0_18CoordinateSequenceE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory16createLinearRingEv@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory16createMultiPointEOSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.11.1 + _ZNK4geos4geom15GeometryFactory16createMultiPointEOSt6vectorISt10unique_ptrINS0_5PointESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory16createMultiPointEOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory16createMultiPointEPSt6vectorIPNS0_8GeometryESaIS4_EE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory16createMultiPointERKNS0_18CoordinateSequenceE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory16createMultiPointERKSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory16createMultiPointERKSt6vectorIPKNS0_8GeometryESaIS5_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory16createMultiPointEv@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory18createMultiPolygonEOSt6vectorISt10unique_ptrINS0_7PolygonESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory18createMultiPolygonEOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory18createMultiPolygonEPSt6vectorIPNS0_8GeometryESaIS4_EE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory18createMultiPolygonERKSt6vectorIPKNS0_8GeometryESaIS5_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory18createMultiPolygonEv@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory19createEmptyGeometryEv@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory21createMultiLineStringEOSt6vectorISt10unique_ptrINS0_10LineStringESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory21createMultiLineStringEOSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS4_EESaIS7_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory21createMultiLineStringEPSt6vectorIPNS0_8GeometryESaIS4_EE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory21createMultiLineStringERKSt6vectorIPKNS0_8GeometryESaIS5_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory21createMultiLineStringEv@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory24createGeometryCollectionEPSt6vectorIPNS0_8GeometryESaIS4_EE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory24createGeometryCollectionERKSt6vectorIPKNS0_8GeometryESaIS5_EE@Base 3.8.0 + _ZNK4geos4geom15GeometryFactory24createGeometryCollectionEv@Base 3.4.2 + (optional=templinst)_ZNK4geos4geom15GeometryFactory24createGeometryCollectionINS0_8GeometryEEESt10unique_ptrINS0_18GeometryCollectionESt14default_deleteIS5_EEOSt6vectorIS4_IT_S6_ISA_EESaISC_EE@Base 3.9.0 + _ZNK4geos4geom15GeometryFactory28createPointFromInternalCoordEPKNS0_10CoordinateEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory6addRefEv@Base 3.6.0 + _ZNK4geos4geom15GeometryFactory7dropRefEv@Base 3.6.0 + _ZNK4geos4geom15MultiLineString11getBoundaryEv@Base 3.4.2 + _ZNK4geos4geom15MultiLineString11reverseImplEv@Base 3.10.0 + _ZNK4geos4geom15MultiLineString12getDimensionEv@Base 3.4.2 + (subst)_ZNK4geos4geom15MultiLineString12getGeometryNE{size_t}@Base 3.9.0 + _ZNK4geos4geom15MultiLineString12getSortIndexEv@Base 3.8.0 + _ZNK4geos4geom15MultiLineString15getGeometryTypeB5cxx11Ev@Base 3.4.2 + _ZNK4geos4geom15MultiLineString17getGeometryTypeIdEv@Base 3.4.2 + _ZNK4geos4geom15MultiLineString17isDimensionStrictENS0_9Dimension13DimensionTypeE@Base 3.8.0 + _ZNK4geos4geom15MultiLineString20getBoundaryDimensionEv@Base 3.4.2 + _ZNK4geos4geom15MultiLineString8isClosedEv@Base 3.4.2 + _ZNK4geos4geom15MultiLineString9cloneImplEv@Base 3.10.0 + _ZNK4geos4geom16CoordinateFilter9filter_rwEPNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom18CoordinateSequence11getEnvelopeEv@Base 3.8.0 + (subst)_ZNK4geos4geom18CoordinateSequence11getOrdinateE{size_t}{size_t}@Base 3.8.0 + _ZNK4geos4geom18CoordinateSequence13minCoordinateEv@Base 3.4.2 + _ZNK4geos4geom18CoordinateSequence14expandEnvelopeERNS0_8EnvelopeE@Base 3.4.2 + _ZNK4geos4geom18CoordinateSequence17hasRepeatedPointsEv@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom18CoordinateSequence4getXEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom18CoordinateSequence4getXEm@Base 3.7.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom18CoordinateSequence4getYEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom18CoordinateSequence4getYEm@Base 3.7.0 + _ZNK4geos4geom18CoordinateSequence6isRingEv@Base 3.11.0~beta2 + _ZNK4geos4geom18CoordinateSequence8toStringB5cxx11Ev@Base 3.8.0 + _ZNK4geos4geom18GeometryCollection11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection11getBoundaryEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection11reverseImplEv@Base 3.10.0 + _ZNK4geos4geom18GeometryCollection12getDimensionEv@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom18GeometryCollection12getGeometryNEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom18GeometryCollection12getGeometryNEm@Base 3.7.0 + _ZNK4geos4geom18GeometryCollection12getNumPointsEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection12getSortIndexEv@Base 3.8.0 + _ZNK4geos4geom18GeometryCollection13getCoordinateEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection14getCoordinatesEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection15getGeometryTypeB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom18GeometryCollection16getNumGeometriesEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection17getGeometryTypeIdEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection17isDimensionStrictENS0_9Dimension13DimensionTypeE@Base 3.8.0 + _ZNK4geos4geom18GeometryCollection18compareToSameClassEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection20getBoundaryDimensionEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection22getCoordinateDimensionEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection23computeEnvelopeInternalEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection7getAreaEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection7isEmptyEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection8apply_roEPNS0_14GeometryFilterE@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection8apply_roEPNS0_16CoordinateFilterE@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection8apply_roEPNS0_23GeometryComponentFilterE@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection8apply_roERNS0_24CoordinateSequenceFilterE@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection9cloneImplEv@Base 3.10.0 + _ZNK4geos4geom18GeometryCollection9getLengthEv@Base 3.4.2 + _ZNK4geos4geom18IntersectionMatrix10isContainsEv@Base 3.4.2 + _ZNK4geos4geom18IntersectionMatrix10isDisjointEv@Base 3.4.2 + _ZNK4geos4geom18IntersectionMatrix10isOverlapsEii@Base 3.4.2 + _ZNK4geos4geom18IntersectionMatrix11isCoveredByEv@Base 3.4.2 + _ZNK4geos4geom18IntersectionMatrix12isIntersectsEv@Base 3.4.2 + _ZNK4geos4geom18IntersectionMatrix7matchesERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZNK4geos4geom18IntersectionMatrix8isCoversEv@Base 3.4.2 + _ZNK4geos4geom18IntersectionMatrix8isEqualsEii@Base 3.4.2 + _ZNK4geos4geom18IntersectionMatrix8isWithinEv@Base 3.4.2 + _ZNK4geos4geom18IntersectionMatrix8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom18IntersectionMatrix9isCrossesEii@Base 3.4.2 + _ZNK4geos4geom18IntersectionMatrix9isTouchesEii@Base 3.4.2 + _ZNK4geos4geom23CoordinateArraySequence12getDimensionEv@Base 3.4.2 + _ZNK4geos4geom23CoordinateArraySequence14expandEnvelopeERNS0_8EnvelopeE@Base 3.4.2 + _ZNK4geos4geom23CoordinateArraySequence5cloneEv@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom23CoordinateArraySequence5getAtEj@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom23CoordinateArraySequence5getAtEjRNS0_10CoordinateE@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom23CoordinateArraySequence5getAtEm@Base 3.7.0 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom23CoordinateArraySequence5getAtEmRNS0_10CoordinateE@Base 3.7.0 + _ZNK4geos4geom23CoordinateArraySequence7getSizeEv@Base 3.4.2 + _ZNK4geos4geom23CoordinateArraySequence7isEmptyEv@Base 3.4.2 + _ZNK4geos4geom23CoordinateArraySequence8apply_roEPNS0_16CoordinateFilterE@Base 3.4.2 + _ZNK4geos4geom23CoordinateArraySequence8toVectorERSt6vectorINS0_10CoordinateESaIS3_EE@Base 3.4.2 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE12getDimensionEv@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE5cloneEv@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE5getAtEj@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE5getAtEjRNS0_10CoordinateE@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE7getSizeEv@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE7isEmptyEv@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNK4geos4geom27FixedSizeCoordinateSequenceILj0EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE12getDimensionEv@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE5cloneEv@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE5getAtEm@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE5getAtEmRNS0_10CoordinateE@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE7getSizeEv@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE7isEmptyEv@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom27FixedSizeCoordinateSequenceILm0EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.1 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE12getDimensionEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5cloneEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5getAtE{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5getAtE{size_t}RNS0_10CoordinateE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE7getSizeEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE7isEmptyEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE12getDimensionEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE5cloneEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE5getAtE{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE5getAtE{size_t}RNS0_10CoordinateE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE7getSizeEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE7isEmptyEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE12getDimensionEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE5cloneEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE5getAtE{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE5getAtE{size_t}RNS0_10CoordinateE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE7getSizeEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE7isEmptyEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE12getDimensionEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE5cloneEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE5getAtE{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE5getAtE{size_t}RNS0_10CoordinateE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE7getSizeEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE7isEmptyEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE12getDimensionEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE5cloneEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE5getAtE{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE5getAtE{size_t}RNS0_10CoordinateE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE7getSizeEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE7isEmptyEv@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 + (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 + (subst)_ZNK4geos4geom30CoordinateArraySequenceFactory6createEOSt6vectorINS0_10CoordinateESaIS3_EE{size_t}@Base 3.8.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom30CoordinateArraySequenceFactory6createEPSt6vectorINS0_10CoordinateESaIS3_EEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom30CoordinateArraySequenceFactory6createEPSt6vectorINS0_10CoordinateESaIS3_EEm@Base 3.7.0 + _ZNK4geos4geom30CoordinateArraySequenceFactory6createERKNS0_18CoordinateSequenceE@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom30CoordinateArraySequenceFactory6createEjj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom30CoordinateArraySequenceFactory6createEmm@Base 3.7.0 + _ZNK4geos4geom30CoordinateArraySequenceFactory6createEv@Base 3.5.0 + (subst)_ZNK4geos4geom32DefaultCoordinateSequenceFactory6createEOSt6vectorINS0_10CoordinateESaIS3_EE{size_t}@Base 3.8.0 + (subst)_ZNK4geos4geom32DefaultCoordinateSequenceFactory6createEPSt6vectorINS0_10CoordinateESaIS3_EE{size_t}@Base 3.8.0 + _ZNK4geos4geom32DefaultCoordinateSequenceFactory6createERKNS0_18CoordinateSequenceE@Base 3.8.0 + _ZNK4geos4geom32DefaultCoordinateSequenceFactory6createEv@Base 3.8.0 + (subst)_ZNK4geos4geom32DefaultCoordinateSequenceFactory6createE{size_t}{size_t}@Base 3.8.0 + _ZNK4geos4geom4prep13PreparedPoint10intersectsEPKNS0_8GeometryE@Base 3.5.0 + _ZNK4geos4geom4prep15PreparedPolygon10intersectsEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep15PreparedPolygon15getPointLocatorEv@Base 3.4.2 + _ZNK4geos4geom4prep15PreparedPolygon16containsProperlyEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep15PreparedPolygon21getIntersectionFinderEv@Base 3.4.2 + _ZNK4geos4geom4prep15PreparedPolygon23getIndexedFacetDistanceEv@Base 3.9.0 + _ZNK4geos4geom4prep15PreparedPolygon6coversEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep15PreparedPolygon8containsEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep15PreparedPolygon8distanceEPKNS0_8GeometryE@Base 3.9.0 + _ZNK4geos4geom4prep18PreparedLineString10intersectsEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep18PreparedLineString13nearestPointsEPKNS0_8GeometryE@Base 3.9.0 + _ZNK4geos4geom4prep18PreparedLineString23getIndexedFacetDistanceEv@Base 3.9.0 + _ZNK4geos4geom4prep18PreparedLineString8distanceEPKNS0_8GeometryE@Base 3.9.0 + _ZNK4geos4geom4prep21BasicPreparedGeometry10intersectsEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry11getGeometryEv@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry13nearestPointsEPKNS0_8GeometryE@Base 3.9.0 + _ZNK4geos4geom4prep21BasicPreparedGeometry14envelopeCoversEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry16containsProperlyEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry16isWithinDistanceEPKNS0_8GeometryEd@Base 3.10.0 + _ZNK4geos4geom4prep21BasicPreparedGeometry18envelopesIntersectEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry26isAnyTargetComponentInTestEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry6coversEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry6withinEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry7crossesEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry7touchesEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry8containsEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry8disjointEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry8distanceEPKNS0_8GeometryE@Base 3.9.0 + _ZNK4geos4geom4prep21BasicPreparedGeometry8overlapsEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep21BasicPreparedGeometry9coveredByEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep23PreparedGeometryFactory6createEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep23PreparedPolygonDistance8distanceEPKNS0_8GeometryE@Base 3.9.0 + _ZNK4geos4geom4prep24PreparedPolygonPredicate26isAnyTestComponentInTargetEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep24PreparedPolygonPredicate30isAnyTargetComponentInAreaTestEPKNS0_8GeometryEPKSt6vectorIPKNS0_10CoordinateESaIS9_EE@Base 3.4.2 + _ZNK4geos4geom4prep24PreparedPolygonPredicate33getOutermostTestComponentLocationEPKNS0_8GeometryE@Base 3.8.0 + _ZNK4geos4geom4prep24PreparedPolygonPredicate34isAnyTestComponentInTargetInteriorEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep24PreparedPolygonPredicate35isAllTestComponentsInTargetInteriorEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep26PreparedLineStringDistance8distanceEPKNS0_8GeometryE@Base 3.9.0 + _ZNK4geos4geom4prep28PreparedLineStringIntersects10intersectsEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep28PreparedLineStringIntersects22isAnyTestPointInTargetEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom4prep31PreparedLineStringNearestPoints13nearestPointsEPKNS0_8GeometryE@Base 3.9.0 + _ZNK4geos4geom4util13GeometryFixer10differenceEPKNS0_8GeometryERSt6vectorIS5_SaIS5_EE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer10fixPolygonEPKNS0_7PolygonE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer12isValidPointEPKNS0_5PointE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer13classifyHolesEPKNS0_8GeometryERSt6vectorISt10unique_ptrIS3_St14default_deleteIS3_EESaISA_EERS6_IS5_SaIS5_EESG_@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer13fixCollectionEPKNS0_18GeometryCollectionE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer13fixLineStringEPKNS0_10LineStringE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer13fixLinearRingEPKNS0_10LinearRingE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer13fixMultiPointEPKNS0_10MultiPointE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer13unionGeometryERSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer15fixMultiPolygonEPKNS0_12MultiPolygonE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer15fixPointElementEPKNS0_5PointE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer17fixPolygonElementEPKNS0_7PolygonE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer18fixMultiLineStringEPKNS0_15MultiLineStringE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer20fixLineStringElementEPKNS0_10LineStringE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer20fixLinearRingElementEPKNS0_10LinearRingE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer7fixRingEPKNS0_10LinearRingE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer8fixHolesEPKNS0_7PolygonE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer8fixPointEPKNS0_5PointE@Base 3.10.0 + _ZNK4geos4geom4util13GeometryFixer9getResultEv@Base 3.10.0 + _ZNK4geos4geom4util15SineStarFactory14createSineStarEv@Base 3.4.2 + _ZNK4geos4geom4util9Densifier17getResultGeometryEv@Base 3.8.0 + _ZNK4geos4geom5Point11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 + _ZNK4geos4geom5Point11getBoundaryEv@Base 3.4.2 + _ZNK4geos4geom5Point11reverseImplEv@Base 3.10.0 + _ZNK4geos4geom5Point12getDimensionEv@Base 3.4.2 + _ZNK4geos4geom5Point12getNumPointsEv@Base 3.4.2 + _ZNK4geos4geom5Point12getSortIndexEv@Base 3.8.0 + _ZNK4geos4geom5Point13getCoordinateEv@Base 3.4.2 + _ZNK4geos4geom5Point14getCoordinatesEv@Base 3.4.2 + _ZNK4geos4geom5Point15getGeometryTypeB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom5Point16getCoordinatesROEv@Base 3.4.2 + _ZNK4geos4geom5Point17getGeometryTypeIdEv@Base 3.4.2 + _ZNK4geos4geom5Point18compareToSameClassEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom5Point20getBoundaryDimensionEv@Base 3.4.2 + _ZNK4geos4geom5Point22getCoordinateDimensionEv@Base 3.4.2 + _ZNK4geos4geom5Point23computeEnvelopeInternalEv@Base 3.4.2 + _ZNK4geos4geom5Point4getXEv@Base 3.4.2 + _ZNK4geos4geom5Point4getYEv@Base 3.4.2 + _ZNK4geos4geom5Point4getZEv@Base 3.7.0 + _ZNK4geos4geom5Point7isEmptyEv@Base 3.4.2 + _ZNK4geos4geom5Point8apply_roEPNS0_14GeometryFilterE@Base 3.4.2 + _ZNK4geos4geom5Point8apply_roEPNS0_16CoordinateFilterE@Base 3.4.2 + _ZNK4geos4geom5Point8apply_roEPNS0_23GeometryComponentFilterE@Base 3.4.2 + _ZNK4geos4geom5Point8apply_roERNS0_24CoordinateSequenceFilterE@Base 3.4.2 + _ZNK4geos4geom5Point8isSimpleEv@Base 3.4.2 + _ZNK4geos4geom5Point9cloneImplEv@Base 3.10.0 + _ZNK4geos4geom7Polygon10convexHullEv@Base 3.4.2 + _ZNK4geos4geom7Polygon11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 + _ZNK4geos4geom7Polygon11getBoundaryEv@Base 3.4.2 + _ZNK4geos4geom7Polygon11isRectangleEv@Base 3.4.2 + _ZNK4geos4geom7Polygon11reverseImplEv@Base 3.10.0 + _ZNK4geos4geom7Polygon12getDimensionEv@Base 3.4.2 + _ZNK4geos4geom7Polygon12getNumPointsEv@Base 3.4.2 + _ZNK4geos4geom7Polygon12getSortIndexEv@Base 3.8.0 + _ZNK4geos4geom7Polygon13getCoordinateEv@Base 3.4.2 + _ZNK4geos4geom7Polygon14getCoordinatesEv@Base 3.4.2 + _ZNK4geos4geom7Polygon15getExteriorRingEv@Base 3.4.2 + _ZNK4geos4geom7Polygon15getGeometryTypeB5cxx11Ev@Base 3.5.1 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom7Polygon16getInteriorRingNEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom7Polygon16getInteriorRingNEm@Base 3.7.0 + _ZNK4geos4geom7Polygon17getGeometryTypeIdEv@Base 3.4.2 + _ZNK4geos4geom7Polygon18compareToSameClassEPKNS0_8GeometryE@Base 3.4.2 + _ZNK4geos4geom7Polygon18getNumInteriorRingEv@Base 3.4.2 + _ZNK4geos4geom7Polygon20getBoundaryDimensionEv@Base 3.4.2 + _ZNK4geos4geom7Polygon22getCoordinateDimensionEv@Base 3.4.2 + _ZNK4geos4geom7Polygon23computeEnvelopeInternalEv@Base 3.4.2 + _ZNK4geos4geom7Polygon7getAreaEv@Base 3.4.2 + _ZNK4geos4geom7Polygon7isEmptyEv@Base 3.4.2 + _ZNK4geos4geom7Polygon8apply_roEPNS0_14GeometryFilterE@Base 3.4.2 + _ZNK4geos4geom7Polygon8apply_roEPNS0_16CoordinateFilterE@Base 3.4.2 + _ZNK4geos4geom7Polygon8apply_roEPNS0_23GeometryComponentFilterE@Base 3.4.2 + _ZNK4geos4geom7Polygon8apply_roERNS0_24CoordinateSequenceFilterE@Base 3.4.2 + _ZNK4geos4geom7Polygon9cloneImplEv@Base 3.10.0 + _ZNK4geos4geom7Polygon9getLengthEv@Base 3.4.2 + _ZNK4geos4geom8Envelope10intersectsERKNS0_10CoordinateES4_@Base 3.8.0 + _ZNK4geos4geom8Envelope12intersectionERKS1_RS1_@Base 3.4.2 + _ZNK4geos4geom8Envelope6centreERNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom8Envelope6coversERKS1_@Base 3.4.2 + _ZNK4geos4geom8Envelope6coversEdd@Base 3.4.2 + _ZNK4geos4geom8Envelope6equalsEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Envelope8hashCodeEv@Base 3.4.2 + _ZNK4geos4geom8Envelope8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom8Geometry10convexHullEv@Base 3.4.2 + _ZNK4geos4geom8Geometry10differenceEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry10intersectsEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry11getCentroidERNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom8Geometry11getCentroidEv@Base 3.4.2 + _ZNK4geos4geom8Geometry11getEnvelopeEv@Base 3.4.2 + _ZNK4geos4geom8Geometry11isRectangleEv@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom8Geometry12getGeometryNEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom8Geometry12getGeometryNEm@Base 3.7.0 + _ZNK4geos4geom8Geometry12intersectionEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry13symDifferenceEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry16getInteriorPointEv@Base 3.4.2 + _ZNK4geos4geom8Geometry16getNumGeometriesEv@Base 3.4.2 + _ZNK4geos4geom8Geometry16isWithinDistanceEPKS1_d@Base 3.4.2 + _ZNK4geos4geom8Geometry17getPrecisionModelEv@Base 3.4.2 + _ZNK4geos4geom8Geometry17isDimensionStrictENS0_9Dimension13DimensionTypeE@Base 3.8.0 + _ZNK4geos4geom8Geometry17isEquivalentClassEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry19getEnvelopeInternalEv@Base 3.4.2 + _ZNK4geos4geom8Geometry5UnionEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry5UnionEv@Base 3.4.2 + _ZNK4geos4geom8Geometry5equalERKNS0_10CoordinateES4_d@Base 3.4.2 + _ZNK4geos4geom8Geometry6bufferEd@Base 3.4.2 + _ZNK4geos4geom8Geometry6bufferEdi@Base 3.4.2 + _ZNK4geos4geom8Geometry6bufferEdii@Base 3.4.2 + _ZNK4geos4geom8Geometry6coversEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry6equalsEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry6relateEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry6relateEPKS1_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZNK4geos4geom8Geometry6relateERKS1_@Base 3.11.0~beta1 + _ZNK4geos4geom8Geometry6toTextB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom8Geometry6withinEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry7compareERKSt6vectorISt10unique_ptrIS1_St14default_deleteIS1_EESaIS6_EESA_@Base 3.8.0 + _ZNK4geos4geom8Geometry7compareESt6vectorINS0_10CoordinateESaIS3_EES5_@Base 3.4.2 + _ZNK4geos4geom8Geometry7compareESt6vectorIPS1_SaIS3_EES5_@Base 3.4.2 + _ZNK4geos4geom8Geometry7crossesEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry7getAreaEv@Base 3.4.2 + _ZNK4geos4geom8Geometry7getSRIDEv@Base 3.4.2 + _ZNK4geos4geom8Geometry7isValidEv@Base 3.4.2 + _ZNK4geos4geom8Geometry7touchesEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry8apply_roEPNS0_14GeometryFilterE@Base 3.4.2 + _ZNK4geos4geom8Geometry8apply_roEPNS0_23GeometryComponentFilterE@Base 3.4.2 + _ZNK4geos4geom8Geometry8containsEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry8disjointEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry8distanceEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry8isSimpleEv@Base 3.4.2 + _ZNK4geos4geom8Geometry8overlapsEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom8Geometry9compareToEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Geometry9getLengthEv@Base 3.4.2 + _ZNK4geos4geom8Triangle3detEdddd@Base 3.5.0 + _ZNK4geos4geom8Triangle4areaEv@Base 3.11.0~beta1 + _ZNK4geos4geom8Triangle6lengthEv@Base 3.11.0~beta1 + _ZNK4geos4math2DD10isNegativeEv@Base 3.9.0 + _ZNK4geos4math2DD10isPositiveEv@Base 3.9.0 + _ZNK4geos4math2DD10reciprocalEv@Base 3.9.0 + _ZNK4geos4math2DD11doubleValueEv@Base 3.9.0 + _ZNK4geos4math2DD4ceilEv@Base 3.9.0 + _ZNK4geos4math2DD4rintEv@Base 3.9.0 + _ZNK4geos4math2DD5floorEv@Base 3.9.0 + _ZNK4geos4math2DD5isNaNEv@Base 3.9.0 + _ZNK4geos4math2DD6isZeroEv@Base 3.9.0 + _ZNK4geos4math2DD6negateEv@Base 3.9.0 + _ZNK4geos4math2DD6signumEv@Base 3.9.0 + _ZNK4geos4math2DD8intValueEv@Base 3.9.0 + _ZNK4geos4util21GeometricShapeFactory10Dimensions11getEnvelopeEv@Base 3.4.2 + _ZNK4geos4util21GeometricShapeFactory5coordEdd@Base 3.4.2 + _ZNK4geos4util7Profile13getNumTimingsEv@Base 3.4.2 + _ZNK4geos4util7Profile15getTotFormattedB5cxx11Ev@Base 3.8.0 + _ZNK4geos4util7Profile6getAvgEv@Base 3.4.2 + _ZNK4geos4util7Profile6getMaxEv@Base 3.4.2 + _ZNK4geos4util7Profile6getMinEv@Base 3.4.2 + _ZNK4geos4util7Profile6getTotEv@Base 3.4.2 + _ZNK4geos5index13intervalrtree21IntervalRTreeLeafNode5queryEddPNS0_11ItemVisitorE@Base 3.4.2 + _ZNK4geos5index13intervalrtree23IntervalRTreeBranchNode5queryEddPNS0_11ItemVisitorE@Base 3.4.2 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos5index25VertexSequencePackedRtree14queryItemRangeERKNS_4geom8EnvelopeEjRSt6vectorIjSaIjEE@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos5index25VertexSequencePackedRtree14queryItemRangeERKNS_4geom8EnvelopeEmRSt6vectorImSaImEE@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos5index25VertexSequencePackedRtree14queryNodeRangeERKNS_4geom8EnvelopeEjjRSt6vectorIjSaIjEE@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos5index25VertexSequencePackedRtree14queryNodeRangeERKNS_4geom8EnvelopeEmmRSt6vectorImSaImEE@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos5index25VertexSequencePackedRtree5queryERKNS_4geom8EnvelopeERSt6vectorIjSaIjEE@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos5index25VertexSequencePackedRtree5queryERKNS_4geom8EnvelopeERSt6vectorImSaImEE@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos5index25VertexSequencePackedRtree9levelSizeEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos5index25VertexSequencePackedRtree9levelSizeEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos5index25VertexSequencePackedRtree9queryNodeERKNS_4geom8EnvelopeEjjRSt6vectorIjSaIjEE@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos5index25VertexSequencePackedRtree9queryNodeERKNS_4geom8EnvelopeEmmRSt6vectorImSaImEE@Base 3.11.1 + _ZNK4geos5index5chain13MonotoneChain11getEnvelopeEd@Base 3.10.0 + _ZNK4geos5index5chain13MonotoneChain11getEnvelopeEv@Base 3.10.0 + (subst)_ZNK4geos5index5chain13MonotoneChain13computeSelectERKNS_4geom8EnvelopeE{size_t}{size_t}RNS1_25MonotoneChainSelectActionE@Base 3.10.0 + _ZNK4geos5index5chain13MonotoneChain14getCoordinatesEv@Base 3.4.2 + _ZNK4geos5index5chain13MonotoneChain15computeOverlapsEPKS2_PNS1_26MonotoneChainOverlapActionE@Base 3.10.0 + _ZNK4geos5index5chain13MonotoneChain15computeOverlapsEPKS2_dPNS1_26MonotoneChainOverlapActionE@Base 3.10.0 + (subst)_ZNK4geos5index5chain13MonotoneChain15computeOverlapsE{size_t}{size_t}RKS2_{size_t}{size_t}dRNS1_26MonotoneChainOverlapActionE@Base 3.10.0 + _ZNK4geos5index5chain13MonotoneChain6selectERKNS_4geom8EnvelopeERNS1_25MonotoneChainSelectActionE@Base 3.10.0 + (subst)_ZNK4geos5index5chain13MonotoneChain8overlapsE{size_t}{size_t}RKS2_{size_t}{size_t}d@Base 3.9.0 + _ZNK4geos5index7bintree8Interval6getMaxEv@Base 3.4.2 + _ZNK4geos5index7bintree8Interval6getMinEv@Base 3.4.2 + _ZNK4geos5index7bintree8Interval8containsEPKS2_@Base 3.4.2 + _ZNK4geos5index7bintree8Interval8containsEd@Base 3.4.2 + _ZNK4geos5index7bintree8Interval8containsEdd@Base 3.4.2 + _ZNK4geos5index7bintree8Interval8getWidthEv@Base 3.4.2 + _ZNK4geos5index7bintree8Interval8overlapsEPKS2_@Base 3.4.2 + _ZNK4geos5index7bintree8Interval8overlapsEdd@Base 3.4.2 + _ZNK4geos5index7strtree12AbstractNode6isLeafEv@Base 3.8.0 + _ZNK4geos5index7strtree12AbstractNode9getBoundsEv@Base 3.4.2 + _ZNK4geos5index7strtree13BoundablePair11getDistanceEv@Base 3.6.0 + _ZNK4geos5index7strtree13BoundablePair12getBoundableEi@Base 3.6.0 + _ZNK4geos5index7strtree13BoundablePair8distanceEv@Base 3.6.0 + _ZNK4geos5index7strtree13BoundablePair8isLeavesEv@Base 3.6.0 + _ZNK4geos5index7strtree13ItemBoundable6isLeafEv@Base 3.8.0 + _ZNK4geos5index7strtree13ItemBoundable9getBoundsEv@Base 3.4.2 + _ZNK4geos5index7strtree13SimpleSTRnode11getNumNodesEv@Base 3.9.0 + _ZNK4geos5index7strtree13SimpleSTRnode15getNumLeafNodesEv@Base 3.9.0 + _ZNK4geos5index7strtree13SimpleSTRnode6isLeafEv@Base 3.9.0 + _ZNK4geos5index7strtree13SimpleSTRnode8toStringERSoi@Base 3.9.0 + _ZNK4geos5index7strtree13SimpleSTRnode9getBoundsEv@Base 3.9.0 + _ZNK4geos5index7strtree13SimpleSTRpair11getDistanceEv@Base 3.9.0 + _ZNK4geos5index7strtree13SimpleSTRpair7getNodeEi@Base 3.9.0 + _ZNK4geos5index7strtree13SimpleSTRpair8isLeavesEv@Base 3.9.0 + _ZNK4geos5index7strtree15SIRAbstractNode13computeBoundsEv@Base 3.4.2 + _ZNK4geos5index7strtree15STRAbstractNode13computeBoundsEv@Base 3.4.2 + _ZNK4geos5index8quadtree3Key11getEnvelopeEv@Base 3.4.2 + _ZNK4geos5index8quadtree3Key8getLevelEv@Base 3.4.2 + _ZNK4geos5index8quadtree3Key8getPointEv@Base 3.4.2 + _ZNK4geos5index8quadtree3Key9getCentreEv@Base 3.4.2 + _ZNK4geos5index8quadtree4Node13isSearchMatchERKNS_4geom8EnvelopeE@Base 3.4.2 + _ZNK4geos5index8quadtree4Node8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos5index8quadtree4Root13isSearchMatchERKNS_4geom8EnvelopeE@Base 3.4.2 + _ZNK4geos5index8quadtree8NodeBase11addAllItemsERSt6vectorIPvSaIS4_EE@Base 3.4.2 + _ZNK4geos5index8quadtree8NodeBase12getNodeCountEv@Base 3.4.2 + _ZNK4geos5index8quadtree8NodeBase26addAllItemsFromOverlappingERKNS_4geom8EnvelopeERSt6vectorIPvSaIS8_EE@Base 3.4.2 + _ZNK4geos5index8quadtree8NodeBase4sizeEv@Base 3.4.2 + _ZNK4geos5index8quadtree8NodeBase5depthEv@Base 3.4.2 + _ZNK4geos5index8quadtree8NodeBase8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos5index8quadtree8Quadtree8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos5index9sweepline14SweepLineEvent9compareToEPKS2_@Base 3.4.2 + _ZNK4geos5index9sweepline22SweepLineEventLessThenclEPKNS1_14SweepLineEventES5_@Base 3.4.2 + _ZNK4geos6noding11ScaledNoder18getNodedSubstringsEv@Base 3.4.2 + _ZNK4geos6noding11ScaledNoder5scaleERSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 + _ZNK4geos6noding11ScaledNoder6Scaler9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos6noding11ScaledNoder7rescaleERSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 + _ZNK4geos6noding11ScaledNoder8ReScaler9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos6noding11SimpleNoder18getNodedSubstringsEv@Base 3.4.2 + _ZNK4geos6noding12MCIndexNoder18getNodedSubstringsEv@Base 3.4.2 + _ZNK4geos6noding13IteratedNoder18getNodedSubstringsEv@Base 3.4.2 + _ZNK4geos6noding13SegmentString5printERSo@Base 3.4.2 + _ZNK4geos6noding15NodingValidator13checkCollapseERKNS_4geom10CoordinateES5_S5_@Base 3.4.2 + _ZNK4geos6noding15NodingValidator14checkCollapsesERKNS0_13SegmentStringE@Base 3.4.2 + _ZNK4geos6noding15NodingValidator14checkCollapsesEv@Base 3.4.2 + _ZNK4geos6noding15NodingValidator23hasInteriorIntersectionERKNS_9algorithm15LineIntersectorERKNS_4geom10CoordinateES9_@Base 3.4.2 + _ZNK4geos6noding15NodingValidator29checkEndPtVertexIntersectionsERKNS_4geom10CoordinateERKSt6vectorIPNS0_13SegmentStringESaIS8_EE@Base 3.4.2 + _ZNK4geos6noding15NodingValidator29checkEndPtVertexIntersectionsEv@Base 3.4.2 + _ZNK4geos6noding15SegmentNodeList15createSplitEdgeEPKNS0_11SegmentNodeES4_@Base 3.9.0 + _ZNK4geos6noding15SegmentNodeList18addEdgeCoordinatesEPKNS0_11SegmentNodeES4_RSt6vectorINS_4geom10CoordinateESaIS7_EE@Base 3.9.0 + _ZNK4geos6noding15SegmentNodeList18createSplitEdgePtsEPKNS0_11SegmentNodeES4_@Base 3.10.0 + _ZNK4geos6noding15SegmentNodeList26checkSplitEdgesCorrectnessERKSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.9.0 + (subst)_ZNK4geos6noding15SegmentNodeList30findCollapsesFromInsertedNodesERSt6vectorI{size_t}SaI{size_t}EE@Base 3.9.0 + (subst)_ZNK4geos6noding15SegmentNodeList33findCollapsesFromExistingVerticesERSt6vectorI{size_t}SaI{size_t}EE@Base 3.9.0 + _ZNK4geos6noding15SegmentNodeList7prepareEv@Base 3.10.0 + _ZNK4geos6noding15ValidatingNoder18getNodedSubstringsEv@Base 3.9.0 + _ZNK4geos6noding17IntersectionAdder6isDoneEv@Base 3.4.2 + (subst)_ZNK4geos6noding18BasicSegmentString13getCoordinateE{size_t}@Base 3.8.0 + _ZNK4geos6noding18BasicSegmentString14getCoordinatesEv@Base 3.4.2 + _ZNK4geos6noding18BasicSegmentString4sizeEv@Base 3.4.2 + _ZNK4geos6noding18BasicSegmentString5printERSo@Base 3.4.2 + _ZNK4geos6noding18BasicSegmentString8isClosedEv@Base 3.4.2 + _ZNK4geos6noding18NodedSegmentString11getNodeListEv@Base 3.4.2 + (subst)_ZNK4geos6noding18NodedSegmentString13getCoordinateE{size_t}@Base 3.8.0 + _ZNK4geos6noding18NodedSegmentString14getCoordinatesEv@Base 3.4.2 + _ZNK4geos6noding18NodedSegmentString4sizeEv@Base 3.4.2 + _ZNK4geos6noding18NodedSegmentString5printERSo@Base 3.4.2 + _ZNK4geos6noding18NodedSegmentString8isClosedEv@Base 3.4.2 + _ZNK4geos6noding18SegmentIntersector6isDoneEv@Base 3.4.2 + _ZNK4geos6noding19FastNodingValidator15getErrorMessageB5cxx11Ev@Base 3.5.1 + _ZNK4geos6noding22SegmentExtractingNoder18getNodedSubstringsEv@Base 3.11.0~beta1 + _ZNK4geos6noding23IntersectionFinderAdder6isDoneEv@Base 3.4.2 + _ZNK4geos6noding23OrientedCoordinateArray8HashCodeclERKS1_@Base 3.8.0 + _ZNK4geos6noding23OrientedCoordinateArray9compareToERKS1_@Base 3.4.2 + _ZNK4geos6noding23OrientedCoordinateArrayeqERKS1_@Base 3.8.0 + _ZNK4geos6noding24NodingIntersectionFinder6isDoneEv@Base 3.8.0 + _ZNK4geos6noding27SegmentIntersectionDetector6isDoneEv@Base 3.4.2 + _ZNK4geos6noding4snap13SnappingNoder18getNodedSubstringsEv@Base 3.9.0 + _ZNK4geos6noding4snap25SnappingIntersectionAdder6isDoneEv@Base 3.9.0 + _ZNK4geos6noding9snapround17SnapRoundingNoder18getNodedSubstringsEv@Base 3.9.0 + _ZNK4geos6noding9snapround17SnapRoundingNoder5roundERKSt6vectorINS_4geom10CoordinateESaIS5_EE@Base 3.10.0 + _ZNK4geos6noding9snapround18MCIndexSnapRounder18getNodedSubstringsEv@Base 3.4.2 + _ZNK4geos6noding9snapround19MCIndexPointSnapper15getSafeEnvelopeERKNS1_8HotPixelE@Base 3.9.0 + _ZNK4geos6noding9snapround29SnapRoundingIntersectionAdder6isDoneEv@Base 3.9.0 + _ZNK4geos6noding9snapround8HotPixel10intersectsERKNS_4geom10CoordinateE@Base 3.9.0 + _ZNK4geos6noding9snapround8HotPixel10intersectsERKNS_4geom10CoordinateES6_@Base 3.4.2 + _ZNK4geos6noding9snapround8HotPixel13getCoordinateEv@Base 3.9.0 + _ZNK4geos6noding9snapround8HotPixel16intersectsScaledEdddd@Base 3.9.0 + _ZNK4geos6noding9snapround8HotPixel22intersectsPixelClosureERKNS_4geom10CoordinateES6_@Base 3.9.0 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify10LinkedRing13getCoordinateEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos8simplify10LinkedRing13getCoordinateEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify10LinkedRing13hasCoordinateEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos8simplify10LinkedRing13hasCoordinateEm@Base 3.11.1 + _ZNK4geos8simplify10LinkedRing14getCoordinatesEv@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify10LinkedRing14nextCoordinateEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos8simplify10LinkedRing14nextCoordinateEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify10LinkedRing14prevCoordinateEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos8simplify10LinkedRing14prevCoordinateEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify10LinkedRing4nextEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos8simplify10LinkedRing4nextEm@Base 3.11.1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify10LinkedRing4prevEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos8simplify10LinkedRing4prevEm@Base 3.11.1 + _ZNK4geos8simplify10LinkedRing4sizeEv@Base 3.11.0~beta1 + _ZNK4geos8simplify13RingHullIndex4sizeEv@Base 3.11.0~beta1 + _ZNK4geos8simplify13RingHullIndex5queryERKNS_4geom8EnvelopeE@Base 3.11.0~beta1 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify16TaggedLineString10getSegmentEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos8simplify16TaggedLineString10getSegmentEm@Base 3.7.0 + _ZNK4geos8simplify16TaggedLineString11getSegmentsEv@Base 3.4.2 + _ZNK4geos8simplify16TaggedLineString12asLineStringEv@Base 3.4.2 + _ZNK4geos8simplify16TaggedLineString12asLinearRingEv@Base 3.4.2 + _ZNK4geos8simplify16TaggedLineString13getResultSizeEv@Base 3.4.2 + _ZNK4geos8simplify16TaggedLineString14getMinimumSizeEv@Base 3.4.2 + _ZNK4geos8simplify16TaggedLineString20getParentCoordinatesEv@Base 3.4.2 + _ZNK4geos8simplify16TaggedLineString20getResultCoordinatesEv@Base 3.4.2 + _ZNK4geos8simplify16TaggedLineString9getParentEv@Base 3.4.2 + _ZNK4geos8simplify17TaggedLineSegment8getIndexEv@Base 3.4.2 + _ZNK4geos8simplify17TaggedLineSegment9getParentEv@Base 3.4.2 + _ZNK4geos8simplify21PolygonHullSimplifier11polygonHullEPKNS_4geom7PolygonERSt6vectorIPNS0_8RingHullESaIS8_EERNS0_13RingHullIndexE@Base 3.11.0~beta1 + _ZNK4geos8simplify21PolygonHullSimplifier8ringAreaEPKNS_4geom7PolygonE@Base 3.11.0~beta1 + _ZNK4geos8simplify26TaggedLineStringSimplifier23hasInteriorIntersectionERKNS_4geom11LineSegmentES5_@Base 3.4.2 + _ZNK4geos8simplify8RingHull10toGeometryEv@Base 3.11.0~beta1 + _ZNK4geos8simplify8RingHull11getEnvelopeEv@Base 3.11.0~beta1 + _ZNK4geos8simplify8RingHull11isRemovableERKNS1_6CornerERKNS0_13RingHullIndexE@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify8RingHull13getCoordinateEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos8simplify8RingHull13getCoordinateEm@Base 3.11.1 + _ZNK4geos8simplify8RingHull21hasIntersectingVertexERKNS1_6CornerERKNS_4geom8EnvelopeEPKS1_@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify8RingHull5queryERKNS_4geom8EnvelopeERSt6vectorIjSaIjEE@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos8simplify8RingHull5queryERKNS_4geom8EnvelopeERSt6vectorImSaImEE@Base 3.11.1 + _ZNK4geos8simplify8RingHull6Corner10intersectsERKNS_4geom10CoordinateERKNS0_10LinkedRingE@Base 3.11.0~beta1 + _ZNK4geos8simplify8RingHull6Corner7getAreaEv@Base 3.11.0~beta1 + _ZNK4geos8simplify8RingHull6Corner8envelopeERKNS0_10LinkedRingERNS_4geom8EnvelopeE@Base 3.11.0~beta1 + _ZNK4geos8simplify8RingHull6Corner8getIndexEv@Base 3.11.0~beta1 + (arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos8simplify8RingHull6Corner8isVertexEj@Base 3.11.0~beta1 + (arch=!armel !armhf !i386 !powerpc !x32)_ZNK4geos8simplify8RingHull6Corner8isVertexEm@Base 3.11.1 + _ZNK4geos8simplify8RingHull6Corner9isRemovedERKNS0_10LinkedRingE@Base 3.11.0~beta1 + _ZNK4geos9algorithm11HCoordinate13getCoordinateERNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9algorithm11HCoordinate4getXEv@Base 3.4.2 + _ZNK4geos9algorithm11HCoordinate4getYEv@Base 3.4.2 + _ZNK4geos9algorithm15LineIntersector12intersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.8.0 + (subst)_ZNK4geos9algorithm15LineIntersector15getEdgeDistanceE{size_t}{size_t}@Base 3.8.0 + _ZNK4geos9algorithm15LineIntersector8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos9algorithm17InteriorPointArea16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9algorithm17InteriorPointLine16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9algorithm18InteriorPointPoint16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9algorithm18RayCrossingCounter11getLocationEv@Base 3.10.0 + _ZNK4geos9algorithm18RayCrossingCounter16isPointInPolygonEv@Base 3.10.0 + _ZNK4geos9algorithm4hull11ConcaveHull15isRemovableHoleEPKNS1_7HullTriE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull11ConcaveHull17isRemovableBorderEPKNS1_7HullTriE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull11ConcaveHull22isBelowLengthThresholdEPKNS1_7HullTriE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons10isFrameTriEPKNS_11triangulate3tri3TriEPKNS_4geom18CoordinateSequenceE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons11isBorderTriEPKNS_11triangulate3tri3TriE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons11isRemovableEPKNS_11triangulate3tri3TriE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons11vertexIndexEPKNS_11triangulate3tri3TriEPKNS_4geom18CoordinateSequenceE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons13isHoleSeedTriEPKNS_11triangulate3tri3TriE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons14hasAllVerticesEPKNS_4geom10LinearRingEPKNS_11triangulate3tri3TriE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons15findHoleSeedTriEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons23computeTargetEdgeLengthERNS_11triangulate3tri7TriListINS4_3TriEEEPKNS_4geom18CoordinateSequenceEd@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons23isTouchingSinglePolygonEPKNS_11triangulate3tri3TriE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons8envelopeEPKNS_11triangulate3tri3TriERNS_4geom8EnvelopeE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull21ConcaveHullOfPolygons9hasVertexEPKNS_4geom10LinearRingERKNS3_10CoordinateE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri12isConnectingEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri13boundaryIndexEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri15boundaryIndexCWEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri15isBoundaryTouchEi@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri16boundaryIndexCCWEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri16hasBoundaryTouchEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri16lengthOfBoundaryEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri19isolatedVertexIndexERNS_11triangulate3tri7TriListIS2_EE@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri19lengthOfLongestEdgeEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri20adjacent2VertexIndexEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri7getSizeEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm4hull7HullTri8isMarkedEv@Base 3.11.0~beta1 + _ZNK4geos9algorithm8Centroid11getCentroidERNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilter17isGeometryChangedEv@Base 3.4.2 + _ZNK4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilter6isDoneEv@Base 3.4.2 + _ZNK4geos9edgegraph8HalfEdge10findLowestEv@Base 3.9.0 + _ZNK4geos9edgegraph8HalfEdge11directionPtEv@Base 3.9.0 + _ZNK4geos9edgegraph8HalfEdge13isEdgesSortedEv@Base 3.9.0 + _ZNK4geos9edgegraph8HalfEdge23compareAngularDirectionEPKS1_@Base 3.9.0 + _ZNK4geos9edgegraph8HalfEdge4prevEv@Base 3.10.0 + _ZNK4geos9edgegraph8HalfEdge6equalsERKNS_4geom10CoordinateES5_@Base 3.9.0 + _ZNK4geos9geomgraph11EdgeEndStar13getCoordinateEv@Base 3.6.0 + _ZNK4geos9geomgraph11EdgeEndStar3endEv@Base 3.6.0 + _ZNK4geos9geomgraph11EdgeEndStar5beginEv@Base 3.6.0 + _ZNK4geos9geomgraph11EdgeEndStar5printB5cxx11Ev@Base 3.6.0 + _ZNK4geos9geomgraph11NodeFactory10createNodeERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9geomgraph12DirectedEdge13getDepthDeltaEv@Base 3.6.2 + _ZNK4geos9geomgraph12DirectedEdge5printB5cxx11Ev@Base 3.6.2 + _ZNK4geos9geomgraph13GeometryGraph8findEdgeEPKNS_4geom10LineStringE@Base 3.9.0 + _ZNK4geos9geomgraph14GraphComponent10isInResultEv@Base 3.4.2 + _ZNK4geos9geomgraph14GraphComponent12isCoveredSetEv@Base 3.4.2 + _ZNK4geos9geomgraph14GraphComponent9isCoveredEv@Base 3.4.2 + _ZNK4geos9geomgraph14GraphComponent9isVisitedEv@Base 3.4.2 + _ZNK4geos9geomgraph16DirectedEdgeStar5printB5cxx11Ev@Base 3.6.2 + _ZNK4geos9geomgraph16TopologyLocation8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos9geomgraph20EdgeIntersectionList14isIntersectionERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9geomgraph20EdgeIntersectionList5printB5cxx11Ev@Base 3.5.1 + _ZNK4geos9geomgraph20EdgeIntersectionList7isEmptyEv@Base 3.4.2 + _ZNK4geos9geomgraph4Edge10isIsolatedEv@Base 3.4.2 + _ZNK4geos9geomgraph4Edge11isCollapsedEv@Base 3.4.2 + _ZNK4geos9geomgraph4Edge12getNumPointsEv@Base 3.4.2 + _ZNK4geos9geomgraph4Edge12printReverseB5cxx11Ev@Base 3.5.1 + _ZNK4geos9geomgraph4Edge13getCoordinateEv@Base 3.4.2 + (subst)_ZNK4geos9geomgraph4Edge13getCoordinateE{size_t}@Base 3.8.0 + _ZNK4geos9geomgraph4Edge13getDepthDeltaEv@Base 3.4.2 + _ZNK4geos9geomgraph4Edge14getCoordinatesEv@Base 3.4.2 + _ZNK4geos9geomgraph4Edge16isPointwiseEqualEPKS1_@Base 3.4.2 + _ZNK4geos9geomgraph4Edge22getMaximumSegmentIndexEv@Base 3.4.2 + _ZNK4geos9geomgraph4Edge5printB5cxx11Ev@Base 3.5.1 + _ZNK4geos9geomgraph4Edge6equalsEPKS1_@Base 3.4.2 + _ZNK4geos9geomgraph4Edge6equalsERKS1_@Base 3.4.2 + _ZNK4geos9geomgraph4Edge8isClosedEv@Base 3.4.2 + _ZNK4geos9geomgraph4Node10isIsolatedEv@Base 3.4.2 + _ZNK4geos9geomgraph4Node13getCoordinateEv@Base 3.4.2 + _ZNK4geos9geomgraph4Node22isIncidentEdgeInResultEv@Base 3.4.2 + _ZNK4geos9geomgraph4Node4getZEv@Base 3.4.2 + _ZNK4geos9geomgraph5Depth8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos9geomgraph5Label8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos9geomgraph7EdgeEnd16compareDirectionEPKS1_@Base 3.4.2 + _ZNK4geos9geomgraph7EdgeEnd5printB5cxx11Ev@Base 3.6.0 + _ZNK4geos9geomgraph7EdgeEnd9compareToEPKS1_@Base 3.4.2 + _ZNK4geos9geomgraph7NodeMap16getBoundaryNodesEhRSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.10.0 + _ZNK4geos9geomgraph7NodeMap4findERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9geomgraph7NodeMap5printB5cxx11Ev@Base 3.5.1 + _ZNK4geos9geomgraph8EdgeList13findEdgeIndexEPKNS0_4EdgeE@Base 3.8.0 + _ZNK4geos9geomgraph8EdgeList13findEqualEdgeEPKNS0_4EdgeE@Base 3.8.0 + _ZNK4geos9linearref14LinearIterator11isEndOfLineEv@Base 3.4.2 + _ZNK4geos9linearref14LinearIterator13getSegmentEndEv@Base 3.4.2 + _ZNK4geos9linearref14LinearIterator14getVertexIndexEv@Base 3.4.2 + _ZNK4geos9linearref14LinearIterator15getSegmentStartEv@Base 3.4.2 + _ZNK4geos9linearref14LinearIterator17getComponentIndexEv@Base 3.4.2 + _ZNK4geos9linearref14LinearIterator7getLineEv@Base 3.4.2 + _ZNK4geos9linearref14LinearIterator7hasNextEv@Base 3.4.2 + _ZNK4geos9linearref14LinearLocation10getSegmentEPKNS_4geom8GeometryE@Base 3.4.2 + _ZNK4geos9linearref14LinearLocation10isEndpointERKNS_4geom8GeometryE@Base 3.4.2 + _ZNK4geos9linearref14LinearLocation13getCoordinateEPKNS_4geom8GeometryE@Base 3.4.2 + _ZNK4geos9linearref14LinearLocation15getSegmentIndexEv@Base 3.4.2 + _ZNK4geos9linearref14LinearLocation15isOnSameSegmentERKS1_@Base 3.4.2 + _ZNK4geos9linearref14LinearLocation16getSegmentLengthEPKNS_4geom8GeometryE@Base 3.4.2 + _ZNK4geos9linearref14LinearLocation17getComponentIndexEv@Base 3.4.2 + _ZNK4geos9linearref14LinearLocation18getSegmentFractionEv@Base 3.4.2 + (subst)_ZNK4geos9linearref14LinearLocation21compareLocationValuesE{size_t}{size_t}d@Base 3.8.0 + _ZNK4geos9linearref14LinearLocation7isValidEPKNS_4geom8GeometryE@Base 3.4.2 + _ZNK4geos9linearref14LinearLocation8isVertexEv@Base 3.4.2 + _ZNK4geos9linearref14LinearLocation9compareToERKS1_@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine10clampIndexEd@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine10locationOfEd@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine10locationOfEdb@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine11extractLineEdd@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine11getEndIndexEv@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine12extractPointEd@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine12extractPointEdd@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine12indexOfAfterERKNS_4geom10CoordinateEd@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine12isValidIndexEd@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine13getStartIndexEv@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine13positiveIndexEd@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine7indexOfERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine7projectERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9linearref17LengthIndexedLine9indicesOfEPKNS_4geom8GeometryE@Base 3.4.2 + _ZNK4geos9linearref17LengthLocationMap11getLocationEd@Base 3.4.2 + _ZNK4geos9linearref17LengthLocationMap11getLocationEdb@Base 3.4.2 + _ZNK4geos9linearref17LengthLocationMap13resolveHigherERKNS0_14LinearLocationE@Base 3.4.2 + _ZNK4geos9linearref17LengthLocationMap18getLocationForwardEd@Base 3.4.2 + _ZNK4geos9linearref17LengthLocationMap9getLengthERKNS0_14LinearLocationE@Base 3.4.2 + _ZNK4geos9linearref18LengthIndexOfPoint12indexOfAfterERKNS_4geom10CoordinateEd@Base 3.4.2 + _ZNK4geos9linearref18LengthIndexOfPoint16indexOfFromStartERKNS_4geom10CoordinateEd@Base 3.4.2 + _ZNK4geos9linearref18LengthIndexOfPoint21segmentNearestMeasureEPKNS_4geom11LineSegmentERKNS2_10CoordinateEd@Base 3.4.2 + _ZNK4geos9linearref18LengthIndexOfPoint7indexOfERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9linearref19LocationIndexOfLine9indicesOfEPKNS_4geom8GeometryE@Base 3.4.2 + _ZNK4geos9linearref20LocationIndexOfPoint12indexOfAfterERKNS_4geom10CoordinateEPKNS0_14LinearLocationE@Base 3.4.2 + _ZNK4geos9linearref20LocationIndexOfPoint16indexOfFromStartERKNS_4geom10CoordinateEPKNS0_14LinearLocationE@Base 3.4.2 + _ZNK4geos9linearref20LocationIndexOfPoint7indexOfERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9linearref21LinearGeometryBuilder17getLastCoordinateEv@Base 3.4.2 + _ZNK4geos9operation10polygonize22PolygonizeDirectedEdge7getNextEv@Base 3.4.2 + _ZNK4geos9operation10polygonize22PolygonizeDirectedEdge8getLabelEv@Base 3.4.2 + _ZNK4geos9operation10polygonize22PolygonizeDirectedEdge8isInRingEv@Base 3.4.2 + _ZNK4geos9operation10polygonize8EdgeRing12getOuterHoleEv@Base 3.8.0 + _ZNK4geos9operation12intersection28RectangleIntersectionBuilder5emptyEv@Base 3.5.0 + _ZNK4geos9operation12intersection9Rectangle12toLinearRingERKNS_4geom15GeometryFactoryE@Base 3.5.0 + _ZNK4geos9operation12intersection9Rectangle9toPolygonERKNS_4geom15GeometryFactoryE@Base 3.5.0 + _ZNK4geos9operation22GeometryGraphOperation14getArgGeometryEj@Base 3.4.2 + _ZNK4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder15hasIntersectionEv@Base 3.10.0 + (subst)_ZNK4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder22isIntersectionEndpointEPKNS_6noding13SegmentStringE{size_t}RKNS_9algorithm15LineIntersectorE{size_t}@Base 3.10.0 + (subst)_ZNK4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder23intersectionVertexIndexERKNS_9algorithm15LineIntersectorE{size_t}@Base 3.10.0 + _ZNK4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinder6isDoneEv@Base 3.10.0 + _ZNK4geos9operation5valid11PolygonRing10getTouchesEv@Base 3.10.0 + _ZNK4geos9operation5valid11PolygonRing11isOnlyTouchEPKS2_RKNS_4geom10CoordinateE@Base 3.10.0 + _ZNK4geos9operation5valid16PolygonRingTouch12isAtLocationERKNS_4geom10CoordinateE@Base 3.10.0 + _ZNK4geos9operation5valid16PolygonRingTouch13getCoordinateEv@Base 3.10.0 + _ZNK4geos9operation5valid16PolygonRingTouch7getRingEv@Base 3.10.0 + _ZNK4geos9operation5valid19PolygonRingSelfNode10isExteriorEb@Base 3.10.0 + _ZNK4geos9operation5valid23TopologyValidationError10getMessageB5cxx11Ev@Base 3.10.0 + _ZNK4geos9operation5valid23TopologyValidationError12getErrorTypeEv@Base 3.10.0 + _ZNK4geos9operation5valid23TopologyValidationError13getCoordinateEv@Base 3.10.0 + _ZNK4geos9operation5valid23TopologyValidationError8toStringB5cxx11Ev@Base 3.10.0 + (subst)_ZNK4geos9operation5valid27PolygonIntersectionAnalyzer16isAdjacentInRingEPKNS_6noding13SegmentStringE{size_t}{size_t}@Base 3.10.0 + (subst)_ZNK4geos9operation5valid27PolygonIntersectionAnalyzer20prevCoordinateInRingEPKNS_6noding13SegmentStringE{size_t}@Base 3.10.0 + _ZNK4geos9operation5valid27PolygonIntersectionAnalyzer6isDoneEv@Base 3.10.0 + _ZNK4geos9operation6buffer13BufferBuilder25createEmptyResultGeometryEv@Base 3.4.2 + _ZNK4geos9operation6buffer21BufferCurveSetBuilder9isRingCCWEPKNS_4geom18CoordinateSequenceE@Base 3.11.0~beta1 + (subst)_ZNK4geos9operation6buffer25BufferInputLineSimplifier11isDeletableE{size_t}{size_t}{size_t}d@Base 3.8.0 + _ZNK4geos9operation6buffer25BufferInputLineSimplifier12collapseLineEv@Base 3.4.2 + (subst)_ZNK4geos9operation6buffer25BufferInputLineSimplifier16isShallowSampledERKNS_4geom10CoordinateES6_{size_t}{size_t}d@Base 3.8.0 + _ZNK4geos9operation6buffer25BufferInputLineSimplifier18isShallowConcavityERKNS_4geom10CoordinateES6_S6_d@Base 3.4.2 + (subst)_ZNK4geos9operation6buffer25BufferInputLineSimplifier23findNextNonDeletedIndexE{size_t}@Base 3.8.0 + _ZNK4geos9operation6buffer25BufferInputLineSimplifier9isConcaveERKNS_4geom10CoordinateES6_S6_@Base 3.4.2 + _ZNK4geos9operation6buffer25BufferInputLineSimplifier9isShallowERKNS_4geom10CoordinateES6_S6_d@Base 3.4.2 + _ZNK4geos9operation6relate13EdgeEndBundle5printB5cxx11Ev@Base 3.7.0 + _ZNK4geos9operation6relate17RelateNodeFactory10createNodeERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9operation7overlay15ElevationMatrix15getAvgElevationEv@Base 3.4.2 + _ZNK4geos9operation7overlay15ElevationMatrix5printB5cxx11Ev@Base 3.5.1 + _ZNK4geos9operation7overlay15ElevationMatrix7elevateEPNS_4geom8GeometryE@Base 3.4.2 + _ZNK4geos9operation7overlay15ElevationMatrix7getCellERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9operation7overlay18OverlayNodeFactory10createNodeERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9operation7overlay19ElevationMatrixCell5printB5cxx11Ev@Base 3.5.1 + _ZNK4geos9operation7overlay19ElevationMatrixCell6getAvgEv@Base 3.4.2 + _ZNK4geos9operation7overlay19ElevationMatrixCell8getTotalEv@Base 3.4.2 + _ZNK4geos9operation7overlay21ElevationMatrixFilter9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9operation7overlay9OverlayOp6mergeZEPNS_9geomgraph4NodeEPKNS_4geom10LineStringE@Base 3.4.2 + _ZNK4geos9operation7overlay9OverlayOp6mergeZEPNS_9geomgraph4NodeEPKNS_4geom7PolygonE@Base 3.4.2 + _ZNK4geos9operation8distance13FacetSequence11getEnvelopeEv@Base 3.6.0 + (subst)_ZNK4geos9operation8distance13FacetSequence13getCoordinateE{size_t}@Base 3.6.0 + _ZNK4geos9operation8distance13FacetSequence16nearestLocationsERKS2_@Base 3.8.0 + _ZNK4geos9operation8distance13FacetSequence23computeDistanceLineLineERKS2_PSt6vectorINS1_16GeometryLocationESaIS6_EE@Base 3.8.0 + _ZNK4geos9operation8distance13FacetSequence24computeDistancePointLineERKNS_4geom10CoordinateERKS2_PSt6vectorINS1_16GeometryLocationESaISA_EE@Base 3.8.0 + (subst)_ZNK4geos9operation8distance13FacetSequence30updateNearestLocationsLineLineE{size_t}RKNS_4geom10CoordinateES6_RKS2_{size_t}S6_S6_PSt6vectorINS1_16GeometryLocationESaISA_EE@Base 3.8.0 + (subst)_ZNK4geos9operation8distance13FacetSequence31updateNearestLocationsPointLineERKNS_4geom10CoordinateERKS2_{size_t}S6_S6_PSt6vectorINS1_16GeometryLocationESaISA_EE@Base 3.8.0 + _ZNK4geos9operation8distance13FacetSequence4sizeEv@Base 3.6.0 + _ZNK4geos9operation8distance13FacetSequence7isPointEv@Base 3.6.0 + _ZNK4geos9operation8distance13FacetSequence8distanceERKS2_@Base 3.7.0 + _ZNK4geos9operation8distance20IndexedFacetDistance13nearestPointsEPKNS_4geom8GeometryE@Base 3.8.0 + _ZNK4geos9operation8distance20IndexedFacetDistance16nearestLocationsEPKNS_4geom8GeometryE@Base 3.8.0 + _ZNK4geos9operation8distance20IndexedFacetDistance8distanceEPKNS_4geom8GeometryE@Base 3.8.0 + _ZNK4geos9operation8geounion18PointGeometryUnion5UnionEv@Base 3.4.2 + _ZNK4geos9operation8geounion20CascadedPolygonUnion11unionActualEOSt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EES9_@Base 3.10.0 + _ZNK4geos9operation8geounion20CascadedPolygonUnion11unionActualEPKNS_4geom8GeometryES6_@Base 3.10.0 + _ZNK4geos9operation8geounion20CascadedPolygonUnion9unionSafeEPKNS_4geom8GeometryES6_@Base 3.10.0 + _ZNK4geos9operation8geounion20ClassicUnionStrategy19isFloatingPrecisionEv@Base 3.9.0 + _ZNK4geos9operation9linemerge13LineMergeEdge7getLineEv@Base 3.4.2 + _ZNK4geos9operation9overlayng11LineBuilder12isResultLineEPKNS1_12OverlayLabelE@Base 3.9.0 + _ZNK4geos9operation9overlayng11LineBuilder6toLineEPNS1_11OverlayEdgeE@Base 3.10.0 + _ZNK4geos9operation9overlayng11OverlayEdge11directionPtEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge12resultSymbolB5cxx11Ev@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge14addCoordinatesEPNS_4geom23CoordinateArraySequenceE@Base 3.10.0 + _ZNK4geos9operation9overlayng11RingClipper12intersectionERKNS_4geom10CoordinateES6_iRS4_@Base 3.9.0 + _ZNK4geos9operation9overlayng11RingClipper12isInsideEdgeERKNS_4geom10CoordinateEi@Base 3.9.0 + _ZNK4geos9operation9overlayng11RingClipper13clipToBoxEdgeEPKNS_4geom18CoordinateSequenceEib@Base 3.9.0 + _ZNK4geos9operation9overlayng11RingClipper17intersectionLineXERKNS_4geom10CoordinateES6_d@Base 3.9.0 + _ZNK4geos9operation9overlayng11RingClipper17intersectionLineYERKNS_4geom10CoordinateES6_d@Base 3.9.0 + _ZNK4geos9operation9overlayng11RingClipper4clipEPKNS_4geom18CoordinateSequenceE@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayGraph11getNodeEdgeERKNS_4geom10CoordinateE@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel11getLocationEhib@Base 3.10.0 + _ZNK4geos9operation9overlayng12OverlayLabel14locationStringEhbRSo@Base 3.10.0 + _ZNK4geos9operation9overlayng12OverlayLabel15dimensionSymbolB5cxx11Ei@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel28isCollapseAndNotPartInteriorEv@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel8toStringEbRSo@Base 3.9.0 + _ZNK4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategy19isFloatingPrecisionEv@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry11getEnvelopeEh@Base 3.10.0 + _ZNK4geos9operation9overlayng13InputGeometry11getGeometryEh@Base 3.10.0 + _ZNK4geos9operation9overlayng13InputGeometry11isAllPointsEv@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry12getAreaIndexEv@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry12getDimensionEh@Base 3.10.0 + _ZNK4geos9operation9overlayng13InputGeometry6isAreaEh@Base 3.10.0 + _ZNK4geos9operation9overlayng13InputGeometry6isLineEh@Base 3.10.0 + _ZNK4geos9operation9overlayng13InputGeometry7isEmptyEh@Base 3.10.0 + _ZNK4geos9operation9overlayng13InputGeometry8hasEdgesEh@Base 3.10.0 + _ZNK4geos9operation9overlayng13InputGeometry8isSingleEv@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry9hasPointsEv@Base 3.9.0 + _ZNK4geos9operation9overlayng14PolygonBuilder11getPolygonsEv@Base 3.10.0 + _ZNK4geos9operation9overlayng14PolygonBuilder13getShellRingsEv@Base 3.10.0 + _ZNK4geos9operation9overlayng14PolygonBuilder14placeFreeHolesERKSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EES9_@Base 3.10.0 + _ZNK4geos9operation9overlayng14PolygonBuilder15computePolygonsERKSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.10.0 + _ZNK4geos9operation9overlayng15OverlayEdgeRing10getRingPtrEv@Base 3.9.0 + _ZNK4geos9operation9overlayng15OverlayEdgeRing6isHoleEv@Base 3.9.0 + _ZNK4geos9operation9overlayng15OverlayEdgeRing8getShellEv@Base 3.9.0 + _ZNK4geos9operation9overlayng15OverlayEdgeRing8hasShellEv@Base 3.9.0 + _ZNK4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategy19isFloatingPrecisionEv@Base 3.9.0 + _ZNK4geos9operation9overlayng17EdgeNodingBuilder11hasEdgesForEh@Base 3.10.0 + _ZNK4geos9operation9overlayng17EdgeNodingBuilder13isToBeLimitedEPKNS_4geom10LineStringE@Base 3.9.0 + _ZNK4geos9operation9overlayng18OverlayMixedPoints10findPointsEbPKNS_4geom23CoordinateArraySequenceE@Base 3.9.0 + _ZNK4geos9operation9overlayng18OverlayMixedPoints11hasLocationEbRKNS_4geom10CoordinateE@Base 3.9.0 + _ZNK4geos9operation9overlayng18OverlayMixedPoints12copyNonPointEv@Base 3.9.0 + _ZNK4geos9operation9overlayng18OverlayMixedPoints12createPointsERSt3setINS_4geom10CoordinateESt4lessIS5_ESaIS5_EE@Base 3.9.0 + _ZNK4geos9operation9overlayng18OverlayMixedPoints12extractLinesEPKNS_4geom8GeometryE@Base 3.9.0 + _ZNK4geos9operation9overlayng18OverlayMixedPoints15extractPolygonsEPKNS_4geom8GeometryE@Base 3.9.0 + _ZNK4geos9operation9overlayng18OverlayMixedPoints17createPointResultERSt6vectorISt10unique_ptrINS_4geom5PointESt14default_deleteIS6_EESaIS9_EE@Base 3.9.0 + _ZNK4geos9operation9overlayng18OverlayMixedPoints18extractCoordinatesEPKNS_4geom8GeometryEPKNS3_14PrecisionModelE@Base 3.9.0 + _ZNK4geos9operation9overlayng18OverlayMixedPoints19computeIntersectionEPKNS_4geom23CoordinateArraySequenceE@Base 3.9.0 + _ZNK4geos9operation9overlayng24IntersectionPointBuilder13isResultPointEPNS1_11OverlayEdgeE@Base 3.9.0 + _ZNK4geos9operation9overlayng24IntersectionPointBuilder8isEdgeOfEPKNS1_12OverlayLabelEh@Base 3.10.0 + _ZNK4geos9operation9overlayng4Edge9directionEv@Base 3.9.0 + _ZNK4geos9precision10Translater9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9precision22CommonCoordinateFilter9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 + (optional=templinst|subst)_ZNKSt10_HashtableIN4geos11triangulate3tri7TriEdgeESt4pairIKS3_PNS2_3TriEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS3_ENS3_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeE{size_t}RS5_{size_t}@Base 3.10.0 + (optional=templinst|subst)_ZNKSt10_HashtableIN4geos4geom10CoordinateES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEE19_M_find_before_nodeE{size_t}RKS2_{size_t}@Base 3.10.0 + (optional=templinst|subst)_ZNKSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9operation9overlayng11OverlayEdgeEESaIS9_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSB_18_Mod_range_hashingENSB_20_Default_ranged_hashENSB_20_Prime_rehash_policyENSB_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeE{size_t}RS4_{size_t}@Base 3.10.0 + (optional=templinst|subst)_ZNKSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_St6vectorIS2_SaIS2_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeE{size_t}RS4_{size_t}@Base 3.10.0 + (optional=templinst|subst)_ZNKSt10_HashtableIN4geos4geom11LineSegmentES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEE19_M_find_before_nodeE{size_t}RKS2_{size_t}@Base 3.8.0 + (optional=templinst|subst)_ZNKSt10_HashtableIN4geos6noding23OrientedCoordinateArrayESt4pairIKS2_PNS0_9geomgraph4EdgeEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeE{size_t}RS4_{size_t}@Base 3.8.0 + (optional=templinst)_ZNKSt5ctypeIcE8do_widenEc@Base 3.4.2 + (optional=templinst|subst)_ZNSt10_HashtableIN4geos11triangulate3tri7TriEdgeESt4pairIKS3_PNS2_3TriEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS3_ENS3_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.10.0 + (optional=templinst)_ZNSt10_HashtableIN4geos11triangulate3tri7TriEdgeESt4pairIKS3_PNS2_3TriEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS3_ENS3_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt10_HashtableIN4geos11triangulate3tri7TriEdgeESt4pairIKS3_PNS2_3TriEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS3_ENS3_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEED2Ev@Base 3.10.0 + (optional=templinst|subst)_ZNSt10_HashtableIN4geos4geom10CoordinateES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.10.0 + (optional=templinst)_ZNSt10_HashtableIN4geos4geom10CoordinateES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt10_HashtableIN4geos4geom10CoordinateES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEED2Ev@Base 3.10.0 + (optional=templinst|subst)_ZNSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9operation9overlayng11OverlayEdgeEESaIS9_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSB_18_Mod_range_hashingENSB_20_Default_ranged_hashENSB_20_Prime_rehash_policyENSB_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.10.0 + (optional=templinst)_ZNSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_St6vectorIS2_SaIS2_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE4findERS4_@Base 3.10.0 + (optional=templinst|subst)_ZNSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_St6vectorIS2_SaIS2_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.10.0 + (optional=templinst)_ZNSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_St6vectorIS2_SaIS2_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt10_HashtableIN4geos4geom10CoordinateESt4pairIKS2_St6vectorIS2_SaIS2_EEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEED2Ev@Base 3.10.0 + (optional=templinst|subst)_ZNSt10_HashtableIN4geos4geom11LineSegmentES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.8.0 + (optional=templinst)_ZNSt10_HashtableIN4geos4geom11LineSegmentES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEED1Ev@Base 3.8.0 + (optional=templinst)_ZNSt10_HashtableIN4geos4geom11LineSegmentES2_SaIS2_ENSt8__detail9_IdentityESt8equal_toIS2_ENS2_8HashCodeENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb1ELb1ELb1EEEED2Ev@Base 3.8.0 + (optional=templinst|subst)_ZNSt10_HashtableIN4geos6noding23OrientedCoordinateArrayESt4pairIKS2_PNS0_9geomgraph4EdgeEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ENS2_8HashCodeENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.8.0 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNSt10_HashtableIPKN4geos4geom10LineStringESt4pairIKS4_PNS0_9geomgraph4EdgeEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEE21_M_insert_unique_nodeEjjPNSC_10_Hash_nodeISA_Lb0EEEj@Base 3.10.0 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt10_HashtableIPKN4geos4geom10LineStringESt4pairIKS4_PNS0_9geomgraph4EdgeEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNSC_10_Hash_nodeISA_Lb0EEEm@Base 3.10.0 + (optional=templinst|subst)_ZNSt10_HashtableIPKN4geos4geom10LineStringESt4pairIKS4_PNS0_9geomgraph4EdgeEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.9.0 + (optional=templinst)_ZNSt10_HashtableIPKN4geos4geom10LineStringESt4pairIKS4_PNS0_9geomgraph4EdgeEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10_HashtableIPKN4geos4geom10LineStringESt4pairIKS4_PNS0_9geomgraph4EdgeEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEED2Ev@Base 3.9.0 + (optional=templinst|subst)_ZNSt10_HashtableIPKN4geos4geom8GeometryESt4pairIKS4_PNS0_8simplify16TaggedLineStringEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEE9_M_rehashE{size_t}RK{size_t}@Base 3.8.0 + (optional=templinst)_ZNSt10_HashtableIPKN4geos4geom8GeometryESt4pairIKS4_PNS0_8simplify16TaggedLineStringEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEED1Ev@Base 3.8.0 + (optional=templinst)_ZNSt10_HashtableIPKN4geos4geom8GeometryESt4pairIKS4_PNS0_8simplify16TaggedLineStringEESaISA_ENSt8__detail10_Select1stESt8equal_toIS4_ESt4hashIS4_ENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb0ELb0ELb1EEEED2Ev@Base 3.8.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos11triangulate8quadedge19QuadEdgeSubdivisionESt14default_deleteIS3_EED1Ev@Base 3.11.0~beta1 + (optional=templinst)_ZNSt10unique_ptrIN4geos11triangulate8quadedge19QuadEdgeSubdivisionESt14default_deleteIS3_EED2Ev@Base 3.11.0~beta1 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS2_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS2_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS2_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS2_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom15MultiLineStringESt14default_deleteIS2_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom15MultiLineStringESt14default_deleteIS2_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom18CoordinateSequenceESt14default_deleteIS2_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom18CoordinateSequenceESt14default_deleteIS2_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom23CoordinateArraySequenceESt14default_deleteIS2_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom23CoordinateArraySequenceESt14default_deleteIS2_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom4util19GeometryTransformerESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom4util19GeometryTransformerESt14default_deleteIS3_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom5PointESt14default_deleteIS2_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom5PointESt14default_deleteIS2_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS2_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS2_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS2_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS2_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos5index7strtree15TemplateSTRtreeIPKNS0_9operation8distance13FacetSequenceENS2_14EnvelopeTraitsEEESt14default_deleteISA_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos5index7strtree15TemplateSTRtreeIPKNS0_9operation8distance13FacetSequenceENS2_14EnvelopeTraitsEEESt14default_deleteISA_EED2Ev@Base 3.10.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos5index8quadtree4NodeESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos5index8quadtree4NodeESt14default_deleteIS3_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos6noding27SegmentSetMutualIntersectorESt14default_deleteIS2_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos6noding27SegmentSetMutualIntersectorESt14default_deleteIS2_EED2Ev@Base 3.10.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos6noding34MCIndexSegmentSetMutualIntersectorESt14default_deleteIS2_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos6noding34MCIndexSegmentSetMutualIntersectorESt14default_deleteIS2_EED2Ev@Base 3.10.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos6noding5NoderESt14default_deleteIS2_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos6noding5NoderESt14default_deleteIS2_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9algorithm6locate22PointOnGeometryLocatorESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9algorithm6locate22PointOnGeometryLocatorESt14default_deleteIS3_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph12DirectedEdgeESt14default_deleteIS2_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph12DirectedEdgeESt14default_deleteIS2_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index17MonotoneChainEdgeESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index17MonotoneChainEdgeESt14default_deleteIS3_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index18EdgeSetIntersectorESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index18EdgeSetIntersectorESt14default_deleteIS3_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index18SegmentIntersectorESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9geomgraph5index18SegmentIntersectorESt14default_deleteIS3_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9operation9overlayng14ElevationModelESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos9operation9overlayng14ElevationModelESt14default_deleteIS3_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIN4geos4geom10CoordinateESaIS3_EESt14default_deleteIS5_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIN4geos4geom10CoordinateESaIS3_EESt14default_deleteIS5_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIPKN4geos4geom10CoordinateESaIS5_EESt14default_deleteIS7_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIPKN4geos4geom10CoordinateESaIS5_EESt14default_deleteIS7_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos11triangulate8quadedge8QuadEdgeESaIS5_EESt14default_deleteIS7_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos11triangulate8quadedge8QuadEdgeESaIS5_EESt14default_deleteIS7_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos4geom11LineSegmentESaIS4_EESt14default_deleteIS6_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos4geom11LineSegmentESaIS4_EESt14default_deleteIS6_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos5index7strtree9BoundableESaIS5_EESt14default_deleteIS7_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos5index7strtree9BoundableESaIS5_EESt14default_deleteIS7_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos9geomgraph4NodeESaIS4_EESt14default_deleteIS6_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrISt6vectorIPN4geos9geomgraph4NodeESaIS4_EESt14default_deleteIS6_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt11_Deque_baseIN4geos5index7strtree13SimpleSTRpairESaIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt11_Deque_baseIN4geos5index7strtree13SimpleSTRpairESaIS3_EED2Ev@Base 3.9.0 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNSt11_Deque_baseIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE17_M_initialize_mapEj@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt11_Deque_baseIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE17_M_initialize_mapEm@Base 3.4.2 + (optional=templinst)_ZNSt11_Deque_baseIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EED1Ev@Base 3.4.2 + (optional=templinst)_ZNSt11_Deque_baseIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EED2Ev@Base 3.4.2 + (optional=templinst|subst)_ZNSt12_Destroy_auxILb0EE9__destroyIPN13geos_nlohmann10basic_jsonINS2_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEEEEvT_SH_@Base 3.10.0 + (optional=templinst|subst)_ZNSt12_Destroy_auxILb0EE9__destroyIPN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS2_14adl_serializerES5_IhSaIhEEEEEEvT_SH_@Base 3.10.0 + (optional=templinst)_ZNSt13_Bvector_baseISaIbEE13_M_deallocateEv@Base 3.10.0 + _ZNSt14_Function_baseD1Ev@Base 3.10.0 + _ZNSt14_Function_baseD2Ev@Base 3.10.0 + (optional=templinst|arch=armel riscv64)_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE1EE10_M_releaseEv@Base 3.10.0 + (optional=templinst|arch=!armel !riscv64)_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv@Base 3.10.0 + (optional=templinst|arch=amd64 arm64 ia64 ppc64 s390x)_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE24_M_release_last_use_coldEv@Base 3.11.0 + (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE1EE10_M_destroyEv@Base 3.11.1 + (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE1EE10_M_disposeEv@Base 3.11.1 + (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE1EE14_M_get_deleterERKSt9type_info@Base 3.11.1 + (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE1EED0Ev@Base 3.11.1 + (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE1EED1Ev@Base 3.11.1 + (optional=templinst|arch=armel riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE1EED2Ev@Base 3.11.1 + (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv@Base 3.11.0 + (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv@Base 3.11.0 + (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info@Base 3.11.0 + (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE2EED0Ev@Base 3.11.0 + (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE2EED1Ev@Base 3.11.0 + (optional=templinst|arch=!armel !riscv64)_ZNSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE2EED2Ev@Base 3.11.0 + (optional=templinst|subst)_ZNSt23mersenne_twister_engineI{size_t}L{size_t}32EL{size_t}624EL{size_t}397EL{size_t}31EL{size_t}2567483615EL{size_t}11EL{size_t}4294967295EL{size_t}7EL{size_t}2636928640EL{size_t}15EL{size_t}4022730752EL{size_t}18EL{size_t}1812433253EE11_M_gen_randEv@Base 3.9.0 + (optional=templinst|subst)_ZNSt23mersenne_twister_engineI{size_t}L{size_t}32EL{size_t}624EL{size_t}397EL{size_t}31EL{size_t}2567483615EL{size_t}11EL{size_t}4294967295EL{size_t}7EL{size_t}2636928640EL{size_t}15EL{size_t}4022730752EL{size_t}18EL{size_t}1812433253EEclEv@Base 3.9.0 + (optional=templinst)_ZNSt3mapIN4geos4geom10CoordinateESt10unique_ptrINS1_5PointESt14default_deleteIS4_EESt4lessIS2_ESaISt4pairIKS2_S7_EEEixERSB_@Base 3.11.1 + (optional=templinst|subst)_ZNSt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN13geos_nlohmann10basic_jsonINS7_11ordered_mapESt6vectorS5_b{int64_t}{uint64_t}dSaNS7_14adl_serializerESA_IhSaIhEEEEED1Ev@Base 3.10.0 + (optional=templinst|subst)_ZNSt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN13geos_nlohmann10basic_jsonINS7_11ordered_mapESt6vectorS5_b{int64_t}{uint64_t}dSaNS7_14adl_serializerESA_IhSaIhEEEEED2Ev@Base 3.10.0 + (optional=templinst|subst)_ZNSt5arrayISt10unique_ptrIN4geos9operation8distance16GeometryLocationESt14default_deleteIS4_EEL{size_t}2EED1Ev@Base 3.9.0 + (optional=templinst|subst)_ZNSt5arrayISt10unique_ptrIN4geos9operation8distance16GeometryLocationESt14default_deleteIS4_EEL{size_t}2EED2Ev@Base 3.9.0 + (optional=templinst|arch=!amd64 !arm64 !x32)_ZNSt5dequeIN4geos11triangulate3tri3TriESaIS3_EE16_M_push_back_auxIJRKNS0_4geom10CoordinateESA_SA_EEEvDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt5dequeIN4geos11triangulate8quadedge15QuadEdgeQuartetESaIS3_EE16_M_push_back_auxIJEEEvDpOT_@Base 3.9.0 + (optional=templinst|arch=mips64el)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE12emplace_backIJS3_EEEvDpOT_@Base 3.10.0 + (optional=templinst|arch=hppa ia64 m68k mips64el mipsel riscv64 sparc64)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE13_M_insert_auxIJRKNS0_4geom10CoordinateERPvEEESt15_Deque_iteratorIS3_RS3_PS3_ESG_DpOT_@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE17_M_push_front_auxIJRKNS0_4geom10CoordinateERPvEEEvDpOT_@Base 3.9.0 + (optional=templinst|arch=mips64el)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE17_M_push_front_auxIJS3_EEEvDpOT_@Base 3.9.0 + (optional=templinst|subst)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE17_M_reallocate_mapE{size_t}b@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos5index7strtree13SimpleSTRpairESaIS3_EE16_M_push_back_auxIJRPNS2_13SimpleSTRnodeES9_RPNS2_12ItemDistanceEEEEvDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos6noding18BasicSegmentStringESaIS2_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt5dequeIN4geos6noding18BasicSegmentStringESaIS2_EED2Ev@Base 3.10.0 + (optional=templinst)_ZNSt5dequeIN4geos6noding9snapround8HotPixelESaIS3_EE16_M_push_back_auxIJRNS0_4geom10CoordinateERdEEEvDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos9algorithm4hull7HullTriESaIS3_EE16_M_push_back_auxIJRKNS0_4geom10CoordinateESA_SA_EEEvDpOT_@Base 3.11.0~beta1 + (optional=templinst|arch=!amd64 !arm64 !x32)_ZNSt5dequeIN4geos9edgegraph8HalfEdgeESaIS2_EE16_M_push_back_auxIJRKNS0_4geom10CoordinateEEEEvDpOT_@Base 3.9.0 + (optional=templinst|subst)_ZNSt5dequeIN4geos9geomgraph5index14SweepLineEventESaIS3_EE17_M_reallocate_mapE{size_t}b@Base 3.8.0 + (optional=templinst)_ZNSt5dequeIN4geos9operation5valid11PolygonRingESaIS3_EE16_M_push_back_auxIJRPKNS0_4geom10LinearRingEEEEvDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt5dequeIN4geos9operation5valid11PolygonRingESaIS3_EE17_M_reallocate_mapE{size_t}b@Base 3.10.0 + (optional=templinst)_ZNSt5dequeIN4geos9operation5valid11PolygonRingESaIS3_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt5dequeIN4geos9operation5valid11PolygonRingESaIS3_EED2Ev@Base 3.10.0 + (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng11OverlayEdgeESaIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng11OverlayEdgeESaIS3_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng12OverlayLabelESaIS3_EE16_M_push_back_auxIJEEEvDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng14EdgeSourceInfoESaIS3_EE16_M_push_back_auxIJRhEEEvDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng14EdgeSourceInfoESaIS3_EE16_M_push_back_auxIJRhRiRbEEEvDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt5dequeIN4geos9operation9overlayng14EdgeSourceInfoESaIS3_EE17_M_reallocate_mapE{size_t}b@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng4EdgeESaIS3_EE16_M_push_back_auxIJPNS0_4geom18CoordinateSequenceERPKNS2_14EdgeSourceInfoEEEEvDpOT_@Base 3.9.0 + _ZNSt5dequeIPN4geos11planargraph4NodeESaIS3_EE16_M_push_back_auxIJRKS3_EEEvDpOT_@Base 3.7.0 + _ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE16_M_push_back_auxIJRKS4_EEEvDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE16_M_push_back_auxIJS4_EEEvDpOT_@Base 3.10.0 + (subst)_ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE17_M_reallocate_mapE{size_t}b@Base 3.7.0 + (optional=templinst)_ZNSt5dequeIPN4geos9algorithm4hull7HullTriESaIS4_EE16_M_push_back_auxIJRKS4_EEEvDpOT_@Base 3.11.0~beta1 + (optional=templinst)_ZNSt5dequeIPN4geos9operation5valid16PolygonRingTouchESaIS4_EE16_M_push_back_auxIJRKS4_EEEvDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt5dequeIPN4geos9operation9overlayng11OverlayEdgeESaIS4_EE13_M_insert_auxIN9__gnu_cxx17__normal_iteratorIPS4_St6vectorIS4_S5_EEEEEvSt15_Deque_iteratorIS4_RS4_SA_ET_SH_{size_t}@Base 3.9.0 + (optional=templinst|subst)_ZNSt5dequeIPN4geos9operation9overlayng11OverlayEdgeESaIS4_EE17_M_reallocate_mapE{size_t}b@Base 3.9.0 + (optional=templinst|subst)_ZNSt5dequeIPN4geos9operation9overlayng11OverlayEdgeESaIS4_EE23_M_new_elements_at_backE{size_t}@Base 3.9.0 + (optional=templinst|subst)_ZNSt5dequeIPN4geos9operation9overlayng11OverlayEdgeESaIS4_EE24_M_new_elements_at_frontE{size_t}@Base 3.9.0 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt6vectorIN13geos_nlohmann10basic_jsonINS0_11ordered_mapES_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE12emplace_backIJSC_EEEvDpOT_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZNSt6vectorIN13geos_nlohmann10basic_jsonINS0_11ordered_mapES_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE12emplace_backIJSC_EEEvDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonINS0_11ordered_mapES_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJRKSC_EEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonINS0_11ordered_mapES_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJSC_EEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonINS0_11ordered_mapES_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE7reserveE{size_t}@Base 3.10.0 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE12emplace_backIJRbEEEvDpOT_@Base 3.10.0 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE12emplace_backIJRbEEEvDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE12emplace_backIJSC_EEEvDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJNS0_6detail7value_tEEEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJRS8_EEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJRdEEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJR{int64_t}EEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE17_M_realloc_insertIJR{uint64_t}EEEvN9__gnu_cxx17__normal_iteratorIPSC_SE_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISC_EE7reserveE{size_t}@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos2io12GeoJSONValueESaIS2_EE17_M_realloc_insertIJRKS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos2io12GeoJSONValueESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos2io12GeoJSONValueESaIS2_EE7reserveE{size_t}@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos2io14GeoJSONFeatureESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos2io14GeoJSONFeatureESaIS2_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos2io14GeoJSONFeatureESaIS2_EED2Ev@Base 3.10.0 + (optional=templinst|arch=!hppa !ia64 !mips64el !riscv64 !sparc64)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE12emplace_backIJRKS2_EEEvDpOT_@Base 3.9.0 + (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !m68k !mipsel !powerpc)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE12emplace_backIJRdS6_EEEvDpOT_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE12emplace_backIJS2_EEEvDpOT_@Base 3.9.0 + _ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE17_M_realloc_insertIJRKS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE17_M_realloc_insertIJRS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE17_M_realloc_insertIJRdS6_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.7.1 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE7reserveEj@Base 3.9.0 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE7reserveEm@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos4geom11LineSegmentESaIS2_EE17_M_realloc_insertIJRKNS1_10CoordinateES8_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorIN4geos5index13intervalrtree23IntervalRTreeBranchNodeESaIS3_EE17_M_realloc_insertIJRPKNS2_17IntervalRTreeNodeESA_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.8.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZNSt6vectorIN4geos5index13intervalrtree23IntervalRTreeBranchNodeESaIS3_EE7reserveEj@Base 3.9.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos5index5chain13MonotoneChainESaIS3_EE17_M_realloc_insertIJRKNS0_4geom18CoordinateSequenceER{size_t}SB_RPvEEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.10.0 + _ZNSt6vectorIN4geos5index7strtree13ItemsListItemESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeINS0_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS2_14IntervalTraitsEEESaIS9_EE17_M_realloc_insertIJRKS7_RKNS2_8IntervalEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeINS0_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS2_14IntervalTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeINS0_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS2_14IntervalTraitsEEESaIS9_EE7reserveE{size_t}@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom10LinearRingENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRKS7_RKNS4_8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst|arch=!mipsel)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom10LinearRingENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom10LinearRingENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJS7_RKNS4_8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64 !mips64el !x32)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom7PolygonENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRKS7_RKNS4_8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst|arch=!armel !hurd-i386 !i386 !m68k !mipsel !powerpc)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom7PolygonENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst|arch=!amd64 !mips64el !x32)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom7PolygonENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJS7_RKNS4_8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst|arch=!mipsel)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom8GeometryENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom8GeometryENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJS7_RKNS4_8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_4geom8GeometryENS2_14EnvelopeTraitsEEESaIS9_EE7reserveE{size_t}@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_9operation8distance13FacetSequenceENS2_14EnvelopeTraitsEEESaISA_EE17_M_realloc_insertIJRPKSA_SG_EEEvN9__gnu_cxx17__normal_iteratorIPSA_SC_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_9operation8distance13FacetSequenceENS2_14EnvelopeTraitsEEESaISA_EE17_M_realloc_insertIJS8_RKNS0_4geom8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPSA_SC_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS0_9operation8distance13FacetSequenceENS2_14EnvelopeTraitsEEESaISA_EE7reserveE{size_t}@Base 3.10.0 + (optional=templinst|arch=!mipsel)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS1_5chain13MonotoneChainENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPKNS1_5chain13MonotoneChainENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJS7_RKNS0_4geom8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst|arch=!mipsel)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPNS0_9operation10polygonize8EdgeRingENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJRPKS9_SF_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos5index7strtree15TemplateSTRNodeIPNS0_9operation10polygonize8EdgeRingENS2_14EnvelopeTraitsEEESaIS9_EE17_M_realloc_insertIJS7_RKNS0_4geom8EnvelopeEEEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos6noding11SegmentNodeESaIS2_EE17_M_realloc_insertIJRKNS1_18NodedSegmentStringERKNS0_4geom10CoordinateER{size_t}iEEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos8simplify8RingHull6CornerESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorIN4geos9algorithm9construct18LargestEmptyCircle4CellESaIS4_EE17_M_realloc_insertIJddRddEEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIN4geos9algorithm9construct22MaximumInscribedCircle4CellESaIS4_EE17_M_realloc_insertIJddRddEEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZNSt6vectorIN4geos9geomgraph16EdgeIntersectionESaIS2_EE12emplace_backIJRKNS0_4geom10CoordinateERjRdEEEvDpOT_@Base 3.9.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos9geomgraph16EdgeIntersectionESaIS2_EE17_M_realloc_insertIJRKNS0_4geom10CoordinateER{size_t}RdEEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.8.0 + (optional=templinst|arch=!amd64 !arm64 !x32)_ZNSt6vectorIN4geos9operation5valid19PolygonRingSelfNodeESaIS3_EE17_M_realloc_insertIJRKNS0_4geom10CoordinateERPS9_SC_SC_SC_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIN4geos9operation7overlay14PolygonBuilder11FastPIPRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos9operation8distance13FacetSequenceESaIS3_EE17_M_realloc_insertIJRPKNS0_4geom8GeometryERPKNS7_18CoordinateSequenceER{size_t}SG_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.9.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos9operation8distance16GeometryLocationESaIS3_EE17_M_realloc_insertIJRKPKNS0_4geom8GeometryERK{size_t}RKNS7_10CoordinateEEEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.9.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos9operation8distance16GeometryLocationESaIS3_EE17_M_realloc_insertIJRKPKNS0_4geom8GeometryER{size_t}RNS7_10CoordinateEEEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIN4geos9operation8distance16GeometryLocationESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.8.0 + (optional=templinst|subst)_ZNSt6vectorIN4geos9operation9overlayng14ElevationModel13ElevationCellESaIS4_EE17_M_default_appendE{size_t}@Base 3.9.0 + (optional=templinst|subst)_ZNSt6vectorINSt6chrono8durationI{int64_t}St5ratioIL{int64_t}1EL{int64_t}1000000EEEESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 + _ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EE17_M_realloc_insertIJS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPKN4geos11planargraph12DirectedEdgeESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + (subst)_ZNSt6vectorIPKN4geos4geom10CoordinateESaIS4_EE17_M_default_appendE{size_t}@Base 3.7.0 + _ZNSt6vectorIPKN4geos4geom10CoordinateESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPKN4geos4geom10CoordinateESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPKN4geos4geom10LineStringESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPKN4geos4geom10LineStringESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPKN4geos4geom10LinearRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPKN4geos4geom10LinearRingESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.10.0 + _ZNSt6vectorIPKN4geos4geom5PointESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPKN4geos4geom7PolygonESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPKN4geos4geom8GeometryESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorIPKN4geos4geom8GeometryESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorIPKN4geos5index13intervalrtree17IntervalRTreeNodeESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIPKN4geos5index13intervalrtree17IntervalRTreeNodeESaIS5_EE17_M_realloc_insertIJS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.9.0 + _ZNSt6vectorIPKN4geos6noding13SegmentStringESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPKN4geos8simplify8RingHullESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorIPKN4geos9edgegraph8HalfEdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIPKN4geos9operation10polygonize22PolygonizeDirectedEdgeESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.8.0 + (optional=templinst|subst)_ZNSt6vectorIPN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISD_EE17_M_realloc_insertIJRKSD_EEEvN9__gnu_cxx17__normal_iteratorIPSD_SF_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIPN13geos_nlohmann10basic_jsonISt3mapS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS0_14adl_serializerES_IhSaIhEEEESaISD_EE17_M_realloc_insertIJSD_EEEvN9__gnu_cxx17__normal_iteratorIPSD_SF_EEDpOT_@Base 3.10.0 + _ZNSt6vectorIPN4geos11planargraph12DirectedEdgeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + (optional=templinst|arch=!alpha !hurd-i386 !i386 !kfreebsd-i386 !mips !mipsel !powerpc !powerpcspe !ppc64 !s390x)_ZNSt6vectorIPN4geos11planargraph12DirectedEdgeESaIS3_EE8_M_eraseEN9__gnu_cxx17__normal_iteratorIPS3_S5_EE@Base 3.4.2 + _ZNSt6vectorIPN4geos11planargraph4EdgeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + (optional=templinst|arch=!alpha !hurd-i386 !i386 !kfreebsd-i386 !mips !mipsel !powerpc !powerpcspe !ppc64 !s390x)_ZNSt6vectorIPN4geos11planargraph4EdgeESaIS3_EE8_M_eraseEN9__gnu_cxx17__normal_iteratorIPS3_S5_EE@Base 3.4.2 + _ZNSt6vectorIPN4geos11planargraph4NodeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos11planargraph8SubgraphESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPN4geos11triangulate3tri3TriESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.10.0 + _ZNSt6vectorIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos4geom10LineStringESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos4geom10LineStringESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPN4geos4geom10LinearRingESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.8.0 + _ZNSt6vectorIPN4geos4geom11LineSegmentESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos4geom18CoordinateSequenceESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos4geom5PointESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos4geom7PolygonESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE7reserveEj@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE7reserveEm@Base 3.4.2 + (optional=templinst)_ZNSt6vectorIPN4geos5index6kdtree6KdNodeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 + _ZNSt6vectorIPN4geos5index7bintree8IntervalESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos5index7strtree12AbstractNodeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos5index7strtree13BoundablePairESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos5index7strtree13BoundablePairESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPN4geos5index7strtree13SimpleSTRnodeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIPN4geos5index7strtree13SimpleSTRpairESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 + _ZNSt6vectorIPN4geos5index7strtree9BoundableESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos5index7strtree9BoundableESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + (optional=templinst|subst)_ZNSt6vectorIPN4geos5index7strtree9BoundableESaIS4_EE7reserveE{size_t}@Base 3.8.0 + _ZNSt6vectorIPN4geos5index9sweepline14SweepLineEventESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos5index9sweepline14SweepLineEventESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos6noding13SegmentStringESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos6noding13SegmentStringESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPN4geos8simplify16TaggedLineStringESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.11.1 + (optional=templinst)_ZNSt6vectorIPN4geos8simplify17TaggedLineSegmentESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIPN4geos8simplify17TaggedLineSegmentESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorIPN4geos8simplify8RingHullESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorIPN4geos8simplify8RingHullESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorIPN4geos9algorithm4hull7HullTriESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.11.0~beta1 + _ZNSt6vectorIPN4geos9geomgraph12DirectedEdgeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9geomgraph4EdgeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9geomgraph4EdgeESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.2 + _ZNSt6vectorIPN4geos9geomgraph4NodeESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9geomgraph5LabelESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPN4geos9geomgraph5index14SweepLineEventESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIPN4geos9geomgraph5index14SweepLineEventESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 + _ZNSt6vectorIPN4geos9geomgraph7EdgeEndESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9geomgraph8EdgeRingESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9geomgraph8EdgeRingESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9operation10polygonize22PolygonizeDirectedEdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9operation10polygonize8EdgeRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPN4geos9operation5valid11PolygonRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIPN4geos9operation5valid16PolygonRingTouchESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.10.0 + _ZNSt6vectorIPN4geos9operation6buffer12DepthSegmentESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9operation6buffer14BufferSubgraphESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9operation7overlay15MaximalEdgeRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9operation7overlay15MinimalEdgeRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9operation9linemerge10EdgeStringESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + _ZNSt6vectorIPN4geos9operation9linemerge21LineMergeDirectedEdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPN4geos9operation9overlayng11OverlayEdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIPN4geos9operation9overlayng15OverlayEdgeRingESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIPN4geos9operation9overlayng4EdgeESaIS4_EE17_M_realloc_insertIJRKS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.0 + _ZNSt6vectorIPNSt7__cxx114listIPN4geos11planargraph12DirectedEdgeESaIS5_EEESaIS8_EE17_M_realloc_insertIJRKS8_EEEvN9__gnu_cxx17__normal_iteratorIPS8_SA_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIPvSaIS0_EE17_M_realloc_insertIJRKS0_EEEvN9__gnu_cxx17__normal_iteratorIPS0_S2_EEDpOT_@Base 3.8.0 + _ZNSt6vectorIPvSaIS0_EE17_M_realloc_insertIJS0_EEEvN9__gnu_cxx17__normal_iteratorIPS0_S2_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIS_IPN4geos8simplify8RingHullESaIS3_EESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorIS_IS_IS_IdSaIdEESaIS1_EESaIS3_EESaIS5_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIS_IS_IS_IdSaIdEESaIS1_EESaIS3_EESaIS5_EED2Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIS_IS_ISt4pairIddESaIS1_EESaIS3_EESaIS5_EE17_M_realloc_insertIJRKS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIS_IS_IdSaIdEESaIS1_EESaIS3_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIS_IS_IdSaIdEESaIS1_EESaIS3_EED2Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIS_ISt4pairIddESaIS1_EESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIS_ISt4pairIddESaIS1_EESaIS3_EE7reserveE{size_t}@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIS_ISt4pairIddESaIS1_EESaIS3_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIS_ISt4pairIddESaIS1_EESaIS3_EED2Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIS_IdSaIdEESaIS1_EE17_M_realloc_insertIJS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIS_IdSaIdEESaIS1_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorIS_IdSaIdEESaIS1_EED2Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIKN4geos4geom18CoordinateSequenceESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos11triangulate3tri7TriListINS3_3TriEEESt14default_deleteIS6_EESaIS9_EE17_M_realloc_insertIJPS6_EEEvN9__gnu_cxx17__normal_iteratorIPS9_SB_EEDpOT_@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRKPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom18CoordinateSequenceESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom18CoordinateSequenceESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom23CoordinateArraySequenceESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.3 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom23CoordinateArraySequenceESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom23CoordinateArraySequenceESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.10.3 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom23CoordinateArraySequenceESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.10.3 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom5PointESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom5PointESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom5PointESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom5PointESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8EnvelopeESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8EnvelopeESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8EnvelopeESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8EnvelopeESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE12emplace_backIJS6_EEEvDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_default_appendE{size_t}@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRKPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPNS2_7PolygonEEEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS0_INS2_10LineStringES4_ISA_EEEEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst|subst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE7reserveE{size_t}@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos5index7strtree8IntervalESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJS7_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.7.1 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos6noding13SegmentStringESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos6noding13SegmentStringESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos6noding13SegmentStringESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos8simplify8RingHullESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos8simplify8RingHullESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos8simplify8RingHullESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9geomgraph8EdgeRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation10polygonize4FaceESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJS7_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation8distance16GeometryLocationESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS4_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation8distance16GeometryLocationESt14default_deleteIS4_EESaIS7_EED1Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation8distance16GeometryLocationESt14default_deleteIS4_EESaIS7_EED2Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15MaximalEdgeRingESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS4_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15MaximalEdgeRingESt14default_deleteIS4_EESaIS7_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15MaximalEdgeRingESt14default_deleteIS4_EESaIS7_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15OverlayEdgeRingESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS4_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15OverlayEdgeRingESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJS7_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15OverlayEdgeRingESt14default_deleteIS4_EESaIS7_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15OverlayEdgeRingESt14default_deleteIS4_EESaIS7_EED2Ev@Base 3.9.0 + (optional=templinst|subst)_ZNSt6vectorISt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN13geos_nlohmann10basic_jsonINS8_11ordered_mapES_S6_b{int64_t}{uint64_t}dSaNS8_14adl_serializerES_IhSaIhEEEEESaISF_EE17_M_realloc_insertIJRS7_RSE_EEEvN9__gnu_cxx17__normal_iteratorIPSF_SH_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt4pairIddESaIS1_EE17_M_realloc_insertIJS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNSt6vectorIbSaIbEE13_M_insert_auxESt13_Bit_iteratorb@Base 3.10.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNSt6vectorIbSaIbEE14_M_fill_insertESt13_Bit_iteratorjb@Base 3.11.0~beta1 + (optional=templinst|arch=!armel !armhf !i386 !powerpc !x32)_ZNSt6vectorIbSaIbEE14_M_fill_insertESt13_Bit_iteratormb@Base 3.11.0 + (optional=templinst|arch=amd64 arm64 ia64 riscv64 sparc64 x32)_ZNSt6vectorIbSaIbEE9push_backEb@Base 3.10.0 + (optional=templinst|arch=arm64)_ZNSt6vectorIcSaIcEE12emplace_backIJcEEEvDpOT_@Base 3.10.0 + (optional=templinst|arch=!arm64)_ZNSt6vectorIcSaIcEE17_M_realloc_insertIJcEEEvN9__gnu_cxx17__normal_iteratorIPcS1_EEDpOT_@Base 3.10.0 + _ZNSt6vectorIdSaIdEE17_M_realloc_insertIJRKdEEEvN9__gnu_cxx17__normal_iteratorIPdS1_EEDpOT_@Base 3.7.0 + (optional=templinst)_ZNSt6vectorIdSaIdEE17_M_realloc_insertIJdEEEvN9__gnu_cxx17__normal_iteratorIPdS1_EEDpOT_@Base 3.10.0 + (optional=templinst|subst)_ZNSt6vectorIiSaIiEE14_M_fill_assignE{size_t}RKi@Base 3.8.0 + (subst)_ZNSt6vectorI{size_t}SaI{size_t}EE17_M_realloc_insertIJRK{size_t}EEEvN9__gnu_cxx17__normal_iteratorIP{size_t}S1_EEDpOT_@Base 3.7.0 + (optional=templinst|subst)_ZNSt6vectorI{size_t}SaI{size_t}EE17_M_realloc_insertIJ{size_t}EEEvN9__gnu_cxx17__normal_iteratorIP{size_t}S1_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt7__cxx1110_List_baseIN4geos4geom10CoordinateESaIS3_EE8_M_clearEv@Base 3.9.0 + (optional=templinst)_ZNSt7__cxx1110_List_baseIPN4geos4geom10LineStringESaIS4_EE8_M_clearEv@Base 3.9.0 + (optional=templinst)_ZNSt7__cxx1110_List_baseIPN4geos4geom7PolygonESaIS4_EE8_M_clearEv@Base 3.9.0 + (optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED0Ev@Base 3.4.2 + (optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED1Ev@Base 3.4.2 + (optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED2Ev@Base 3.4.2 + (optional=templinst|arch=mipsel)_ZNSt7__cxx114listIN4geos4geom10CoordinateESaIS3_EE6insertESt20_List_const_iteratorIS3_ERKS3_@Base 3.9.0 + (subst)_ZNSt7__cxx119to_stringE{size_t}@Base 3.10.0 + (arch=amd64 arm64 ia64 riscv64 sparc64 x32)_ZNSt8_Rb_treeIN4geos11triangulate8quadedge6VertexES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE16_M_insert_uniqueIRKS3_EESt4pairISt17_Rb_tree_iteratorIS3_EbEOT_@Base 3.11.1 + (optional=templinst)_ZNSt8_Rb_treeIN4geos11triangulate8quadedge6VertexES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE4findERKS3_@Base 3.5.0 + (optional=templinst|arch=!armel !armhf !i386 !m68k !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIN4geos4geom10CoordinateES2_St9_IdentityIS2_ESt4lessIS2_ESaIS2_EE16_M_insert_uniqueIRKS2_EESt4pairISt17_Rb_tree_iteratorIS2_EbEOT_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 mipsel powerpc ppc64 s390x)_ZNSt8_Rb_treeIN4geos4geom10CoordinateES2_St9_IdentityIS2_ESt4lessIS2_ESaIS2_EE22_M_insert_range_uniqueIN9__gnu_cxx17__normal_iteratorIPS2_St6vectorIS2_S7_EEEEENSt9enable_ifIXsrSt7is_sameIS2_NSt15iterator_traitsIT_E10value_typeEE5valueEvE4typeESJ_SJ_@Base 3.10.0 + (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateES2_St9_IdentityIS2_ESt4lessIS2_ESaIS2_EE24_M_get_insert_unique_posERKS2_@Base 3.10.0 + (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIN4geos4geom10CoordinateES2_St9_IdentityIS2_ESt4lessIS2_ESaIS2_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS2_ERKS2_@Base 3.10.0 + (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_11planargraph4NodeEESt10_Select1stIS8_ENS1_18CoordinateLessThenESaIS8_EE11equal_rangeERS4_@Base 3.4.2 + (optional=templinst|arch=armel armhf i386 powerpc ppc64 s390x)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_11planargraph4NodeEESt10_Select1stIS8_ENS1_18CoordinateLessThenESaIS8_EE17_M_emplace_uniqueIJS3_IS2_S7_EEEES3_ISt17_Rb_tree_iteratorIS8_EbEDpOT_@Base 3.11.1 + (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9edgegraph8HalfEdgeEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE24_M_get_insert_unique_posERS4_@Base 3.9.0 + (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9edgegraph8HalfEdgeEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS8_ERS4_@Base 3.9.0 + (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9edgegraph8HalfEdgeEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE4findERS4_@Base 3.9.0 + (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_St10unique_ptrINS1_5PointESt14default_deleteIS6_EEESt10_Select1stISA_ESt4lessIS2_ESaISA_EE24_M_get_insert_unique_posERS4_@Base 3.9.0 + (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_St10unique_ptrINS1_5PointESt14default_deleteIS6_EEESt10_Select1stISA_ESt4lessIS2_ESaISA_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISA_ERS4_@Base 3.9.0 + (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_St10unique_ptrINS1_5PointESt14default_deleteIS6_EEESt10_Select1stISA_ESt4lessIS2_ESaISA_EE4findERS4_@Base 3.9.0 + (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_iESt10_Select1stIS5_ESt4lessIS2_ESaIS5_EE24_M_get_insert_unique_posERS4_@Base 3.11.1 + (optional=templinst)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_iESt10_Select1stIS5_ESt4lessIS2_ESaIS5_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS5_ERS4_@Base 3.11.1 + (optional=templinst)_ZNSt8_Rb_treeIN4geos9operation9overlayng7EdgeKeyESt4pairIKS3_PNS2_4EdgeEESt10_Select1stIS8_ESt4lessIS3_ESaIS8_EE24_M_get_insert_unique_posERS5_@Base 3.9.0 + (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIN4geos9operation9overlayng7EdgeKeyESt4pairIKS3_PNS2_4EdgeEESt10_Select1stIS8_ESt4lessIS3_ESaIS8_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS8_ERS5_@Base 3.9.0 + (optional=templinst|subst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N13geos_nlohmann10basic_jsonISt3mapSt6vectorS5_b{int64_t}{uint64_t}dSaNS8_14adl_serializerESB_IhSaIhEEEEESt10_Select1stISG_ESt4lessIS5_ESaISG_EE24_M_get_insert_unique_posERS7_@Base 3.10.0 + (optional=templinst|subst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N13geos_nlohmann10basic_jsonISt3mapSt6vectorS5_b{int64_t}{uint64_t}dSaNS8_14adl_serializerESB_IhSaIhEEEEESt10_Select1stISG_ESt4lessIS5_ESaISG_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISG_ERS7_@Base 3.10.0 + (optional=templinst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4geos2io12GeoJSONValueEESt10_Select1stISB_ESt4lessIS5_ESaISB_EE24_M_get_insert_unique_posERS7_@Base 3.10.0 + (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4geos2io12GeoJSONValueEESt10_Select1stISB_ESt4lessIS5_ESaISB_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISB_ERS7_@Base 3.10.0 + (optional=templinst)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St10unique_ptrIN4geos4util7ProfileESt14default_deleteISB_EEESt10_Select1stISF_ESt4lessIS5_ESaISF_EE24_M_get_insert_unique_posERS7_@Base 3.8.0 + (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St10unique_ptrIN4geos4util7ProfileESt14default_deleteISB_EEESt10_Select1stISF_ESt4lessIS5_ESaISF_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISF_ERS7_@Base 3.8.0 + (optional=templinst|arch=amd64 arm64 hppa ia64 mips64el ppc64el riscv64 sh4 sparc64 x32)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateES4_St9_IdentityIS4_ENS1_18CoordinateLessThenESaIS4_EE16_M_insert_uniqueIRKS4_EESt4pairISt17_Rb_tree_iteratorIS4_EbEOT_@Base 3.7.2 + (optional=templinst)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateES4_St9_IdentityIS4_ENS1_18CoordinateLessThenESaIS4_EE24_M_get_insert_unique_posERKS4_@Base 3.4.2 + (optional=templinst)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateES4_St9_IdentityIS4_ENS1_18CoordinateLessThenESaIS4_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS4_ERKS4_@Base 3.4.2 + (optional=templinst)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateES4_St9_IdentityIS4_ENS1_18CoordinateLessThenESaIS4_EE4findERKS4_@Base 3.4.2 + _ZNSt8_Rb_treeIPN4geos11planargraph4EdgeES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE16_M_insert_uniqueIRKS3_EESt4pairISt17_Rb_tree_iteratorIS3_EbEOT_@Base 3.7.0 + (optional=templinst|arch=armel armhf i386 powerpc ppc64 s390x)_ZNSt8_Rb_treeIPN4geos11triangulate3tri3TriESt4pairIKS4_iESt10_Select1stIS7_ESt4lessIS4_ESaIS7_EE16_M_insert_uniqueIS7_EES5_ISt17_Rb_tree_iteratorIS7_EbEOT_@Base 3.11.1 + (optional=templinst)_ZNSt8_Rb_treeIPN4geos4geom10CoordinateESt4pairIKS3_PNS0_9geomgraph4NodeEESt10_Select1stIS9_ENS1_18CoordinateLessThenESaIS9_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS5_EESJ_IJEEEEESt17_Rb_tree_iteratorIS9_ESt23_Rb_tree_const_iteratorIS9_EDpOT_@Base 3.11.0 + (optional=templinst)_ZNSt8_Rb_treeIPN4geos4geom10CoordinateESt4pairIKS3_PNS0_9geomgraph4NodeEESt10_Select1stIS9_ENS1_18CoordinateLessThenESaIS9_EE24_M_get_insert_unique_posERS5_@Base 3.4.2 + (optional=templinst)_ZNSt8_Rb_treeIPN4geos4geom10CoordinateESt4pairIKS3_PNS0_9geomgraph4NodeEESt10_Select1stIS9_ENS1_18CoordinateLessThenESaIS9_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS9_ERS5_@Base 3.4.2 + _ZNSt8_Rb_treeIPN4geos9geomgraph4NodeES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE16_M_insert_uniqueIRKS3_EESt4pairISt17_Rb_tree_iteratorIS3_EbEOT_@Base 3.7.0 + (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !m68k !mipsel !powerpc !ppc64 !s390x)_ZNSt8_Rb_treeIPN4geos9geomgraph4NodeES3_St9_IdentityIS3_ESt4lessIS3_ESaIS3_EE24_M_get_insert_unique_posERKS3_@Base 3.9.0 + (optional=templinst)_ZNSt8_Rb_treeIPN4geos9geomgraph7EdgeEndES3_St9_IdentityIS3_ENS1_9EdgeEndLTESaIS3_EE24_M_get_insert_unique_posERKS3_@Base 3.9.0 + (optional=templinst)_ZNSt8_Rb_treeIPN4geos9geomgraph7EdgeEndES3_St9_IdentityIS3_ENS1_9EdgeEndLTESaIS3_EE4findERKS3_@Base 3.4.2 + _ZNSt8_Rb_treeIddSt9_IdentityIdESt4lessIdESaIdEE16_M_insert_uniqueIRKdEESt4pairISt17_Rb_tree_iteratorIdEbEOT_@Base 3.7.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNSt8__detail18__to_chars_10_implIjEEvPcjT_@Base 3.10.0 + (optional=templinst)_ZNSt8__detail9_Map_baseIN4geos4geom10CoordinateESt4pairIKS3_PNS1_9operation9overlayng11OverlayEdgeEESaISA_ENS_10_Select1stESt8equal_toIS3_ENS3_8HashCodeENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS5_@Base 3.10.0 + (optional=templinst)_ZNSt8__detail9_Map_baseIN4geos4geom10CoordinateESt4pairIKS3_St6vectorIS3_SaIS3_EEESaIS9_ENS_10_Select1stESt8equal_toIS3_ENS3_8HashCodeENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS5_@Base 3.10.0 + (optional=templinst)_ZNSt8__detail9_Map_baseIN4geos6noding23OrientedCoordinateArrayESt4pairIKS3_PNS1_9geomgraph4EdgeEESaIS9_ENS_10_Select1stESt8equal_toIS3_ENS3_8HashCodeENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS5_@Base 3.9.0 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEEiS4_NS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_T0_SI_T1_T2_@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEElS4_NS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_T0_SI_T1_T2_@Base 3.8.1 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos11planargraph12DirectedEdgeESt6vectorIS5_SaIS5_EEEEiS5_NS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_T0_SH_T1_T2_@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos11planargraph12DirectedEdgeESt6vectorIS5_SaIS5_EEEElS5_NS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_T0_SH_T1_T2_@Base 3.4.2 + (optional=templinst|subst)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree13BoundablePairESt6vectorIS6_SaIS6_EEEE{ssize_t}S6_NS0_5__ops15_Iter_comp_iterINS5_25BoundablePairQueueCompareEEEEvT_T0_SH_T1_T2_@Base 3.6.0 + (optional=templinst|subst)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree13SimpleSTRpairESt6vectorIS6_SaIS6_EEEE{ssize_t}S6_NS0_5__ops15_Iter_comp_iterINS4_17SimpleSTRdistance19STRpairQueueCompareEEEEvT_T0_SI_T1_T2_@Base 3.9.0 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree9BoundableESt6vectorIS6_SaIS6_EEEEiS6_NS0_5__ops15_Iter_comp_iterIPFbPKS5_SF_EEEEvT_T0_SK_T1_T2_@Base 3.11.0~beta1 + (optional=templinst|arch=!armel !armhf !i386 !powerpc !x32)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree9BoundableESt6vectorIS6_SaIS6_EEEElS6_NS0_5__ops15_Iter_comp_iterIPFbPKS5_SF_EEEEvT_T0_SK_T1_T2_@Base 3.11.0 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index9sweepline14SweepLineEventESt6vectorIS6_SaIS6_EEEEiS6_NS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_T0_SH_T1_T2_@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos5index9sweepline14SweepLineEventESt6vectorIS6_SaIS6_EEEElS6_NS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_T0_SH_T1_T2_@Base 3.4.2 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos9algorithm4hull7HullTriESt6vectorIS6_SaIS6_EEEEiS6_NS0_5__ops15_Iter_comp_iterINS5_14HullTriCompareEEEEvT_T0_SH_T1_T2_@Base 3.11.0~beta1 + (optional=templinst|arch=!armel !armhf !i386 !powerpc !x32)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos9algorithm4hull7HullTriESt6vectorIS6_SaIS6_EEEElS6_NS0_5__ops15_Iter_comp_iterINS5_14HullTriCompareEEEEvT_T0_SH_T1_T2_@Base 3.11.0 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEEiS6_NS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_T0_SH_T1_T2_@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEElS6_NS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_T0_SH_T1_T2_@Base 3.4.2 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer14BufferSubgraphESt6vectorIS6_SaIS6_EEEEiS6_NS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_T0_SI_T1_T2_@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer14BufferSubgraphESt6vectorIS6_SaIS6_EEEElS6_NS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_T0_SI_T1_T2_@Base 3.4.2 + (optional=templinst|arch=amd64 arm64 hppa sh4 x32)_ZSt13__copy_move_aILb1ESt15_Deque_iteratorIPN4geos9operation9overlayng11OverlayEdgeERS5_PS5_ES8_ET1_T0_SA_S9_@Base 3.10.0 + (optional=templinst|arch=!armel !armhf !hppa !hurd-i386 !i386 !m68k !mipsel !powerpc !ppc64 !ppc64el !s390x !sh4)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos11triangulate8quadedge6VertexESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_less_iterEEvT_SD_SD_T0_@Base 3.9.0 + (optional=templinst|arch=mips64el)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_SH_T0_@Base 3.10.0 + (optional=templinst|arch=!hppa !ia64 !mips64el !mipsel !ppc64 !ppc64el !riscv64 !s390x !sh4 !sparc64)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeINS2_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS4_14IntervalTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom10LinearRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom10LinearRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom7PolygonENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom7PolygonENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom8GeometryENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom8GeometryENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_9operation8distance13FacetSequenceENS4_14EnvelopeTraitsEEESt6vectorISC_SaISC_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplISA_SB_E10sortNodesXERKSH_SN_EUlRKSC_SP_E_EEEvT_SS_SS_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_9operation8distance13FacetSequenceENS4_14EnvelopeTraitsEEESt6vectorISC_SaISC_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplISA_SB_E10sortNodesYERKSH_SN_EUlRKSC_SP_E_EEEvT_SS_SS_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS3_5chain13MonotoneChainENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS3_5chain13MonotoneChainENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPNS2_9operation10polygonize8EdgeRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPNS2_9operation10polygonize8EdgeRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_SR_T0_@Base 3.10.0 + (optional=templinst)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPSt10unique_ptrIN4geos9operation10polygonize4FaceESt14default_deleteIS6_EESt6vectorIS9_SaIS9_EEEENS0_5__ops15_Iter_comp_iterINS5_16CompareByEnvareaEEEEvT_SJ_SJ_T0_@Base 3.9.0 + (optional=templinst|arch=m68k)_ZSt13copy_backwardISt13_Bit_iteratorS0_ET0_T_S2_S1_@Base 3.11.0~beta1 + (optional=templinst|arch=amd64 arm64 hppa sh4 x32)_ZSt13move_backwardISt15_Deque_iteratorIPN4geos9operation9overlayng11OverlayEdgeERS5_PS5_ES8_ET0_T_SA_S9_@Base 3.10.0 + (optional=templinst)_ZSt14__copy_move_a1ILb1EPN4geos5index6kdtree6KdNodeES3_EN9__gnu_cxx11__enable_ifIXsrSt23__is_random_access_iterIT0_NSt15iterator_traitsIS8_E17iterator_categoryEE7__valueESt15_Deque_iteratorIT1_RSE_PSE_EE6__typeES8_S8_SH_@Base 3.9.0 + (optional=templinst)_ZSt14__copy_move_a1ILb1EPPN4geos9operation9overlayng11OverlayEdgeES4_EN9__gnu_cxx11__enable_ifIXsrSt23__is_random_access_iterIT0_NSt15iterator_traitsIS9_E17iterator_categoryEE7__valueESt15_Deque_iteratorIT1_RSF_PSF_EE6__typeES9_S9_SI_@Base 3.9.0 + (optional=templinst|arch=!amd64 !arm64 !hppa !sh4 !x32)_ZSt15__copy_move_ditILb1EPN4geos9operation9overlayng11OverlayEdgeERS4_PS4_St15_Deque_iteratorIS4_S5_S6_EET3_S7_IT0_T1_T2_ESD_S9_@Base 3.10.0 + (optional=templinst)_ZSt16__do_uninit_copyIN9__gnu_cxx17__normal_iteratorIPKSt6vectorISt4pairIddESaIS4_EES2_IS6_SaIS6_EEEEPS6_ET0_T_SE_SD_@Base 3.11.0 + (optional=templinst)_ZSt16__do_uninit_copyIPKN4geos2io12GeoJSONValueEPS2_ET0_T_S7_S6_@Base 3.11.0 + (optional=templinst)_ZSt16__do_uninit_copyIPKN4geos2io14GeoJSONFeatureEPS2_ET0_T_S7_S6_@Base 3.11.0 + (optional=templinst|subst)_ZSt16__do_uninit_copyIPKSt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN13geos_nlohmann10basic_jsonINS8_11ordered_mapESt6vectorS6_b{int64_t}{uint64_t}dSaNS8_14adl_serializerESB_IhSaIhEEEEEPSG_ET0_T_SL_SK_@Base 3.11.0 + (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_T0_@Base 3.8.1 + (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos11planargraph12DirectedEdgeESt6vectorIS5_SaIS5_EEEENS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_@Base 3.4.2 + (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree9BoundableESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterIPFbPKS5_SF_EEEEvT_SJ_T0_@Base 3.11.0~beta1 + (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos5index9sweepline14SweepLineEventESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_@Base 3.4.2 + (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos9algorithm4hull7HullTriESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterINS5_14HullTriCompareEEEEvT_SG_T0_@Base 3.11.0~beta1 + (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_@Base 3.4.2 + (optional=templinst)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer14BufferSubgraphESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_SH_T0_@Base 3.4.2 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEEiNS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_SE_T0_T1_@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEElNS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_SE_T0_T1_@Base 3.4.2 + (optional=templinst|arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEEiNS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_T0_T1_@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEElNS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_T0_T1_@Base 3.8.1 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeINS2_9algorithm6locate25IndexedPointInAreaLocator11SegmentViewENS4_14IntervalTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom10LinearRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom10LinearRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom7PolygonENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom7PolygonENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom8GeometryENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_4geom8GeometryENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_9operation8distance13FacetSequenceENS4_14EnvelopeTraitsEEESt6vectorISC_SaISC_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplISA_SB_E10sortNodesXERKSH_SN_EUlRKSC_SP_E_EEEvT_SS_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS2_9operation8distance13FacetSequenceENS4_14EnvelopeTraitsEEESt6vectorISC_SaISC_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplISA_SB_E10sortNodesYERKSH_SN_EUlRKSC_SP_E_EEEvT_SS_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS3_5chain13MonotoneChainENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPKNS3_5chain13MonotoneChainENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPNS2_9operation10polygonize8EdgeRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesXERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPNS2_9operation10polygonize8EdgeRingENS4_14EnvelopeTraitsEEESt6vectorISB_SaISB_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS9_SA_E10sortNodesYERKSG_SM_EUlRKSB_SO_E_EEEvT_SR_T0_T1_@Base 3.10.0 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos11planargraph12DirectedEdgeESt6vectorIS5_SaIS5_EEEEiNS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_T1_@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos11planargraph12DirectedEdgeESt6vectorIS5_SaIS5_EEEElNS0_5__ops15_Iter_comp_iterIPFbS5_S5_EEEEvT_SG_T0_T1_@Base 3.4.2 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree9BoundableESt6vectorIS6_SaIS6_EEEEiNS0_5__ops15_Iter_comp_iterIPFbPKS5_SF_EEEEvT_SJ_T0_T1_@Base 3.11.0~beta1 + (optional=templinst|arch=!armel !armhf !i386 !powerpc !x32)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos5index7strtree9BoundableESt6vectorIS6_SaIS6_EEEElNS0_5__ops15_Iter_comp_iterIPFbPKS5_SF_EEEEvT_SJ_T0_T1_@Base 3.11.0 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos5index9sweepline14SweepLineEventESt6vectorIS6_SaIS6_EEEEiNS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_T1_@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos5index9sweepline14SweepLineEventESt6vectorIS6_SaIS6_EEEElNS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_T1_@Base 3.4.2 + (optional=templinst|arch=!amd64 !arm64 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos9algorithm4hull7HullTriESt6vectorIS6_SaIS6_EEEEiNS0_5__ops15_Iter_comp_iterINS5_14HullTriCompareEEEEvT_SG_T0_T1_@Base 3.11.0~beta1 + (optional=templinst|arch=!armel !armhf !i386 !powerpc !x32)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos9algorithm4hull7HullTriESt6vectorIS6_SaIS6_EEEElNS0_5__ops15_Iter_comp_iterINS5_14HullTriCompareEEEEvT_SG_T0_T1_@Base 3.11.0 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEEiNS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_T1_@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEElNS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_T0_T1_@Base 3.4.2 + (optional=templinst|arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer14BufferSubgraphESt6vectorIS6_SaIS6_EEEEiNS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_SH_T0_T1_@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer14BufferSubgraphESt6vectorIS6_SaIS6_EEEElNS0_5__ops15_Iter_comp_iterIPFbS6_S6_EEEEvT_SH_T0_T1_@Base 3.4.2 + (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPSt10unique_ptrIN4geos9operation10polygonize4FaceESt14default_deleteIS6_EESt6vectorIS9_SaIS9_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterINS5_16CompareByEnvareaEEEEvT_SJ_T0_T1_@Base 3.8.0 + (optional=templinst|subst)_ZSt18__do_uninit_fill_nIPSt6vectorIN4geos9algorithm8distance17PointPairDistanceESaIS4_EE{size_t}S6_ET_S8_T0_RKT1_@Base 3.11.0 + (optional=templinst|arch=!armel !armhf !hurd-i386 !i386 !m68k !mipsel !powerpc)_ZSt22__final_insertion_sortIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_T0_@Base 3.9.0 + (optional=templinst)_ZSt23__copy_move_backward_a1ILb1EPN4geos5index6kdtree6KdNodeES3_EN9__gnu_cxx11__enable_ifIXsrSt23__is_random_access_iterIT0_NSt15iterator_traitsIS8_E17iterator_categoryEE7__valueESt15_Deque_iteratorIT1_RSE_PSE_EE6__typeES8_S8_SH_@Base 3.9.0 + (optional=templinst)_ZSt23__copy_move_backward_a1ILb1EPPN4geos9operation9overlayng11OverlayEdgeES4_EN9__gnu_cxx11__enable_ifIXsrSt23__is_random_access_iterIT0_NSt15iterator_traitsIS9_E17iterator_categoryEE7__valueESt15_Deque_iteratorIT1_RSF_PSF_EE6__typeES9_S9_SI_@Base 3.9.0 + (optional=templinst)_ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops14_Val_comp_iterIPFbRKS4_SD_EEEEvT_T0_@Base 3.8.1 + (optional=templinst|arch=amd64 arm64 hppa sh4 x32)_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation9overlayng11OverlayEdgeESt6vectorIS6_SaIS6_EEEESt15_Deque_iteratorIS6_RS6_S7_EET0_T_SG_SF_@Base 3.9.0 + (optional=templinst|arch=m68k)_ZSt4copyISt13_Bit_iteratorS0_ET0_T_S2_S1_@Base 3.11.0~beta1 + (optional=templinst|arch=armel armhf hurd-i386 i386 m68k mipsel powerpc)_ZSt4swapIN13geos_nlohmann10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbxydSaNS0_14adl_serializerES3_IhSaIhEEE10json_valueEENSt9enable_ifIXsrSt6__and_IJSt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleISJ_ESt18is_move_assignableISJ_EEE5valueEvE4typeERSJ_ST_@Base 3.10.0 + (optional=templinst|subst)_ZSt7shuffleIN9__gnu_cxx17__normal_iteratorIP{size_t}St6vectorI{size_t}SaI{size_t}EEEERSt23mersenne_twister_engineI{size_t}L{size_t}32EL{size_t}624EL{size_t}397EL{size_t}31EL{size_t}2567483615EL{size_t}11EL{size_t}4294967295EL{size_t}7EL{size_t}2636928640EL{size_t}15EL{size_t}4022730752EL{size_t}18EL{size_t}1812433253EEEvT_SA_OT0_@Base 3.9.0 + _ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_S9_@Base 3.7.0 + (optional=templinst|arch=amd64 arm64 x32)_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEPKS5_OS8_@Base 3.8.0 + (optional=templinst)_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEPKS5_RKS8_@Base 3.4.2 + (optional=templinst)_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_@Base 3.4.2 + _ZTIN13geos_nlohmann6detail10type_errorE@Base 3.10.0 + _ZTIN13geos_nlohmann6detail11other_errorE@Base 3.10.0 + _ZTIN13geos_nlohmann6detail11parse_errorE@Base 3.10.0 + _ZTIN13geos_nlohmann6detail12out_of_rangeE@Base 3.10.0 + _ZTIN13geos_nlohmann6detail16invalid_iteratorE@Base 3.10.0 + _ZTIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE@Base 3.10.0 + _ZTIN13geos_nlohmann6detail23output_adapter_protocolIcEE@Base 3.10.0 + _ZTIN13geos_nlohmann6detail9exceptionE@Base 3.10.0 + _ZTIN4geos11planargraph11PlanarGraphE@Base 3.4.2 + _ZTIN4geos11planargraph12DirectedEdgeE@Base 3.4.2 + _ZTIN4geos11planargraph14GraphComponentE@Base 3.4.2 + _ZTIN4geos11planargraph16DirectedEdgeStarE@Base 3.4.2 + _ZTIN4geos11planargraph4EdgeE@Base 3.4.2 + _ZTIN4geos11planargraph4NodeE@Base 3.4.2 + _ZTIN4geos11planargraph7NodeMapE@Base 3.4.2 + _ZTIN4geos11triangulate8quadedge15QuadEdgeLocatorE@Base 3.4.2 + _ZTIN4geos11triangulate8quadedge15TriangleVisitorE@Base 3.4.2 + _ZTIN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorE@Base 3.4.2 + _ZTIN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorE@Base 3.5.0 + _ZTIN4geos11triangulate8quadedge19QuadEdgeSubdivisionE@Base 3.4.2 + _ZTIN4geos11triangulate8quadedge22LocateFailureExceptionE@Base 3.4.2 + _ZTIN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorE@Base 3.4.2 + _ZTIN4geos2io12GeoJSONValue16GeoJSONTypeErrorE@Base 3.10.0 + _ZTIN4geos2io14ParseExceptionE@Base 3.4.2 + _ZTIN4geos4geom10LineStringE@Base 3.4.2 + _ZTIN4geos4geom10LinearRingE@Base 3.4.2 + _ZTIN4geos4geom10MultiPointE@Base 3.4.2 + _ZTIN4geos4geom12MultiPolygonE@Base 3.4.2 + _ZTIN4geos4geom14GeometryFilterE@Base 3.4.2 + _ZTIN4geos4geom15GeometryFactoryE@Base 3.4.2 + _ZTIN4geos4geom15MultiLineStringE@Base 3.4.2 + _ZTIN4geos4geom16CoordinateFilterE@Base 3.4.2 + _ZTIN4geos4geom18CoordinateSequenceE@Base 3.4.2 + _ZTIN4geos4geom18GeometryCollectionE@Base 3.4.2 + _ZTIN4geos4geom23CoordinateArraySequenceE@Base 3.4.2 + _ZTIN4geos4geom23GeometryComponentFilterE@Base 3.4.2 + _ZTIN4geos4geom24CoordinateSequenceFilterE@Base 3.4.2 + _ZTIN4geos4geom25CoordinateSequenceFactoryE@Base 3.4.2 + (arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZTIN4geos4geom27FixedSizeCoordinateSequenceILj0EEE@Base 3.9.0 + (arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZTIN4geos4geom27FixedSizeCoordinateSequenceILm0EEE@Base 3.9.0 + (subst)_ZTIN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EEE@Base 3.8.0 + (subst)_ZTIN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EEE@Base 3.8.0 + (subst)_ZTIN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EEE@Base 3.8.0 + (subst)_ZTIN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EEE@Base 3.8.0 + (subst)_ZTIN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EEE@Base 3.8.0 + _ZTIN4geos4geom30CoordinateArraySequenceFactoryE@Base 3.4.2 + _ZTIN4geos4geom32DefaultCoordinateSequenceFactoryE@Base 3.8.0 + _ZTIN4geos4geom4prep13PreparedPointE@Base 3.4.2 + _ZTIN4geos4geom4prep15PreparedPolygonE@Base 3.4.2 + _ZTIN4geos4geom4prep16PreparedGeometryE@Base 3.4.2 + _ZTIN4geos4geom4prep18PreparedLineStringE@Base 3.4.2 + _ZTIN4geos4geom4prep21BasicPreparedGeometryE@Base 3.4.2 + _ZTIN4geos4geom4prep21PreparedPolygonCoversE@Base 3.4.2 + _ZTIN4geos4geom4prep22LocationMatchingFilterE@Base 3.8.0 + _ZTIN4geos4geom4prep23OutermostLocationFilterE@Base 3.8.0 + _ZTIN4geos4geom4prep23PreparedPolygonContainsE@Base 3.4.2 + _ZTIN4geos4geom4prep24PreparedPolygonPredicateE@Base 3.4.2 + _ZTIN4geos4geom4prep25LocationNotMatchingFilterE@Base 3.8.0 + _ZTIN4geos4geom4prep25PreparedPolygonIntersectsE@Base 3.4.2 + _ZTIN4geos4geom4prep31AbstractPreparedPolygonContainsE@Base 3.4.2 + _ZTIN4geos4geom4prep31PreparedPolygonContainsProperlyE@Base 3.4.2 + _ZTIN4geos4geom4util14PointExtracterE@Base 3.4.2 + _ZTIN4geos4geom4util16PolygonExtracterE@Base 3.4.2 + _ZTIN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 + _ZTIN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 + _ZTIN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 + _ZTIN4geos4geom4util19CoordinateOperationE@Base 3.4.2 + _ZTIN4geos4geom4util19GeometryTransformerE@Base 3.4.2 + _ZTIN4geos4geom4util21NoOpGeometryOperationE@Base 3.10.0 + _ZTIN4geos4geom4util23GeometryEditorOperationE@Base 3.4.2 + _ZTIN4geos4geom4util24LinearComponentExtracterE@Base 3.4.2 + _ZTIN4geos4geom4util28ComponentCoordinateExtracterE@Base 3.4.2 + _ZTIN4geos4geom4util29ShortCircuitedGeometryVisitorE@Base 3.4.2 + _ZTIN4geos4geom4util9Densifier18DensifyTransformerE@Base 3.8.0 + _ZTIN4geos4geom5PointE@Base 3.4.2 + _ZTIN4geos4geom7PolygonE@Base 3.4.2 + _ZTIN4geos4geom8Geometry21GeometryChangedFilterE@Base 3.4.2 + _ZTIN4geos4geom8GeometryE@Base 3.4.2 + _ZTIN4geos4util13GEOSExceptionE@Base 3.4.2 + _ZTIN4geos4util17TopologyExceptionE@Base 3.4.2 + _ZTIN4geos4util20InterruptedExceptionE@Base 3.4.2 + _ZTIN4geos4util21GeometricShapeFactoryE@Base 3.4.2 + _ZTIN4geos4util21IllegalStateExceptionE@Base 3.4.2 + _ZTIN4geos4util24AssertionFailedExceptionE@Base 3.4.2 + _ZTIN4geos4util24IllegalArgumentExceptionE@Base 3.4.2 + _ZTIN4geos4util27UniqueCoordinateArrayFilterE@Base 3.4.2 + _ZTIN4geos4util29UnsupportedOperationExceptionE@Base 3.4.2 + _ZTIN4geos5index11ItemVisitorE@Base 3.4.2 + _ZTIN4geos5index12SpatialIndexE@Base 3.4.2 + _ZTIN4geos5index13intervalrtree17IntervalRTreeNodeE@Base 3.4.2 + _ZTIN4geos5index13intervalrtree21IntervalRTreeLeafNodeE@Base 3.4.2 + _ZTIN4geos5index13intervalrtree23IntervalRTreeBranchNodeE@Base 3.4.2 + _ZTIN4geos5index5chain12ChainBuilderE@Base 3.10.0 + _ZTIN4geos5index5chain25MonotoneChainSelectActionE@Base 3.4.2 + _ZTIN4geos5index5chain26MonotoneChainOverlapActionE@Base 3.4.2 + _ZTIN4geos5index6kdtree13KdNodeVisitorE@Base 3.9.0 + _ZTIN4geos5index6kdtree6KdTree16BestMatchVisitorE@Base 3.9.0 + _ZTIN4geos5index6kdtree6KdTree19AccumulatingVisitorE@Base 3.9.0 + _ZTIN4geos5index7bintree4NodeE@Base 3.4.2 + _ZTIN4geos5index7bintree4RootE@Base 3.4.2 + _ZTIN4geos5index7bintree8NodeBaseE@Base 3.4.2 + _ZTIN4geos5index7strtree12AbstractNodeE@Base 3.4.2 + _ZTIN4geos5index7strtree12ItemDistanceE@Base 3.6.0 + _ZTIN4geos5index7strtree13ItemBoundableE@Base 3.4.2 + _ZTIN4geos5index7strtree13SimpleSTRnodeE@Base 3.9.0 + _ZTIN4geos5index7strtree13SimpleSTRtreeE@Base 3.9.0 + _ZTIN4geos5index7strtree15AbstractSTRtree12IntersectsOpE@Base 3.4.2 + _ZTIN4geos5index7strtree15AbstractSTRtreeE@Base 3.4.2 + _ZTIN4geos5index7strtree15SIRAbstractNodeE@Base 3.4.2 + _ZTIN4geos5index7strtree15STRAbstractNodeE@Base 3.4.2 + _ZTIN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTIN4geos5index7strtree20GeometryItemDistanceE@Base 3.6.0 + _ZTIN4geos5index7strtree7SIRtree15SIRIntersectsOpE@Base 3.4.2 + _ZTIN4geos5index7strtree7SIRtreeE@Base 3.4.2 + _ZTIN4geos5index7strtree7STRtree15STRIntersectsOpE@Base 3.4.2 + _ZTIN4geos5index7strtree7STRtreeE@Base 3.4.2 + _ZTIN4geos5index7strtree9BoundableE@Base 3.4.2 + _ZTIN4geos5index8quadtree4NodeE@Base 3.4.2 + _ZTIN4geos5index8quadtree4RootE@Base 3.4.2 + _ZTIN4geos5index8quadtree8NodeBaseE@Base 3.4.2 + _ZTIN4geos5index8quadtree8QuadtreeE@Base 3.4.2 + _ZTIN4geos6noding11ScaledNoder6ScalerE@Base 3.4.2 + _ZTIN4geos6noding11ScaledNoder8ReScalerE@Base 3.4.2 + _ZTIN4geos6noding11ScaledNoderE@Base 3.4.2 + _ZTIN4geos6noding11SimpleNoderE@Base 3.4.2 + _ZTIN4geos6noding12MCIndexNoder20SegmentOverlapActionE@Base 3.4.2 + _ZTIN4geos6noding12MCIndexNoderE@Base 3.4.2 + _ZTIN4geos6noding13IteratedNoderE@Base 3.4.2 + _ZTIN4geos6noding13SegmentStringE@Base 3.4.2 + _ZTIN4geos6noding15SinglePassNoderE@Base 3.4.2 + _ZTIN4geos6noding15ValidatingNoderE@Base 3.9.0 + _ZTIN4geos6noding17IntersectionAdderE@Base 3.4.2 + _ZTIN4geos6noding18BasicSegmentStringE@Base 3.4.2 + _ZTIN4geos6noding18NodedSegmentStringE@Base 3.4.2 + _ZTIN4geos6noding18SegmentIntersectorE@Base 3.4.2 + _ZTIN4geos6noding20NodableSegmentStringE@Base 3.4.2 + _ZTIN4geos6noding22SegmentExtractingNoderE@Base 3.11.0~beta1 + _ZTIN4geos6noding23IntersectionFinderAdderE@Base 3.4.2 + _ZTIN4geos6noding24NodingIntersectionFinderE@Base 3.8.0 + _ZTIN4geos6noding27SegmentIntersectionDetectorE@Base 3.4.2 + _ZTIN4geos6noding27SegmentSetMutualIntersectorE@Base 3.4.2 + _ZTIN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionE@Base 3.4.2 + _ZTIN4geos6noding34MCIndexSegmentSetMutualIntersectorE@Base 3.4.2 + _ZTIN4geos6noding4snap13SnappingNoderE@Base 3.9.0 + _ZTIN4geos6noding4snap25SnappingIntersectionAdderE@Base 3.9.0 + _ZTIN4geos6noding5NoderE@Base 3.4.2 + _ZTIN4geos6noding9snapround17SnapRoundingNoderE@Base 3.9.0 + _ZTIN4geos6noding9snapround18HotPixelSnapActionE@Base 3.4.2 + _ZTIN4geos6noding9snapround18MCIndexSnapRounderE@Base 3.4.2 + _ZTIN4geos6noding9snapround26MCIndexPointSnapperVisitorE@Base 3.4.2 + _ZTIN4geos6noding9snapround29SnapRoundingIntersectionAdderE@Base 3.9.0 + _ZTIN4geos8simplify13DPTransformerE@Base 3.4.2 + _ZTIN4geos8simplify18LineSegmentVisitorE@Base 3.4.2 + _ZTIN4geos9algorithm11PointInRingE@Base 3.10.0 + _ZTIN4geos9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZTIN4geos9algorithm17SimplePointInRingE@Base 3.10.0 + _ZTIN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 + _ZTIN4geos9algorithm4hull17HullTriangulation14HullTriVisitorE@Base 3.11.0~beta1 + _ZTIN4geos9algorithm6locate22PointOnGeometryLocatorE@Base 3.4.2 + _ZTIN4geos9algorithm6locate25IndexedPointInAreaLocatorE@Base 3.4.2 + _ZTIN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterE@Base 3.4.2 + _ZTIN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterE@Base 3.4.2 + _ZTIN4geos9edgegraph8HalfEdgeE@Base 3.9.0 + _ZTIN4geos9geomgraph11EdgeEndStarE@Base 3.4.2 + _ZTIN4geos9geomgraph11NodeFactoryE@Base 3.4.2 + _ZTIN4geos9geomgraph11PlanarGraphE@Base 3.4.2 + _ZTIN4geos9geomgraph12DirectedEdgeE@Base 3.4.2 + _ZTIN4geos9geomgraph13GeometryGraphE@Base 3.4.2 + _ZTIN4geos9geomgraph14GraphComponentE@Base 3.4.2 + _ZTIN4geos9geomgraph16DirectedEdgeStarE@Base 3.4.2 + _ZTIN4geos9geomgraph4EdgeE@Base 3.4.2 + _ZTIN4geos9geomgraph4NodeE@Base 3.4.2 + _ZTIN4geos9geomgraph5DepthE@Base 3.4.2 + _ZTIN4geos9geomgraph5index13MonotoneChainE@Base 3.4.2 + _ZTIN4geos9geomgraph5index16SweepLineSegmentE@Base 3.4.2 + _ZTIN4geos9geomgraph5index17SweepLineEventOBJE@Base 3.4.2 + _ZTIN4geos9geomgraph5index18EdgeSetIntersectorE@Base 3.4.2 + _ZTIN4geos9geomgraph5index18SegmentIntersectorE@Base 3.4.2 + _ZTIN4geos9geomgraph5index24SimpleEdgeSetIntersectorE@Base 3.4.2 + _ZTIN4geos9geomgraph5index26SimpleSweepLineIntersectorE@Base 3.4.2 + _ZTIN4geos9geomgraph5index28SimpleMCSweepLineIntersectorE@Base 3.4.2 + _ZTIN4geos9geomgraph7EdgeEndE@Base 3.4.2 + _ZTIN4geos9geomgraph7NodeMapE@Base 3.4.2 + _ZTIN4geos9geomgraph8EdgeListE@Base 3.4.2 + _ZTIN4geos9geomgraph8EdgeRingE@Base 3.4.2 + _ZTIN4geos9operation10polygonize11Polygonizer15LineStringAdderE@Base 3.4.2 + _ZTIN4geos9operation10polygonize14PolygonizeEdgeE@Base 3.4.2 + _ZTIN4geos9operation10polygonize15PolygonizeGraphE@Base 3.4.2 + _ZTIN4geos9operation10polygonize22PolygonizeDirectedEdgeE@Base 3.4.2 + _ZTIN4geos9operation22GeometryGraphOperationE@Base 3.4.2 + _ZTIN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderE@Base 3.10.0 + _ZTIN4geos9operation5valid19RepeatedPointFilterE@Base 3.10.0 + _ZTIN4geos9operation5valid26RepeatedInvalidPointFilterE@Base 3.10.0 + _ZTIN4geos9operation5valid27PolygonIntersectionAnalyzerE@Base 3.10.0 + _ZTIN4geos9operation5valid32RepeatedPointCoordinateOperationE@Base 3.11.0~beta1 + _ZTIN4geos9operation6buffer11OffsetCurve23MatchCurveSegmentActionE@Base 3.11.0~beta1 + _ZTIN4geos9operation6relate10RelateNodeE@Base 3.4.2 + _ZTIN4geos9operation6relate13EdgeEndBundleE@Base 3.4.2 + _ZTIN4geos9operation6relate15RelateNodeGraphE@Base 3.4.2 + _ZTIN4geos9operation6relate17EdgeEndBundleStarE@Base 3.4.2 + _ZTIN4geos9operation6relate17RelateNodeFactoryE@Base 3.4.2 + _ZTIN4geos9operation6relate8RelateOpE@Base 3.4.2 + _ZTIN4geos9operation7overlay15MaximalEdgeRingE@Base 3.4.2 + _ZTIN4geos9operation7overlay15MinimalEdgeRingE@Base 3.4.2 + _ZTIN4geos9operation7overlay18OverlayNodeFactoryE@Base 3.4.2 + _ZTIN4geos9operation7overlay21ElevationMatrixFilterE@Base 3.4.2 + _ZTIN4geos9operation7overlay4snap15SnapTransformerE@Base 3.4.2 + _ZTIN4geos9operation7overlay9OverlayOpE@Base 3.4.2 + _ZTIN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeE@Base 3.9.0 + _ZTIN4geos9operation8distance27ConnectedElementPointFilterE@Base 3.4.2 + _ZTIN4geos9operation8distance30ConnectedElementLocationFilterE@Base 3.4.2 + _ZTIN4geos9operation8geounion13UnionStrategyE@Base 3.9.0 + _ZTIN4geos9operation8geounion20ClassicUnionStrategyE@Base 3.9.0 + _ZTIN4geos9operation9linemerge13LineMergeEdgeE@Base 3.4.2 + _ZTIN4geos9operation9linemerge14LineMergeGraphE@Base 3.4.2 + _ZTIN4geos9operation9linemerge21LineMergeDirectedEdgeE@Base 3.4.2 + _ZTIN4geos9operation9overlayng11OverlayEdgeE@Base 3.9.0 + _ZTIN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyE@Base 3.9.0 + _ZTIN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterE@Base 3.9.0 + _ZTIN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyE@Base 3.9.0 + _ZTIN4geos9operation9overlayng21PointExtractingFilterE@Base 3.11.1 + _ZTIN4geos9operation9overlayng25IndexedPointOnLineLocatorE@Base 3.9.0 + _ZTIN4geos9operation9overlayng26CoordinateExtractingFilterE@Base 3.11.1 + _ZTIN4geos9operation9predicate20ContainsPointVisitorE@Base 3.4.2 + _ZTIN4geos9operation9predicate21LineIntersectsVisitorE@Base 3.4.2 + _ZTIN4geos9operation9predicate25EnvelopeIntersectsVisitorE@Base 3.4.2 + _ZTIN4geos9precision10TranslaterE@Base 3.4.2 + _ZTIN4geos9precision22CommonCoordinateFilterE@Base 3.4.2 + _ZTIN4geos9precision22PrecisionReducerFilterE@Base 3.10.0 + _ZTIN4geos9precision27PrecisionReducerTransformerE@Base 3.10.0 + _ZTIN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 + _ZTIN4geos9precision36PointwisePrecisionReducerTransformerE@Base 3.10.0 + (arch=armel riscv64)_ZTIN9__gnu_cxx7__mutexE@Base 3.10.0 + (arch=armel riscv64)_ZTISt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 + (arch=!armel !riscv64)_ZTISt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 + (arch=armel riscv64)_ZTISt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 + (arch=!armel !riscv64)_ZTISt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 + (arch=armel armhf)_ZTISt19_Sp_make_shared_tag@Base 3.10.0 + (arch=armel riscv64)_ZTISt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE1EE@Base 3.11.1 + (arch=!armel !riscv64)_ZTISt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE2EE@Base 3.11.1 + _ZTSN13geos_nlohmann6detail10type_errorE@Base 3.10.0 + _ZTSN13geos_nlohmann6detail11other_errorE@Base 3.10.0 + _ZTSN13geos_nlohmann6detail11parse_errorE@Base 3.10.0 + _ZTSN13geos_nlohmann6detail12out_of_rangeE@Base 3.10.0 + _ZTSN13geos_nlohmann6detail16invalid_iteratorE@Base 3.10.0 + _ZTSN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE@Base 3.10.0 + _ZTSN13geos_nlohmann6detail23output_adapter_protocolIcEE@Base 3.10.0 + _ZTSN13geos_nlohmann6detail9exceptionE@Base 3.10.0 + _ZTSN4geos11planargraph11PlanarGraphE@Base 3.4.2 + _ZTSN4geos11planargraph12DirectedEdgeE@Base 3.4.2 + _ZTSN4geos11planargraph14GraphComponentE@Base 3.4.2 + _ZTSN4geos11planargraph16DirectedEdgeStarE@Base 3.4.2 + _ZTSN4geos11planargraph4EdgeE@Base 3.4.2 + _ZTSN4geos11planargraph4NodeE@Base 3.4.2 + _ZTSN4geos11planargraph7NodeMapE@Base 3.4.2 + _ZTSN4geos11triangulate8quadedge15QuadEdgeLocatorE@Base 3.4.2 + _ZTSN4geos11triangulate8quadedge15TriangleVisitorE@Base 3.4.2 + _ZTSN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorE@Base 3.4.2 + _ZTSN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorE@Base 3.5.0 + _ZTSN4geos11triangulate8quadedge19QuadEdgeSubdivisionE@Base 3.4.2 + _ZTSN4geos11triangulate8quadedge22LocateFailureExceptionE@Base 3.4.2 + _ZTSN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorE@Base 3.4.2 + _ZTSN4geos2io12GeoJSONValue16GeoJSONTypeErrorE@Base 3.10.0 + _ZTSN4geos2io14ParseExceptionE@Base 3.4.2 + _ZTSN4geos4geom10LineStringE@Base 3.4.2 + _ZTSN4geos4geom10LinearRingE@Base 3.4.2 + _ZTSN4geos4geom10MultiPointE@Base 3.4.2 + _ZTSN4geos4geom12MultiPolygonE@Base 3.4.2 + _ZTSN4geos4geom14GeometryFilterE@Base 3.4.2 + _ZTSN4geos4geom15GeometryFactoryE@Base 3.4.2 + _ZTSN4geos4geom15MultiLineStringE@Base 3.4.2 + _ZTSN4geos4geom16CoordinateFilterE@Base 3.4.2 + _ZTSN4geos4geom18CoordinateSequenceE@Base 3.4.2 + _ZTSN4geos4geom18GeometryCollectionE@Base 3.4.2 + _ZTSN4geos4geom23CoordinateArraySequenceE@Base 3.4.2 + _ZTSN4geos4geom23GeometryComponentFilterE@Base 3.4.2 + _ZTSN4geos4geom24CoordinateSequenceFilterE@Base 3.4.2 + _ZTSN4geos4geom25CoordinateSequenceFactoryE@Base 3.4.2 + (arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZTSN4geos4geom27FixedSizeCoordinateSequenceILj0EEE@Base 3.9.0 + (arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZTSN4geos4geom27FixedSizeCoordinateSequenceILm0EEE@Base 3.9.0 + (subst)_ZTSN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EEE@Base 3.8.0 + (subst)_ZTSN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EEE@Base 3.8.0 + (subst)_ZTSN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EEE@Base 3.8.0 + (subst)_ZTSN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EEE@Base 3.8.0 + (subst)_ZTSN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EEE@Base 3.8.0 + _ZTSN4geos4geom30CoordinateArraySequenceFactoryE@Base 3.4.2 + _ZTSN4geos4geom32DefaultCoordinateSequenceFactoryE@Base 3.8.0 + _ZTSN4geos4geom4prep13PreparedPointE@Base 3.4.2 + _ZTSN4geos4geom4prep15PreparedPolygonE@Base 3.4.2 + _ZTSN4geos4geom4prep16PreparedGeometryE@Base 3.4.2 + _ZTSN4geos4geom4prep18PreparedLineStringE@Base 3.4.2 + _ZTSN4geos4geom4prep21BasicPreparedGeometryE@Base 3.4.2 + _ZTSN4geos4geom4prep21PreparedPolygonCoversE@Base 3.4.2 + _ZTSN4geos4geom4prep22LocationMatchingFilterE@Base 3.8.0 + _ZTSN4geos4geom4prep23OutermostLocationFilterE@Base 3.8.0 + _ZTSN4geos4geom4prep23PreparedPolygonContainsE@Base 3.4.2 + _ZTSN4geos4geom4prep24PreparedPolygonPredicateE@Base 3.4.2 + _ZTSN4geos4geom4prep25LocationNotMatchingFilterE@Base 3.8.0 + _ZTSN4geos4geom4prep25PreparedPolygonIntersectsE@Base 3.4.2 + _ZTSN4geos4geom4prep31AbstractPreparedPolygonContainsE@Base 3.4.2 + _ZTSN4geos4geom4prep31PreparedPolygonContainsProperlyE@Base 3.4.2 + _ZTSN4geos4geom4util14PointExtracterE@Base 3.4.2 + _ZTSN4geos4geom4util16PolygonExtracterE@Base 3.4.2 + _ZTSN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 + _ZTSN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 + _ZTSN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 + _ZTSN4geos4geom4util19CoordinateOperationE@Base 3.4.2 + _ZTSN4geos4geom4util19GeometryTransformerE@Base 3.4.2 + _ZTSN4geos4geom4util21NoOpGeometryOperationE@Base 3.10.0 + _ZTSN4geos4geom4util23GeometryEditorOperationE@Base 3.4.2 + _ZTSN4geos4geom4util24LinearComponentExtracterE@Base 3.4.2 + _ZTSN4geos4geom4util28ComponentCoordinateExtracterE@Base 3.4.2 + _ZTSN4geos4geom4util29ShortCircuitedGeometryVisitorE@Base 3.4.2 + _ZTSN4geos4geom4util9Densifier18DensifyTransformerE@Base 3.8.0 + _ZTSN4geos4geom5PointE@Base 3.4.2 + _ZTSN4geos4geom7PolygonE@Base 3.4.2 + _ZTSN4geos4geom8Geometry21GeometryChangedFilterE@Base 3.4.2 + _ZTSN4geos4geom8GeometryE@Base 3.4.2 + _ZTSN4geos4util13GEOSExceptionE@Base 3.4.2 + _ZTSN4geos4util17TopologyExceptionE@Base 3.4.2 + _ZTSN4geos4util20InterruptedExceptionE@Base 3.4.2 + _ZTSN4geos4util21GeometricShapeFactoryE@Base 3.4.2 + _ZTSN4geos4util21IllegalStateExceptionE@Base 3.4.2 + _ZTSN4geos4util24AssertionFailedExceptionE@Base 3.4.2 + _ZTSN4geos4util24IllegalArgumentExceptionE@Base 3.4.2 + _ZTSN4geos4util27UniqueCoordinateArrayFilterE@Base 3.4.2 + _ZTSN4geos4util29UnsupportedOperationExceptionE@Base 3.4.2 + _ZTSN4geos5index11ItemVisitorE@Base 3.4.2 + _ZTSN4geos5index12SpatialIndexE@Base 3.4.2 + _ZTSN4geos5index13intervalrtree17IntervalRTreeNodeE@Base 3.4.2 + _ZTSN4geos5index13intervalrtree21IntervalRTreeLeafNodeE@Base 3.4.2 + _ZTSN4geos5index13intervalrtree23IntervalRTreeBranchNodeE@Base 3.4.2 + _ZTSN4geos5index5chain12ChainBuilderE@Base 3.10.0 + _ZTSN4geos5index5chain25MonotoneChainSelectActionE@Base 3.4.2 + _ZTSN4geos5index5chain26MonotoneChainOverlapActionE@Base 3.4.2 + _ZTSN4geos5index6kdtree13KdNodeVisitorE@Base 3.9.0 + _ZTSN4geos5index6kdtree6KdTree16BestMatchVisitorE@Base 3.9.0 + _ZTSN4geos5index6kdtree6KdTree19AccumulatingVisitorE@Base 3.9.0 + _ZTSN4geos5index7bintree4NodeE@Base 3.4.2 + _ZTSN4geos5index7bintree4RootE@Base 3.4.2 + _ZTSN4geos5index7bintree8NodeBaseE@Base 3.4.2 + _ZTSN4geos5index7strtree12AbstractNodeE@Base 3.4.2 + _ZTSN4geos5index7strtree12ItemDistanceE@Base 3.6.0 + _ZTSN4geos5index7strtree13ItemBoundableE@Base 3.4.2 + _ZTSN4geos5index7strtree13SimpleSTRnodeE@Base 3.9.0 + _ZTSN4geos5index7strtree13SimpleSTRtreeE@Base 3.9.0 + _ZTSN4geos5index7strtree15AbstractSTRtree12IntersectsOpE@Base 3.4.2 + _ZTSN4geos5index7strtree15AbstractSTRtreeE@Base 3.4.2 + _ZTSN4geos5index7strtree15SIRAbstractNodeE@Base 3.4.2 + _ZTSN4geos5index7strtree15STRAbstractNodeE@Base 3.4.2 + _ZTSN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree15TemplateSTRtreeIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPKNS_9operation8distance13FacetSequenceENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTSN4geos5index7strtree20GeometryItemDistanceE@Base 3.6.0 + _ZTSN4geos5index7strtree7SIRtree15SIRIntersectsOpE@Base 3.4.2 + _ZTSN4geos5index7strtree7SIRtreeE@Base 3.4.2 + _ZTSN4geos5index7strtree7STRtree15STRIntersectsOpE@Base 3.4.2 + _ZTSN4geos5index7strtree7STRtreeE@Base 3.4.2 + _ZTSN4geos5index7strtree9BoundableE@Base 3.4.2 + _ZTSN4geos5index8quadtree4NodeE@Base 3.4.2 + _ZTSN4geos5index8quadtree4RootE@Base 3.4.2 + _ZTSN4geos5index8quadtree8NodeBaseE@Base 3.4.2 + _ZTSN4geos5index8quadtree8QuadtreeE@Base 3.4.2 + _ZTSN4geos6noding11ScaledNoder6ScalerE@Base 3.4.2 + _ZTSN4geos6noding11ScaledNoder8ReScalerE@Base 3.4.2 + _ZTSN4geos6noding11ScaledNoderE@Base 3.4.2 + _ZTSN4geos6noding11SimpleNoderE@Base 3.4.2 + _ZTSN4geos6noding12MCIndexNoder20SegmentOverlapActionE@Base 3.4.2 + _ZTSN4geos6noding12MCIndexNoderE@Base 3.4.2 + _ZTSN4geos6noding13IteratedNoderE@Base 3.4.2 + _ZTSN4geos6noding13SegmentStringE@Base 3.4.2 + _ZTSN4geos6noding15SinglePassNoderE@Base 3.4.2 + _ZTSN4geos6noding15ValidatingNoderE@Base 3.9.0 + _ZTSN4geos6noding17IntersectionAdderE@Base 3.4.2 + _ZTSN4geos6noding18BasicSegmentStringE@Base 3.4.2 + _ZTSN4geos6noding18NodedSegmentStringE@Base 3.4.2 + _ZTSN4geos6noding18SegmentIntersectorE@Base 3.4.2 + _ZTSN4geos6noding20NodableSegmentStringE@Base 3.4.2 + _ZTSN4geos6noding22SegmentExtractingNoderE@Base 3.11.0~beta1 + _ZTSN4geos6noding23IntersectionFinderAdderE@Base 3.4.2 + _ZTSN4geos6noding24NodingIntersectionFinderE@Base 3.8.0 + _ZTSN4geos6noding27SegmentIntersectionDetectorE@Base 3.4.2 + _ZTSN4geos6noding27SegmentSetMutualIntersectorE@Base 3.4.2 + _ZTSN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionE@Base 3.4.2 + _ZTSN4geos6noding34MCIndexSegmentSetMutualIntersectorE@Base 3.4.2 + _ZTSN4geos6noding4snap13SnappingNoderE@Base 3.9.0 + _ZTSN4geos6noding4snap25SnappingIntersectionAdderE@Base 3.9.0 + _ZTSN4geos6noding5NoderE@Base 3.4.2 + _ZTSN4geos6noding9snapround17SnapRoundingNoderE@Base 3.9.0 + _ZTSN4geos6noding9snapround18HotPixelSnapActionE@Base 3.4.2 + _ZTSN4geos6noding9snapround18MCIndexSnapRounderE@Base 3.4.2 + _ZTSN4geos6noding9snapround26MCIndexPointSnapperVisitorE@Base 3.4.2 + _ZTSN4geos6noding9snapround29SnapRoundingIntersectionAdderE@Base 3.9.0 + _ZTSN4geos8simplify13DPTransformerE@Base 3.4.2 + _ZTSN4geos8simplify18LineSegmentVisitorE@Base 3.4.2 + _ZTSN4geos9algorithm11PointInRingE@Base 3.10.0 + _ZTSN4geos9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZTSN4geos9algorithm17SimplePointInRingE@Base 3.10.0 + _ZTSN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 + _ZTSN4geos9algorithm4hull17HullTriangulation14HullTriVisitorE@Base 3.11.0~beta1 + _ZTSN4geos9algorithm6locate22PointOnGeometryLocatorE@Base 3.4.2 + _ZTSN4geos9algorithm6locate25IndexedPointInAreaLocatorE@Base 3.4.2 + _ZTSN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterE@Base 3.4.2 + _ZTSN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterE@Base 3.4.2 + _ZTSN4geos9edgegraph8HalfEdgeE@Base 3.9.0 + _ZTSN4geos9geomgraph11EdgeEndStarE@Base 3.4.2 + _ZTSN4geos9geomgraph11NodeFactoryE@Base 3.4.2 + _ZTSN4geos9geomgraph11PlanarGraphE@Base 3.4.2 + _ZTSN4geos9geomgraph12DirectedEdgeE@Base 3.4.2 + _ZTSN4geos9geomgraph13GeometryGraphE@Base 3.4.2 + _ZTSN4geos9geomgraph14GraphComponentE@Base 3.4.2 + _ZTSN4geos9geomgraph16DirectedEdgeStarE@Base 3.4.2 + _ZTSN4geos9geomgraph4EdgeE@Base 3.4.2 + _ZTSN4geos9geomgraph4NodeE@Base 3.4.2 + _ZTSN4geos9geomgraph5DepthE@Base 3.4.2 + _ZTSN4geos9geomgraph5index13MonotoneChainE@Base 3.4.2 + _ZTSN4geos9geomgraph5index16SweepLineSegmentE@Base 3.4.2 + _ZTSN4geos9geomgraph5index17SweepLineEventOBJE@Base 3.4.2 + _ZTSN4geos9geomgraph5index18EdgeSetIntersectorE@Base 3.4.2 + _ZTSN4geos9geomgraph5index18SegmentIntersectorE@Base 3.4.2 + _ZTSN4geos9geomgraph5index24SimpleEdgeSetIntersectorE@Base 3.4.2 + _ZTSN4geos9geomgraph5index26SimpleSweepLineIntersectorE@Base 3.4.2 + _ZTSN4geos9geomgraph5index28SimpleMCSweepLineIntersectorE@Base 3.4.2 + _ZTSN4geos9geomgraph7EdgeEndE@Base 3.4.2 + _ZTSN4geos9geomgraph7NodeMapE@Base 3.4.2 + _ZTSN4geos9geomgraph8EdgeListE@Base 3.4.2 + _ZTSN4geos9geomgraph8EdgeRingE@Base 3.4.2 + _ZTSN4geos9operation10polygonize11Polygonizer15LineStringAdderE@Base 3.4.2 + _ZTSN4geos9operation10polygonize14PolygonizeEdgeE@Base 3.4.2 + _ZTSN4geos9operation10polygonize15PolygonizeGraphE@Base 3.4.2 + _ZTSN4geos9operation10polygonize22PolygonizeDirectedEdgeE@Base 3.4.2 + _ZTSN4geos9operation22GeometryGraphOperationE@Base 3.4.2 + _ZTSN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderE@Base 3.10.0 + _ZTSN4geos9operation5valid19RepeatedPointFilterE@Base 3.10.0 + _ZTSN4geos9operation5valid26RepeatedInvalidPointFilterE@Base 3.10.0 + _ZTSN4geos9operation5valid27PolygonIntersectionAnalyzerE@Base 3.10.0 + _ZTSN4geos9operation5valid32RepeatedPointCoordinateOperationE@Base 3.11.0~beta1 + _ZTSN4geos9operation6buffer11OffsetCurve23MatchCurveSegmentActionE@Base 3.11.0~beta1 + _ZTSN4geos9operation6relate10RelateNodeE@Base 3.4.2 + _ZTSN4geos9operation6relate13EdgeEndBundleE@Base 3.4.2 + _ZTSN4geos9operation6relate15RelateNodeGraphE@Base 3.4.2 + _ZTSN4geos9operation6relate17EdgeEndBundleStarE@Base 3.4.2 + _ZTSN4geos9operation6relate17RelateNodeFactoryE@Base 3.4.2 + _ZTSN4geos9operation6relate8RelateOpE@Base 3.4.2 + _ZTSN4geos9operation7overlay15MaximalEdgeRingE@Base 3.4.2 + _ZTSN4geos9operation7overlay15MinimalEdgeRingE@Base 3.4.2 + _ZTSN4geos9operation7overlay18OverlayNodeFactoryE@Base 3.4.2 + _ZTSN4geos9operation7overlay21ElevationMatrixFilterE@Base 3.4.2 + _ZTSN4geos9operation7overlay4snap15SnapTransformerE@Base 3.4.2 + _ZTSN4geos9operation7overlay9OverlayOpE@Base 3.4.2 + _ZTSN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeE@Base 3.9.0 + _ZTSN4geos9operation8distance27ConnectedElementPointFilterE@Base 3.4.2 + _ZTSN4geos9operation8distance30ConnectedElementLocationFilterE@Base 3.4.2 + _ZTSN4geos9operation8geounion13UnionStrategyE@Base 3.9.0 + _ZTSN4geos9operation8geounion20ClassicUnionStrategyE@Base 3.9.0 + _ZTSN4geos9operation9linemerge13LineMergeEdgeE@Base 3.4.2 + _ZTSN4geos9operation9linemerge14LineMergeGraphE@Base 3.4.2 + _ZTSN4geos9operation9linemerge21LineMergeDirectedEdgeE@Base 3.4.2 + _ZTSN4geos9operation9overlayng11OverlayEdgeE@Base 3.9.0 + _ZTSN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyE@Base 3.9.0 + _ZTSN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterE@Base 3.9.0 + _ZTSN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyE@Base 3.9.0 + _ZTSN4geos9operation9overlayng21PointExtractingFilterE@Base 3.11.1 + _ZTSN4geos9operation9overlayng25IndexedPointOnLineLocatorE@Base 3.9.0 + _ZTSN4geos9operation9overlayng26CoordinateExtractingFilterE@Base 3.11.1 + _ZTSN4geos9operation9predicate20ContainsPointVisitorE@Base 3.4.2 + _ZTSN4geos9operation9predicate21LineIntersectsVisitorE@Base 3.4.2 + _ZTSN4geos9operation9predicate25EnvelopeIntersectsVisitorE@Base 3.4.2 + _ZTSN4geos9precision10TranslaterE@Base 3.4.2 + _ZTSN4geos9precision22CommonCoordinateFilterE@Base 3.4.2 + _ZTSN4geos9precision22PrecisionReducerFilterE@Base 3.10.0 + _ZTSN4geos9precision27PrecisionReducerTransformerE@Base 3.10.0 + _ZTSN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 + _ZTSN4geos9precision36PointwisePrecisionReducerTransformerE@Base 3.10.0 + (arch=armel riscv64)_ZTSN9__gnu_cxx7__mutexE@Base 3.10.0 + (arch=armel riscv64)_ZTSSt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 + (arch=!armel !riscv64)_ZTSSt11_Mutex_baseILN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 + (arch=armel riscv64)_ZTSSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE1EE@Base 3.10.0 + (arch=!armel !riscv64)_ZTSSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE@Base 3.10.0 + _ZTSSt19_Sp_make_shared_tag@Base 3.10.0 + (arch=armel riscv64)_ZTSSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE1EE@Base 3.11.1 + (arch=!armel !riscv64)_ZTSSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE2EE@Base 3.11.1 + _ZTVN13geos_nlohmann6detail10type_errorE@Base 3.10.0 + _ZTVN13geos_nlohmann6detail11other_errorE@Base 3.10.0 + _ZTVN13geos_nlohmann6detail11parse_errorE@Base 3.10.0 + _ZTVN13geos_nlohmann6detail12out_of_rangeE@Base 3.10.0 + _ZTVN13geos_nlohmann6detail16invalid_iteratorE@Base 3.10.0 + _ZTVN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE@Base 3.10.0 + _ZTVN13geos_nlohmann6detail9exceptionE@Base 3.10.0 + _ZTVN4geos11planargraph11PlanarGraphE@Base 3.4.2 + _ZTVN4geos11planargraph12DirectedEdgeE@Base 3.4.2 + _ZTVN4geos11planargraph16DirectedEdgeStarE@Base 3.4.2 + _ZTVN4geos11planargraph4EdgeE@Base 3.4.2 + _ZTVN4geos11planargraph4NodeE@Base 3.4.2 + _ZTVN4geos11planargraph7NodeMapE@Base 3.4.2 + _ZTVN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorE@Base 3.4.2 + _ZTVN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitorE@Base 3.5.0 + _ZTVN4geos11triangulate8quadedge19QuadEdgeSubdivisionE@Base 3.4.2 + _ZTVN4geos11triangulate8quadedge22LocateFailureExceptionE@Base 3.4.2 + _ZTVN4geos11triangulate8quadedge24LastFoundQuadEdgeLocatorE@Base 3.4.2 + _ZTVN4geos2io14ParseExceptionE@Base 3.4.2 + _ZTVN4geos4geom10LineStringE@Base 3.4.2 + _ZTVN4geos4geom10LinearRingE@Base 3.4.2 + _ZTVN4geos4geom10MultiPointE@Base 3.4.2 + _ZTVN4geos4geom12MultiPolygonE@Base 3.4.2 + _ZTVN4geos4geom15GeometryFactoryE@Base 3.4.2 + _ZTVN4geos4geom15MultiLineStringE@Base 3.4.2 + _ZTVN4geos4geom18CoordinateSequenceE@Base 3.4.2 + _ZTVN4geos4geom18GeometryCollectionE@Base 3.4.2 + _ZTVN4geos4geom23CoordinateArraySequenceE@Base 3.4.2 + _ZTVN4geos4geom23GeometryComponentFilterE@Base 3.4.2 + (arch=armel armhf hppa hurd-i386 i386 m68k mipsel powerpc sh4 x32)_ZTVN4geos4geom27FixedSizeCoordinateSequenceILj0EEE@Base 3.9.0 + (arch=amd64 arm64 ia64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZTVN4geos4geom27FixedSizeCoordinateSequenceILm0EEE@Base 3.9.0 + (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EEE@Base 3.8.0 + (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EEE@Base 3.8.0 + (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}3EEE@Base 3.8.0 + (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}4EEE@Base 3.8.0 + (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}5EEE@Base 3.8.0 + _ZTVN4geos4geom30CoordinateArraySequenceFactoryE@Base 3.4.2 + _ZTVN4geos4geom32DefaultCoordinateSequenceFactoryE@Base 3.8.0 + _ZTVN4geos4geom4prep13PreparedPointE@Base 3.4.2 + _ZTVN4geos4geom4prep15PreparedPolygonE@Base 3.4.2 + _ZTVN4geos4geom4prep18PreparedLineStringE@Base 3.4.2 + _ZTVN4geos4geom4prep21BasicPreparedGeometryE@Base 3.4.2 + _ZTVN4geos4geom4prep21PreparedPolygonCoversE@Base 3.4.2 + _ZTVN4geos4geom4prep22LocationMatchingFilterE@Base 3.8.0 + _ZTVN4geos4geom4prep23OutermostLocationFilterE@Base 3.8.0 + _ZTVN4geos4geom4prep23PreparedPolygonContainsE@Base 3.4.2 + _ZTVN4geos4geom4prep25LocationNotMatchingFilterE@Base 3.8.0 + _ZTVN4geos4geom4prep25PreparedPolygonIntersectsE@Base 3.4.2 + _ZTVN4geos4geom4prep31PreparedPolygonContainsProperlyE@Base 3.4.2 + _ZTVN4geos4geom4util14PointExtracterE@Base 3.4.2 + _ZTVN4geos4geom4util16PolygonExtracterE@Base 3.4.2 + _ZTVN4geos4geom4util17GeometryExtracter9ExtracterINS0_10LineStringESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 + _ZTVN4geos4geom4util17GeometryExtracter9ExtracterINS0_5PointESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 + _ZTVN4geos4geom4util17GeometryExtracter9ExtracterINS0_7PolygonESt6vectorIPKS4_SaIS7_EEEE@Base 3.4.2 + _ZTVN4geos4geom4util19CoordinateOperationE@Base 3.4.2 + _ZTVN4geos4geom4util19GeometryTransformerE@Base 3.4.2 + _ZTVN4geos4geom4util21NoOpGeometryOperationE@Base 3.10.0 + _ZTVN4geos4geom4util24LinearComponentExtracterE@Base 3.4.2 + _ZTVN4geos4geom4util28ComponentCoordinateExtracterE@Base 3.4.2 + _ZTVN4geos4geom4util9Densifier18DensifyTransformerE@Base 3.8.0 + _ZTVN4geos4geom5PointE@Base 3.4.2 + _ZTVN4geos4geom7PolygonE@Base 3.4.2 + _ZTVN4geos4geom8Geometry21GeometryChangedFilterE@Base 3.4.2 + _ZTVN4geos4geom8GeometryE@Base 3.4.2 + _ZTVN4geos4util13GEOSExceptionE@Base 3.4.2 + _ZTVN4geos4util17TopologyExceptionE@Base 3.4.2 + _ZTVN4geos4util20InterruptedExceptionE@Base 3.4.2 + _ZTVN4geos4util21GeometricShapeFactoryE@Base 3.4.2 + _ZTVN4geos4util21IllegalStateExceptionE@Base 3.4.2 + _ZTVN4geos4util24AssertionFailedExceptionE@Base 3.4.2 + _ZTVN4geos4util24IllegalArgumentExceptionE@Base 3.4.2 + _ZTVN4geos4util27UniqueCoordinateArrayFilterE@Base 3.4.2 + _ZTVN4geos4util29UnsupportedOperationExceptionE@Base 3.4.2 + _ZTVN4geos5index13intervalrtree21IntervalRTreeLeafNodeE@Base 3.4.2 + _ZTVN4geos5index13intervalrtree23IntervalRTreeBranchNodeE@Base 3.4.2 + _ZTVN4geos5index5chain12ChainBuilderE@Base 3.10.0 + _ZTVN4geos5index5chain25MonotoneChainSelectActionE@Base 3.4.2 + _ZTVN4geos5index5chain26MonotoneChainOverlapActionE@Base 3.4.2 + _ZTVN4geos5index6kdtree6KdTree16BestMatchVisitorE@Base 3.9.0 + _ZTVN4geos5index6kdtree6KdTree19AccumulatingVisitorE@Base 3.9.0 + _ZTVN4geos5index7bintree4NodeE@Base 3.4.2 + _ZTVN4geos5index7bintree4RootE@Base 3.4.2 + _ZTVN4geos5index7bintree8NodeBaseE@Base 3.4.2 + _ZTVN4geos5index7strtree12AbstractNodeE@Base 3.4.2 + _ZTVN4geos5index7strtree13ItemBoundableE@Base 3.4.2 + _ZTVN4geos5index7strtree13SimpleSTRnodeE@Base 3.9.0 + _ZTVN4geos5index7strtree13SimpleSTRtreeE@Base 3.9.0 + _ZTVN4geos5index7strtree15AbstractSTRtreeE@Base 3.4.2 + _ZTVN4geos5index7strtree15SIRAbstractNodeE@Base 3.4.2 + _ZTVN4geos5index7strtree15STRAbstractNodeE@Base 3.4.2 + _ZTVN4geos5index7strtree15TemplateSTRtreeIPKNS0_5chain13MonotoneChainENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTVN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom10LinearRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTVN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom7PolygonENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTVN4geos5index7strtree15TemplateSTRtreeIPKNS_4geom8GeometryENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTVN4geos5index7strtree15TemplateSTRtreeIPNS_9operation10polygonize8EdgeRingENS1_14EnvelopeTraitsEEE@Base 3.10.0 + _ZTVN4geos5index7strtree20GeometryItemDistanceE@Base 3.6.0 + _ZTVN4geos5index7strtree7SIRtree15SIRIntersectsOpE@Base 3.4.2 + _ZTVN4geos5index7strtree7SIRtreeE@Base 3.4.2 + _ZTVN4geos5index7strtree7STRtree15STRIntersectsOpE@Base 3.4.2 + _ZTVN4geos5index7strtree7STRtreeE@Base 3.4.2 + _ZTVN4geos5index8quadtree4NodeE@Base 3.4.2 + _ZTVN4geos5index8quadtree4RootE@Base 3.4.2 + _ZTVN4geos5index8quadtree8NodeBaseE@Base 3.4.2 + _ZTVN4geos5index8quadtree8QuadtreeE@Base 3.4.2 + _ZTVN4geos6noding11ScaledNoder6ScalerE@Base 3.4.2 + _ZTVN4geos6noding11ScaledNoder8ReScalerE@Base 3.4.2 + _ZTVN4geos6noding11ScaledNoderE@Base 3.4.2 + _ZTVN4geos6noding11SimpleNoderE@Base 3.4.2 + _ZTVN4geos6noding12MCIndexNoder20SegmentOverlapActionE@Base 3.4.2 + _ZTVN4geos6noding12MCIndexNoderE@Base 3.4.2 + _ZTVN4geos6noding13IteratedNoderE@Base 3.4.2 + _ZTVN4geos6noding13SegmentStringE@Base 3.4.2 + _ZTVN4geos6noding15ValidatingNoderE@Base 3.9.0 + _ZTVN4geos6noding17IntersectionAdderE@Base 3.4.2 + _ZTVN4geos6noding18BasicSegmentStringE@Base 3.4.2 + _ZTVN4geos6noding18NodedSegmentStringE@Base 3.4.2 + _ZTVN4geos6noding22SegmentExtractingNoderE@Base 3.11.0~beta1 + _ZTVN4geos6noding23IntersectionFinderAdderE@Base 3.4.2 + _ZTVN4geos6noding24NodingIntersectionFinderE@Base 3.8.0 + _ZTVN4geos6noding27SegmentIntersectionDetectorE@Base 3.4.2 + _ZTVN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionE@Base 3.4.2 + _ZTVN4geos6noding34MCIndexSegmentSetMutualIntersectorE@Base 3.4.2 + _ZTVN4geos6noding4snap13SnappingNoderE@Base 3.9.0 + _ZTVN4geos6noding4snap25SnappingIntersectionAdderE@Base 3.9.0 + _ZTVN4geos6noding9snapround17SnapRoundingNoderE@Base 3.9.0 + _ZTVN4geos6noding9snapround18HotPixelSnapActionE@Base 3.4.2 + _ZTVN4geos6noding9snapround18MCIndexSnapRounderE@Base 3.4.2 + _ZTVN4geos6noding9snapround26MCIndexPointSnapperVisitorE@Base 3.4.2 + _ZTVN4geos6noding9snapround29SnapRoundingIntersectionAdderE@Base 3.9.0 + _ZTVN4geos8simplify13DPTransformerE@Base 3.4.2 + _ZTVN4geos8simplify18LineSegmentVisitorE@Base 3.4.2 + _ZTVN4geos9algorithm17SimplePointInRingE@Base 3.10.0 + _ZTVN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 + _ZTVN4geos9algorithm4hull17HullTriangulation14HullTriVisitorE@Base 3.11.0~beta1 + _ZTVN4geos9algorithm6locate25IndexedPointInAreaLocatorE@Base 3.4.2 + _ZTVN4geos9algorithm8distance25DiscreteHausdorffDistance22MaxPointDistanceFilterE@Base 3.4.2 + _ZTVN4geos9algorithm8distance25DiscreteHausdorffDistance36MaxDensifiedByFractionDistanceFilterE@Base 3.4.2 + _ZTVN4geos9edgegraph8HalfEdgeE@Base 3.9.0 + _ZTVN4geos9geomgraph11EdgeEndStarE@Base 3.4.2 + _ZTVN4geos9geomgraph11NodeFactoryE@Base 3.4.2 + _ZTVN4geos9geomgraph11PlanarGraphE@Base 3.4.2 + _ZTVN4geos9geomgraph12DirectedEdgeE@Base 3.4.2 + _ZTVN4geos9geomgraph13GeometryGraphE@Base 3.4.2 + _ZTVN4geos9geomgraph14GraphComponentE@Base 3.4.2 + _ZTVN4geos9geomgraph16DirectedEdgeStarE@Base 3.4.2 + _ZTVN4geos9geomgraph4EdgeE@Base 3.4.2 + _ZTVN4geos9geomgraph4NodeE@Base 3.4.2 + _ZTVN4geos9geomgraph5DepthE@Base 3.4.2 + _ZTVN4geos9geomgraph5index13MonotoneChainE@Base 3.4.2 + _ZTVN4geos9geomgraph5index16SweepLineSegmentE@Base 3.4.2 + _ZTVN4geos9geomgraph5index18SegmentIntersectorE@Base 3.4.2 + _ZTVN4geos9geomgraph5index24SimpleEdgeSetIntersectorE@Base 3.4.2 + _ZTVN4geos9geomgraph5index26SimpleSweepLineIntersectorE@Base 3.4.2 + _ZTVN4geos9geomgraph5index28SimpleMCSweepLineIntersectorE@Base 3.4.2 + _ZTVN4geos9geomgraph7EdgeEndE@Base 3.4.2 + _ZTVN4geos9geomgraph7NodeMapE@Base 3.4.2 + _ZTVN4geos9geomgraph8EdgeListE@Base 3.4.2 + _ZTVN4geos9geomgraph8EdgeRingE@Base 3.4.2 + _ZTVN4geos9operation10polygonize11Polygonizer15LineStringAdderE@Base 3.4.2 + _ZTVN4geos9operation10polygonize14PolygonizeEdgeE@Base 3.4.2 + _ZTVN4geos9operation10polygonize15PolygonizeGraphE@Base 3.4.2 + _ZTVN4geos9operation10polygonize22PolygonizeDirectedEdgeE@Base 3.4.2 + _ZTVN4geos9operation22GeometryGraphOperationE@Base 3.4.2 + _ZTVN4geos9operation5valid10IsSimpleOp27NonSimpleIntersectionFinderE@Base 3.10.0 + _ZTVN4geos9operation5valid19RepeatedPointFilterE@Base 3.10.0 + _ZTVN4geos9operation5valid26RepeatedInvalidPointFilterE@Base 3.10.0 + _ZTVN4geos9operation5valid27PolygonIntersectionAnalyzerE@Base 3.10.0 + _ZTVN4geos9operation5valid32RepeatedPointCoordinateOperationE@Base 3.11.0~beta1 + _ZTVN4geos9operation6buffer11OffsetCurve23MatchCurveSegmentActionE@Base 3.11.0~beta1 + _ZTVN4geos9operation6relate10RelateNodeE@Base 3.4.2 + _ZTVN4geos9operation6relate13EdgeEndBundleE@Base 3.4.2 + _ZTVN4geos9operation6relate15RelateNodeGraphE@Base 3.4.2 + _ZTVN4geos9operation6relate17EdgeEndBundleStarE@Base 3.4.2 + _ZTVN4geos9operation6relate17RelateNodeFactoryE@Base 3.4.2 + _ZTVN4geos9operation6relate8RelateOpE@Base 3.4.2 + _ZTVN4geos9operation7overlay15MaximalEdgeRingE@Base 3.4.2 + _ZTVN4geos9operation7overlay15MinimalEdgeRingE@Base 3.4.2 + _ZTVN4geos9operation7overlay18OverlayNodeFactoryE@Base 3.4.2 + _ZTVN4geos9operation7overlay21ElevationMatrixFilterE@Base 3.4.2 + _ZTVN4geos9operation7overlay4snap15SnapTransformerE@Base 3.4.2 + _ZTVN4geos9operation7overlay9OverlayOpE@Base 3.4.2 + _ZTVN4geos9operation8distance24FacetSequenceTreeBuilder17FacetSequenceTreeE@Base 3.9.0 + _ZTVN4geos9operation8distance27ConnectedElementPointFilterE@Base 3.4.2 + _ZTVN4geos9operation8distance30ConnectedElementLocationFilterE@Base 3.4.2 + _ZTVN4geos9operation8geounion13UnionStrategyE@Base 3.10.0 + _ZTVN4geos9operation8geounion20ClassicUnionStrategyE@Base 3.9.0 + _ZTVN4geos9operation9linemerge13LineMergeEdgeE@Base 3.4.2 + _ZTVN4geos9operation9linemerge14LineMergeGraphE@Base 3.4.2 + _ZTVN4geos9operation9linemerge21LineMergeDirectedEdgeE@Base 3.4.2 + _ZTVN4geos9operation9overlayng11OverlayEdgeE@Base 3.9.0 + _ZTVN4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategyE@Base 3.9.0 + _ZTVN4geos9operation9overlayng13PrecisionUtil19InherentScaleFilterE@Base 3.9.0 + _ZTVN4geos9operation9overlayng15OverlayNGRobust15SRUnionStrategyE@Base 3.9.0 + _ZTVN4geos9operation9overlayng21PointExtractingFilterE@Base 3.11.1 + _ZTVN4geos9operation9overlayng25IndexedPointOnLineLocatorE@Base 3.9.0 + _ZTVN4geos9operation9overlayng26CoordinateExtractingFilterE@Base 3.11.1 + _ZTVN4geos9operation9predicate20ContainsPointVisitorE@Base 3.4.2 + _ZTVN4geos9operation9predicate21LineIntersectsVisitorE@Base 3.4.2 + _ZTVN4geos9operation9predicate25EnvelopeIntersectsVisitorE@Base 3.4.2 + _ZTVN4geos9precision10TranslaterE@Base 3.4.2 + _ZTVN4geos9precision22CommonCoordinateFilterE@Base 3.4.2 + _ZTVN4geos9precision22PrecisionReducerFilterE@Base 3.10.0 + _ZTVN4geos9precision27PrecisionReducerTransformerE@Base 3.10.0 + _ZTVN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 + _ZTVN4geos9precision36PointwisePrecisionReducerTransformerE@Base 3.10.0 + (arch=armel riscv64)_ZTVSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE1EE@Base 3.11.1 + (arch=!armel !riscv64)_ZTVSt23_Sp_counted_ptr_inplaceIN13geos_nlohmann6detail21output_string_adapterIcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEESaIvELN9__gnu_cxx12_Lock_policyE2EE@Base 3.11.1 + _ZZ19getMachineByteOrdervE12endian_check@Base 3.4.2 + (optional=templinst|subst)_ZZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerIhLi0EEEvT_E12digits_to_99@Base 3.10.0 + (optional=templinst|subst)_ZZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerI{int64_t}Li0EEEvT_E12digits_to_99@Base 3.10.0 + (optional=templinst|subst)_ZZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE12dump_integerI{uint64_t}Li0EEEvT_E12digits_to_99@Base 3.10.0 + (optional=templinst|subst)_ZZN13geos_nlohmann6detail10serializerINS_10basic_jsonINS_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb{int64_t}{uint64_t}dSaNS_14adl_serializerES4_IhSaIhEEEEE6decodeERhRjhE5utf8d@Base 3.10.0 + _ZZN13geos_nlohmann6detail9dtoa_impl36get_cached_power_for_binary_exponentEiE13kCachedPowers@Base 3.10.0 + _ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag@Base 3.10.0 + (optional=templinst)_ZZNSt8__detail18__to_chars_10_implIjEEvPcjT_E8__digits@Base 3.10.0 + (optional=templinst|subst)_ZZNSt8__detail18__to_chars_10_implI{size_t}EEvPcjT_E8__digits@Base 3.9.0 + geos_d2sexp_buffered_n@Base 3.10.0 + geos_d2sfixed_buffered_n@Base 3.10.0 + (c++)"non-virtual thunk to geos::index::strtree::STRtree::insert(geos::geom::Envelope const*, void*)@Base" 3.4.2 + (c++)"non-virtual thunk to geos::index::strtree::STRtree::query(geos::geom::Envelope const*, geos::index::ItemVisitor&)@Base" 3.4.2 + (c++)"non-virtual thunk to geos::index::strtree::STRtree::query(geos::geom::Envelope const*, std::vector >&)@Base" 3.4.2 + (c++)"non-virtual thunk to geos::index::strtree::STRtree::remove(geos::geom::Envelope const*, void*)@Base" 3.4.2 + (c++)"non-virtual thunk to geos::index::strtree::STRtree::~STRtree()@Base" 3.4.2 diff -Nru geos-3.10.2/debian/libgeos-c1v5.lintian-overrides geos-3.11.1/debian/libgeos-c1v5.lintian-overrides --- geos-3.10.2/debian/libgeos-c1v5.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.11.1/debian/libgeos-c1v5.lintian-overrides 2022-11-16 04:59:18.000000000 +0000 @@ -0,0 +1,3 @@ +# Truncated changelog +debian-news-entry-has-unknown-version * + diff -Nru geos-3.10.2/debian/libgeos-c1v5.symbols geos-3.11.1/debian/libgeos-c1v5.symbols --- geos-3.10.2/debian/libgeos-c1v5.symbols 2022-01-17 14:25:29.000000000 +0000 +++ geos-3.11.1/debian/libgeos-c1v5.symbols 2022-11-16 05:11:54.000000000 +0000 @@ -1,4 +1,4 @@ -# SymbolsHelper-Confirmed: 3.10.2 amd64 arm64 armel armhf hppa i386 ia64 m68k mips64el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64 x32 +# SymbolsHelper-Confirmed: 3.11.0 amd64 libgeos_c.so.1 #PACKAGE# #MINVER# * Build-Depends-Package: libgeos-dev GEOSArea@Base 3.4.2 @@ -29,6 +29,10 @@ GEOSBuildArea_r@Base 3.8.0 GEOSClipByRect@Base 3.5.0 GEOSClipByRect_r@Base 3.5.0 + GEOSConcaveHull@Base 3.11.0~beta1 + GEOSConcaveHullOfPolygons@Base 3.11.0~beta1 + GEOSConcaveHullOfPolygons_r@Base 3.11.0~beta1 + GEOSConcaveHull_r@Base 3.11.0~beta1 GEOSConstrainedDelaunayTriangulation@Base 3.10.0 GEOSConstrainedDelaunayTriangulation_r@Base 3.10.0 GEOSContains@Base 3.4.2 @@ -185,6 +189,8 @@ GEOSGeom_createPoint_r@Base 3.4.2 GEOSGeom_createPolygon@Base 3.4.2 GEOSGeom_createPolygon_r@Base 3.4.2 + GEOSGeom_createRectangle@Base 3.11.0~beta1 + GEOSGeom_createRectangle_r@Base 3.11.0~beta1 GEOSGeom_destroy@Base 3.4.2 GEOSGeom_destroy_r@Base 3.4.2 GEOSGeom_extractUniquePoints@Base 3.4.2 @@ -195,6 +201,8 @@ GEOSGeom_getCoordinateDimension_r@Base 3.4.2 GEOSGeom_getDimensions@Base 3.4.2 GEOSGeom_getDimensions_r@Base 3.4.2 + GEOSGeom_getExtent@Base 3.11.0~beta1 + GEOSGeom_getExtent_r@Base 3.11.0~beta1 GEOSGeom_getPrecision@Base 3.6.0 GEOSGeom_getPrecision_r@Base 3.6.0 GEOSGeom_getUserData@Base 3.6.0 @@ -211,6 +219,8 @@ GEOSGeom_setPrecision_r@Base 3.6.0 GEOSGeom_setUserData@Base 3.6.0 GEOSGeom_setUserData_r@Base 3.6.0 + GEOSGeom_transformXY@Base 3.11.0~beta1 + GEOSGeom_transformXY_r@Base 3.11.0~beta1 GEOSGetCentroid@Base 3.4.2 GEOSGetCentroid_r@Base 3.4.2 GEOSGetExteriorRing@Base 3.4.2 @@ -233,6 +243,8 @@ GEOSHausdorffDistanceDensify@Base 3.4.2 GEOSHausdorffDistanceDensify_r@Base 3.4.2 GEOSHausdorffDistance_r@Base 3.4.2 + GEOSHilbertCode@Base 3.11.0~beta1 + GEOSHilbertCode_r@Base 3.11.0~beta1 GEOSInterpolate@Base 3.4.2 GEOSInterpolateNormalized@Base 3.4.2 GEOSInterpolateNormalized_r@Base 3.4.2 @@ -248,6 +260,8 @@ GEOSLength@Base 3.4.2 GEOSLength_r@Base 3.4.2 GEOSLineMerge@Base 3.4.2 + GEOSLineMergeDirected@Base 3.11.0~beta1 + GEOSLineMergeDirected_r@Base 3.11.0~beta1 GEOSLineMerge_r@Base 3.4.2 GEOSMakeValid@Base 3.8.0 GEOSMakeValidParams_create@Base 3.10.0 @@ -287,6 +301,10 @@ GEOSOverlaps_r@Base 3.4.2 GEOSPointOnSurface@Base 3.4.2 GEOSPointOnSurface_r@Base 3.4.2 + GEOSPolygonHullSimplify@Base 3.11.0~beta1 + GEOSPolygonHullSimplifyMode@Base 3.11.0~beta2 + GEOSPolygonHullSimplifyMode_r@Base 3.11.0~beta2 + GEOSPolygonHullSimplify_r@Base 3.11.0~beta1 GEOSPolygonize@Base 3.4.2 GEOSPolygonize_full@Base 3.4.2 GEOSPolygonize_full_r@Base 3.4.2 @@ -337,6 +355,8 @@ GEOSRelatePatternMatch_r@Base 3.4.2 GEOSRelatePattern_r@Base 3.4.2 GEOSRelate_r@Base 3.4.2 + GEOSRemoveRepeatedPoints@Base 3.11.0~beta1 + GEOSRemoveRepeatedPoints_r@Base 3.11.0~beta1 GEOSReverse@Base 3.7.0 GEOSReverse_r@Base 3.7.0 GEOSSTRtree_create@Base 3.4.2 @@ -395,6 +415,8 @@ GEOSWKBReader_readHEX@Base 3.4.2 GEOSWKBReader_readHEX_r@Base 3.4.2 GEOSWKBReader_read_r@Base 3.4.2 + GEOSWKBReader_setFixStructure@Base 3.11.0~beta2 + GEOSWKBReader_setFixStructure_r@Base 3.11.0~beta2 GEOSWKBWriter_create@Base 3.4.2 GEOSWKBWriter_create_r@Base 3.4.2 GEOSWKBWriter_destroy@Base 3.4.2 @@ -425,6 +447,8 @@ GEOSWKTReader_destroy_r@Base 3.4.2 GEOSWKTReader_read@Base 3.4.2 GEOSWKTReader_read_r@Base 3.4.2 + GEOSWKTReader_setFixStructure@Base 3.11.0~beta2 + GEOSWKTReader_setFixStructure_r@Base 3.11.0~beta2 GEOSWKTWriter_create@Base 3.4.2 GEOSWKTWriter_create_r@Base 3.4.2 GEOSWKTWriter_destroy@Base 3.4.2 @@ -490,6 +514,7 @@ _ZN4geos4geom15MultiLineStringD0Ev@Base 3.9.0 _ZN4geos4geom15MultiLineStringD1Ev@Base 3.9.0 _ZN4geos4geom15MultiLineStringD2Ev@Base 3.9.0 + _ZN4geos4geom16CoordinateFilter9filter_roEPKNS0_10CoordinateE@Base 3.11.0~beta1 (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE11setOrdinateE{size_t}{size_t}d@Base 3.8.0 (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5setAtERKNS0_10CoordinateE{size_t}@Base 3.8.0 (optional=templinst|subst)_ZN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE8apply_rwEPKNS0_16CoordinateFilterE@Base 3.8.0 @@ -535,12 +560,8 @@ (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPvNS1_14EnvelopeTraitsEED0Ev@Base 3.10.0 (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPvNS1_14EnvelopeTraitsEED1Ev@Base 3.10.0 (optional=templinst)_ZN4geos5index7strtree15TemplateSTRtreeIPvNS1_14EnvelopeTraitsEED2Ev@Base 3.10.0 - (optional=templinst|arch=armel armhf hppa i386 m68k mipsel powerpc sh4 x32)_ZN4geos5index7strtree19TemplateSTRtreeImplIPvNS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS3_S4_EESt6vectorIS9_SaIS9_EEEEj@Base 3.10.2 - (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPvNS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS3_S4_EESt6vectorIS9_SaIS9_EEEEm@Base 3.10.2 + (optional=templinst|subst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPvNS1_14EnvelopeTraitsEE17createParentNodesERKN9__gnu_cxx17__normal_iteratorIPNS1_15TemplateSTRNodeIS3_S4_EESt6vectorIS9_SaIS9_EEEE{size_t}@Base 3.10.3 (optional=templinst)_ZN4geos5index7strtree19TemplateSTRtreeImplIPvNS1_14EnvelopeTraitsEE5buildEv@Base 3.10.0 - (arch=!armel !armhf)_ZN4geos6noding18BasicSegmentStringD0Ev@Base 3.10.0 - (arch=!armel !armhf)_ZN4geos6noding18BasicSegmentStringD1Ev@Base 3.10.0 - (arch=!armel !armhf)_ZN4geos6noding18BasicSegmentStringD2Ev@Base 3.10.0 _ZN4geos9algorithm9construct18LargestEmptyCircleD1Ev@Base 3.9.0 _ZN4geos9algorithm9construct18LargestEmptyCircleD2Ev@Base 3.9.0 _ZN4geos9algorithm9construct22MaximumInscribedCircleD1Ev@Base 3.9.0 @@ -552,13 +573,11 @@ _ZN4geos9operation10polygonize11PolygonizerD2Ev@Base 3.8.0 _ZN4geos9operation6buffer8BufferOpD1Ev@Base 3.10.0 _ZN4geos9operation6buffer8BufferOpD2Ev@Base 3.10.0 - (arch=!armel !armhf)_ZN4geos9operation9overlayng11OverlayEdgeD0Ev@Base 3.10.0 - (arch=!armel !armhf)_ZN4geos9operation9overlayng11OverlayEdgeD1Ev@Base 3.10.0 - (arch=!armel !armhf)_ZN4geos9operation9overlayng11OverlayEdgeD2Ev@Base 3.10.0 (optional=templinst)_ZNK4geos4geom15GeometryFactory24createGeometryCollectionINS0_8GeometryEEESt10unique_ptrINS0_18GeometryCollectionESt14default_deleteIS5_EEOSt6vectorIS4_IT_S6_ISA_EESaISC_EE@Base 3.9.0 _ZNK4geos4geom16CoordinateFilter9filter_rwEPNS0_10CoordinateE@Base 3.4.2 (subst)_ZNK4geos4geom18CoordinateSequence4getXE{size_t}@Base 3.8.0 (subst)_ZNK4geos4geom18CoordinateSequence4getYE{size_t}@Base 3.8.0 + _ZNK4geos4geom23CoordinateArraySequence8apply_roEPNS0_16CoordinateFilterE@Base 3.11.0~beta1 (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE12getDimensionEv@Base 3.8.0 (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5cloneEv@Base 3.8.0 (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EE5getAtE{size_t}@Base 3.8.0 @@ -576,11 +595,6 @@ (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE8apply_roEPNS0_16CoordinateFilterE@Base 3.8.0 (optional=templinst|subst)_ZNK4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EE8toVectorERSt6vectorINS0_10CoordinateESaIS4_EE@Base 3.8.0 _ZNK4geos4geom8Geometry7getSRIDEv@Base 3.4.2 - (arch=!armel !armhf|subst)_ZNK4geos6noding18BasicSegmentString13getCoordinateE{size_t}@Base 3.10.0 - (arch=!armel !armhf)_ZNK4geos6noding18BasicSegmentString14getCoordinatesEv@Base 3.10.0 - (arch=!armel !armhf)_ZNK4geos6noding18BasicSegmentString4sizeEv@Base 3.10.0 - (arch=!armel !armhf)_ZNK4geos6noding18BasicSegmentString8isClosedEv@Base 3.10.0 - (arch=!armel !armhf)_ZNK4geos9operation9overlayng11OverlayEdge11directionPtEv@Base 3.10.0 (optional=templinst)_ZNSt10unique_ptrIN4geos11triangulate8quadedge19QuadEdgeSubdivisionESt14default_deleteIS3_EED1Ev@Base 3.9.0 (optional=templinst)_ZNSt10unique_ptrIN4geos11triangulate8quadedge19QuadEdgeSubdivisionESt14default_deleteIS3_EED2Ev@Base 3.9.0 (optional=templinst)_ZNSt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS2_EED1Ev@Base 3.9.0 @@ -600,6 +614,8 @@ (optional=templinst)_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.9.0 (optional=templinst|subst)_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE7reserveE{size_t}@Base 3.7.1 (optional=templinst)_ZNSt6vectorIPvSaIS0_EE17_M_realloc_insertIJS0_EEEvN9__gnu_cxx17__normal_iteratorIPS0_S2_EEDpOT_@Base 3.10.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.11.0~beta1 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LineStringESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.11.0~beta1 (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.9.0 (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom7PolygonESt14default_deleteIS3_EESaIS6_EED2Ev@Base 3.9.0 (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EED1Ev@Base 3.9.0 @@ -607,7 +623,6 @@ (optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED0Ev@Base 3.4.2 (optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED1Ev@Base 3.4.2 (optional=templinst)_ZNSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEED2Ev@Base 3.4.2 - (optional=templinst)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateES4_St9_IdentityIS4_ENS1_18CoordinateLessThenESaIS4_EE8_M_eraseEPSt13_Rb_tree_nodeIS4_E@Base 3.4.2 (optional=templinst|arch=!amd64 !arm64 !hppa !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sh4 !sparc64 !x32)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPvNS4_14EnvelopeTraitsEEESt6vectorIS8_SaIS8_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS6_S7_E10sortNodesXERKSD_SJ_EUlRKS8_SL_E_EEEvT_SO_SO_T0_@Base 3.10.1 (optional=templinst|arch=!amd64 !arm64 !hppa !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sh4 !sparc64 !x32)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPvNS4_14EnvelopeTraitsEEESt6vectorIS8_SaIS8_EEEENS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS6_S7_E10sortNodesYERKSD_SJ_EUlRKS8_SL_E_EEEvT_SO_SO_T0_@Base 3.10.1 (optional=templinst|subst)_ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPN4geos5index7strtree15TemplateSTRNodeIPvNS4_14EnvelopeTraitsEEESt6vectorIS8_SaIS8_EEEE{ssize_t}NS0_5__ops15_Iter_comp_iterIZNS4_19TemplateSTRtreeImplIS6_S7_E10sortNodesXERKSD_SJ_EUlRKS8_SL_E_EEEvT_SO_T0_T1_@Base 3.10.0 @@ -624,10 +639,8 @@ _ZTIN4geos5index12SpatialIndexE@Base 3.10.0 _ZTIN4geos5index7strtree15TemplateSTRtreeIPvNS1_14EnvelopeTraitsEEE@Base 3.10.0 _ZTIN4geos5index7strtree19TemplateSTRtreeImplIPvNS1_14EnvelopeTraitsEEE@Base 3.10.0 - (arch=!armel !armhf)_ZTIN4geos6noding18BasicSegmentStringE@Base 3.10.0 - (arch=!armel !armhf)_ZTIN4geos9edgegraph8HalfEdgeE@Base 3.10.0 _ZTIN4geos9geomgraph8EdgeListE@Base 3.8.0 - (arch=!armel !armhf)_ZTIN4geos9operation9overlayng11OverlayEdgeE@Base 3.10.0 + _ZTIZ22GEOSGeom_transformXY_rE15TransformFilter@Base 3.11.0~beta1 _ZTIZZ27GEOSCoordSeq_copyToArrays_rENKUlvE_clEvE21CoordinateArrayCopier@Base 3.10.0 _ZTIZZ27GEOSCoordSeq_copyToBuffer_rENKUlvE_clEvE22CoordinateBufferCopier@Base 3.10.0 _ZTS16CAPI_ItemVisitor@Base 3.4.2 @@ -642,10 +655,7 @@ _ZTSN4geos5index12SpatialIndexE@Base 3.10.0 _ZTSN4geos5index7strtree15TemplateSTRtreeIPvNS1_14EnvelopeTraitsEEE@Base 3.10.0 _ZTSN4geos5index7strtree19TemplateSTRtreeImplIPvNS1_14EnvelopeTraitsEEE@Base 3.10.0 - (arch=!armel !armhf)_ZTSN4geos6noding18BasicSegmentStringE@Base 3.10.0 - (arch=!armel !armhf)_ZTSN4geos9edgegraph8HalfEdgeE@Base 3.10.0 _ZTSN4geos9geomgraph8EdgeListE@Base 3.8.0 - (arch=!armel !armhf)_ZTSN4geos9operation9overlayng11OverlayEdgeE@Base 3.10.0 _ZTV16CAPI_ItemVisitor@Base 3.4.2 (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}1EEE@Base 3.8.0 (subst)_ZTVN4geos4geom27FixedSizeCoordinateSequenceIL{size_t}2EEE@Base 3.8.0 @@ -654,9 +664,8 @@ _ZTVN4geos4util24IllegalArgumentExceptionE@Base 3.4.2 _ZTVN4geos4util27UniqueCoordinateArrayFilterE@Base 3.4.2 _ZTVN4geos5index7strtree15TemplateSTRtreeIPvNS1_14EnvelopeTraitsEEE@Base 3.10.0 - (arch=!armel !armhf)_ZTVN4geos6noding18BasicSegmentStringE@Base 3.10.0 _ZTVN4geos9geomgraph8EdgeListE@Base 3.8.0 - (arch=!armel !armhf)_ZTVN4geos9operation9overlayng11OverlayEdgeE@Base 3.10.0 + _ZTVZ22GEOSGeom_transformXY_rE15TransformFilter@Base 3.11.0~beta1 _ZTVZZ27GEOSCoordSeq_copyToArrays_rENKUlvE_clEvE21CoordinateArrayCopier@Base 3.10.0 _ZTVZZ27GEOSCoordSeq_copyToBuffer_rENKUlvE_clEvE22CoordinateBufferCopier@Base 3.10.0 _ZZ19getMachineByteOrdervE12endian_check@Base 3.4.2 diff -Nru geos-3.10.2/debian/libgeos++-dev.install.in geos-3.11.1/debian/libgeos++-dev.install.in --- geos-3.10.2/debian/libgeos++-dev.install.in 2021-11-03 04:50:32.000000000 +0000 +++ geos-3.11.1/debian/libgeos++-dev.install.in 2022-11-15 05:01:15.000000000 +0000 @@ -1 +1,2 @@ +usr/include/geos.h usr/lib/*/libgeos.so diff -Nru geos-3.10.2/debian/libgeos-dev.lintian-overrides geos-3.11.1/debian/libgeos-dev.lintian-overrides --- geos-3.10.2/debian/libgeos-dev.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.11.1/debian/libgeos-dev.lintian-overrides 2022-11-16 04:59:18.000000000 +0000 @@ -0,0 +1,3 @@ +# Truncated changelog +debian-news-entry-has-unknown-version * + diff -Nru geos-3.10.2/debian/libgeos++-dev.lintian-overrides geos-3.11.1/debian/libgeos++-dev.lintian-overrides --- geos-3.10.2/debian/libgeos++-dev.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.11.1/debian/libgeos++-dev.lintian-overrides 2022-11-16 04:59:18.000000000 +0000 @@ -0,0 +1,3 @@ +# Truncated changelog +debian-news-entry-has-unknown-version * + diff -Nru geos-3.10.2/debian/libgeos-doc.docs geos-3.11.1/debian/libgeos-doc.docs --- geos-3.10.2/debian/libgeos-doc.docs 2021-11-03 04:50:32.000000000 +0000 +++ geos-3.11.1/debian/libgeos-doc.docs 2022-07-01 17:32:18.000000000 +0000 @@ -1 +1 @@ -build/doc/doxygen_docs/html +build/doxygen/doxygen_docs/html diff -Nru geos-3.10.2/debian/libgeos-doc.lintian-overrides geos-3.11.1/debian/libgeos-doc.lintian-overrides --- geos-3.10.2/debian/libgeos-doc.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.11.1/debian/libgeos-doc.lintian-overrides 2022-11-16 04:59:18.000000000 +0000 @@ -0,0 +1,3 @@ +# Truncated changelog +debian-news-entry-has-unknown-version * + diff -Nru geos-3.10.2/debian/rules geos-3.11.1/debian/rules --- geos-3.10.2/debian/rules 2022-01-17 14:24:10.000000000 +0000 +++ geos-3.11.1/debian/rules 2022-11-15 04:17:43.000000000 +0000 @@ -43,10 +43,6 @@ cp debian/libgeos++-dev.install.in debian/libgeos++-dev.install find debian/tmp/usr/include/geos \( -name "*.h" -o -name "*.hpp" \) -a ! -name "export.h" | sed -e 's/^debian\/tmp\///' >> debian/libgeos++-dev.install - # Don't install geos.h & .inl files - rm -f debian/tmp/usr/include/geos.h - find debian/tmp/usr/include/geos -name "*.inl" -delete - # Remove .asm files rm -f debian/tmp/usr/include/geos/algorithm/ttmath/ttmathuint_x86_64_msvc.asm @@ -58,8 +54,5 @@ override_dh_installman: dh_installman -plibgeos-dev debian/geos-config.1 -override_dh_strip: - dh_strip --dbgsym-migration='libgeos-dbg (<< 3.5.1-4~)' - override_dh_makeshlibs: dh_makeshlibs -- -v$(UPSTREAM_VERSION) -c0 diff -Nru geos-3.10.2/doc/check_doxygen_errors.cmake geos-3.11.1/doc/check_doxygen_errors.cmake --- geos-3.10.2/doc/check_doxygen_errors.cmake 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/doc/check_doxygen_errors.cmake 1970-01-01 00:00:00.000000000 +0000 @@ -1,50 +0,0 @@ -################################################################################ -# Part of CMake configuration for GEOS -# -# Script checking the doxygen logfile for errors and warnings, which are not -# accepted. Throws FATAL_ERROR if found. -# -# Copyright (C) 2019 Nicklas Larsson -# -# This is free software; you can redistribute and/or modify it under -# the terms of the GNU Lesser General Public Licence as published -# by the Free Software Foundation. -# See the COPYING file for more information. -################################################################################ - -file(TO_NATIVE_PATH ${DOXYGEN_LOGFILE} DOXYGEN_LOGFILE) - -if(EXISTS "${DOXYGEN_LOGFILE}") - set(ERRORS "") - file(READ "${DOXYGEN_LOGFILE}" LOGFILE) - - # convert file content to list - string(REGEX REPLACE "\n$" "" LOGFILE "${LOGFILE}") - string(REGEX REPLACE ";" "\\\\;" LOGFILE "${LOGFILE}") - string(REGEX REPLACE "\n" ";" LOGFILE "${LOGFILE}") - - # let's not forget non-fatal warnings - list(LENGTH LOGFILE NUM_WARNINGS) - if(NUM_WARNINGS GREATER 0) - message(STATUS - "Doxygen issued ${NUM_WARNINGS} warning(s), see ${DOXYGEN_LOGFILE}") - endif() - - foreach(LINE ${LOGFILE}) - string(REGEX MATCH - ".*(not documented|ignoring unsupported tag).*" IGNORE ${LINE}) - if("${IGNORE}" STREQUAL "") - list(APPEND ERRORS ${LINE}) - endif() - endforeach() - - if(NOT "${ERRORS}" STREQUAL "") - # convert list to string - string(REGEX REPLACE ";" "\n" ERROR_MSG "${ERRORS}") - message(FATAL_ERROR "${ERROR_MSG}") - endif() - - unset(ERRORS) -endif() - -message(STATUS "Doxygen documentation is OK") diff -Nru geos-3.10.2/doc/CMakeLists.txt geos-3.11.1/doc/CMakeLists.txt --- geos-3.10.2/doc/CMakeLists.txt 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/doc/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -################################################################################ -# Part of CMake configuration for GEOS -# -# Copyright (C) 2018 Mateusz Loskot -# Copyright (C) 2019 Daniel Baston -# -# This is free software; you can redistribute and/or modify it under -# the terms of the GNU Lesser General Public Licence as published -# by the Free Software Foundation. -# See the COPYING file for more information. -################################################################################ - -if(BUILD_TESTING) - target_include_directories(test_geos_unit - PRIVATE - $) -endif() - -option(BUILD_DOCUMENTATION "Build Doxygen documentation" OFF) - -if(BUILD_DOCUMENTATION) - find_package(Doxygen) - - if(NOT DOXYGEN_FOUND) - message(FATAL_ERROR "Doxygen was not found.") - endif() - - set(srcdir ${CMAKE_CURRENT_SOURCE_DIR}) - set(VERSION ${GEOS_VERSION}) - set(DOXYGEN_LOGFILE ${CMAKE_CURRENT_BINARY_DIR}/doxygen.log) - set(CHECK_ERROR_SCRIPT "check_doxygen_errors.cmake") - configure_file( - "${CMAKE_CURRENT_SOURCE_DIR}/${CHECK_ERROR_SCRIPT}" - "${CMAKE_CURRENT_BINARY_DIR}/${CHECK_ERROR_SCRIPT}" - COPYONLY) - configure_file( - ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in - ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile - @ONLY) - unset(srcdir) - unset(VERSION) - - add_custom_target(docs - COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile - BYPRODUCTS ${DOXYGEN_LOGFILE} ${CMAKE_CURRENT_BINARY_DIR}/doxygen_docs) - - add_test(NAME test_docs - COMMAND ${CMAKE_COMMAND} - -D DOXYGEN_LOGFILE="${DOXYGEN_LOGFILE}" - -P "${CMAKE_CURRENT_BINARY_DIR}/${CHECK_ERROR_SCRIPT}") - - unset(DOXYGEN_LOGFILE) - unset(CHECK_ERROR_SCRIPT) -endif() diff -Nru geos-3.10.2/doc/Doxyfile.in geos-3.11.1/doc/Doxyfile.in --- geos-3.10.2/doc/Doxyfile.in 2022-01-15 21:14:55.000000000 +0000 +++ geos-3.11.1/doc/Doxyfile.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,2432 +0,0 @@ -# Doxyfile 1.8.14 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project. -# -# All text after a double hash (##) is considered a comment and is placed in -# front of the TAG it is preceding. -# -# All text after a single hash (#) is considered a comment and will be ignored. -# The format is: -# TAG = value [value, ...] -# For lists, items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (\" \"). - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all text -# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv -# built into libc) for the transcoding. See -# https://www.gnu.org/software/libiconv/ for the list of possible encodings. -# The default value is: UTF-8. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by -# double-quotes, unless you are using Doxywizard) that should identify the -# project for which the documentation is generated. This name is used in the -# title of most generated pages and in a few other places. -# The default value is: My Project. - -PROJECT_NAME = GEOS - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. This -# could be handy for archiving the generated documentation or if some version -# control system is used. - -PROJECT_NUMBER = @VERSION@ - -# Using the PROJECT_BRIEF tag one can provide an optional one line description -# for a project that appears at the top of each page and should give viewer a -# quick idea about the purpose of the project. Keep the description short. - -PROJECT_BRIEF = - -# With the PROJECT_LOGO tag one can specify a logo or an icon that is included -# in the documentation. The maximum height of the logo should not exceed 55 -# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy -# the logo to the output directory. - -PROJECT_LOGO = - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path -# into which the generated documentation will be written. If a relative path is -# entered, it will be relative to the location where doxygen was started. If -# left blank the current directory will be used. - -OUTPUT_DIRECTORY = doxygen_docs - -# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- -# directories (in 2 levels) under the output directory of each output format and -# will distribute the generated files over these directories. Enabling this -# option can be useful when feeding doxygen a huge amount of source files, where -# putting all generated files in the same directory would otherwise causes -# performance problems for the file system. -# The default value is: NO. - -CREATE_SUBDIRS = NO - -# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII -# characters to appear in the names of generated files. If set to NO, non-ASCII -# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode -# U+3044. -# The default value is: NO. - -ALLOW_UNICODE_NAMES = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, -# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), -# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, -# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, -# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, -# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, -# Ukrainian and Vietnamese. -# The default value is: English. - -OUTPUT_LANGUAGE = English - -# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member -# descriptions after the members that are listed in the file and class -# documentation (similar to Javadoc). Set to NO to disable this. -# The default value is: YES. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief -# description of a member or function before the detailed description -# -# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. -# The default value is: YES. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator that is -# used to form the text in various listings. Each string in this list, if found -# as the leading text of the brief description, will be stripped from the text -# and the result, after processing the whole list, is used as the annotated -# text. Otherwise, the brief description is used as-is. If left blank, the -# following values are used ($name is automatically replaced with the name of -# the entity):The $name class, The $name widget, The $name file, is, provides, -# specifies, contains, represents, a, an and the. - -ABBREVIATE_BRIEF = "The $name class" \ - "The $name widget" \ - "The $name file" \ - is \ - provides \ - specifies \ - contains \ - represents \ - a \ - an \ - the - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# doxygen will generate a detailed section even if there is only a brief -# description. -# The default value is: NO. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. -# The default value is: NO. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path -# before files name in the file list and in the header files. If set to NO the -# shortest path that makes the file name unique will be used -# The default value is: YES. - -FULL_PATH_NAMES = NO - -# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. -# Stripping is only done if one of the specified strings matches the left-hand -# part of the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the path to -# strip. -# -# Note that you can specify absolute paths here, but also relative paths, which -# will be relative from the directory where doxygen is started. -# This tag requires that the tag FULL_PATH_NAMES is set to YES. - -STRIP_FROM_PATH = - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the -# path mentioned in the documentation of a class, which tells the reader which -# header file to include in order to use a class. If left blank only the name of -# the header file containing the class definition is used. Otherwise one should -# specify the list of include paths that are normally passed to the compiler -# using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but -# less readable) file names. This can be useful is your file systems doesn't -# support long names like on DOS, Mac, or CD-ROM. -# The default value is: NO. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the -# first line (until the first dot) of a Javadoc-style comment as the brief -# description. If set to NO, the Javadoc-style will behave just like regular Qt- -# style comments (thus requiring an explicit @brief command for a brief -# description.) -# The default value is: NO. - -JAVADOC_AUTOBRIEF = NO - -# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first -# line (until the first dot) of a Qt-style comment as the brief description. If -# set to NO, the Qt-style will behave just like regular Qt-style comments (thus -# requiring an explicit \brief command for a brief description.) -# The default value is: NO. - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a -# multi-line C++ special comment block (i.e. a block of //! or /// comments) as -# a brief description. This used to be the default behavior. The new default is -# to treat a multi-line C++ comment block as a detailed description. Set this -# tag to YES if you prefer the old behavior instead. -# -# Note that setting this tag to YES also means that rational rose comments are -# not recognized any more. -# The default value is: NO. - -MULTILINE_CPP_IS_BRIEF = NO - -# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the -# documentation from any documented member that it re-implements. -# The default value is: YES. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new -# page for each member. If set to NO, the documentation of a member will be part -# of the file/class/namespace that contains it. -# The default value is: NO. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen -# uses this value to replace tabs by spaces in code fragments. -# Minimum value: 1, maximum value: 16, default value: 4. - -TAB_SIZE = 8 - -# This tag can be used to specify a number of aliases that act as commands in -# the documentation. An alias has the form: -# name=value -# For example adding -# "sideeffect=@par Side Effects:\n" -# will allow you to put the command \sideeffect (or @sideeffect) in the -# documentation, which will result in a user-defined paragraph with heading -# "Side Effects:". You can put \n's in the value part of an alias to insert -# newlines (in the resulting output). You can put ^^ in the value part of an -# alias to insert a newline as if a physical newline was in the original file. - -ALIASES = - -# This tag can be used to specify a number of word-keyword mappings (TCL only). -# A mapping has the form "name=value". For example adding "class=itcl::class" -# will allow you to use the command class in the itcl::class meaning. - -TCL_SUBST = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources -# only. Doxygen will then generate output that is more tailored for C. For -# instance, some of the names that are used will be different. The list of all -# members will be omitted, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_FOR_C = NO - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or -# Python sources only. Doxygen will then generate output that is more tailored -# for that language. For instance, namespaces will be presented as packages, -# qualified scopes will look different, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources. Doxygen will then generate output that is tailored for Fortran. -# The default value is: NO. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for VHDL. -# The default value is: NO. - -OPTIMIZE_OUTPUT_VHDL = NO - -# Doxygen selects the parser to use depending on the extension of the files it -# parses. With this tag you can assign which parser to use for a given -# extension. Doxygen has a built-in mapping, but you can override or extend it -# using this tag. The format is ext=language, where ext is a file extension, and -# language is one of the parsers supported by doxygen: IDL, Java, Javascript, -# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: -# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: -# Fortran. In the later case the parser tries to guess whether the code is fixed -# or free formatted code, this is the default for Fortran type files), VHDL. For -# instance to make doxygen treat .inc files as Fortran files (default is PHP), -# and .f files as C (default is Fortran), use: inc=Fortran f=C. -# -# Note: For files without extension you can use no_extension as a placeholder. -# -# Note that for custom extensions you also need to set FILE_PATTERNS otherwise -# the files are not read by doxygen. - -EXTENSION_MAPPING = - -# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments -# according to the Markdown format, which allows for more readable -# documentation. See http://daringfireball.net/projects/markdown/ for details. -# The output of markdown processing is further processed by doxygen, so you can -# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in -# case of backward compatibilities issues. -# The default value is: YES. - -MARKDOWN_SUPPORT = YES - -# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up -# to that level are automatically included in the table of contents, even if -# they do not have an id attribute. -# Note: This feature currently applies only to Markdown headings. -# Minimum value: 0, maximum value: 99, default value: 0. -# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. - -TOC_INCLUDE_HEADINGS = 0 - -# When enabled doxygen tries to link words that correspond to documented -# classes, or namespaces to their corresponding documentation. Such a link can -# be prevented in individual cases by putting a % sign in front of the word or -# globally by setting AUTOLINK_SUPPORT to NO. -# The default value is: YES. - -AUTOLINK_SUPPORT = YES - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should set this -# tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); -# versus func(std::string) {}). This also make the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. -# The default value is: NO. - -BUILTIN_STL_SUPPORT = NO - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. -# The default value is: NO. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: -# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen -# will parse them like normal C++ but will assume all classes use public instead -# of private inheritance when no explicit protection keyword is present. -# The default value is: NO. - -SIP_SUPPORT = NO - -# For Microsoft's IDL there are propget and propput attributes to indicate -# getter and setter methods for a property. Setting this option to YES will make -# doxygen to replace the get and set methods by a property in the documentation. -# This will only work if the methods are indeed getting or setting a simple -# type. If this is not the case, or you want to show the methods anyway, you -# should set this option to NO. -# The default value is: YES. - -IDL_PROPERTY_SUPPORT = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. -# The default value is: NO. - -DISTRIBUTE_GROUP_DOC = NO - -# If one adds a struct or class to a group and this option is enabled, then also -# any nested class or struct is added to the same group. By default this option -# is disabled and one has to add nested compounds explicitly via \ingroup. -# The default value is: NO. - -GROUP_NESTED_COMPOUNDS = NO - -# Set the SUBGROUPING tag to YES to allow class member groups of the same type -# (for instance a group of public functions) to be put as a subgroup of that -# type (e.g. under the Public Functions section). Set it to NO to prevent -# subgrouping. Alternatively, this can be done per class using the -# \nosubgrouping command. -# The default value is: YES. - -SUBGROUPING = YES - -# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions -# are shown inside the group in which they are included (e.g. using \ingroup) -# instead of on a separate page (for HTML and Man pages) or section (for LaTeX -# and RTF). -# -# Note that this feature does not work in combination with -# SEPARATE_MEMBER_PAGES. -# The default value is: NO. - -INLINE_GROUPED_CLASSES = NO - -# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions -# with only public data fields or simple typedef fields will be shown inline in -# the documentation of the scope in which they are defined (i.e. file, -# namespace, or group documentation), provided this scope is documented. If set -# to NO, structs, classes, and unions are shown on a separate page (for HTML and -# Man pages) or section (for LaTeX and RTF). -# The default value is: NO. - -INLINE_SIMPLE_STRUCTS = NO - -# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or -# enum is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically be -# useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. -# The default value is: NO. - -TYPEDEF_HIDES_STRUCT = NO - -# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This -# cache is used to resolve symbols given their name and scope. Since this can be -# an expensive process and often the same symbol appears multiple times in the -# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small -# doxygen will become slower. If the cache is too large, memory is wasted. The -# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range -# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 -# symbols. At the end of a run doxygen will report the cache usage and suggest -# the optimal cache size from a speed point of view. -# Minimum value: 0, maximum value: 9, default value: 0. - -LOOKUP_CACHE_SIZE = 0 - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in -# documentation are documented, even if no documentation was available. Private -# class members and static file members will be hidden unless the -# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. -# Note: This will also disable the warnings about undocumented members that are -# normally produced when WARNINGS is set to YES. -# The default value is: NO. - -EXTRACT_ALL = NO - -# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will -# be included in the documentation. -# The default value is: NO. - -EXTRACT_PRIVATE = NO - -# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal -# scope will be included in the documentation. -# The default value is: NO. - -EXTRACT_PACKAGE = NO - -# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be -# included in the documentation. -# The default value is: NO. - -EXTRACT_STATIC = NO - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined -# locally in source files will be included in the documentation. If set to NO, -# only classes defined in header files are included. Does not have any effect -# for Java sources. -# The default value is: YES. - -EXTRACT_LOCAL_CLASSES = NO - -# This flag is only useful for Objective-C code. If set to YES, local methods, -# which are defined in the implementation section but not in the interface are -# included in the documentation. If set to NO, only methods in the interface are -# included. -# The default value is: NO. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base name of -# the file that contains the anonymous namespace. By default anonymous namespace -# are hidden. -# The default value is: NO. - -EXTRACT_ANON_NSPACES = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all -# undocumented members inside documented classes or files. If set to NO these -# members will be included in the various overviews, but no documentation -# section is generated. This option has no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. If set -# to NO, these classes will be included in the various overviews. This option -# has no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_CLASSES = YES - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend -# (class|struct|union) declarations. If set to NO, these declarations will be -# included in the documentation. -# The default value is: NO. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any -# documentation blocks found inside the body of a function. If set to NO, these -# blocks will be appended to the function's detailed documentation block. -# The default value is: NO. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation that is typed after a -# \internal command is included. If the tag is set to NO then the documentation -# will be excluded. Set it to YES to include the internal documentation. -# The default value is: NO. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file -# names in lower-case letters. If set to YES, upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. -# The default value is: system dependent. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with -# their full class and namespace scopes in the documentation. If set to YES, the -# scope will be hidden. -# The default value is: NO. - -HIDE_SCOPE_NAMES = NO - -# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will -# append additional text to a page's title, such as Class Reference. If set to -# YES the compound reference will be hidden. -# The default value is: NO. - -HIDE_COMPOUND_REFERENCE= NO - -# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of -# the files that are included by a file in the documentation of that file. -# The default value is: YES. - -SHOW_INCLUDE_FILES = YES - -# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each -# grouped member an include statement to the documentation, telling the reader -# which file to include in order to use the member. -# The default value is: NO. - -SHOW_GROUPED_MEMB_INC = NO - -# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include -# files with double quotes in the documentation rather than with sharp brackets. -# The default value is: NO. - -FORCE_LOCAL_INCLUDES = NO - -# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the -# documentation for inline members. -# The default value is: YES. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the -# (detailed) documentation of file and class members alphabetically by member -# name. If set to NO, the members will appear in declaration order. -# The default value is: YES. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief -# descriptions of file, namespace and class members alphabetically by member -# name. If set to NO, the members will appear in declaration order. Note that -# this will also influence the order of the classes in the class list. -# The default value is: NO. - -SORT_BRIEF_DOCS = NO - -# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the -# (brief and detailed) documentation of class members so that constructors and -# destructors are listed first. If set to NO the constructors will appear in the -# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. -# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief -# member documentation. -# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting -# detailed member documentation. -# The default value is: NO. - -SORT_MEMBERS_CTORS_1ST = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy -# of group names into alphabetical order. If set to NO the group names will -# appear in their defined order. -# The default value is: NO. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by -# fully-qualified names, including namespaces. If set to NO, the class list will -# be sorted only by class name, not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the alphabetical -# list. -# The default value is: NO. - -SORT_BY_SCOPE_NAME = NO - -# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper -# type resolution of all parameters of a function it will reject a match between -# the prototype and the implementation of a member function even if there is -# only one candidate or it is obvious which candidate to choose by doing a -# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still -# accept a match between prototype and implementation in such cases. -# The default value is: NO. - -STRICT_PROTO_MATCHING = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo -# list. This list is created by putting \todo commands in the documentation. -# The default value is: YES. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test -# list. This list is created by putting \test commands in the documentation. -# The default value is: YES. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug -# list. This list is created by putting \bug commands in the documentation. -# The default value is: YES. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) -# the deprecated list. This list is created by putting \deprecated commands in -# the documentation. -# The default value is: YES. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional documentation -# sections, marked by \if ... \endif and \cond -# ... \endcond blocks. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the -# initial value of a variable or macro / define can have for it to appear in the -# documentation. If the initializer consists of more lines than specified here -# it will be hidden. Use a value of 0 to hide initializers completely. The -# appearance of the value of individual variables and macros / defines can be -# controlled using \showinitializer or \hideinitializer command in the -# documentation regardless of this setting. -# Minimum value: 0, maximum value: 10000, default value: 30. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at -# the bottom of the documentation of classes and structs. If set to YES, the -# list will mention the files that were used to generate the documentation. -# The default value is: YES. - -SHOW_USED_FILES = YES - -# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This -# will remove the Files entry from the Quick Index and from the Folder Tree View -# (if specified). -# The default value is: YES. - -SHOW_FILES = YES - -# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces -# page. This will remove the Namespaces entry from the Quick Index and from the -# Folder Tree View (if specified). -# The default value is: YES. - -SHOW_NAMESPACES = YES - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from -# the version control system). Doxygen will invoke the program by executing (via -# popen()) the command command input-file, where command is the value of the -# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided -# by doxygen. Whatever the program writes to standard output is used as the file -# version. For an example see the documentation. - -FILE_VERSION_FILTER = - -# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed -# by doxygen. The layout file controls the global structure of the generated -# output files in an output format independent way. To create the layout file -# that represents doxygen's defaults, run doxygen with the -l option. You can -# optionally specify a file name after the option, if omitted DoxygenLayout.xml -# will be used as the name of the layout file. -# -# Note that if you run doxygen from a directory containing a file called -# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE -# tag is left empty. - -LAYOUT_FILE = - -# The CITE_BIB_FILES tag can be used to specify one or more bib files containing -# the reference definitions. This must be a list of .bib files. The .bib -# extension is automatically appended if omitted. This requires the bibtex tool -# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. -# For LaTeX the style of the bibliography can be controlled using -# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the -# search path. See also \cite for info how to create references. - -CITE_BIB_FILES = - -#--------------------------------------------------------------------------- -# Configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated to -# standard output by doxygen. If QUIET is set to YES this implies that the -# messages are off. -# The default value is: NO. - -QUIET = NO - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES -# this implies that the warnings are on. -# -# Tip: Turn warnings on while writing the documentation. -# The default value is: YES. - -WARNINGS = YES - -# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate -# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag -# will automatically be disabled. -# The default value is: YES. - -WARN_IF_UNDOCUMENTED = YES - -# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some parameters -# in a documented function, or documenting parameters that don't exist or using -# markup commands wrongly. -# The default value is: YES. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that -# are documented, but have no documentation for their parameters or return -# value. If set to NO, doxygen will only warn about wrong or incomplete -# parameter documentation, but not about the absence of documentation. -# The default value is: NO. - -WARN_NO_PARAMDOC = NO - -# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when -# a warning is encountered. -# The default value is: NO. - -WARN_AS_ERROR = NO - -# The WARN_FORMAT tag determines the format of the warning messages that doxygen -# can produce. The string should contain the $file, $line, and $text tags, which -# will be replaced by the file and line number from which the warning originated -# and the warning text. Optionally the format may contain $version, which will -# be replaced by the version of the file (if it could be obtained via -# FILE_VERSION_FILTER) -# The default value is: $file:$line: $text. - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning and error -# messages should be written. If left blank the output is written to standard -# error (stderr). - -WARN_LOGFILE = @DOXYGEN_LOGFILE@ - -#--------------------------------------------------------------------------- -# Configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag is used to specify the files and/or directories that contain -# documented source files. You may enter file names like myfile.cpp or -# directories like /usr/src/myproject. Separate the files or directories with -# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING -# Note: If this tag is empty the current directory is searched. - -INPUT = @srcdir@/../src \ - @srcdir@/../include \ - ../capi - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses -# libiconv (or the iconv built into libc) for the transcoding. See the libiconv -# documentation (see: https://www.gnu.org/software/libiconv/) for the list of -# possible encodings. -# The default value is: UTF-8. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and -# *.h) to filter out the source-files in the directories. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# read by doxygen. -# -# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, -# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, -# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, -# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, -# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf. - -FILE_PATTERNS = *.h - -# The RECURSIVE tag can be used to specify whether or not subdirectories should -# be searched for input files as well. -# The default value is: NO. - -RECURSIVE = YES - -# The EXCLUDE tag can be used to specify files and/or directories that should be -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. -# -# Note that relative paths are relative to the directory from which doxygen is -# run. - -EXCLUDE = - -# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or -# directories that are symbolic links (a Unix file system feature) are excluded -# from the input. -# The default value is: NO. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories for example use the pattern */test/* - -EXCLUDE_PATTERNS = */examples/* \ - */test/* \ - */bigtest/* \ - */io/markup/* \ - CoordinateList.cpp \ - NonRobustLineIntersector.cpp \ - RobustLineIntersector.cpp - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories use the pattern */test/* - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or directories -# that contain example code fragments that are included (see the \include -# command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and -# *.h) to filter out the source-files in the directories. If left blank all -# files are included. - -EXAMPLE_PATTERNS = - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude commands -# irrespective of the value of the RECURSIVE tag. -# The default value is: NO. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or directories -# that contain images that are to be included in the documentation (see the -# \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command: -# -# -# -# where is the value of the INPUT_FILTER tag, and is the -# name of an input file. Doxygen will then use the output that the filter -# program writes to standard output. If FILTER_PATTERNS is specified, this tag -# will be ignored. -# -# Note that the filter must not add or remove lines; it is applied before the -# code is scanned, but not when the output code is generated. If lines are added -# or removed, the anchors will not be placed correctly. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# properly processed by doxygen. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: pattern=filter -# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how -# filters are used. If the FILTER_PATTERNS tag is empty or if none of the -# patterns match the file name, INPUT_FILTER is applied. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# properly processed by doxygen. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will also be used to filter the input files that are used for -# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). -# The default value is: NO. - -FILTER_SOURCE_FILES = NO - -# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file -# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and -# it is also possible to disable source filtering for a specific pattern using -# *.ext= (so without naming a filter). -# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. - -FILTER_SOURCE_PATTERNS = - -# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that -# is part of the input, its contents will be placed on the main page -# (index.html). This can be useful if you have a project on for instance GitHub -# and want to reuse the introduction page also for the doxygen output. - -USE_MDFILE_AS_MAINPAGE = - -#--------------------------------------------------------------------------- -# Configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will be -# generated. Documented entities will be cross-referenced with these sources. -# -# Note: To get rid of all source code in the generated output, make sure that -# also VERBATIM_HEADERS is set to NO. -# The default value is: NO. - -SOURCE_BROWSER = NO - -# Setting the INLINE_SOURCES tag to YES will include the body of functions, -# classes and enums directly into the documentation. -# The default value is: NO. - -INLINE_SOURCES = NO - -# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any -# special comment blocks from generated source code fragments. Normal C, C++ and -# Fortran comments will always remain visible. -# The default value is: YES. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES then for each documented -# function all documented functions referencing it will be listed. -# The default value is: NO. - -REFERENCED_BY_RELATION = YES - -# If the REFERENCES_RELATION tag is set to YES then for each documented function -# all documented entities called/used by that function will be listed. -# The default value is: NO. - -REFERENCES_RELATION = YES - -# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set -# to YES then the hyperlinks from functions in REFERENCES_RELATION and -# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will -# link to the documentation. -# The default value is: YES. - -REFERENCES_LINK_SOURCE = YES - -# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the -# source code will show a tooltip with additional information such as prototype, -# brief description and links to the definition and documentation. Since this -# will make the HTML file larger and loading of large files a bit slower, you -# can opt to disable this feature. -# The default value is: YES. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -SOURCE_TOOLTIPS = YES - -# If the USE_HTAGS tag is set to YES then the references to source code will -# point to the HTML generated by the htags(1) tool instead of doxygen built-in -# source browser. The htags tool is part of GNU's global source tagging system -# (see https://www.gnu.org/software/global/global.html). You will need version -# 4.8.6 or higher. -# -# To use it do the following: -# - Install the latest version of global -# - Enable SOURCE_BROWSER and USE_HTAGS in the config file -# - Make sure the INPUT points to the root of the source tree -# - Run doxygen as normal -# -# Doxygen will invoke htags (and that will in turn invoke gtags), so these -# tools must be available from the command line (i.e. in the search path). -# -# The result: instead of the source browser generated by doxygen, the links to -# source code will now point to the output of htags. -# The default value is: NO. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a -# verbatim copy of the header file for each class for which an include is -# specified. Set to NO to disable this. -# See also: Section \class. -# The default value is: YES. - -VERBATIM_HEADERS = YES - -#--------------------------------------------------------------------------- -# Configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all -# compounds will be generated. Enable this if the project contains a lot of -# classes, structs, unions or interfaces. -# The default value is: YES. - -ALPHABETICAL_INDEX = NO - -# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in -# which the alphabetical index list will be split. -# Minimum value: 1, maximum value: 20, default value: 5. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all classes will -# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag -# can be used to specify a prefix (or a list of prefixes) that should be ignored -# while generating the index headers. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output -# The default value is: YES. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a -# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of -# it. -# The default directory is: html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each -# generated HTML page (for example: .htm, .php, .asp). -# The default value is: .html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a user-defined HTML header file for -# each generated HTML page. If the tag is left blank doxygen will generate a -# standard header. -# -# To get valid HTML the header file that includes any scripts and style sheets -# that doxygen needs, which is dependent on the configuration options used (e.g. -# the setting GENERATE_TREEVIEW). It is highly recommended to start with a -# default header using -# doxygen -w html new_header.html new_footer.html new_stylesheet.css -# YourConfigFile -# and then modify the file new_header.html. See also section "Doxygen usage" -# for information on how to generate the default header that doxygen normally -# uses. -# Note: The header is subject to change so you typically have to regenerate the -# default header when upgrading to a newer version of doxygen. For a description -# of the possible markers and block names see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each -# generated HTML page. If the tag is left blank doxygen will generate a standard -# footer. See HTML_HEADER for more information on how to generate a default -# footer and what special commands can be used inside the footer. See also -# section "Doxygen usage" for information on how to generate the default footer -# that doxygen normally uses. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style -# sheet that is used by each HTML page. It can be used to fine-tune the look of -# the HTML output. If left blank doxygen will generate a default style sheet. -# See also section "Doxygen usage" for information on how to generate the style -# sheet that doxygen normally uses. -# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as -# it is more robust and this tag (HTML_STYLESHEET) will in the future become -# obsolete. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_STYLESHEET = - -# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined -# cascading style sheets that are included after the standard style sheets -# created by doxygen. Using this option one can overrule certain style aspects. -# This is preferred over using HTML_STYLESHEET since it does not replace the -# standard style sheet and is therefore more robust against future updates. -# Doxygen will copy the style sheet files to the output directory. -# Note: The order of the extra style sheet files is of importance (e.g. the last -# style sheet in the list overrules the setting of the previous ones in the -# list). For an example see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_STYLESHEET = - -# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or -# other source files which should be copied to the HTML output directory. Note -# that these files will be copied to the base HTML output directory. Use the -# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these -# files. In the HTML_STYLESHEET file, use the file name only. Also note that the -# files will be copied as-is; there are no commands or markers available. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_FILES = - -# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen -# will adjust the colors in the style sheet and background images according to -# this color. Hue is specified as an angle on a colorwheel, see -# https://en.wikipedia.org/wiki/Hue for more information. For instance the value -# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 -# purple, and 360 is red again. -# Minimum value: 0, maximum value: 359, default value: 220. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_HUE = 220 - -# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors -# in the HTML output. For a value of 0 the output will use grayscales only. A -# value of 255 will produce the most vivid colors. -# Minimum value: 0, maximum value: 255, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_SAT = 100 - -# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the -# luminance component of the colors in the HTML output. Values below 100 -# gradually make the output lighter, whereas values above 100 make the output -# darker. The value divided by 100 is the actual gamma applied, so 80 represents -# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not -# change the gamma. -# Minimum value: 40, maximum value: 240, default value: 80. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_GAMMA = 80 - -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting this -# to YES can help to show when doxygen was last run and thus if the -# documentation is up to date. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_TIMESTAMP = NO - -# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML -# documentation will contain a main index with vertical navigation menus that -# are dynamically created via Javascript. If disabled, the navigation index will -# consists of multiple levels of tabs that are statically embedded in every HTML -# page. Disable this option to support browsers that do not have Javascript, -# like the Qt help browser. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_DYNAMIC_MENUS = YES - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_DYNAMIC_SECTIONS = NO - -# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries -# shown in the various tree structured indices initially; the user can expand -# and collapse entries dynamically later on. Doxygen will expand the tree to -# such a level that at most the specified number of entries are visible (unless -# a fully collapsed tree already exceeds this amount). So setting the number of -# entries 1 will produce a full collapsed tree by default. 0 is a special value -# representing an infinite number of entries and will result in a full expanded -# tree by default. -# Minimum value: 0, maximum value: 9999, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_INDEX_NUM_ENTRIES = 100 - -# If the GENERATE_DOCSET tag is set to YES, additional index files will be -# generated that can be used as input for Apple's Xcode 3 integrated development -# environment (see: https://developer.apple.com/tools/xcode/), introduced with -# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a -# Makefile in the HTML output directory. Running make will produce the docset in -# that directory and running make install will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at -# startup. See https://developer.apple.com/tools/creatingdocsetswithdoxygen.html -# for more information. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_DOCSET = NO - -# This tag determines the name of the docset feed. A documentation feed provides -# an umbrella under which multiple documentation sets from a single provider -# (such as a company or product suite) can be grouped. -# The default value is: Doxygen generated docs. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# This tag specifies a string that should uniquely identify the documentation -# set bundle. This should be a reverse domain-name style string, e.g. -# com.mycompany.MyDocSet. Doxygen will append .docset to the name. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify -# the documentation publisher. This should be a reverse domain-name style -# string, e.g. com.mycompany.MyDocSet.documentation. -# The default value is: org.doxygen.Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_ID = org.doxygen.Publisher - -# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. -# The default value is: Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_NAME = Publisher - -# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three -# additional HTML index files: index.hhp, index.hhc, and index.hhk. The -# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on -# Windows. -# -# The HTML Help Workshop contains a compiler that can convert all HTML output -# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML -# files are now used as the Windows 98 help format, and will replace the old -# Windows help format (.hlp) on all Windows platforms in the future. Compressed -# HTML files also contain an index, a table of contents, and you can search for -# words in the documentation. The HTML workshop also contains a viewer for -# compressed HTML files. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_HTMLHELP = NO - -# The CHM_FILE tag can be used to specify the file name of the resulting .chm -# file. You can add a path in front of the file if the result should not be -# written to the html output directory. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_FILE = - -# The HHC_LOCATION tag can be used to specify the location (absolute path -# including file name) of the HTML help compiler (hhc.exe). If non-empty, -# doxygen will try to run the HTML help compiler on the generated index.hhp. -# The file has to be specified with full path. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -HHC_LOCATION = - -# The GENERATE_CHI flag controls if a separate .chi index file is generated -# (YES) or that it should be included in the master .chm file (NO). -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -GENERATE_CHI = NO - -# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) -# and project file content. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_INDEX_ENCODING = - -# The BINARY_TOC flag controls whether a binary table of contents is generated -# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it -# enables the Previous and Next buttons. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members to -# the table of contents of the HTML help documentation and to the tree view. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -TOC_EXPAND = NO - -# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and -# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that -# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help -# (.qch) of the generated HTML documentation. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_QHP = NO - -# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify -# the file name of the resulting .qch file. The path specified is relative to -# the HTML output folder. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QCH_FILE = - -# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help -# Project output. For more information please see Qt Help Project / Namespace -# (see: http://doc.qt.io/qt-4.8/qthelpproject.html#namespace). -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_NAMESPACE = org.doxygen.Project - -# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt -# Help Project output. For more information please see Qt Help Project / Virtual -# Folders (see: http://doc.qt.io/qt-4.8/qthelpproject.html#virtual-folders). -# The default value is: doc. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_VIRTUAL_FOLDER = doc - -# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom -# filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://doc.qt.io/qt-4.8/qthelpproject.html#custom-filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_NAME = - -# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the -# custom filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://doc.qt.io/qt-4.8/qthelpproject.html#custom-filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_ATTRS = - -# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this -# project's filter section matches. Qt Help Project / Filter Attributes (see: -# http://doc.qt.io/qt-4.8/qthelpproject.html#filter-attributes). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_SECT_FILTER_ATTRS = - -# The QHG_LOCATION tag can be used to specify the location of Qt's -# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the -# generated .qhp file. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHG_LOCATION = - -# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be -# generated, together with the HTML files, they form an Eclipse help plugin. To -# install this plugin and make it available under the help contents menu in -# Eclipse, the contents of the directory containing the HTML and XML files needs -# to be copied into the plugins directory of eclipse. The name of the directory -# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. -# After copying Eclipse needs to be restarted before the help appears. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_ECLIPSEHELP = NO - -# A unique identifier for the Eclipse help plugin. When installing the plugin -# the directory name containing the HTML and XML files should also have this -# name. Each documentation set should have its own identifier. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. - -ECLIPSE_DOC_ID = org.doxygen.Project - -# If you want full control over the layout of the generated HTML pages it might -# be necessary to disable the index and replace it with your own. The -# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top -# of each HTML page. A value of NO enables the index and the value YES disables -# it. Since the tabs in the index contain the same information as the navigation -# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -DISABLE_INDEX = NO - -# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -# structure should be generated to display hierarchical information. If the tag -# value is set to YES, a side panel will be generated containing a tree-like -# index structure (just like the one that is generated for HTML Help). For this -# to work a browser that supports JavaScript, DHTML, CSS and frames is required -# (i.e. any modern browser). Windows users are probably better off using the -# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can -# further fine-tune the look of the index. As an example, the default style -# sheet generated by doxygen has an example that shows how to put an image at -# the root of the tree instead of the PROJECT_NAME. Since the tree basically has -# the same information as the tab index, you could consider setting -# DISABLE_INDEX to YES when enabling this option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_TREEVIEW = NO - -# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that -# doxygen will group on one line in the generated HTML documentation. -# -# Note that a value of 0 will completely suppress the enum values from appearing -# in the overview section. -# Minimum value: 0, maximum value: 20, default value: 4. -# This tag requires that the tag GENERATE_HTML is set to YES. - -ENUM_VALUES_PER_LINE = 4 - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used -# to set the initial width (in pixels) of the frame in which the tree is shown. -# Minimum value: 0, maximum value: 1500, default value: 250. -# This tag requires that the tag GENERATE_HTML is set to YES. - -TREEVIEW_WIDTH = 250 - -# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to -# external symbols imported via tag files in a separate window. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -EXT_LINKS_IN_WINDOW = NO - -# Use this tag to change the font size of LaTeX formulas included as images in -# the HTML documentation. When you change the font size after a successful -# doxygen run you need to manually remove any form_*.png images from the HTML -# output directory to force them to be regenerated. -# Minimum value: 8, maximum value: 50, default value: 10. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_FONTSIZE = 10 - -# Use the FORMULA_TRANSPARENT tag to determine whether or not the images -# generated for formulas are transparent PNGs. Transparent PNGs are not -# supported properly for IE 6.0, but are supported on all modern browsers. -# -# Note that when changing this option you need to delete any form_*.png files in -# the HTML output directory before the changes have effect. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_TRANSPARENT = YES - -# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see -# https://www.mathjax.org) which uses client side Javascript for the rendering -# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX -# installed or if you want to formulas look prettier in the HTML output. When -# enabled you may also need to install MathJax separately and configure the path -# to it using the MATHJAX_RELPATH option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -USE_MATHJAX = NO - -# When MathJax is enabled you can set the default output format to be used for -# the MathJax output. See the MathJax site (see: -# http://docs.mathjax.org/en/latest/output.html) for more details. -# Possible values are: HTML-CSS (which is slower, but has the best -# compatibility), NativeMML (i.e. MathML) and SVG. -# The default value is: HTML-CSS. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_FORMAT = HTML-CSS - -# When MathJax is enabled you need to specify the location relative to the HTML -# output directory using the MATHJAX_RELPATH option. The destination directory -# should contain the MathJax.js script. For instance, if the mathjax directory -# is located at the same level as the HTML output directory, then -# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax -# Content Delivery Network so you can quickly see the result without installing -# MathJax. However, it is strongly recommended to install a local copy of -# MathJax from https://www.mathjax.org before deployment. -# The default value is: https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_RELPATH = https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/ - -# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax -# extension names that should be enabled during MathJax rendering. For example -# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_EXTENSIONS = - -# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces -# of code that will be used on startup of the MathJax code. See the MathJax site -# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an -# example see the documentation. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_CODEFILE = - -# When the SEARCHENGINE tag is enabled doxygen will generate a search box for -# the HTML output. The underlying search engine uses javascript and DHTML and -# should work on any modern browser. Note that when using HTML help -# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) -# there is already a search function so this one should typically be disabled. -# For large projects the javascript based search engine can be slow, then -# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to -# search using the keyboard; to jump to the search box use + S -# (what the is depends on the OS and browser, but it is typically -# , /