diff -Nru geos-3.9.0/capi/geos_ts_c.cpp geos-3.9.1/capi/geos_ts_c.cpp --- geos-3.9.0/capi/geos_ts_c.cpp 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/capi/geos_ts_c.cpp 2021-02-10 18:10:27.000000000 +0000 @@ -2408,22 +2408,31 @@ //assert(0 != holes); return execute(extHandle, [&]() { - auto vholes = geos::detail::make_unique>(nholes); + std::vector tmpholes(nholes); for (size_t i = 0; i < nholes; i++) { - (*vholes)[i] = dynamic_cast(holes[i]); - if ((*vholes)[i] == nullptr) { + LinearRing* lr = dynamic_cast(holes[i]); + if (! lr) { throw IllegalArgumentException("Hole is not a LinearRing"); } + tmpholes[i] = lr; } - LinearRing* nshell = dynamic_cast(shell); if(! nshell) { throw IllegalArgumentException("Shell is not a LinearRing"); } - const GeometryFactory* gf = shell->getFactory(); + GEOSContextHandleInternal_t* handle = reinterpret_cast(extHandle); + const GeometryFactory* gf = handle->geomFactory; + + /* Create unique_ptr version for constructor */ + std::vector> vholes; + vholes.reserve(nholes); + for (LinearRing* lr: tmpholes) { + vholes.emplace_back(lr); + } + std::unique_ptr shell(nshell); - return gf->createPolygon(nshell, vholes.release()); + return gf->createPolygon(std::move(shell), std::move(vholes)).release(); }); } diff -Nru geos-3.9.0/ChangeLog geos-3.9.1/ChangeLog --- geos-3.9.0/ChangeLog 2020-12-09 20:04:20.000000000 +0000 +++ geos-3.9.1/ChangeLog 2021-02-10 19:03:58.000000000 +0000 @@ -1,3 +1,145 @@ +2021-02-10 Paul Ramsey + + * NEWS: Update NEWS for 3.9.1 + +2021-02-09 Paul Ramsey + + Merge branch '3.9' of https://git.osgeo.org/gitea/geos/geos into + 3.9 + +2021-02-09 Paul Ramsey + + * NEWS: Add NEWS entry for NG overlay fix + +2021-02-08 mdavis + + * NEWS: Update 'NEWS' + +2021-02-08 Martin Davis + + * src/operation/overlayng/OverlayUtil.cpp, + tests/unit/operation/overlayng/OverlayNGTest.cpp, + tests/xmltester/tests/general/TestNGOverlayL.xml: Fix OverlayNG + handling of flat interior line + +2021-02-01 mdavis + + * README.md: Update 'README.md' + +2021-01-30 Fabrice Fontaine + + * CMakeLists.txt: CMakeLists.txt: add BUILD_BENCHMARKS + Signed-off-by: Fabrice Fontaine + References https://github.com/libgeos/geos/pull/395 + +2021-01-27 mdavis + + * NEWS: Update NEWS for OverlayNG line ordering + +2021-01-25 Martin Davis + + * include/geos/operation/overlayng/EdgeMerger.h, + src/operation/overlayng/EdgeMerger.cpp, + tests/unit/index/chain/MonotoneChainBuilderTest.cpp, + tests/unit/operation/overlayng/OverlayNGTest.cpp, + tests/unit/utility.h, tests/xmltester/XMLTester.cpp: Fix OverlayNG + line ordering + +2020-12-30 Paul Ramsey + + * NEWS, include/geos/algorithm/Orientation.h, + src/algorithm/Orientation.cpp, + src/operation/buffer/OffsetCurveSetBuilder.cpp, + tests/unit/Makefile.am, + tests/unit/algorithm/CGAlgorithms/{isCCWTest.cpp => + OrientationIsCCWTest.cpp}, + tests/unit/operation/buffer/BufferOpTest.cpp, + tests/unit/simplify/DouglasPeuckerSimplifierTest.cpp: Port JTS + https://github.com/locationtech/jts/pull/655, Fix buffer to use + largest enclosed area for invalid rings + +2020-12-21 Paul Ramsey + + * NEWS: Add news item for Apple ARM support + +2020-12-15 Taras Zakharko + + * src/inlines.cpp: Disable additional inlining definitions when + building for Apple ARM64 targets as they result in linker errors + +2020-12-19 Paul Ramsey + + * NEWS: Add note on #1050 + +2020-12-19 Paul Ramsey + + * capi/geos_ts_c.cpp, tests/unit/Makefile.am, + tests/unit/capi/GEOSGeom_createPolygonTest.cpp: Clean up Win32 + memory issue, references #1050 + +2020-12-15 Paul Ramsey + + * NEWS, Version.txt: Bump forward again for 3.9.1 dev + +2020-12-15 Paul Ramsey + + * NEWS, Version.txt: Commit 3.9.0 and tag + +2020-12-14 Paul Ramsey + + * NEWS, Version.txt: Bump for 3.9.1dev + +2020-12-11 Sandro Santilli + + * Version.txt: Set CAPI current/rev/age to 15/0/14 + +2020-12-11 Sandro Santilli + + * HOWTO_RELEASE, Version.txt: Document versioning where it is set + +2020-12-10 Paul Ramsey + + Merge branch '3.9' of https://git.osgeo.org/gitea/geos/geos into + 3.9 + +2020-12-09 Mike Taves + + * tests/unit/simplify/TopologyPreservingSimplifierTest.cpp: + Temporarily disable component of TopologyPreservingSimplifier test + +2020-12-10 Sandro Santilli + + * .gitignore: Ignore build tests + +2020-12-10 Sandro Santilli + + * tests/unit/Makefile.am: Enable MakeValid unit test with autotools + + +2020-12-10 Paul Ramsey + + * NEWS, Version.txt: Prep RC1 + +2020-12-10 Paul Ramsey + + * CMakeLists.txt, configure.ac: Remove compile-time switches to + disable OverlayNG, leaving the defines in place in case developers + have a need to flip the switch + +2020-12-10 Sandro Santilli + + * tests/xmltester/Makefile.am, + tests/xmltester/tests/issue/issue-geos-1085.xml: Add tests for + relate with empty components (#1085) + +2020-12-09 Paul Ramsey + + * NEWS, Version.txt: Bump versions for 3.9 branch + +2020-12-09 Paul Ramsey + + * NEWS, Version.txt: 3.9.0 Release + 2020-12-09 Paul Ramsey * tests/unit/util/NodingTestUtil.cpp: remove leak in noding test? diff -Nru geos-3.9.0/CMakeLists.txt geos-3.9.1/CMakeLists.txt --- geos-3.9.0/CMakeLists.txt 2020-12-09 00:07:19.000000000 +0000 +++ geos-3.9.1/CMakeLists.txt 2021-02-10 18:10:27.000000000 +0000 @@ -48,6 +48,7 @@ set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ standard version to use (default is 11)") ## GEOS custom variables +option(BUILD_BENCHMARKS "Build GEOS benchmarks" ON) cmake_dependent_option(GEOS_BUILD_DEVELOPER "Build with compilation flags useful for development" ON "GEOS_BUILD_FROM_GIT" OFF) @@ -155,39 +156,44 @@ #----------------------------------------------------------------------------- # Add flags to prevent 'fused multiply-add' operations on targets (ARM64) -# that allow it, as it breaks calculations in DD.cpp. +# that allow it, as it breaks calculations in DD.cpp. # TODO: Replace DD calculations with 'long float' where target supports # true long float, and remove other cases where FMA causes regression # failures. # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98207 #----------------------------------------------------------------------------- -target_compile_options(geos_cxx_flags INTERFACE +target_compile_options(geos_cxx_flags INTERFACE "$<$:-ffp-contract=off>" "$<$:-ffp-contract=off>" "$<$:/fp:precise>" ) - + #----------------------------------------------------------------------------- # 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: DISABLING inlining of small functions") + "GEOS: Function inlining DISABLED") endif() #----------------------------------------------------------------------------- # 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: DISABLING overlayng algorithms") -endif() +#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 @@ -196,7 +202,7 @@ add_library(geos_developer_cxx_flags INTERFACE) if(GEOS_BUILD_DEVELOPER) - message(STATUS "GEOS: Developer mode enabled") + message(STATUS "GEOS: Developer mode ENABLED") endif() # geos_cxx_flags inherits properties from geos_developer_cxx_flags when @@ -277,7 +283,9 @@ #----------------------------------------------------------------------------- # Benchmarks #----------------------------------------------------------------------------- -add_subdirectory(benchmarks) +if(BUILD_BENCHMARKS) + add_subdirectory(benchmarks) +endif() #----------------------------------------------------------------------------- # Documentation/Examples diff -Nru geos-3.9.0/config.guess geos-3.9.1/config.guess --- geos-3.9.0/config.guess 2017-09-05 18:37:08.000000000 +0000 +++ geos-3.9.1/config.guess 2021-02-10 18:21:36.000000000 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2014 Free Software Foundation, Inc. +# Copyright 1992-2020 Free Software Foundation, Inc. -timestamp='2014-11-04' +timestamp='2020-07-12' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -27,7 +27,7 @@ # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess # # Please send patches to . @@ -39,7 +39,7 @@ Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -50,7 +50,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2014 Free Software Foundation, Inc. +Copyright 1992-2020 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -84,8 +84,6 @@ exit 1 fi -trap 'exit 1' 1 2 15 - # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a @@ -96,34 +94,40 @@ # Portable tmp directory creation inspired by the Autoconf team. -set_cc_for_build=' -trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; -trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; -: ${TMPDIR=/tmp} ; - { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || - { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || - { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || - { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; -dummy=$tmp/dummy ; -tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; -case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; - for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then - CC_FOR_BUILD="$c"; break ; - fi ; - done ; - if test x"$CC_FOR_BUILD" = x ; then - CC_FOR_BUILD=no_compiler_found ; - fi - ;; - ,,*) CC_FOR_BUILD=$CC ;; - ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac ; set_cc_for_build= ;' +tmp= +# shellcheck disable=SC2172 +trap 'test -z "$tmp" || rm -fr "$tmp"' 0 1 2 13 15 + +set_cc_for_build() { + # prevent multiple calls if $tmp is already set + test "$tmp" && return 0 + : "${TMPDIR=/tmp}" + # shellcheck disable=SC2039 + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } + dummy=$tmp/dummy + case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in + ,,) echo "int x;" > "$dummy.c" + for driver in cc gcc c89 c99 ; do + if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then + CC_FOR_BUILD="$driver" + break + fi + done + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; + esac +} # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) -if (test -f /.attbin/uname) >/dev/null 2>&1 ; then +if test -f /.attbin/uname ; then PATH=$PATH:/.attbin ; export PATH fi @@ -132,14 +136,14 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -case "${UNAME_SYSTEM}" in +case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu - eval $set_cc_for_build - cat <<-EOF > $dummy.c + set_cc_for_build + cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc @@ -149,13 +153,20 @@ LIBC=gnu #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" + + # If ldd exists, use it to detect musl libc. + if command -v ldd >/dev/null && \ + ldd --version 2>&1 | grep -q ^musl + then + LIBC=musl + fi ;; esac # Note: order is significant - the case branches are not exclusive. -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in +case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, @@ -168,21 +179,31 @@ # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || echo unknown)` - case "${UNAME_MACHINE_ARCH}" in + UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + "/sbin/$sysctl" 2>/dev/null || \ + "/usr/sbin/$sysctl" 2>/dev/null || \ + echo unknown)` + case "$UNAME_MACHINE_ARCH" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + earmv*) + arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` + machine="${arch}${endian}"-unknown + ;; + *) machine="$UNAME_MACHINE_ARCH"-unknown ;; esac # The Operating System including object format, if it has switched - # to ELF recently, or will in the future. - case "${UNAME_MACHINE_ARCH}" in + # to ELF recently (or will in the future) and ABI. + case "$UNAME_MACHINE_ARCH" in + earm*) + os=netbsdelf + ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build + set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then @@ -197,43 +218,72 @@ os=netbsd ;; esac + # Determine ABI tags. + case "$UNAME_MACHINE_ARCH" in + earm*) + expr='s/^earmv[0-9]/-eabi/;s/eb$//' + abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` + ;; + esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in + case "$UNAME_VERSION" in Debian*) release='-gnu' ;; *) - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}" + echo "$machine-${os}${release}${abi-}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" + exit ;; + *:LibertyBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` + echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" + exit ;; + *:MidnightBSD:*:*) + echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" exit ;; *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" exit ;; *:SolidBSD:*:*) - echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" + exit ;; + *:OS108:*:*) + echo "$UNAME_MACHINE"-unknown-os108_"$UNAME_RELEASE" exit ;; macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd${UNAME_RELEASE} + echo powerpc-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" + exit ;; + *:Sortix:*:*) + echo "$UNAME_MACHINE"-unknown-sortix + exit ;; + *:Twizzler:*:*) + echo "$UNAME_MACHINE"-unknown-twizzler + exit ;; + *:Redox:*:*) + echo "$UNAME_MACHINE"-unknown-redox + exit ;; + mips:OSF1:*.*) + echo mips-dec-osf1 exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in @@ -251,63 +301,54 @@ ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "EV4.5 (21064)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "LCA4 (21066/21068)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "EV5 (21164)") - UNAME_MACHINE="alphaev5" ;; + UNAME_MACHINE=alphaev5 ;; "EV5.6 (21164A)") - UNAME_MACHINE="alphaev56" ;; + UNAME_MACHINE=alphaev56 ;; "EV5.6 (21164PC)") - UNAME_MACHINE="alphapca56" ;; + UNAME_MACHINE=alphapca56 ;; "EV5.7 (21164PC)") - UNAME_MACHINE="alphapca57" ;; + UNAME_MACHINE=alphapca57 ;; "EV6 (21264)") - UNAME_MACHINE="alphaev6" ;; + UNAME_MACHINE=alphaev6 ;; "EV6.7 (21264A)") - UNAME_MACHINE="alphaev67" ;; + UNAME_MACHINE=alphaev67 ;; "EV6.8CB (21264C)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.8AL (21264B)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.8CX (21264D)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.9A (21264/EV69A)") - UNAME_MACHINE="alphaev69" ;; + UNAME_MACHINE=alphaev69 ;; "EV7 (21364)") - UNAME_MACHINE="alphaev7" ;; + UNAME_MACHINE=alphaev7 ;; "EV7.9 (21364A)") - UNAME_MACHINE="alphaev79" ;; + UNAME_MACHINE=alphaev79 ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; - Alpha\ *:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # Should we change UNAME_MACHINE based on the output of uname instead - # of the specific Alpha model? - echo alpha-pc-interix - exit ;; - 21064:Windows_NT:50:3) - echo alpha-dec-winnt3.5 - exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos + echo "$UNAME_MACHINE"-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos + echo "$UNAME_MACHINE"-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition @@ -319,7 +360,7 @@ echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} + echo arm-acorn-riscix"$UNAME_RELEASE" exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos @@ -346,38 +387,38 @@ sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) - echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux${UNAME_RELEASE} + echo i386-pc-auroraux"$UNAME_RELEASE" exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - eval $set_cc_for_build - SUN_ARCH="i386" + set_cc_for_build + SUN_ARCH=i386 # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then - SUN_ARCH="x86_64" + SUN_ARCH=x86_64 fi fi - echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in @@ -386,25 +427,25 @@ ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" exit ;; sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" ;; sun4) - echo sparc-sun-sunos${UNAME_RELEASE} + echo sparc-sun-sunos"$UNAME_RELEASE" ;; esac exit ;; aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} + echo sparc-auspex-sunos"$UNAME_RELEASE" exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not @@ -415,44 +456,44 @@ # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} + echo m68k-milan-mint"$UNAME_RELEASE" exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} + echo m68k-hades-mint"$UNAME_RELEASE" exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} + echo m68k-unknown-mint"$UNAME_RELEASE" exit ;; m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} + echo m68k-apple-machten"$UNAME_RELEASE" exit ;; powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} + echo powerpc-apple-machten"$UNAME_RELEASE" exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} + echo mips-dec-ultrix"$UNAME_RELEASE" exit ;; VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} + echo vax-dec-ultrix"$UNAME_RELEASE" exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} + echo clipper-intergraph-clix"$UNAME_RELEASE" exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + set_cc_for_build + sed 's/^ //' << EOF > "$dummy.c" #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { @@ -461,23 +502,23 @@ #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && + dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`"$dummy" "$dummyarg"` && { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} + echo mips-mips-riscos"$UNAME_RELEASE" exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax @@ -503,17 +544,17 @@ AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] + if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ + [ "$TARGET_BINARY_INTERFACE"x = x ] then - echo m88k-dg-dgux${UNAME_RELEASE} + echo m88k-dg-dgux"$UNAME_RELEASE" else - echo m88k-dg-dguxbcs${UNAME_RELEASE} + echo m88k-dg-dguxbcs"$UNAME_RELEASE" fi else - echo i586-dg-dgux${UNAME_RELEASE} + echo i586-dg-dgux"$UNAME_RELEASE" fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) @@ -530,7 +571,7 @@ echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id @@ -542,14 +583,14 @@ if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + set_cc_for_build + sed 's/^ //' << EOF > "$dummy.c" #include main() @@ -560,7 +601,7 @@ exit(0); } EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` then echo "$SYSTEM_NAME" else @@ -574,7 +615,7 @@ exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc @@ -583,18 +624,18 @@ IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} + echo "$IBM_ARCH"-ibm-aix"$IBM_REV" exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; - ibmrt:4.4BSD:*|romp-ibm:BSD:*) + ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx @@ -609,28 +650,28 @@ echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in - 9000/31? ) HP_ARCH=m68000 ;; - 9000/[34]?? ) HP_ARCH=m68k ;; + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + case "$UNAME_MACHINE" in + 9000/31?) HP_ARCH=m68000 ;; + 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + case "$sc_cpu_version" in + 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 + 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in - 32) HP_ARCH="hppa2.0n" ;; - 64) HP_ARCH="hppa2.0w" ;; - '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + case "$sc_kernel_bits" in + 32) HP_ARCH=hppa2.0n ;; + 64) HP_ARCH=hppa2.0w ;; + '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + if [ "$HP_ARCH" = "" ]; then + set_cc_for_build + sed 's/^ //' << EOF > "$dummy.c" #define _HPUX_SOURCE #include @@ -663,13 +704,13 @@ exit (0); } EOF - (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac - if [ ${HP_ARCH} = "hppa2.0w" ] + if [ "$HP_ARCH" = hppa2.0w ] then - eval $set_cc_for_build + set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler @@ -680,23 +721,23 @@ # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 - if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then - HP_ARCH="hppa2.0w" + HP_ARCH=hppa2.0w else - HP_ARCH="hppa64" + HP_ARCH=hppa64 fi fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} + echo "$HP_ARCH"-hp-hpux"$HPUX_REV" exit ;; ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux"$HPUX_REV" exit ;; 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + set_cc_for_build + sed 's/^ //' << EOF > "$dummy.c" #include int main () @@ -721,11 +762,11 @@ exit (0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) @@ -734,7 +775,7 @@ *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) @@ -742,9 +783,9 @@ exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk + echo "$UNAME_MACHINE"-unknown-osf1mk else - echo ${UNAME_MACHINE}-unknown-osf1 + echo "$UNAME_MACHINE"-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) @@ -769,130 +810,123 @@ echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` + FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" exit ;; sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} + echo sparc-unknown-bsdi"$UNAME_RELEASE" exit ;; *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" + exit ;; + arm:FreeBSD:*:*) + UNAME_PROCESSOR=`uname -p` + set_cc_for_build + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi + else + echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf + fi exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` - case ${UNAME_PROCESSOR} in + case "$UNAME_PROCESSOR" in amd64) - echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - *) - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + UNAME_PROCESSOR=x86_64 ;; + i386) + UNAME_PROCESSOR=i586 ;; esac + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin + echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) - echo ${UNAME_MACHINE}-pc-mingw64 + echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 + echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) - echo ${UNAME_MACHINE}-pc-msys - exit ;; - i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 + echo "$UNAME_MACHINE"-pc-msys exit ;; i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 + echo "$UNAME_MACHINE"-pc-pw32 exit ;; *:Interix*:*) - case ${UNAME_MACHINE} in + case "$UNAME_MACHINE" in x86) - echo i586-pc-interix${UNAME_RELEASE} + echo i586-pc-interix"$UNAME_RELEASE" exit ;; authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix${UNAME_RELEASE} + echo x86_64-unknown-interix"$UNAME_RELEASE" exit ;; IA64) - echo ia64-unknown-interix${UNAME_RELEASE} + echo ia64-unknown-interix"$UNAME_RELEASE" exit ;; esac ;; - [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) - echo i${UNAME_MACHINE}-pc-mks - exit ;; - 8664:Windows_NT:*) - echo x86_64-pc-mks - exit ;; - i*:Windows_NT*:* | Pentium*:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we - # UNAME_MACHINE based on the output of uname instead of i386? - echo i586-pc-interix - exit ;; i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin + echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) - echo x86_64-unknown-cygwin - exit ;; - p*:CYGWIN*:*) - echo powerpcle-unknown-cygwin + echo x86_64-pc-cygwin exit ;; prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} + echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" exit ;; - i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix + *:Minix:*:*) + echo "$UNAME_MACHINE"-unknown-minix exit ;; aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' /proc/cpuinfo 2>/dev/null` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; @@ -902,129 +936,179 @@ EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="gnulibc1" ; fi - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + if test "$?" = 0 ; then LIBC=gnulibc1 ; fi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arm*:Linux:*:*) - eval $set_cc_for_build + set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" + exit ;; + e2k:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-${LIBC} + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + k1om:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; mips:Linux:*:* | mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + set_cc_for_build + IS_GLIBC=0 + test x"${LIBC}" = xgnu && IS_GLIBC=1 + sed 's/^ //' << EOF > "$dummy.c" #undef CPU - #undef ${UNAME_MACHINE} - #undef ${UNAME_MACHINE}el + #undef mips + #undef mipsel + #undef mips64 + #undef mips64el + #if ${IS_GLIBC} && defined(_ABI64) + LIBCABI=gnuabi64 + #else + #if ${IS_GLIBC} && defined(_ABIN32) + LIBCABI=gnuabin32 + #else + LIBCABI=${LIBC} + #endif + #endif + + #if ${IS_GLIBC} && defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6 + CPU=mipsisa64r6 + #else + #if ${IS_GLIBC} && !defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6 + CPU=mipsisa32r6 + #else + #if defined(__mips64) + CPU=mips64 + #else + CPU=mips + #endif + #endif + #endif + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=${UNAME_MACHINE}el + MIPS_ENDIAN=el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=${UNAME_MACHINE} + MIPS_ENDIAN= #else - CPU= + MIPS_ENDIAN= #endif #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU\|^MIPS_ENDIAN\|^LIBCABI'`" + test "x$CPU" != x && { echo "$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI"; exit; } ;; + mips64el:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; openrisc*:Linux:*:*) - echo or1k-unknown-linux-${LIBC} + echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-${LIBC} + echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-${LIBC} + echo hppa64-unknown-linux-"$LIBC" exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; - PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; - *) echo hppa-unknown-linux-${LIBC} ;; + PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; + PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; + *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-${LIBC} + echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-${LIBC} + echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) - echo powerpc64le-unknown-linux-${LIBC} + echo powerpc64le-unknown-linux-"$LIBC" exit ;; ppcle:Linux:*:*) - echo powerpcle-unknown-linux-${LIBC} + echo powerpcle-unknown-linux-"$LIBC" + exit ;; + riscv32:Linux:*:* | riscv64:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux-${LIBC} + echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; tile*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-${LIBC} + echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + set_cc_for_build + LIBCABI=$LIBC + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then + if (echo '#ifdef __ILP32__'; echo IS_X32; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_X32 >/dev/null + then + LIBCABI="$LIBC"x32 + fi + fi + echo "$UNAME_MACHINE"-pc-linux-"$LIBCABI" exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. @@ -1038,34 +1122,34 @@ # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx + echo "$UNAME_MACHINE"-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop + echo "$UNAME_MACHINE"-unknown-stop exit ;; i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos + echo "$UNAME_MACHINE"-unknown-atheos exit ;; i*86:syllable:*:*) - echo ${UNAME_MACHINE}-pc-syllable + echo "$UNAME_MACHINE"-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} + echo i386-unknown-lynxos"$UNAME_RELEASE" exit ;; i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp + echo "$UNAME_MACHINE"-pc-msdosdjgpp exit ;; - i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + i*86:*:4.*:*) + UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" fi exit ;; i*86:*:5:[678]*) @@ -1075,12 +1159,12 @@ *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}" exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 @@ -1090,9 +1174,9 @@ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" else - echo ${UNAME_MACHINE}-pc-sysv32 + echo "$UNAME_MACHINE"-pc-sysv32 fi exit ;; pc:*:*:*) @@ -1100,7 +1184,7 @@ # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub - # prints for the "djgpp" host, or else GDB configury will decide that + # prints for the "djgpp" host, or else GDB configure will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; @@ -1112,9 +1196,9 @@ exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) @@ -1134,9 +1218,9 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; @@ -1145,28 +1229,28 @@ test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} + echo m68k-unknown-lynxos"$UNAME_RELEASE" exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} + echo sparc-unknown-lynxos"$UNAME_RELEASE" exit ;; rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} + echo rs6000-unknown-lynxos"$UNAME_RELEASE" exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} + echo powerpc-unknown-lynxos"$UNAME_RELEASE" exit ;; SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} + echo mips-dde-sysv"$UNAME_RELEASE" exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 @@ -1177,7 +1261,7 @@ *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 + echo "$UNAME_MACHINE"-sni-sysv4 else echo ns32k-sni-sysv fi @@ -1197,23 +1281,23 @@ exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. - echo ${UNAME_MACHINE}-stratus-vos + echo "$UNAME_MACHINE"-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} + echo m68k-apple-aux"$UNAME_RELEASE" exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} + echo mips-nec-sysv"$UNAME_RELEASE" else - echo mips-unknown-sysv${UNAME_RELEASE} + echo mips-unknown-sysv"$UNAME_RELEASE" fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. @@ -1232,77 +1316,97 @@ echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} + echo sx4-nec-superux"$UNAME_RELEASE" exit ;; SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} + echo sx5-nec-superux"$UNAME_RELEASE" exit ;; SX-6:SUPER-UX:*:*) - echo sx6-nec-superux${UNAME_RELEASE} + echo sx6-nec-superux"$UNAME_RELEASE" exit ;; SX-7:SUPER-UX:*:*) - echo sx7-nec-superux${UNAME_RELEASE} + echo sx7-nec-superux"$UNAME_RELEASE" exit ;; SX-8:SUPER-UX:*:*) - echo sx8-nec-superux${UNAME_RELEASE} + echo sx8-nec-superux"$UNAME_RELEASE" exit ;; SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux${UNAME_RELEASE} + echo sx8r-nec-superux"$UNAME_RELEASE" + exit ;; + SX-ACE:SUPER-UX:*:*) + echo sxace-nec-superux"$UNAME_RELEASE" exit ;; Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} + echo powerpc-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" + exit ;; + arm64:Darwin:*:*) + echo aarch64-apple-darwin"$UNAME_RELEASE" exit ;; *:Darwin:*:*) - UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - eval $set_cc_for_build - if test "$UNAME_PROCESSOR" = unknown ; then - UNAME_PROCESSOR=powerpc - fi - if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then - if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null - then - case $UNAME_PROCESSOR in - i386) UNAME_PROCESSOR=x86_64 ;; - powerpc) UNAME_PROCESSOR=powerpc64 ;; - esac - fi + UNAME_PROCESSOR=`uname -p` + case $UNAME_PROCESSOR in + unknown) UNAME_PROCESSOR=powerpc ;; + esac + if command -v xcode-select > /dev/null 2> /dev/null && \ + ! xcode-select --print-path > /dev/null 2> /dev/null ; then + # Avoid executing cc if there is no toolchain installed as + # cc will be a stub that puts up a graphical alert + # prompting the user to install developer tools. + CC_FOR_BUILD=no_compiler_found + else + set_cc_for_build + fi + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + case $UNAME_PROCESSOR in + i386) UNAME_PROCESSOR=x86_64 ;; + powerpc) UNAME_PROCESSOR=powerpc64 ;; + esac + fi + # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc + if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_PPC >/dev/null + then + UNAME_PROCESSOR=powerpc fi elif test "$UNAME_PROCESSOR" = i386 ; then - # Avoid executing cc on OS X 10.9, as it ships with a stub - # that puts up a graphical alert prompting to install - # developer tools. Any system running Mac OS X 10.7 or - # later (Darwin 11 and later) is required to have a 64-bit - # processor. This is not true of the ARM version of Darwin - # that Apple uses in portable devices. - UNAME_PROCESSOR=x86_64 + # uname -m returns i386 or x86_64 + UNAME_PROCESSOR=$UNAME_MACHINE fi - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` - if test "$UNAME_PROCESSOR" = "x86"; then + if test "$UNAME_PROCESSOR" = x86; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; - NEO-?:NONSTOP_KERNEL:*:*) - echo neo-tandem-nsk${UNAME_RELEASE} + NEO-*:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk"$UNAME_RELEASE" exit ;; NSE-*:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk${UNAME_RELEASE} + echo nse-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSR-*:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk"$UNAME_RELEASE" exit ;; - NSR-?:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} + NSV-*:NONSTOP_KERNEL:*:*) + echo nsv-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSX-*:NONSTOP_KERNEL:*:*) + echo nsx-tandem-nsk"$UNAME_RELEASE" exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux @@ -1311,18 +1415,19 @@ echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. - if test "$cputype" = "386"; then + # shellcheck disable=SC2154 + if test "$cputype" = 386; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi - echo ${UNAME_MACHINE}-unknown-plan9 + echo "$UNAME_MACHINE"-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 @@ -1343,14 +1448,14 @@ echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} + echo mips-sei-seiux"$UNAME_RELEASE" exit ;; *:DragonFly:*:*) - echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "${UNAME_MACHINE}" in + case "$UNAME_MACHINE" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; @@ -1359,34 +1464,194 @@ echo i386-pc-xenix exit ;; i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" exit ;; i*86:rdos:*:*) - echo ${UNAME_MACHINE}-pc-rdos + echo "$UNAME_MACHINE"-pc-rdos exit ;; i*86:AROS:*:*) - echo ${UNAME_MACHINE}-pc-aros + echo "$UNAME_MACHINE"-pc-aros exit ;; x86_64:VMkernel:*:*) - echo ${UNAME_MACHINE}-unknown-esx + echo "$UNAME_MACHINE"-unknown-esx + exit ;; + amd64:Isilon\ OneFS:*:*) + echo x86_64-unknown-onefs + exit ;; + *:Unleashed:*:*) + echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE" exit ;; esac +# No uname command or uname output not recognized. +set_cc_for_build +cat > "$dummy.c" < +#include +#endif +#if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__) +#if defined (vax) || defined (__vax) || defined (__vax__) || defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__) +#include +#if defined(_SIZE_T_) || defined(SIGLOST) +#include +#endif +#endif +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); +#endif + +#if defined (vax) +#if !defined (ultrix) +#include +#if defined (BSD) +#if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +#else +#if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +#else + printf ("vax-dec-bsd\n"); exit (0); +#endif +#endif +#else + printf ("vax-dec-bsd\n"); exit (0); +#endif +#else +#if defined(_SIZE_T_) || defined(SIGLOST) + struct utsname un; + uname (&un); + printf ("vax-dec-ultrix%s\n", un.release); exit (0); +#else + printf ("vax-dec-ultrix\n"); exit (0); +#endif +#endif +#endif +#if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__) +#if defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__) +#if defined(_SIZE_T_) || defined(SIGLOST) + struct utsname *un; + uname (&un); + printf ("mips-dec-ultrix%s\n", un.release); exit (0); +#else + printf ("mips-dec-ultrix\n"); exit (0); +#endif +#endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. +test -d /usr/apollo && { echo "$ISP-apollo-$SYSTYPE"; exit; } + +echo "$0: unable to guess system type" >&2 + +case "$UNAME_MACHINE:$UNAME_SYSTEM" in + mips:Linux | mips64:Linux) + # If we got here on MIPS GNU/Linux, output extra information. + cat >&2 <&2 < in order to provide the needed -information to handle your system. +year=`echo $timestamp | sed 's,-.*,,'` +# shellcheck disable=SC2003 +if test "`expr "\`date +%Y\`" - "$year"`" -lt 3 ; then + cat >&2 </dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} +UNAME_MACHINE = "$UNAME_MACHINE" +UNAME_RELEASE = "$UNAME_RELEASE" +UNAME_SYSTEM = "$UNAME_SYSTEM" +UNAME_VERSION = "$UNAME_VERSION" EOF +fi exit 1 # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff -Nru geos-3.9.0/config.sub geos-3.9.1/config.sub --- geos-3.9.0/config.sub 2017-09-05 18:37:08.000000000 +0000 +++ geos-3.9.1/config.sub 2021-02-10 18:21:37.000000000 +0000 @@ -1,8 +1,8 @@ #! /bin/sh # Configuration validation subroutine script. -# Copyright 1992-2014 Free Software Foundation, Inc. +# Copyright 1992-2020 Free Software Foundation, Inc. -timestamp='2014-12-03' +timestamp='2020-07-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -33,7 +33,7 @@ # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases @@ -53,12 +53,11 @@ me=`echo "$0" | sed -e 's,.*/,,'` usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS - $0 [OPTION] ALIAS +Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -68,7 +67,7 @@ version="\ GNU config.sub ($timestamp) -Copyright 1992-2014 Free Software Foundation, Inc. +Copyright 1992-2020 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -90,12 +89,12 @@ - ) # Use stdin as input. break ;; -* ) - echo "$me: invalid option $1$help" + echo "$me: invalid option $1$help" >&2 exit 1 ;; *local*) # First pass through any local machine types. - echo $1 + echo "$1" exit ;; * ) @@ -111,1228 +110,1167 @@ exit 1;; esac -# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). -# Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` -case $maybe_os in - nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ - linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ - knetbsd*-gnu* | netbsd*-gnu* | \ - kopensolaris*-gnu* | \ - storm-chaos* | os2-emx* | rtmk-nova*) - os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` - ;; - android-linux) - os=-linux-android - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown - ;; - *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` - else os=; fi - ;; -esac - -### Let's recognize common machines as not being operating systems so -### that things like config.sub decstation-3100 work. We also -### recognize some manufacturers as not being operating systems, so we -### can provide default operating systems below. -case $os in - -sun*os*) - # Prevent following clause from handling this invalid input. - ;; - -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ - -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ - -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ - -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ - -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ - -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray | -microblaze*) - os= - basic_machine=$1 - ;; - -bluegene*) - os=-cnk - ;; - -sim | -cisco | -oki | -wec | -winbond) - os= - basic_machine=$1 - ;; - -scout) - ;; - -wrs) - os=-vxworks - basic_machine=$1 - ;; - -chorusos*) - os=-chorusos - basic_machine=$1 - ;; - -chorusrdb) - os=-chorusrdb - basic_machine=$1 - ;; - -hiux*) - os=-hiuxwe2 - ;; - -sco6) - os=-sco5v6 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5) - os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco4) - os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2.[4-9]*) - os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2v[4-9]*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5v6*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco*) - os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -isc) - os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -clix*) - basic_machine=clipper-intergraph - ;; - -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -lynx*178) - os=-lynxos178 - ;; - -lynx*5) - os=-lynxos5 - ;; - -lynx*) - os=-lynxos +# Split fields of configuration type +# shellcheck disable=SC2162 +IFS="-" read field1 field2 field3 field4 <&2 + exit 1 ;; - -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + *-*-*-*) + basic_machine=$field1-$field2 + basic_os=$field3-$field4 ;; - -windowsnt*) - os=`echo $os | sed -e 's/windowsnt/winnt/'` + *-*-*) + # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two + # parts + maybe_os=$field2-$field3 + case $maybe_os in + nto-qnx* | linux-* | uclinux-uclibc* \ + | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \ + | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \ + | storm-chaos* | os2-emx* | rtmk-nova*) + basic_machine=$field1 + basic_os=$maybe_os + ;; + android-linux) + basic_machine=$field1-unknown + basic_os=linux-android + ;; + *) + basic_machine=$field1-$field2 + basic_os=$field3 + ;; + esac ;; - -psos*) - os=-psos + *-*) + # A lone config we happen to match not fitting any pattern + case $field1-$field2 in + decstation-3100) + basic_machine=mips-dec + basic_os= + ;; + *-*) + # Second component is usually, but not always the OS + case $field2 in + # Prevent following clause from handling this valid os + sun*os*) + basic_machine=$field1 + basic_os=$field2 + ;; + # Manufacturers + dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \ + | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \ + | unicom* | ibm* | next | hp | isi* | apollo | altos* \ + | convergent* | ncr* | news | 32* | 3600* | 3100* \ + | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \ + | ultra | tti* | harris | dolphin | highlevel | gould \ + | cbm | ns | masscomp | apple | axis | knuth | cray \ + | microblaze* | sim | cisco \ + | oki | wec | wrs | winbond) + basic_machine=$field1-$field2 + basic_os= + ;; + *) + basic_machine=$field1 + basic_os=$field2 + ;; + esac + ;; + esac ;; - -mint | -mint[0-9]*) - basic_machine=m68k-atari - os=-mint + *) + # Convert single-component short-hands not valid as part of + # multi-component configurations. + case $field1 in + 386bsd) + basic_machine=i386-pc + basic_os=bsd + ;; + a29khif) + basic_machine=a29k-amd + basic_os=udi + ;; + adobe68k) + basic_machine=m68010-adobe + basic_os=scout + ;; + alliant) + basic_machine=fx80-alliant + basic_os= + ;; + altos | altos3068) + basic_machine=m68k-altos + basic_os= + ;; + am29k) + basic_machine=a29k-none + basic_os=bsd + ;; + amdahl) + basic_machine=580-amdahl + basic_os=sysv + ;; + amiga) + basic_machine=m68k-unknown + basic_os= + ;; + amigaos | amigados) + basic_machine=m68k-unknown + basic_os=amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + basic_os=sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + basic_os=sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + basic_os=bsd + ;; + aros) + basic_machine=i386-pc + basic_os=aros + ;; + aux) + basic_machine=m68k-apple + basic_os=aux + ;; + balance) + basic_machine=ns32k-sequent + basic_os=dynix + ;; + blackfin) + basic_machine=bfin-unknown + basic_os=linux + ;; + cegcc) + basic_machine=arm-unknown + basic_os=cegcc + ;; + convex-c1) + basic_machine=c1-convex + basic_os=bsd + ;; + convex-c2) + basic_machine=c2-convex + basic_os=bsd + ;; + convex-c32) + basic_machine=c32-convex + basic_os=bsd + ;; + convex-c34) + basic_machine=c34-convex + basic_os=bsd + ;; + convex-c38) + basic_machine=c38-convex + basic_os=bsd + ;; + cray) + basic_machine=j90-cray + basic_os=unicos + ;; + crds | unos) + basic_machine=m68k-crds + basic_os= + ;; + da30) + basic_machine=m68k-da30 + basic_os= + ;; + decstation | pmax | pmin | dec3100 | decstatn) + basic_machine=mips-dec + basic_os= + ;; + delta88) + basic_machine=m88k-motorola + basic_os=sysv3 + ;; + dicos) + basic_machine=i686-pc + basic_os=dicos + ;; + djgpp) + basic_machine=i586-pc + basic_os=msdosdjgpp + ;; + ebmon29k) + basic_machine=a29k-amd + basic_os=ebmon + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + basic_os=ose + ;; + gmicro) + basic_machine=tron-gmicro + basic_os=sysv + ;; + go32) + basic_machine=i386-pc + basic_os=go32 + ;; + h8300hms) + basic_machine=h8300-hitachi + basic_os=hms + ;; + h8300xray) + basic_machine=h8300-hitachi + basic_os=xray + ;; + h8500hms) + basic_machine=h8500-hitachi + basic_os=hms + ;; + harris) + basic_machine=m88k-harris + basic_os=sysv3 + ;; + hp300 | hp300hpux) + basic_machine=m68k-hp + basic_os=hpux + ;; + hp300bsd) + basic_machine=m68k-hp + basic_os=bsd + ;; + hppaosf) + basic_machine=hppa1.1-hp + basic_os=osf + ;; + hppro) + basic_machine=hppa1.1-hp + basic_os=proelf + ;; + i386mach) + basic_machine=i386-mach + basic_os=mach + ;; + isi68 | isi) + basic_machine=m68k-isi + basic_os=sysv + ;; + m68knommu) + basic_machine=m68k-unknown + basic_os=linux + ;; + magnum | m3230) + basic_machine=mips-mips + basic_os=sysv + ;; + merlin) + basic_machine=ns32k-utek + basic_os=sysv + ;; + mingw64) + basic_machine=x86_64-pc + basic_os=mingw64 + ;; + mingw32) + basic_machine=i686-pc + basic_os=mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + basic_os=mingw32ce + ;; + monitor) + basic_machine=m68k-rom68k + basic_os=coff + ;; + morphos) + basic_machine=powerpc-unknown + basic_os=morphos + ;; + moxiebox) + basic_machine=moxie-unknown + basic_os=moxiebox + ;; + msdos) + basic_machine=i386-pc + basic_os=msdos + ;; + msys) + basic_machine=i686-pc + basic_os=msys + ;; + mvs) + basic_machine=i370-ibm + basic_os=mvs + ;; + nacl) + basic_machine=le32-unknown + basic_os=nacl + ;; + ncr3000) + basic_machine=i486-ncr + basic_os=sysv4 + ;; + netbsd386) + basic_machine=i386-pc + basic_os=netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + basic_os=linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + basic_os=newsos + ;; + news1000) + basic_machine=m68030-sony + basic_os=newsos + ;; + necv70) + basic_machine=v70-nec + basic_os=sysv + ;; + nh3000) + basic_machine=m68k-harris + basic_os=cxux + ;; + nh[45]000) + basic_machine=m88k-harris + basic_os=cxux + ;; + nindy960) + basic_machine=i960-intel + basic_os=nindy + ;; + mon960) + basic_machine=i960-intel + basic_os=mon960 + ;; + nonstopux) + basic_machine=mips-compaq + basic_os=nonstopux + ;; + os400) + basic_machine=powerpc-ibm + basic_os=os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + basic_os=ose + ;; + os68k) + basic_machine=m68k-none + basic_os=os68k + ;; + paragon) + basic_machine=i860-intel + basic_os=osf + ;; + parisc) + basic_machine=hppa-unknown + basic_os=linux + ;; + psp) + basic_machine=mipsallegrexel-sony + basic_os=psp + ;; + pw32) + basic_machine=i586-unknown + basic_os=pw32 + ;; + rdos | rdos64) + basic_machine=x86_64-pc + basic_os=rdos + ;; + rdos32) + basic_machine=i386-pc + basic_os=rdos + ;; + rom68k) + basic_machine=m68k-rom68k + basic_os=coff + ;; + sa29200) + basic_machine=a29k-amd + basic_os=udi + ;; + sei) + basic_machine=mips-sei + basic_os=seiux + ;; + sequent) + basic_machine=i386-sequent + basic_os= + ;; + sps7) + basic_machine=m68k-bull + basic_os=sysv2 + ;; + st2000) + basic_machine=m68k-tandem + basic_os= + ;; + stratus) + basic_machine=i860-stratus + basic_os=sysv4 + ;; + sun2) + basic_machine=m68000-sun + basic_os= + ;; + sun2os3) + basic_machine=m68000-sun + basic_os=sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + basic_os=sunos4 + ;; + sun3) + basic_machine=m68k-sun + basic_os= + ;; + sun3os3) + basic_machine=m68k-sun + basic_os=sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + basic_os=sunos4 + ;; + sun4) + basic_machine=sparc-sun + basic_os= + ;; + sun4os3) + basic_machine=sparc-sun + basic_os=sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + basic_os=sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + basic_os=solaris2 + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + basic_os= + ;; + sv1) + basic_machine=sv1-cray + basic_os=unicos + ;; + symmetry) + basic_machine=i386-sequent + basic_os=dynix + ;; + t3e) + basic_machine=alphaev5-cray + basic_os=unicos + ;; + t90) + basic_machine=t90-cray + basic_os=unicos + ;; + toad1) + basic_machine=pdp10-xkl + basic_os=tops20 + ;; + tpf) + basic_machine=s390x-ibm + basic_os=tpf + ;; + udi29k) + basic_machine=a29k-amd + basic_os=udi + ;; + ultra3) + basic_machine=a29k-nyu + basic_os=sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + basic_os=none + ;; + vaxv) + basic_machine=vax-dec + basic_os=sysv + ;; + vms) + basic_machine=vax-dec + basic_os=vms + ;; + vsta) + basic_machine=i386-pc + basic_os=vsta + ;; + vxworks960) + basic_machine=i960-wrs + basic_os=vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + basic_os=vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + basic_os=vxworks + ;; + xbox) + basic_machine=i686-pc + basic_os=mingw32 + ;; + ymp) + basic_machine=ymp-cray + basic_os=unicos + ;; + *) + basic_machine=$1 + basic_os= + ;; + esac ;; esac -# Decode aliases for certain CPU-COMPANY combinations. +# Decode 1-component or ad-hoc basic machines case $basic_machine in - # Recognize the basic CPU types without company name. - # Some are omitted here because they have special meanings below. - 1750a | 580 \ - | a29k \ - | aarch64 | aarch64_be \ - | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ - | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ - | am33_2.0 \ - | arc | arceb \ - | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ - | avr | avr32 \ - | be32 | be64 \ - | bfin \ - | c4x | c8051 | clipper \ - | d10v | d30v | dlx | dsp16xx \ - | epiphany \ - | fido | fr30 | frv \ - | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ - | hexagon \ - | i370 | i860 | i960 | ia64 \ - | ip2k | iq2000 \ - | k1om \ - | le32 | le64 \ - | lm32 \ - | m32c | m32r | m32rle | m68000 | m68k | m88k \ - | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ - | mips | mipsbe | mipseb | mipsel | mipsle \ - | mips16 \ - | mips64 | mips64el \ - | mips64octeon | mips64octeonel \ - | mips64orion | mips64orionel \ - | mips64r5900 | mips64r5900el \ - | mips64vr | mips64vrel \ - | mips64vr4100 | mips64vr4100el \ - | mips64vr4300 | mips64vr4300el \ - | mips64vr5000 | mips64vr5000el \ - | mips64vr5900 | mips64vr5900el \ - | mipsisa32 | mipsisa32el \ - | mipsisa32r2 | mipsisa32r2el \ - | mipsisa32r6 | mipsisa32r6el \ - | mipsisa64 | mipsisa64el \ - | mipsisa64r2 | mipsisa64r2el \ - | mipsisa64r6 | mipsisa64r6el \ - | mipsisa64sb1 | mipsisa64sb1el \ - | mipsisa64sr71k | mipsisa64sr71kel \ - | mipsr5900 | mipsr5900el \ - | mipstx39 | mipstx39el \ - | mn10200 | mn10300 \ - | moxie \ - | mt \ - | msp430 \ - | nds32 | nds32le | nds32be \ - | nios | nios2 | nios2eb | nios2el \ - | ns16k | ns32k \ - | open8 | or1k | or1knd | or32 \ - | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle \ - | pyramid \ - | riscv32 | riscv64 \ - | rl78 | rx \ - | score \ - | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ - | sh64 | sh64le \ - | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ - | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ - | spu \ - | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ - | ubicom32 \ - | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ - | visium \ - | we32k \ - | x86 | xc16x | xstormy16 | xtensa \ - | z8k | z80) - basic_machine=$basic_machine-unknown - ;; - c54x) - basic_machine=tic54x-unknown - ;; - c55x) - basic_machine=tic55x-unknown - ;; - c6x) - basic_machine=tic6x-unknown - ;; - leon|leon[3-9]) - basic_machine=sparc-$basic_machine - ;; - m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) - basic_machine=$basic_machine-unknown - os=-none + # Here we handle the default manufacturer of certain CPU types. It is in + # some cases the only manufacturer, in others, it is the most popular. + w89k) + cpu=hppa1.1 + vendor=winbond ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + op50n) + cpu=hppa1.1 + vendor=oki ;; - ms1) - basic_machine=mt-unknown + op60c) + cpu=hppa1.1 + vendor=oki ;; - - strongarm | thumb | xscale) - basic_machine=arm-unknown + ibm*) + cpu=i370 + vendor=ibm ;; - xgate) - basic_machine=$basic_machine-unknown - os=-none + orion105) + cpu=clipper + vendor=highlevel ;; - xscaleeb) - basic_machine=armeb-unknown + mac | mpw | mac-mpw) + cpu=m68k + vendor=apple ;; - - xscaleel) - basic_machine=armel-unknown + pmac | pmac-mpw) + cpu=powerpc + vendor=apple ;; - # We use `pc' rather than `unknown' - # because (1) that's what they normally are, and - # (2) the word "unknown" tends to confuse beginning users. - i*86 | x86_64) - basic_machine=$basic_machine-pc - ;; - # Object if more than one company name word. - *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; - # Recognize the basic CPU types with company name. - 580-* \ - | a29k-* \ - | aarch64-* | aarch64_be-* \ - | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ - | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ - | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* | avr32-* \ - | be32-* | be64-* \ - | bfin-* | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c4x-* \ - | c8051-* | clipper-* | craynv-* | cydra-* \ - | d10v-* | d30v-* | dlx-* \ - | elxsi-* \ - | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ - | h8300-* | h8500-* \ - | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ - | hexagon-* \ - | i*86-* | i860-* | i960-* | ia64-* \ - | ip2k-* | iq2000-* \ - | k1om-* \ - | le32-* | le64-* \ - | lm32-* \ - | m32c-* | m32r-* | m32rle-* \ - | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ - | microblaze-* | microblazeel-* \ - | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ - | mips16-* \ - | mips64-* | mips64el-* \ - | mips64octeon-* | mips64octeonel-* \ - | mips64orion-* | mips64orionel-* \ - | mips64r5900-* | mips64r5900el-* \ - | mips64vr-* | mips64vrel-* \ - | mips64vr4100-* | mips64vr4100el-* \ - | mips64vr4300-* | mips64vr4300el-* \ - | mips64vr5000-* | mips64vr5000el-* \ - | mips64vr5900-* | mips64vr5900el-* \ - | mipsisa32-* | mipsisa32el-* \ - | mipsisa32r2-* | mipsisa32r2el-* \ - | mipsisa32r6-* | mipsisa32r6el-* \ - | mipsisa64-* | mipsisa64el-* \ - | mipsisa64r2-* | mipsisa64r2el-* \ - | mipsisa64r6-* | mipsisa64r6el-* \ - | mipsisa64sb1-* | mipsisa64sb1el-* \ - | mipsisa64sr71k-* | mipsisa64sr71kel-* \ - | mipsr5900-* | mipsr5900el-* \ - | mipstx39-* | mipstx39el-* \ - | mmix-* \ - | mt-* \ - | msp430-* \ - | nds32-* | nds32le-* | nds32be-* \ - | nios-* | nios2-* | nios2eb-* | nios2el-* \ - | none-* | np1-* | ns16k-* | ns32k-* \ - | open8-* \ - | or1k*-* \ - | orion-* \ - | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ - | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ - | pyramid-* \ - | rl78-* | romp-* | rs6000-* | rx-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ - | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ - | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ - | tahoe-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ - | tile*-* \ - | tron-* \ - | ubicom32-* \ - | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ - | vax-* \ - | visium-* \ - | we32k-* \ - | x86-* | x86_64-* | xc16x-* | xps100-* \ - | xstormy16-* | xtensa*-* \ - | ymp-* \ - | z8k-* | z80-*) - ;; - # Recognize the basic CPU types without company name, with glob match. - xtensa*) - basic_machine=$basic_machine-unknown - ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. - 386bsd) - basic_machine=i386-unknown - os=-bsd - ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) - basic_machine=m68000-att + cpu=m68000 + vendor=att ;; 3b*) - basic_machine=we32k-att - ;; - a29khif) - basic_machine=a29k-amd - os=-udi - ;; - abacus) - basic_machine=abacus-unknown - ;; - adobe68k) - basic_machine=m68010-adobe - os=-scout - ;; - alliant | fx80) - basic_machine=fx80-alliant - ;; - altos | altos3068) - basic_machine=m68k-altos - ;; - am29k) - basic_machine=a29k-none - os=-bsd - ;; - amd64) - basic_machine=x86_64-pc - ;; - amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - amdahl) - basic_machine=580-amdahl - os=-sysv - ;; - amiga | amiga-*) - basic_machine=m68k-unknown - ;; - amigaos | amigados) - basic_machine=m68k-unknown - os=-amigaos - ;; - amigaunix | amix) - basic_machine=m68k-unknown - os=-sysv4 - ;; - apollo68) - basic_machine=m68k-apollo - os=-sysv - ;; - apollo68bsd) - basic_machine=m68k-apollo - os=-bsd - ;; - aros) - basic_machine=i386-pc - os=-aros - ;; - aux) - basic_machine=m68k-apple - os=-aux - ;; - balance) - basic_machine=ns32k-sequent - os=-dynix - ;; - blackfin) - basic_machine=bfin-unknown - os=-linux - ;; - blackfin-*) - basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux + cpu=we32k + vendor=att ;; bluegene*) - basic_machine=powerpc-ibm - os=-cnk - ;; - c54x-*) - basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - c55x-*) - basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - c6x-*) - basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - c90) - basic_machine=c90-cray - os=-unicos - ;; - cegcc) - basic_machine=arm-unknown - os=-cegcc - ;; - convex-c1) - basic_machine=c1-convex - os=-bsd - ;; - convex-c2) - basic_machine=c2-convex - os=-bsd - ;; - convex-c32) - basic_machine=c32-convex - os=-bsd - ;; - convex-c34) - basic_machine=c34-convex - os=-bsd - ;; - convex-c38) - basic_machine=c38-convex - os=-bsd - ;; - cray | j90) - basic_machine=j90-cray - os=-unicos - ;; - craynv) - basic_machine=craynv-cray - os=-unicosmp - ;; - cr16 | cr16-*) - basic_machine=cr16-unknown - os=-elf - ;; - crds | unos) - basic_machine=m68k-crds - ;; - crisv32 | crisv32-* | etraxfs*) - basic_machine=crisv32-axis - ;; - cris | cris-* | etrax*) - basic_machine=cris-axis - ;; - crx) - basic_machine=crx-unknown - os=-elf - ;; - da30 | da30-*) - basic_machine=m68k-da30 - ;; - decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) - basic_machine=mips-dec + cpu=powerpc + vendor=ibm + basic_os=cnk ;; decsystem10* | dec10*) - basic_machine=pdp10-dec - os=-tops10 + cpu=pdp10 + vendor=dec + basic_os=tops10 ;; decsystem20* | dec20*) - basic_machine=pdp10-dec - os=-tops20 + cpu=pdp10 + vendor=dec + basic_os=tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) - basic_machine=m68k-motorola + cpu=m68k + vendor=motorola ;; - delta88) - basic_machine=m88k-motorola - os=-sysv3 - ;; - dicos) - basic_machine=i686-pc - os=-dicos - ;; - djgpp) - basic_machine=i586-pc - os=-msdosdjgpp - ;; - dpx20 | dpx20-*) - basic_machine=rs6000-bull - os=-bosx - ;; - dpx2* | dpx2*-bull) - basic_machine=m68k-bull - os=-sysv3 - ;; - ebmon29k) - basic_machine=a29k-amd - os=-ebmon - ;; - elxsi) - basic_machine=elxsi-elxsi - os=-bsd + dpx2*) + cpu=m68k + vendor=bull + basic_os=sysv3 ;; encore | umax | mmax) - basic_machine=ns32k-encore + cpu=ns32k + vendor=encore ;; - es1800 | OSE68k | ose68k | ose | OSE) - basic_machine=m68k-ericsson - os=-ose + elxsi) + cpu=elxsi + vendor=elxsi + basic_os=${basic_os:-bsd} ;; fx2800) - basic_machine=i860-alliant + cpu=i860 + vendor=alliant ;; genix) - basic_machine=ns32k-ns - ;; - gmicro) - basic_machine=tron-gmicro - os=-sysv - ;; - go32) - basic_machine=i386-pc - os=-go32 + cpu=ns32k + vendor=ns ;; h3050r* | hiux*) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - h8300hms) - basic_machine=h8300-hitachi - os=-hms - ;; - h8300xray) - basic_machine=h8300-hitachi - os=-xray - ;; - h8500hms) - basic_machine=h8500-hitachi - os=-hms - ;; - harris) - basic_machine=m88k-harris - os=-sysv3 - ;; - hp300-*) - basic_machine=m68k-hp - ;; - hp300bsd) - basic_machine=m68k-hp - os=-bsd - ;; - hp300hpux) - basic_machine=m68k-hp - os=-hpux + cpu=hppa1.1 + vendor=hitachi + basic_os=hiuxwe2 ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) - basic_machine=hppa1.0-hp + cpu=hppa1.0 + vendor=hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) - basic_machine=m68000-hp + cpu=m68000 + vendor=hp ;; hp9k3[2-9][0-9]) - basic_machine=m68k-hp + cpu=m68k + vendor=hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) - basic_machine=hppa1.0-hp + cpu=hppa1.0 + vendor=hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) - basic_machine=hppa1.1-hp + cpu=hppa1.1 + vendor=hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp + cpu=hppa1.1 + vendor=hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp + cpu=hppa1.1 + vendor=hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) - basic_machine=hppa1.1-hp + cpu=hppa1.1 + vendor=hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hppa-next) - os=-nextstep3 - ;; - hppaosf) - basic_machine=hppa1.1-hp - os=-osf - ;; - hppro) - basic_machine=hppa1.1-hp - os=-proelf - ;; - i370-ibm* | ibm*) - basic_machine=i370-ibm + cpu=hppa1.0 + vendor=hp ;; i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv32 + cpu=`echo "$1" | sed -e 's/86.*/86/'` + vendor=pc + basic_os=sysv32 ;; i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv4 + cpu=`echo "$1" | sed -e 's/86.*/86/'` + vendor=pc + basic_os=sysv4 ;; i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv + cpu=`echo "$1" | sed -e 's/86.*/86/'` + vendor=pc + basic_os=sysv ;; i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-solaris2 - ;; - i386mach) - basic_machine=i386-mach - os=-mach - ;; - i386-vsta | vsta) - basic_machine=i386-unknown - os=-vsta + cpu=`echo "$1" | sed -e 's/86.*/86/'` + vendor=pc + basic_os=solaris2 + ;; + j90 | j90-cray) + cpu=j90 + vendor=cray + basic_os=${basic_os:-unicos} ;; iris | iris4d) - basic_machine=mips-sgi - case $os in - -irix*) + cpu=mips + vendor=sgi + case $basic_os in + irix*) ;; *) - os=-irix4 + basic_os=irix4 ;; esac ;; - isi68 | isi) - basic_machine=m68k-isi - os=-sysv - ;; - leon-*|leon[3-9]-*) - basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` - ;; - m68knommu) - basic_machine=m68k-unknown - os=-linux - ;; - m68knommu-*) - basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux - ;; - m88k-omron*) - basic_machine=m88k-omron - ;; - magnum | m3230) - basic_machine=mips-mips - os=-sysv - ;; - merlin) - basic_machine=ns32k-utek - os=-sysv - ;; - microblaze*) - basic_machine=microblaze-xilinx - ;; - mingw64) - basic_machine=x86_64-pc - os=-mingw64 - ;; - mingw32) - basic_machine=i686-pc - os=-mingw32 - ;; - mingw32ce) - basic_machine=arm-unknown - os=-mingw32ce - ;; miniframe) - basic_machine=m68000-convergent + cpu=m68000 + vendor=convergent ;; - *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; - mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` - ;; - mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown - ;; - monitor) - basic_machine=m68k-rom68k - os=-coff - ;; - morphos) - basic_machine=powerpc-unknown - os=-morphos - ;; - moxiebox) - basic_machine=moxie-unknown - os=-moxiebox - ;; - msdos) - basic_machine=i386-pc - os=-msdos - ;; - ms1-*) - basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` - ;; - msys) - basic_machine=i686-pc - os=-msys - ;; - mvs) - basic_machine=i370-ibm - os=-mvs - ;; - nacl) - basic_machine=le32-unknown - os=-nacl - ;; - ncr3000) - basic_machine=i486-ncr - os=-sysv4 - ;; - netbsd386) - basic_machine=i386-unknown - os=-netbsd - ;; - netwinder) - basic_machine=armv4l-rebel - os=-linux - ;; - news | news700 | news800 | news900) - basic_machine=m68k-sony - os=-newsos - ;; - news1000) - basic_machine=m68030-sony - os=-newsos + *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*) + cpu=m68k + vendor=atari + basic_os=mint ;; news-3600 | risc-news) - basic_machine=mips-sony - os=-newsos - ;; - necv70) - basic_machine=v70-nec - os=-sysv - ;; - next | m*-next ) - basic_machine=m68k-next - case $os in - -nextstep* ) + cpu=mips + vendor=sony + basic_os=newsos + ;; + next | m*-next) + cpu=m68k + vendor=next + case $basic_os in + openstep*) + ;; + nextstep*) ;; - -ns2*) - os=-nextstep2 + ns2*) + basic_os=nextstep2 ;; *) - os=-nextstep3 + basic_os=nextstep3 ;; esac ;; - nh3000) - basic_machine=m68k-harris - os=-cxux - ;; - nh[45]000) - basic_machine=m88k-harris - os=-cxux - ;; - nindy960) - basic_machine=i960-intel - os=-nindy - ;; - mon960) - basic_machine=i960-intel - os=-mon960 - ;; - nonstopux) - basic_machine=mips-compaq - os=-nonstopux - ;; np1) - basic_machine=np1-gould - ;; - neo-tandem) - basic_machine=neo-tandem - ;; - nse-tandem) - basic_machine=nse-tandem - ;; - nsr-tandem) - basic_machine=nsr-tandem + cpu=np1 + vendor=gould ;; op50n-* | op60c-*) - basic_machine=hppa1.1-oki - os=-proelf - ;; - openrisc | openrisc-*) - basic_machine=or32-unknown - ;; - os400) - basic_machine=powerpc-ibm - os=-os400 - ;; - OSE68000 | ose68000) - basic_machine=m68000-ericsson - os=-ose - ;; - os68k) - basic_machine=m68k-none - os=-os68k + cpu=hppa1.1 + vendor=oki + basic_os=proelf ;; pa-hitachi) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - paragon) - basic_machine=i860-intel - os=-osf - ;; - parisc) - basic_machine=hppa-unknown - os=-linux - ;; - parisc-*) - basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` - os=-linux + cpu=hppa1.1 + vendor=hitachi + basic_os=hiuxwe2 ;; pbd) - basic_machine=sparc-tti + cpu=sparc + vendor=tti ;; pbb) - basic_machine=m68k-tti - ;; - pc532 | pc532-*) - basic_machine=ns32k-pc532 - ;; - pc98) - basic_machine=i386-pc - ;; - pc98-*) - basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentium | p5 | k5 | k6 | nexgen | viac3) - basic_machine=i586-pc - ;; - pentiumpro | p6 | 6x86 | athlon | athlon_*) - basic_machine=i686-pc + cpu=m68k + vendor=tti ;; - pentiumii | pentium2 | pentiumiii | pentium3) - basic_machine=i686-pc + pc532) + cpu=ns32k + vendor=pc532 ;; - pentium4) - basic_machine=i786-pc + pn) + cpu=pn + vendor=gould ;; - pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + power) + cpu=power + vendor=ibm ;; - pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ps2) + cpu=i386 + vendor=ibm ;; - pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + rm[46]00) + cpu=mips + vendor=siemens ;; - pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + rtpc | rtpc-*) + cpu=romp + vendor=ibm ;; - pn) - basic_machine=pn-gould + sde) + cpu=mipsisa32 + vendor=sde + basic_os=${basic_os:-elf} + ;; + simso-wrs) + cpu=sparclite + vendor=wrs + basic_os=vxworks ;; - power) basic_machine=power-ibm + tower | tower-32) + cpu=m68k + vendor=ncr ;; - ppc | ppcbe) basic_machine=powerpc-unknown + vpp*|vx|vx-*) + cpu=f301 + vendor=fujitsu ;; - ppc-* | ppcbe-*) - basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + w65) + cpu=w65 + vendor=wdc ;; - ppcle | powerpclittle | ppc-le | powerpc-little) - basic_machine=powerpcle-unknown + w89k-*) + cpu=hppa1.1 + vendor=winbond + basic_os=proelf ;; - ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + none) + cpu=none + vendor=none ;; - ppc64) basic_machine=powerpc64-unknown + leon|leon[3-9]) + cpu=sparc + vendor=$basic_machine ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + leon-*|leon[3-9]-*) + cpu=sparc + vendor=`echo "$basic_machine" | sed 's/-.*//'` ;; - ppc64le | powerpc64little | ppc64-le | powerpc64-little) - basic_machine=powerpc64le-unknown + + *-*) + # shellcheck disable=SC2162 + IFS="-" read cpu vendor <&2 - exit 1 + # Recognize the canonical CPU types that are allowed with any + # company name. + case $cpu in + 1750a | 580 \ + | a29k \ + | aarch64 | aarch64_be \ + | abacus \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \ + | alphapca5[67] | alpha64pca5[67] \ + | am33_2.0 \ + | amdgcn \ + | arc | arceb \ + | arm | arm[lb]e | arme[lb] | armv* \ + | avr | avr32 \ + | asmjs \ + | ba \ + | be32 | be64 \ + | bfin | bpf | bs2000 \ + | c[123]* | c30 | [cjt]90 | c4x \ + | c8051 | clipper | craynv | csky | cydra \ + | d10v | d30v | dlx | dsp16xx \ + | e2k | elxsi | epiphany \ + | f30[01] | f700 | fido | fr30 | frv | ft32 | fx80 \ + | h8300 | h8500 \ + | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i*86 | i860 | i960 | ia16 | ia64 \ + | ip2k | iq2000 \ + | k1om \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle \ + | m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | m68k \ + | m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x \ + | m88110 | m88k | maxq | mb | mcore | mep | metag \ + | microblaze | microblazeel \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64eb | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa32r6 | mipsisa32r6el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64r6 | mipsisa64r6el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipsr5900 | mipsr5900el \ + | mipstx39 | mipstx39el \ + | mmix \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nfp \ + | nios | nios2 | nios2eb | nios2el \ + | none | np1 | ns16k | ns32k | nvptx \ + | open8 \ + | or1k* \ + | or32 \ + | orion \ + | picochip \ + | pdp10 | pdp11 | pj | pjl | pn | power \ + | powerpc | powerpc64 | powerpc64le | powerpcle | powerpcspe \ + | pru \ + | pyramid \ + | riscv | riscv32 | riscv64 \ + | rl78 | romp | rs6000 | rx \ + | s390 | s390x \ + | score \ + | sh | shl \ + | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] | sh[lb]e \ + | sh[1234]e[lb] | sh[12345][lb]e | sh[23]ele | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet \ + | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v | sv1 | sx* \ + | spu \ + | tahoe \ + | tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \ + | tron \ + | ubicom32 \ + | v70 | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \ + | vax \ + | visium \ + | w65 \ + | wasm32 | wasm64 \ + | we32k \ + | x86 | x86_64 | xc16x | xgate | xps100 \ + | xstormy16 | xtensa* \ + | ymp \ + | z8k | z80) + ;; + + *) + echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2 + exit 1 + ;; + esac ;; esac # Here we canonicalize certain aliases for manufacturers. -case $basic_machine in - *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` +case $vendor in + digital*) + vendor=dec ;; - *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + commodore*) + vendor=cbm ;; *) ;; @@ -1340,200 +1278,215 @@ # Decode manufacturer-specific aliases for certain operating systems. -if [ x"$os" != x"" ] +if [ x$basic_os != x ] then + +# First recognize some ad-hoc caes, or perhaps split kernel-os, or else just +# set os. +case $basic_os in + gnu/linux*) + kernel=linux + os=`echo $basic_os | sed -e 's|gnu/linux|gnu|'` + ;; + nto-qnx*) + kernel=nto + os=`echo $basic_os | sed -e 's|nto-qnx|qnx|'` + ;; + *-*) + # shellcheck disable=SC2162 + IFS="-" read kernel os <&2 - exit 1 + # No normalization, but not necessarily accepted, that comes below. ;; esac + else # Here we handle the default operating systems that come with various machines. @@ -1546,261 +1499,352 @@ # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. -case $basic_machine in +kernel= +case $cpu-$vendor in score-*) - os=-elf + os=elf ;; spu-*) - os=-elf + os=elf ;; *-acorn) - os=-riscix1.2 + os=riscix1.2 ;; arm*-rebel) - os=-linux + kernel=linux + os=gnu ;; arm*-semi) - os=-aout + os=aout ;; c4x-* | tic4x-*) - os=-coff + os=coff ;; c8051-*) - os=-elf + os=elf + ;; + clipper-intergraph) + os=clix ;; hexagon-*) - os=-elf + os=elf ;; tic54x-*) - os=-coff + os=coff ;; tic55x-*) - os=-coff + os=coff ;; tic6x-*) - os=-coff + os=coff ;; # This must come before the *-dec entry. pdp10-*) - os=-tops20 + os=tops20 ;; pdp11-*) - os=-none + os=none ;; *-dec | vax-*) - os=-ultrix4.2 + os=ultrix4.2 ;; m68*-apollo) - os=-domain + os=domain ;; i386-sun) - os=-sunos4.0.2 + os=sunos4.0.2 ;; m68000-sun) - os=-sunos3 + os=sunos3 ;; m68*-cisco) - os=-aout + os=aout ;; mep-*) - os=-elf + os=elf ;; mips*-cisco) - os=-elf + os=elf ;; mips*-*) - os=-elf + os=elf ;; or32-*) - os=-coff + os=coff ;; *-tti) # must be before sparc entry or we get the wrong os. - os=-sysv3 + os=sysv3 ;; sparc-* | *-sun) - os=-sunos4.1.1 + os=sunos4.1.1 ;; - *-be) - os=-beos + pru-*) + os=elf ;; - *-haiku) - os=-haiku + *-be) + os=beos ;; *-ibm) - os=-aix + os=aix ;; *-knuth) - os=-mmixware + os=mmixware ;; *-wec) - os=-proelf + os=proelf ;; *-winbond) - os=-proelf + os=proelf ;; *-oki) - os=-proelf + os=proelf ;; *-hp) - os=-hpux + os=hpux ;; *-hitachi) - os=-hiux + os=hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) - os=-sysv + os=sysv ;; *-cbm) - os=-amigaos + os=amigaos ;; *-dg) - os=-dgux + os=dgux ;; *-dolphin) - os=-sysv3 + os=sysv3 ;; m68k-ccur) - os=-rtu + os=rtu ;; m88k-omron*) - os=-luna + os=luna ;; - *-next ) - os=-nextstep + *-next) + os=nextstep ;; *-sequent) - os=-ptx + os=ptx ;; *-crds) - os=-unos + os=unos ;; *-ns) - os=-genix + os=genix ;; i370-*) - os=-mvs - ;; - *-next) - os=-nextstep3 + os=mvs ;; *-gould) - os=-sysv + os=sysv ;; *-highlevel) - os=-bsd + os=bsd ;; *-encore) - os=-bsd + os=bsd ;; *-sgi) - os=-irix + os=irix ;; *-siemens) - os=-sysv4 + os=sysv4 ;; *-masscomp) - os=-rtu + os=rtu ;; f30[01]-fujitsu | f700-fujitsu) - os=-uxpv + os=uxpv ;; *-rom68k) - os=-coff + os=coff ;; *-*bug) - os=-coff + os=coff ;; *-apple) - os=-macos + os=macos ;; *-atari*) - os=-mint + os=mint + ;; + *-wrs) + os=vxworks ;; *) - os=-none + os=none ;; esac + fi +# Now, validate our (potentially fixed-up) OS. +case $os in + # Sometimes we do "kernel-abi", so those need to count as OSes. + musl* | newlib* | uclibc*) + ;; + # Likewise for "kernel-libc" + eabi | eabihf | gnueabi | gnueabihf) + ;; + # Now accept the basic system types. + # The portable systems comes first. + # Each alternative MUST end in a * to match a version number. + gnu* | android* | bsd* | mach* | minix* | genix* | ultrix* | irix* \ + | *vms* | esix* | aix* | cnk* | sunos | sunos[34]* \ + | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \ + | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \ + | hiux* | abug | nacl* | netware* | windows* \ + | os9* | macos* | osx* | ios* \ + | mpw* | magic* | mmixware* | mon960* | lnews* \ + | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \ + | aos* | aros* | cloudabi* | sortix* | twizzler* \ + | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \ + | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \ + | mirbsd* | netbsd* | dicos* | openedition* | ose* \ + | bitrig* | openbsd* | solidbsd* | libertybsd* | os108* \ + | ekkobsd* | freebsd* | riscix* | lynxos* | os400* \ + | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \ + | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \ + | udi* | lites* | ieee* | go32* | aux* | hcos* \ + | chorusrdb* | cegcc* | glidix* \ + | cygwin* | msys* | pe* | moss* | proelf* | rtems* \ + | midipix* | mingw32* | mingw64* | mint* \ + | uxpv* | beos* | mpeix* | udk* | moxiebox* \ + | interix* | uwin* | mks* | rhapsody* | darwin* \ + | openstep* | oskit* | conix* | pw32* | nonstopux* \ + | storm-chaos* | tops10* | tenex* | tops20* | its* \ + | os2* | vos* | palmos* | uclinux* | nucleus* | morphos* \ + | scout* | superux* | sysv* | rtmk* | tpf* | windiss* \ + | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \ + | skyos* | haiku* | rdos* | toppers* | drops* | es* \ + | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ + | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \ + | nsk* | powerunix* | genode* | zvmoe* ) + ;; + # This one is extra strict with allowed versions + sco3.2v2 | sco3.2v[4-9]* | sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + ;; + none) + ;; + *) + echo Invalid configuration \`"$1"\': OS \`"$os"\' not recognized 1>&2 + exit 1 + ;; +esac + +# As a final step for OS-related things, validate the OS-kernel combination +# (given a valid OS), if there is a kernel. +case $kernel-$os in + linux-gnu* | linux-dietlibc* | linux-android* | linux-newlib* | linux-musl* | linux-uclibc* ) + ;; + -dietlibc* | -newlib* | -musl* | -uclibc* ) + # These are just libc implementations, not actual OSes, and thus + # require a kernel. + echo "Invalid configuration \`$1': libc \`$os' needs explicit kernel." 1>&2 + exit 1 + ;; + kfreebsd*-gnu* | kopensolaris*-gnu*) + ;; + nto-qnx*) + ;; + *-eabi* | *-gnueabi*) + ;; + -*) + # Blank kernel with real OS is always fine. + ;; + *-*) + echo "Invalid configuration \`$1': Kernel \`$kernel' not known to work with OS \`$os'." 1>&2 + exit 1 + ;; +esac + # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. -vendor=unknown -case $basic_machine in - *-unknown) - case $os in - -riscix*) +case $vendor in + unknown) + case $cpu-$os in + *-riscix*) vendor=acorn ;; - -sunos*) + *-sunos*) vendor=sun ;; - -cnk*|-aix*) + *-cnk* | *-aix*) vendor=ibm ;; - -beos*) + *-beos*) vendor=be ;; - -hpux*) + *-hpux*) vendor=hp ;; - -mpeix*) + *-mpeix*) vendor=hp ;; - -hiux*) + *-hiux*) vendor=hitachi ;; - -unos*) + *-unos*) vendor=crds ;; - -dgux*) + *-dgux*) vendor=dg ;; - -luna*) + *-luna*) vendor=omron ;; - -genix*) + *-genix*) vendor=ns ;; - -mvs* | -opened*) + *-clix*) + vendor=intergraph + ;; + *-mvs* | *-opened*) + vendor=ibm + ;; + *-os400*) vendor=ibm ;; - -os400*) + s390-* | s390x-*) vendor=ibm ;; - -ptx*) + *-ptx*) vendor=sequent ;; - -tpf*) + *-tpf*) vendor=ibm ;; - -vxsim* | -vxworks* | -windiss*) + *-vxsim* | *-vxworks* | *-windiss*) vendor=wrs ;; - -aux*) + *-aux*) vendor=apple ;; - -hms*) + *-hms*) vendor=hitachi ;; - -mpw* | -macos*) + *-mpw* | *-macos*) vendor=apple ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + *-*mint | *-mint[0-9]* | *-*MiNT | *-MiNT[0-9]*) vendor=atari ;; - -vos*) + *-vos*) vendor=stratus ;; esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac -echo $basic_machine$os +echo "$cpu-$vendor-${kernel:+$kernel-}$os" exit # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff -Nru geos-3.9.0/configure geos-3.9.1/configure --- geos-3.9.0/configure 2020-12-09 20:03:28.000000000 +0000 +++ geos-3.9.1/configure 2021-02-10 18:21:42.000000000 +0000 @@ -796,7 +796,6 @@ enable_inline enable_cassert enable_glibcxx_debug -enable_overlayng ' ac_precious_vars='build_alias host_alias @@ -1446,7 +1445,6 @@ --disable-inline Disable inlining --disable-cassert Disable assertion checking --enable-glibcxx-debug Enable libstdc++ debug mode - --disable-overlayng Disable use of new overlay Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] @@ -17676,25 +17674,6 @@ -# Check whether --enable-overlayng was given. -if test "${enable_overlayng+set}" = set; then : - enableval=$enable_overlayng; case "${enableval}" in - yes) use_overlayng=true ;; - no) use_overlayng=false ;; - *) as_fn_error $? "bad value ${enableval} for --disable-overlayng" "$LINENO" 5 ;; - esac -else - use_overlayng=true - -fi - - -if test x"$use_overlayng" = xtrue; then - OVERLAYNG_FLAGS="" -else - OVERLAYNG_FLAGS="-DDISABLE_OVERLAYNG" -fi - ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -18742,7 +18721,7 @@ NUMERICFLAGS="$NUMERICFLAGS -ffp-contract=off" HUSHWARNING="-DUSE_UNSTABLE_GEOS_CPP_API" -DEFAULTFLAGS="${WARNFLAGS} ${NUMERICFLAGS} ${HUSHWARNING} ${OVERLAYNG_FLAGS}" +DEFAULTFLAGS="${WARNFLAGS} ${NUMERICFLAGS} ${HUSHWARNING}" AM_CXXFLAGS="${AM_CXXFLAGS} ${DEFAULTFLAGS}" AM_CFLAGS="${AM_CFLAGS} ${DEFAULTFLAGS}" @@ -19053,7 +19032,6 @@ - ac_config_files="$ac_config_files tools/geos.pc" @@ -21781,3 +21759,5 @@ fi + + diff -Nru geos-3.9.0/configure.ac geos-3.9.1/configure.ac --- geos-3.9.0/configure.ac 2020-12-09 00:07:19.000000000 +0000 +++ geos-3.9.1/configure.ac 2021-02-10 18:10:27.000000000 +0000 @@ -156,22 +156,22 @@ dnl -------------------------------------------------------------------- dnl - check whether user has requested overlayng dnl -------------------------------------------------------------------- - -AC_ARG_ENABLE([overlayng], - [ --disable-overlayng Disable use of new overlay], - [case "${enableval}" in - yes) use_overlayng=true ;; - no) use_overlayng=false ;; - *) AC_MSG_ERROR(bad value ${enableval} for --disable-overlayng) ;; - esac], - [use_overlayng=true] -) - -if test x"$use_overlayng" = xtrue; then - OVERLAYNG_FLAGS="" -else - OVERLAYNG_FLAGS="-DDISABLE_OVERLAYNG" -fi +dnl +dnl AC_ARG_ENABLE([overlayng], +dnl [ --disable-overlayng Disable use of new overlay], +dnl [case "${enableval}" in +dnl yes) use_overlayng=true ;; +dnl no) use_overlayng=false ;; +dnl *) AC_MSG_ERROR(bad value ${enableval} for --disable-overlayng) ;; +dnl esac], +dnl [use_overlayng=true] +dnl ) +dnl +dnl if test x"$use_overlayng" = xtrue; then +dnl OVERLAYNG_FLAGS="" +dnl else +dnl OVERLAYNG_FLAGS="-DDISABLE_OVERLAYNG" +dnl fi dnl -------------------------------------------------------------------- dnl - Append default C++ and C flags @@ -223,7 +223,7 @@ dnl ----------------------------------------------------------------------------- HUSHWARNING="-DUSE_UNSTABLE_GEOS_CPP_API" -DEFAULTFLAGS="${WARNFLAGS} ${NUMERICFLAGS} ${HUSHWARNING} ${OVERLAYNG_FLAGS}" +DEFAULTFLAGS="${WARNFLAGS} ${NUMERICFLAGS} ${HUSHWARNING}" AM_CXXFLAGS="${AM_CXXFLAGS} ${DEFAULTFLAGS}" AM_CFLAGS="${AM_CFLAGS} ${DEFAULTFLAGS}" @@ -283,17 +283,6 @@ ;; esac -dnl -------------------------------------------------------------------- -dnl - check for boost -dnl -------------------------------------------------------------------- - -dnl -- AX_BOOST(1.32) -dnl -- if test "x$ax_cv_boost_unit_test_framework" = "xyes"; then -dnl -- use_boost_utf=yes -dnl -- else -dnl -- use_boost_utf=no -dnl -- fi -dnl -- AM_CONDITIONAL(ENABLE_BOOST_UTF, [test "x$use_boost_utf" = "xyes"]) dnl things to substitute in output ---------------------------------------- AC_SUBST(VERSION) @@ -435,7 +424,9 @@ tools/astyle/Makefile ]) -dnl -- echo "---------------------------------------" -dnl -- echo "Boost UTF: $use_boost_utf" -dnl -- echo "OverlayNG: $use_overlayng" -dnl -- echo "---------------------------------------" +dnl AC_MSG_RESULT([ ------------ GEOS Build ------------ ]) +dnl AC_MSG_RESULT([ Version: ${VERSION}]) +dnl AC_MSG_RESULT([ Inlining: ${enable_inline}]) +dnl AC_MSG_RESULT([ ------------------------------------ ]) + + diff -Nru geos-3.9.0/debian/changelog geos-3.9.1/debian/changelog --- geos-3.9.0/debian/changelog 2020-12-17 10:00:00.000000000 +0000 +++ geos-3.9.1/debian/changelog 2021-10-02 09:47:37.000000000 +0000 @@ -1,8 +1,21 @@ -geos (3.9.0-1~focal0) focal; urgency=medium +geos (3.9.1-1~focal0) focal; urgency=medium - * No change rebuild for focal. + * No change rebuild for Focal. - -- Angelos Tzotsos Thu, 17 Dec 2020 12:00:00 +0200 + -- Angelos Tzotsos Sat, 03 Oct 2021 13:00:00 +0300 + +geos (3.9.1-1) unstable; urgency=medium + + * Move from experimental to unstable. + + -- Bas Couwenberg Sun, 15 Aug 2021 17:49:39 +0200 + +geos (3.9.1-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update symbols for amd64. + + -- Bas Couwenberg Thu, 11 Feb 2021 05:47:10 +0100 geos (3.9.0-1) unstable; urgency=medium diff -Nru geos-3.9.0/debian/control geos-3.9.1/debian/control --- geos-3.9.0/debian/control 2020-12-10 04:25:24.000000000 +0000 +++ geos-3.9.1/debian/control 2021-08-15 15:49:36.000000000 +0000 @@ -29,7 +29,7 @@ Package: libgeos++-dev Architecture: any Section: libdevel -Depends: libgeos-3.9.0 (= ${binary:Version}), +Depends: libgeos-3.9.1 (= ${binary:Version}), libgeos-dev, ${misc:Depends} Suggests: libgdal-doc @@ -69,7 +69,7 @@ This package contains the C library. A C++ library is provided by the libgeos-* package. -Package: libgeos-3.9.0 +Package: libgeos-3.9.1 Architecture: any Multi-Arch: same Section: libs diff -Nru geos-3.9.0/debian/libgeos-3.9.0.install geos-3.9.1/debian/libgeos-3.9.0.install --- geos-3.9.0/debian/libgeos-3.9.0.install 2020-12-10 04:25:15.000000000 +0000 +++ geos-3.9.1/debian/libgeos-3.9.0.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -usr/lib/*/libgeos-* diff -Nru geos-3.9.0/debian/libgeos-3.9.0.symbols geos-3.9.1/debian/libgeos-3.9.0.symbols --- geos-3.9.0/debian/libgeos-3.9.0.symbols 2020-12-10 04:34:34.000000000 +0000 +++ geos-3.9.1/debian/libgeos-3.9.0.symbols 1970-01-01 00:00:00.000000000 +0000 @@ -1,5333 +0,0 @@ -# SymbolsHelper-Confirmed: 3.9.0 amd64 -libgeos-3.9.0.so #PACKAGE# #MINVER# -* Build-Depends-Package: libgeos++-dev - (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 - _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 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitor5visitEPPNS1_8QuadEdgeE@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD0Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD1Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD2Ev@Base 3.4.2 - _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitor5visitEPPNS1_8QuadEdgeE@Base 3.5.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 - _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 - _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 - _ZN4geos2io15StringTokenizer7getNValEv@Base 3.4.2 - _ZN4geos2io15StringTokenizer7getSValB5cxx11Ev@Base 3.5.1 - _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 - _ZN4geos2io21ByteOrderDataInStream10readDoubleEv@Base 3.4.2 - _ZN4geos2io21ByteOrderDataInStream11setInStreamEPSi@Base 3.4.2 - _ZN4geos2io21ByteOrderDataInStream7readIntEv@Base 3.4.2 - _ZN4geos2io21ByteOrderDataInStream8readByteEv@Base 3.4.2 - _ZN4geos2io21ByteOrderDataInStream8readLongEv@Base 3.4.2 - _ZN4geos2io21ByteOrderDataInStream8setOrderEi@Base 3.4.2 - _ZN4geos2io21ByteOrderDataInStreamC1EPSi@Base 3.4.2 - _ZN4geos2io21ByteOrderDataInStreamC2EPSi@Base 3.4.2 - _ZN4geos2io21ByteOrderDataInStreamD1Ev@Base 3.4.2 - _ZN4geos2io21ByteOrderDataInStreamD2Ev@Base 3.4.2 - _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 - _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 - _ZN4geos2io9WKBReader22readCoordinateSequenceEi@Base 3.4.2 - _ZN4geos2io9WKBReader22readGeometryCollectionEv@Base 3.4.2 - _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 - _ZN4geos2io9WKBWriter14setIncludeSRIDEb@Base 3.9.0 - _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 - _ZN4geos2io9WKBWriter9writeSRIDEi@Base 3.4.2 - _ZN4geos2io9WKBWriterC1Ehib@Base 3.9.0 - _ZN4geos2io9WKBWriterC2Ehib@Base 3.9.0 - _ZN4geos2io9WKBWriterD0Ev@Base 3.4.2 - _ZN4geos2io9WKBWriterD1Ev@Base 3.4.2 - _ZN4geos2io9WKBWriterD2Ev@Base 3.4.2 - _ZN4geos2io9WKTReader11getNextWordB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 - _ZN4geos2io9WKTReader12isNumberNextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader13getNextCloserB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 - _ZN4geos2io9WKTReader13getNextNumberEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader13readPointTextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader14getCoordinatesEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader15readPolygonTextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader18readLineStringTextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader18readLinearRingTextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader18readMultiPointTextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader20getNextCloserOrCommaB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 - (subst)_ZN4geos2io9WKTReader20getNextEmptyOrOpenerB5cxx11EPNS0_15StringTokenizerER{size_t}@Base 3.9.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos2io9WKTReader20getPreciseCoordinateEPNS0_15StringTokenizerERNS_4geom10CoordinateERj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos2io9WKTReader20getPreciseCoordinateEPNS0_15StringTokenizerERNS_4geom10CoordinateERm@Base 3.7.0 - _ZN4geos2io9WKTReader20readMultiPolygonTextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader22readGeometryTaggedTextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader23readMultiLineStringTextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader26readGeometryCollectionTextEPNS0_15StringTokenizerE@Base 3.4.2 - _ZN4geos2io9WKTReader4readERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos2io9WKTReaderC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos2io9WKTReaderC1ERKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos2io9WKTReaderC1Ev@Base 3.4.2 - _ZN4geos2io9WKTReaderC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos2io9WKTReaderC2ERKNS_4geom15GeometryFactoryE@Base 3.4.2 - _ZN4geos2io9WKTReaderC2Ev@Base 3.4.2 - _ZN4geos2io9WKTReaderD1Ev@Base 3.4.2 - _ZN4geos2io9WKTReaderD2Ev@Base 3.4.2 - _ZN4geos2io9WKTWriter11writeNumberB5cxx11Ed@Base 3.5.1 - _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 - _ZN4geos2io9WKTWriter6indentEiPNS0_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 - _ZN4geos4geom10Coordinate7setNullEv@Base 3.4.2 - _ZN4geos4geom10CoordinateC1Eddd@Base 3.4.2 - _ZN4geos4geom10CoordinateC2Eddd@Base 3.4.2 - _ZN4geos4geom10LineString15normalizeClosedEv@Base 3.9.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 - _ZN4geos4geom11LineSegment13closestPointsEPKS1_@Base 3.4.2 - _ZN4geos4geom11LineSegment13closestPointsERKS1_@Base 3.4.2 - _ZN4geos4geom11LineSegment14setCoordinatesERKNS0_10CoordinateES4_@Base 3.4.2 - _ZN4geos4geom11LineSegment14setCoordinatesERKS1_@Base 3.4.2 - _ZN4geos4geom11LineSegment7reverseEv@Base 3.4.2 - _ZN4geos4geom11LineSegment9normalizeEv@Base 3.4.2 - _ZN4geos4geom11LineSegmentC1ERKNS0_10CoordinateES4_@Base 3.4.2 - _ZN4geos4geom11LineSegmentC1Edddd@Base 3.4.2 - _ZN4geos4geom11LineSegmentC1Ev@Base 3.4.2 - _ZN4geos4geom11LineSegmentC2ERKNS0_10CoordinateES4_@Base 3.4.2 - _ZN4geos4geom11LineSegmentC2Edddd@Base 3.4.2 - _ZN4geos4geom11LineSegmentC2Ev@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom11LineSegmentixEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom11LineSegmentixEm@Base 3.7.0 - _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 - _ZN4geos4geom12MultiPolygonC1ERKS1_@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 - _ZN4geos4geom12MultiPolygonC2ERKS1_@Base 3.4.2 - _ZN4geos4geom12MultiPolygonD0Ev@Base 3.4.2 - _ZN4geos4geom12MultiPolygonD1Ev@Base 3.4.2 - _ZN4geos4geom12MultiPolygonD2Ev@Base 3.4.2 - _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 - _ZN4geos4geom15MultiLineStringC1ERKS1_@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 - _ZN4geos4geom15MultiLineStringC2ERKS1_@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 - _ZN4geos4geom17TrianglePredicate16isInCircleRobustERKNS0_10CoordinateES4_S4_S4_@Base 3.4.2 - _ZN4geos4geom17TrianglePredicate19isInCircleNonRobustERKNS0_10CoordinateES4_S4_S4_@Base 3.4.2 - _ZN4geos4geom17TrianglePredicate20isInCircleNormalizedERKNS0_10CoordinateES4_S4_S4_@Base 3.4.2 - _ZN4geos4geom17TrianglePredicate7triAreaERKNS0_10CoordinateES4_S4_@Base 3.4.2 - _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 - _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 - _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 - (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 - _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 - _ZN4geos4geom4util16GeometryCombiner14extractFactoryERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.0 - _ZN4geos4geom4util16GeometryCombiner15extractElementsEPKNS0_8GeometryERSt6vectorIS5_SaIS5_EE@Base 3.8.0 - _ZN4geos4geom4util16GeometryCombiner7combineEPKNS0_8GeometryES5_@Base 3.4.2 - _ZN4geos4geom4util16GeometryCombiner7combineEPKNS0_8GeometryES5_S5_@Base 3.4.2 - _ZN4geos4geom4util16GeometryCombiner7combineERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.0 - _ZN4geos4geom4util16GeometryCombiner7combineERKSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS5_EESaIS8_EE@Base 3.8.0 - _ZN4geos4geom4util16GeometryCombiner7combineEv@Base 3.4.2 - _ZN4geos4geom4util16GeometryCombinerC1ERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.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 - _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 - _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 - _ZN4geos4geom8Envelope10intersectsERKNS0_10CoordinateES4_S4_S4_@Base 3.4.2 - _ZN4geos4geom8Envelope15expandToIncludeEPKS1_@Base 3.4.2 - _ZN4geos4geom8Envelope15expandToIncludeERKNS0_10CoordinateE@Base 3.4.2 - _ZN4geos4geom8Envelope15expandToIncludeERKS1_@Base 3.9.0 - _ZN4geos4geom8Envelope15expandToIncludeEdd@Base 3.4.2 - _ZN4geos4geom8Envelope20distanceToCoordinateERKNS0_10CoordinateES4_S4_@Base 3.9.0 - _ZN4geos4geom8Envelope27distanceSquaredToCoordinateERKNS0_10CoordinateES4_S4_@Base 3.9.0 - _ZN4geos4geom8Envelope4initERKNS0_10CoordinateE@Base 3.4.2 - _ZN4geos4geom8Envelope4initERKNS0_10CoordinateES4_@Base 3.4.2 - _ZN4geos4geom8Envelope4initEdddd@Base 3.4.2 - _ZN4geos4geom8Envelope4initEv@Base 3.4.2 - _ZN4geos4geom8Envelope5splitERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 - _ZN4geos4geom8Envelope8distanceEdddd@Base 3.4.2 - _ZN4geos4geom8Envelope8expandByEdd@Base 3.4.2 - _ZN4geos4geom8Envelope9setToNullEv@Base 3.4.2 - _ZN4geos4geom8Envelope9translateEdd@Base 3.4.2 - _ZN4geos4geom8EnvelopeC1ERKNS0_10CoordinateE@Base 3.4.2 - _ZN4geos4geom8EnvelopeC1ERKNS0_10CoordinateES4_@Base 3.4.2 - _ZN4geos4geom8EnvelopeC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4geom8EnvelopeC1ERKS1_@Base 3.4.2 - _ZN4geos4geom8EnvelopeC1Edddd@Base 3.4.2 - _ZN4geos4geom8EnvelopeC1Ev@Base 3.4.2 - _ZN4geos4geom8EnvelopeC2ERKNS0_10CoordinateE@Base 3.4.2 - _ZN4geos4geom8EnvelopeC2ERKNS0_10CoordinateES4_@Base 3.4.2 - _ZN4geos4geom8EnvelopeC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 - _ZN4geos4geom8EnvelopeC2ERKS1_@Base 3.4.2 - _ZN4geos4geom8EnvelopeC2Edddd@Base 3.4.2 - _ZN4geos4geom8EnvelopeC2Ev@Base 3.4.2 - _ZN4geos4geom8EnvelopeaSERKS1_@Base 3.4.2 - _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 - _ZN4geos4geom8Quadrant10isNorthernEi@Base 3.9.0 - _ZN4geos4geom8Quadrant10isOppositeEii@Base 3.9.0 - _ZN4geos4geom8Quadrant13isInHalfPlaneEii@Base 3.9.0 - _ZN4geos4geom8Quadrant15commonHalfPlaneEii@Base 3.9.0 - _ZN4geos4geom8Quadrant8quadrantERKNS0_10CoordinateES4_@Base 3.9.0 - _ZN4geos4geom8Quadrant8quadrantEdd@Base 3.9.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 - _ZN4geos4geom8Triangle8inCentreERNS0_10CoordinateE@Base 3.4.2 - _ZN4geos4geom9Dimension16toDimensionValueEc@Base 3.4.2 - _ZN4geos4geom9Dimension17toDimensionSymbolEi@Base 3.4.2 - _ZN4geos4geomeqERKNS0_10CoordinateES3_@Base 3.4.2 - _ZN4geos4geomeqERKNS0_11LineSegmentES3_@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_11LineSegmentE@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 - _ZN4geos4geomneERKNS0_10CoordinateES3_@Base 3.4.2 - _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 - (arch=amd64 arm64 x32)_ZN4geos4util21IllegalStateExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.9.0 - (arch=amd64 arm64 x32)_ZN4geos4util21IllegalStateExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.9.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 - _ZN4geos5index5chain13MonotoneChain11getEnvelopeEd@Base 3.9.0 - _ZN4geos5index5chain13MonotoneChain11getEnvelopeEv@Base 3.9.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index5chain13MonotoneChain13computeSelectERKNS_4geom8EnvelopeEjjRNS1_25MonotoneChainSelectActionE@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index5chain13MonotoneChain13computeSelectERKNS_4geom8EnvelopeEmmRNS1_25MonotoneChainSelectActionE@Base 3.7.0 - _ZN4geos5index5chain13MonotoneChain15computeOverlapsEPS2_PNS1_26MonotoneChainOverlapActionE@Base 3.4.2 - _ZN4geos5index5chain13MonotoneChain15computeOverlapsEPS2_dPNS1_26MonotoneChainOverlapActionE@Base 3.9.0 - (subst)_ZN4geos5index5chain13MonotoneChain15computeOverlapsE{size_t}{size_t}RS2_{size_t}{size_t}dRNS1_26MonotoneChainOverlapActionE@Base 3.9.0 - _ZN4geos5index5chain13MonotoneChain6selectERKNS_4geom8EnvelopeERNS1_25MonotoneChainSelectActionE@Base 3.4.2 - (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 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index5chain20MonotoneChainBuilder12findChainEndERKNS_4geom18CoordinateSequenceEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index5chain20MonotoneChainBuilder12findChainEndERKNS_4geom18CoordinateSequenceEm@Base 3.7.0 - _ZN4geos5index5chain20MonotoneChainBuilder9getChainsEPKNS_4geom18CoordinateSequenceEPv@Base 3.4.2 - _ZN4geos5index5chain20MonotoneChainBuilder9getChainsEPKNS_4geom18CoordinateSequenceEPvRSt6vectorISt10unique_ptrINS1_13MonotoneChainESt14default_deleteISA_EESaISD_EE@Base 3.8.0 - (subst)_ZN4geos5index5chain25MonotoneChainSelectAction6selectERNS1_13MonotoneChainE{size_t}@Base 3.8.0 - _ZN4geos5index5chain26MonotoneChainOverlapAction7overlapERKNS_4geom11LineSegmentES6_@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index5chain26MonotoneChainOverlapAction7overlapERNS1_13MonotoneChainEjS4_j@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index5chain26MonotoneChainOverlapAction7overlapERNS1_13MonotoneChainEmS4_m@Base 3.7.0 - _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 - (subst)_ZN4geos5index7strtree15AbstractSTRtreeC1E{size_t}@Base 3.9.0 - (subst)_ZN4geos5index7strtree15AbstractSTRtreeC2E{size_t}@Base 3.9.0 - _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 - _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 - _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 - _ZN4geos5index7strtree8Interval15expandToIncludeEPKS2_@Base 3.5.0 - _ZN4geos5index7strtree8Interval9getCentreEv@Base 3.4.2 - _ZN4geos5index7strtree8IntervalC1Edd@Base 3.4.2 - _ZN4geos5index7strtree8IntervalC2Edd@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 - _ZN4geos5shape7fractal11HilbertCode10checkLevelEi@Base 3.9.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|arch=armel armhf)_ZN4geos6detail11make_uniqueINS_4geom27FixedSizeCoordinateSequenceILj1EEEJRjEEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@Base 3.9.0 - (optional=templinst|arch=armel armhf)_ZN4geos6detail11make_uniqueINS_4geom27FixedSizeCoordinateSequenceILj2EEEJRjEEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@Base 3.9.0 - (optional=templinst|arch=armel armhf)_ZN4geos6detail11make_uniqueINS_4geom27FixedSizeCoordinateSequenceILj3EEEJRjEEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@Base 3.9.0 - (optional=templinst|arch=armel armhf)_ZN4geos6detail11make_uniqueINS_4geom27FixedSizeCoordinateSequenceILj4EEEJRjEEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@Base 3.9.0 - (optional=templinst|arch=armel armhf)_ZN4geos6detail11make_uniqueINS_4geom27FixedSizeCoordinateSequenceILj5EEEJRjEEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@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 - _ZN4geos6noding11SegmentNode9compareToERKS1_@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 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos6noding12MCIndexNoder20SegmentOverlapAction7overlapERNS_5index5chain13MonotoneChainEjS6_j@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos6noding12MCIndexNoder20SegmentOverlapAction7overlapERNS_5index5chain13MonotoneChainEmS6_m@Base 3.7.0 - _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD0Ev@Base 3.4.2 - _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD1Ev@Base 3.4.2 - _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD2Ev@Base 3.4.2 - _ZN4geos6noding12MCIndexNoder3addEPNS0_13SegmentStringE@Base 3.4.2 - _ZN4geos6noding12MCIndexNoder8getIndexEv@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 - _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 - _ZN4geos6noding15SegmentNodeListD1Ev@Base 3.4.2 - _ZN4geos6noding15SegmentNodeListD2Ev@Base 3.4.2 - _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 - _ZN4geos6noding18NodedSegmentString10safeOctantERKNS_4geom10CoordinateES5_@Base 3.4.2 - _ZN4geos6noding18NodedSegmentString11getNodeListEv@Base 3.4.2 - (subst)_ZN4geos6noding18NodedSegmentString15addIntersectionEPNS_9algorithm15LineIntersectorE{size_t}{size_t}{size_t}@Base 3.8.0 - (subst)_ZN4geos6noding18NodedSegmentString15addIntersectionERKNS_4geom10CoordinateE{size_t}@Base 3.8.0 - (subst)_ZN4geos6noding18NodedSegmentString16addIntersectionsEPNS_9algorithm15LineIntersectorE{size_t}{size_t}@Base 3.8.0 - _ZN4geos6noding18NodedSegmentString18getNodedSubstringsERKSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 - _ZN4geos6noding18NodedSegmentString18getNodedSubstringsERKSt6vectorIPNS0_13SegmentStringESaIS4_EEPS6_@Base 3.4.2 - _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 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_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)_ZN4geos6noding24NodingIntersectionFinder12isEndSegmentEPKNS0_13SegmentStringE{size_t}@Base 3.8.0 - (subst)_ZN4geos6noding24NodingIntersectionFinder20processIntersectionsEPNS0_13SegmentStringE{size_t}S3_{size_t}@Base 3.8.0 - _ZN4geos6noding24NodingIntersectionFinder28isInteriorVertexIntersectionERKNS_4geom10CoordinateES5_S5_S5_bbbb@Base 3.8.0 - _ZN4geos6noding24NodingIntersectionFinder28isInteriorVertexIntersectionERKNS_4geom10CoordinateES5_bb@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 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapAction7overlapERNS_5index5chain13MonotoneChainEjS6_j@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapAction7overlapERNS_5index5chain13MonotoneChainEmS6_m@Base 3.7.0 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD0Ev@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD1Ev@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD2Ev@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersector7processEPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersectorC1Ev@Base 3.4.2 - _ZN4geos6noding34MCIndexSegmentSetMutualIntersectorC2Ev@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 - _ZN4geos6noding9snapround17SnapRoundingNoder5roundERKNS_4geom10CoordinateERS4_@Base 3.9.0 - _ZN4geos6noding9snapround17SnapRoundingNoder5roundERKSt6vectorINS_4geom10CoordinateESaIS5_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)_ZN4geos6noding9snapround18HotPixelSnapAction6selectERNS_5index5chain13MonotoneChainE{size_t}@Base 3.8.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 - _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 - _ZN4geos9algorithm10ConvexHull18extractCoordinatesEPKNS_4geom8GeometryE@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 - _ZN4geos9algorithm10ConvexHullC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm10ConvexHullC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm10ConvexHullD1Ev@Base 3.4.2 - _ZN4geos9algorithm10ConvexHullD2Ev@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 - _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 - _ZN4geos9algorithm14CGAlgorithmsDD22orientationIndexFilterEdddddd@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 - _ZN4geos9algorithm15LineIntersector17zGetOrInterpolateERKNS_4geom10CoordinateES5_S5_@Base 3.9.0 - _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 - _ZN4geos9algorithm15LineIntersector21zGetOrInterpolateCopyERKNS_4geom10CoordinateES5_S5_@Base 3.9.0 - _ZN4geos9algorithm15LineIntersector22isInteriorIntersectionEv@Base 3.4.2 - (subst)_ZN4geos9algorithm15LineIntersector22isInteriorIntersectionE{size_t}@Base 3.9.0 - (subst)_ZN4geos9algorithm15LineIntersector27getIntersectionAlongSegmentE{size_t}{size_t}@Base 3.9.0 - _ZN4geos9algorithm15LineIntersector28computeCollinearIntersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 - _ZN4geos9algorithm15LineIntersector4zGetERKNS_4geom10CoordinateES5_@Base 3.9.0 - _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 - _ZN4geos9algorithm18InteriorPointPoint3addEPKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9algorithm18InteriorPointPoint3addEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm18InteriorPointPointC1EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm18InteriorPointPointC2EPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm18RayCrossingCounter11getLocationEv@Base 3.4.2 - _ZN4geos9algorithm18RayCrossingCounter12countSegmentERKNS_4geom10CoordinateES5_@Base 3.4.2 - _ZN4geos9algorithm18RayCrossingCounter16isPointInPolygonEv@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 - _ZN4geos9algorithm5Angle10PI_TIMES_2E@Base 3.4.2 - _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 - _ZN4geos9algorithm5Angle9PI_OVER_2E@Base 3.4.2 - _ZN4geos9algorithm5Angle9PI_OVER_4E@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 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitor9visitItemEPv@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorD0Ev@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorD1Ev@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorD2Ev@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometry4initERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometry5queryEddPNS_5index11ItemVisitorE@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)_ZN4geos9algorithm8distance23DiscreteFrechetDistance13getSegementAtERKNS_4geom18CoordinateSequenceE{size_t}@Base 3.7.0 - (subst)_ZN4geos9algorithm8distance23DiscreteFrechetDistance17getFrecheDistanceERSt6vectorIS3_INS1_17PointPairDistanceESaIS4_EESaIS6_EE{size_t}{size_t}RKNS_4geom18CoordinateSequenceESD_@Base 3.7.0 - _ZN4geos9algorithm8distance23DiscreteFrechetDistance7computeERKNS_4geom8GeometryES6_@Base 3.7.0 - _ZN4geos9algorithm8distance23DiscreteFrechetDistance8distanceERKNS_4geom8GeometryES6_@Base 3.7.0 - _ZN4geos9algorithm8distance23DiscreteFrechetDistance8distanceERKNS_4geom8GeometryES6_d@Base 3.7.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 - _ZN4geos9geomgraph11PlanarGraph14isBoundaryNodeEiRKNS_4geom10CoordinateE@Base 3.4.2 - _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 - _ZN4geos9geomgraph12DirectedEdge10getNextMinEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge10isInResultEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge10isLineEdgeEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge10setNextMinEPS1_@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge10setVisitedEb@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge11depthFactorENS_4geom8LocationES3_@Base 3.8.0 - _ZN4geos9geomgraph12DirectedEdge11getEdgeRingEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge11setEdgeRingEPNS0_8EdgeRingE@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge11setInResultEb@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge13setEdgeDepthsEii@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge14getMinEdgeRingEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge14setMinEdgeRingEPNS0_8EdgeRingE@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge14setVisitedEdgeEb@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge18isInteriorAreaEdgeEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge20computeDirectedLabelEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge6getSymEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge6setSymEPS1_@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge7getNextEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge7setNextEPS1_@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge8getDepthEi@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge8setDepthEii@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge9isForwardEv@Base 3.4.2 - _ZN4geos9geomgraph12DirectedEdge9isVisitedEv@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 - _ZN4geos9geomgraph13GeometryGraph11getGeometryEv@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph11insertPointEiRKNS_4geom10CoordinateENS2_8LocationE@Base 3.8.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 - _ZN4geos9geomgraph13GeometryGraph16getBoundaryNodesERSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.4.2 - _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 - _ZN4geos9geomgraph13GeometryGraph19insertBoundaryPointEiRKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraph23addSelfIntersectionNodeEiRKNS_4geom10CoordinateENS2_8LocationE@Base 3.8.0 - _ZN4geos9geomgraph13GeometryGraph24addSelfIntersectionNodesEi@Base 3.4.2 - _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 - _ZN4geos9geomgraph13GeometryGraphC1EiPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraphC1EiPKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraphC1Ev@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraphC2EiPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraphC2EiPKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9geomgraph13GeometryGraphC2Ev@Base 3.4.2 - _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 - _ZN4geos9geomgraph16TopologyLocation11setLocationENS_4geom8LocationE@Base 3.8.0 - (subst)_ZN4geos9geomgraph16TopologyLocation11setLocationE{size_t}NS_4geom8LocationE@Base 3.8.0 - _ZN4geos9geomgraph16TopologyLocation12setLocationsENS_4geom8LocationES3_S3_@Base 3.8.0 - _ZN4geos9geomgraph16TopologyLocation15setAllLocationsENS_4geom8LocationE@Base 3.8.0 - _ZN4geos9geomgraph16TopologyLocation21setAllLocationsIfNullENS_4geom8LocationE@Base 3.8.0 - _ZN4geos9geomgraph16TopologyLocation4flipEv@Base 3.4.2 - _ZN4geos9geomgraph16TopologyLocation5mergeERKS1_@Base 3.4.2 - _ZN4geos9geomgraph16TopologyLocationC1ENS_4geom8LocationE@Base 3.8.0 - _ZN4geos9geomgraph16TopologyLocationC1ENS_4geom8LocationES3_S3_@Base 3.8.0 - _ZN4geos9geomgraph16TopologyLocationC1ERKS1_@Base 3.4.2 - _ZN4geos9geomgraph16TopologyLocationC2ENS_4geom8LocationE@Base 3.8.0 - _ZN4geos9geomgraph16TopologyLocationC2ENS_4geom8LocationES3_S3_@Base 3.8.0 - _ZN4geos9geomgraph16TopologyLocationC2ERKS1_@Base 3.4.2 - _ZN4geos9geomgraph16TopologyLocationaSERKS1_@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 - _ZN4geos9geomgraph4Node16setLabelBoundaryEi@Base 3.4.2 - _ZN4geos9geomgraph4Node21computeMergedLocationERKNS0_5LabelEi@Base 3.4.2 - _ZN4geos9geomgraph4Node3addEPNS0_7EdgeEndE@Base 3.4.2 - _ZN4geos9geomgraph4Node4addZEd@Base 3.4.2 - _ZN4geos9geomgraph4Node5printB5cxx11Ev@Base 3.5.1 - _ZN4geos9geomgraph4Node8getEdgesEv@Base 3.4.2 - _ZN4geos9geomgraph4Node8setLabelEiNS_4geom8LocationE@Base 3.8.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 - _ZN4geos9geomgraph5Depth15depthAtLocationENS_4geom8LocationE@Base 3.8.0 - _ZN4geos9geomgraph5Depth3addERKNS0_5LabelE@Base 3.4.2 - _ZN4geos9geomgraph5Depth3addEiiNS_4geom8LocationE@Base 3.8.0 - _ZN4geos9geomgraph5Depth8setDepthEiii@Base 3.4.2 - _ZN4geos9geomgraph5Depth9normalizeEv@Base 3.4.2 - _ZN4geos9geomgraph5DepthC1Ev@Base 3.4.2 - _ZN4geos9geomgraph5DepthC2Ev@Base 3.4.2 - _ZN4geos9geomgraph5DepthD0Ev@Base 3.4.2 - _ZN4geos9geomgraph5DepthD1Ev@Base 3.4.2 - _ZN4geos9geomgraph5DepthD2Ev@Base 3.4.2 - _ZN4geos9geomgraph5Label11setLocationEjNS_4geom8LocationE@Base 3.9.0 - _ZN4geos9geomgraph5Label11setLocationEjjNS_4geom8LocationE@Base 3.9.0 - _ZN4geos9geomgraph5Label11toLineLabelERKS1_@Base 3.4.2 - _ZN4geos9geomgraph5Label15setAllLocationsEjNS_4geom8LocationE@Base 3.9.0 - _ZN4geos9geomgraph5Label21setAllLocationsIfNullENS_4geom8LocationE@Base 3.8.0 - _ZN4geos9geomgraph5Label21setAllLocationsIfNullEjNS_4geom8LocationE@Base 3.9.0 - _ZN4geos9geomgraph5Label4flipEv@Base 3.4.2 - _ZN4geos9geomgraph5Label5mergeERKS1_@Base 3.4.2 - _ZN4geos9geomgraph5Label6toLineEj@Base 3.9.0 - _ZN4geos9geomgraph5LabelC1ENS_4geom8LocationE@Base 3.8.0 - _ZN4geos9geomgraph5LabelC1ENS_4geom8LocationES3_S3_@Base 3.8.0 - _ZN4geos9geomgraph5LabelC1ERKS1_@Base 3.4.2 - _ZN4geos9geomgraph5LabelC1EjNS_4geom8LocationE@Base 3.9.0 - _ZN4geos9geomgraph5LabelC1EjNS_4geom8LocationES3_S3_@Base 3.9.0 - _ZN4geos9geomgraph5LabelC1Ev@Base 3.4.2 - _ZN4geos9geomgraph5LabelC2ENS_4geom8LocationE@Base 3.8.0 - _ZN4geos9geomgraph5LabelC2ENS_4geom8LocationES3_S3_@Base 3.8.0 - _ZN4geos9geomgraph5LabelC2ERKS1_@Base 3.4.2 - _ZN4geos9geomgraph5LabelC2EjNS_4geom8LocationE@Base 3.9.0 - _ZN4geos9geomgraph5LabelC2EjNS_4geom8LocationES3_S3_@Base 3.9.0 - _ZN4geos9geomgraph5LabelC2Ev@Base 3.4.2 - _ZN4geos9geomgraph5LabelaSERKS1_@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 - _ZN4geos9geomgraph5index18SegmentIntersector15hasIntersectionEv@Base 3.4.2 - _ZN4geos9geomgraph5index18SegmentIntersector15isBoundaryPointEPNS_9algorithm15LineIntersectorEPSt6vectorIPNS0_4NodeESaIS8_EE@Base 3.4.2 - (subst)_ZN4geos9geomgraph5index18SegmentIntersector15isBoundaryPointEPNS_9algorithm15LineIntersectorERSt5arrayIPSt6vectorIPNS0_4NodeESaIS9_EEL{size_t}2EE@Base 3.8.0 - (subst)_ZN4geos9geomgraph5index18SegmentIntersector16addIntersectionsEPNS0_4EdgeE{size_t}S4_{size_t}@Base 3.8.0 - _ZN4geos9geomgraph5index18SegmentIntersector16setBoundaryNodesEPSt6vectorIPNS0_4NodeESaIS5_EES8_@Base 3.4.2 - (subst)_ZN4geos9geomgraph5index18SegmentIntersector18isAdjacentSegmentsE{size_t}{size_t}@Base 3.8.0 - _ZN4geos9geomgraph5index18SegmentIntersector20setIsDoneIfProperIntEb@Base 3.5.1 - _ZN4geos9geomgraph5index18SegmentIntersector21hasProperIntersectionEv@Base 3.4.2 - (subst)_ZN4geos9geomgraph5index18SegmentIntersector21isTrivialIntersectionEPNS0_4EdgeE{size_t}S4_{size_t}@Base 3.8.0 - _ZN4geos9geomgraph5index18SegmentIntersector26getProperIntersectionPointEv@Base 3.4.2 - _ZN4geos9geomgraph5index18SegmentIntersector29hasProperInteriorIntersectionEv@Base 3.4.2 - _ZN4geos9geomgraph5index18SegmentIntersector9getIsDoneEv@Base 3.5.1 - _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 - _ZN4geos9geomgraph8EdgeList3getEi@Base 3.4.2 - _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_5LabelEi@Base 3.4.2 - _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 - _ZN4geos9operation10IsSimpleOp11addEndpointERSt3mapIPKNS_4geom10CoordinateEPNS0_12EndpointInfoENS3_18CoordinateLessThenESaISt4pairIKS6_S8_EEES6_b@Base 3.4.2 - _ZN4geos9operation10IsSimpleOp13computeSimpleEPKNS_4geom8GeometryE@Base 3.8.0 - _ZN4geos9operation10IsSimpleOp17isSimplePolygonalEPKNS_4geom8GeometryE@Base 3.8.0 - _ZN4geos9operation10IsSimpleOp18isSimpleMultiPointERKNS_4geom10MultiPointE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOp22isSimpleLinearGeometryEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOp26hasNonEndpointIntersectionERNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOp26isSimpleGeometryCollectionEPKNS_4geom18GeometryCollectionE@Base 3.8.0 - _ZN4geos9operation10IsSimpleOp29hasClosedEndpointIntersectionERNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOp8isSimpleEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOp8isSimpleEPKNS_4geom10MultiPointE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOp8isSimpleEPKNS_4geom15MultiLineStringE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOp8isSimpleEv@Base 3.4.2 - _ZN4geos9operation10IsSimpleOpC1ERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOpC1ERKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOpC1Ev@Base 3.4.2 - _ZN4geos9operation10IsSimpleOpC2ERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOpC2ERKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9operation10IsSimpleOpC2Ev@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 - _ZN4geos9operation12EndpointInfoC1ERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation12EndpointInfoC2ERKNS_4geom10CoordinateE@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 - _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 - _ZN4geos9operation5valid22PolygonIndexedLocatorsD1Ev@Base 3.9.0 - _ZN4geos9operation5valid22PolygonIndexedLocatorsD2Ev@Base 3.9.0 - _ZN4geos9operation5valid22SimpleNestedRingTester11isNonNestedEv@Base 3.4.2 - _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 - _ZN4geos9operation5valid23IndexedNestedRingTester10buildIndexEv@Base 3.4.2 - _ZN4geos9operation5valid23IndexedNestedRingTester11isNonNestedEv@Base 3.4.2 - _ZN4geos9operation5valid23IndexedNestedRingTesterD1Ev@Base 3.4.2 - _ZN4geos9operation5valid23IndexedNestedRingTesterD2Ev@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationError10getMessageB5cxx11Ev@Base 3.5.1 - _ZN4geos9operation5valid23TopologyValidationError12getErrorTypeEv@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationError13getCoordinateEv@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationError6errMsgE@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationError8toStringB5cxx11Ev@Base 3.5.1 - _ZN4geos9operation5valid23TopologyValidationErrorC1Ei@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationErrorC1EiRKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationErrorC2Ei@Base 3.4.2 - _ZN4geos9operation5valid23TopologyValidationErrorC2EiRKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation5valid24IndexedNestedShellTester11isNonNestedEv@Base 3.9.0 - _ZN4geos9operation5valid24IndexedNestedShellTester14getNestedPointEv@Base 3.9.0 - _ZN4geos9operation5valid24IndexedNestedShellTester19checkShellNotNestedEPKNS_4geom10LinearRingERNS1_22PolygonIndexedLocatorsE@Base 3.9.0 - _ZN4geos9operation5valid24IndexedNestedShellTester20checkShellInsideHoleEPKNS_4geom10LinearRingERNS_9algorithm6locate25IndexedPointInAreaLocatorE@Base 3.9.0 - _ZN4geos9operation5valid24IndexedNestedShellTester7computeEv@Base 3.9.0 - (subst)_ZN4geos9operation5valid24IndexedNestedShellTesterC1ERKNS_9geomgraph13GeometryGraphE{size_t}@Base 3.9.0 - (subst)_ZN4geos9operation5valid24IndexedNestedShellTesterC2ERKNS_9geomgraph13GeometryGraphE{size_t}@Base 3.9.0 - _ZN4geos9operation5valid24QuadtreeNestedRingTester11isNonNestedEv@Base 3.4.2 - _ZN4geos9operation5valid24QuadtreeNestedRingTester13buildQuadtreeEv@Base 3.4.2 - _ZN4geos9operation5valid24QuadtreeNestedRingTester14getNestedPointEv@Base 3.4.2 - _ZN4geos9operation5valid24QuadtreeNestedRingTester3addEPKNS_4geom10LinearRingE@Base 3.4.2 - _ZN4geos9operation5valid24QuadtreeNestedRingTesterC1EPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid24QuadtreeNestedRingTesterC2EPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid24QuadtreeNestedRingTesterD1Ev@Base 3.4.2 - _ZN4geos9operation5valid24QuadtreeNestedRingTesterD2Ev@Base 3.4.2 - _ZN4geos9operation5valid25SweeplineNestedRingTester10buildIndexEv@Base 3.4.2 - _ZN4geos9operation5valid25SweeplineNestedRingTester11isNonNestedEv@Base 3.4.2 - _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapAction7overlapEPNS_5index9sweepline17SweepLineIntervalES7_@Base 3.4.2 - _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionC1EPS2_@Base 3.4.2 - _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionC2EPS2_@Base 3.4.2 - _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionD0Ev@Base 3.4.2 - _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionD1Ev@Base 3.4.2 - _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionD2Ev@Base 3.4.2 - _ZN4geos9operation5valid25SweeplineNestedRingTester8isInsideEPNS_4geom10LinearRingES5_@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom10LinearRingE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom12MultiPolygonE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom18GeometryCollectionE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom5PointE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom7PolygonE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp10checkValidEv@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp13findPtNotNodeEPKNS_4geom18CoordinateSequenceEPKNS3_10LinearRingEPKNS_9geomgraph13GeometryGraphE@Base 3.9.0 - _ZN4geos9operation5valid9IsValidOp15checkClosedRingEPKNS_4geom10LinearRingE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp16checkClosedRingsEPKNS_4geom7PolygonE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp17checkHolesInShellEPKNS_4geom7PolygonEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp17checkTooFewPointsEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp18getValidationErrorEv@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp19checkConsistentAreaEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp19checkHolesNotNestedEPKNS_4geom7PolygonEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp20checkShellsNotNestedEPKNS_4geom12MultiPolygonEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp23checkConnectedInteriorsERNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp23checkInvalidCoordinatesEPKNS_4geom18CoordinateSequenceE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp23checkInvalidCoordinatesEPKNS_4geom7PolygonE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp27checkNoSelfIntersectingRingERNS_9geomgraph20EdgeIntersectionListE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp28checkNoSelfIntersectingRingsEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp7isValidERKNS_4geom10CoordinateE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp7isValidERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOp7isValidEv@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOpD0Ev@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOpD1Ev@Base 3.4.2 - _ZN4geos9operation5valid9IsValidOpD2Ev@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 - _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 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder13addCollectionEPKNS_4geom18GeometryCollectionE@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder13addLineStringEPKNS_4geom10LineStringE@Base 3.4.2 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder16addRingBothSidesEPKNS_4geom18CoordinateSequenceEd@Base 3.9.0 - _ZN4geos9operation6buffer21OffsetCurveSetBuilder18isErodedCompletelyEPKNS_4geom10LinearRingEd@Base 3.4.2 - _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 - _ZN4geos9operation6buffer22OffsetSegmentGenerator2PIE@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 - _ZN4geos9operation6buffer8BufferOp15computeGeometryEv@Base 3.4.2 - _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 - _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 - _ZN4geos9operation6relate13EdgeEndBundle14computeLabelOnEiRKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundle16computeLabelSideEii@Base 3.4.2 - _ZN4geos9operation6relate13EdgeEndBundle17computeLabelSidesEi@Base 3.4.2 - _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_9geomgraph4EdgeEiPKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer17labelIsolatedNodeEPNS_9geomgraph4NodeEi@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer18copyNodesAndLabelsEi@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer18labelIsolatedEdgesEii@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer18labelIsolatedNodesEv@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer22labelIntersectionNodesEi@Base 3.4.2 - _ZN4geos9operation6relate14RelateComputer24computeIntersectionNodesEi@Base 3.4.2 - _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_9geomgraph13GeometryGraphEi@Base 3.4.2 - _ZN4geos9operation6relate15RelateNodeGraph24computeIntersectionNodesEPNS_9geomgraph13GeometryGraphEi@Base 3.4.2 - _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_9geomgraph4EdgeEi@Base 3.4.2 - _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 - _ZN4geos9operation7overlay4snap21SnapIfNeededOverlayOp17getResultGeometryENS1_9OverlayOp6OpCodeE@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 - _ZN4geos9operation7overlay9OverlayOp10copyPointsEiPKNS_4geom8EnvelopeE@Base 3.5.0 - _ZN4geos9operation7overlay9OverlayOp11getAverageZEPKNS_4geom7PolygonE@Base 3.4.2 - _ZN4geos9operation7overlay9OverlayOp11getAverageZEi@Base 3.4.2 - _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_9geomgraph4NodeEi@Base 3.4.2 - _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 - _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 - _ZN4geos9operation8geounion12UnaryUnionOp13unionWithNullESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EES8_@Base 3.7.0 - _ZN4geos9operation8geounion12UnaryUnionOp5UnionEv@Base 3.4.2 - _ZN4geos9operation8geounion12UnaryUnionOp7extractERKNS_4geom8GeometryE@Base 3.9.0 - _ZN4geos9operation8geounion12UnaryUnionOpD1Ev@Base 3.9.0 - _ZN4geos9operation8geounion12UnaryUnionOpD2Ev@Base 3.9.0 - _ZN4geos9operation8geounion13CascadedUnion11binaryUnionEPNS1_18GeometryListHolderE@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9operation8geounion13CascadedUnion11binaryUnionEPNS1_18GeometryListHolderEjj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos9operation8geounion13CascadedUnion11binaryUnionEPNS1_18GeometryListHolderEmm@Base 3.7.0 - _ZN4geos9operation8geounion13CascadedUnion11unionActualEPNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9operation8geounion13CascadedUnion14unionOptimizedEPNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9operation8geounion13CascadedUnion17extractByEnvelopeERKNS_4geom8EnvelopeEPNS3_8GeometryERSt6vectorIPKS7_SaISB_EE@Base 3.8.0 - _ZN4geos9operation8geounion13CascadedUnion18reduceToGeometriesEPNS_5index7strtree9ItemsListE@Base 3.4.2 - _ZN4geos9operation8geounion13CascadedUnion30unionUsingEnvelopeIntersectionEPNS_4geom8GeometryES5_RKNS3_8EnvelopeE@Base 3.4.2 - _ZN4geos9operation8geounion13CascadedUnion5UnionEPSt6vectorIPNS_4geom8GeometryESaIS6_EE@Base 3.4.2 - _ZN4geos9operation8geounion13CascadedUnion5UnionEv@Base 3.4.2 - _ZN4geos9operation8geounion13CascadedUnion9unionSafeEPNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9operation8geounion13CascadedUnion9unionTreeEPNS_5index7strtree9ItemsListE@Base 3.4.2 - _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 - _ZN4geos9operation8geounion18GeometryListHolder10deleteItemEPNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9operation8geounion18PointGeometryUnion5UnionERKNS_4geom8GeometryES6_@Base 3.8.0 - _ZN4geos9operation8geounion18PointGeometryUnionC1ERKNS_4geom8GeometryES6_@Base 3.8.0 - _ZN4geos9operation8geounion18PointGeometryUnionC2ERKNS_4geom8GeometryES6_@Base 3.8.0 - _ZN4geos9operation8geounion20CascadedPolygonUnion11binaryUnionEPNS1_18GeometryListHolderE@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9operation8geounion20CascadedPolygonUnion11binaryUnionEPNS1_18GeometryListHolderEjj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos9operation8geounion20CascadedPolygonUnion11binaryUnionEPNS1_18GeometryListHolderEmm@Base 3.7.0 - _ZN4geos9operation8geounion20CascadedPolygonUnion11unionActualEPNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9operation8geounion20CascadedPolygonUnion18reduceToGeometriesEPNS_5index7strtree9ItemsListE@Base 3.4.2 - _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 - _ZN4geos9operation8geounion20CascadedPolygonUnion9unionSafeEPNS_4geom8GeometryES5_@Base 3.4.2 - _ZN4geos9operation8geounion20CascadedPolygonUnion9unionTreeEPNS_5index7strtree9ItemsListE@Base 3.4.2 - _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 - _ZN4geos9operation9linemerge13LineSequencer7reverseEPKNS_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 - _ZN4geos9operation9overlayng10EdgeMerger5mergeEv@Base 3.9.0 - _ZN4geos9operation9overlayng10EdgeMergerC1ERSt6vectorIPNS1_4EdgeESaIS5_EE@Base 3.9.0 - _ZN4geos9operation9overlayng10EdgeMergerC2ERSt6vectorIPNS1_4EdgeESaIS5_EE@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder14addResultLinesEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder15markResultLinesEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder19addResultLinesRingsEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder20addResultLinesMergedEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder22addResultLinesForNodesEv@Base 3.9.0 - _ZN4geos9operation9overlayng11LineBuilder6toLineEPNS1_11OverlayEdgeE@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 - _ZN4geos9operation9overlayng11OverlayEdge11markVisitedEv@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge11setEdgeRingEPKNS1_15OverlayEdgeRingE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge13setNextResultEPS2_@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge14addCoordinatesEPNS_4geom23CoordinateArraySequenceE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge14getCoordinatesEv@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge14setEdgeRingMaxEPKNS1_15MaximalEdgeRingE@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge15markVisitedBothEv@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge16markInResultAreaEv@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge16markInResultLineEv@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge16setNextResultMaxEPS2_@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge20markInResultAreaBothEv@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge22getCoordinatesOrientedEv@Base 3.9.0 - _ZN4geos9operation9overlayng11OverlayEdge24unmarkFromResultAreaBothEv@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 - _ZN4geos9operation9overlayng12OverlayLabel11initNotPartEi@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayLabel12initBoundaryEiNS_4geom8LocationES4_b@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayLabel12initCollapseEib@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayLabel14setLocationAllEiNS_4geom8LocationE@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayLabel15setLocationLineEiNS_4geom8LocationE@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayLabel19setLocationCollapseEi@Base 3.9.0 - _ZN4geos9operation9overlayng12OverlayLabel8initLineEi@Base 3.9.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 - _ZN4geos9operation9overlayng13InputGeometry10getLocatorEi@Base 3.9.0 - _ZN4geos9operation9overlayng13InputGeometry12setCollapsedEib@Base 3.9.0 - _ZN4geos9operation9overlayng13InputGeometry17locatePointInAreaEiRKNS_4geom10CoordinateE@Base 3.9.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 - _ZN4geos9operation9overlayng14EdgeSourceInfoC1Ei@Base 3.9.0 - _ZN4geos9operation9overlayng14EdgeSourceInfoC1Eiib@Base 3.9.0 - _ZN4geos9operation9overlayng14EdgeSourceInfoC2Ei@Base 3.9.0 - _ZN4geos9operation9overlayng14EdgeSourceInfoC2Eiib@Base 3.9.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 - _ZN4geos9operation9overlayng14PolygonBuilder10buildRingsERSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder11assignHolesEPNS1_15OverlayEdgeRingERSt6vectorIS4_SaIS4_EE@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder11getPolygonsEv@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder13getShellRingsEv@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder14placeFreeHolesESt6vectorIPNS1_15OverlayEdgeRingESaIS5_EES7_@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder15computePolygonsESt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder17buildMaximalRingsERSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder17buildMinimalRingsERSt6vectorISt10unique_ptrINS1_15MaximalEdgeRingESt14default_deleteIS5_EESaIS8_EE@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder17storeMinimalRingsERSt6vectorISt10unique_ptrINS1_15OverlayEdgeRingESt14default_deleteIS5_EESaIS8_EE@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder20assignShellsAndHolesERSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.9.0 - _ZN4geos9operation9overlayng14PolygonBuilder22linkResultAreaEdgesMaxERSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.9.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 - _ZN4geos9operation9overlayng15OverlayEdgeRing11computeRingERKNS_4geom23CoordinateArraySequenceEPKNS3_15GeometryFactoryE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing13getCoordinateEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing14computeRingPtsEPNS1_11OverlayEdgeERNS_4geom23CoordinateArraySequenceE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing14getCoordinatesEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayEdgeRing22findEdgeRingContainingERSt6vectorIPS2_SaIS4_EE@Base 3.9.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 - _ZN4geos9operation9overlayng15OverlayLabeller10locateEdgeEiPNS1_11OverlayEdgeE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller16computeLabellingEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller16markInResultAreaEPNS1_11OverlayEdgeEi@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller18labelAreaNodeEdgesERSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller18labelCollapsedEdgeEPNS1_11OverlayEdgeEi@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller18locateEdgeBothEndsEiPNS1_11OverlayEdgeE@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller19labelCollapsedEdgesEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller19markResultAreaEdgesEi@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller21labelDisconnectedEdgeEPNS1_11OverlayEdgeEi@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller22labelDisconnectedEdgesEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller22propagateAreaLocationsEPNS1_11OverlayEdgeEi@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller24findPropagationStartEdgeEPNS1_11OverlayEdgeEi@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller24propagateLinearLocationsEi@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller25labelConnectedLinearEdgesEv@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller27findLinearEdgesWithLocationERSt6vectorIPNS1_11OverlayEdgeESaIS5_EEi@Base 3.9.0 - _ZN4geos9operation9overlayng15OverlayLabeller29propagateLinearLocationAtNodeEPNS1_11OverlayEdgeEibRSt5dequeIS4_SaIS4_EE@Base 3.9.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_4geom7PolygonEi@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder11createEdgesEPSt6vectorIPNS_6noding13SegmentStringESaIS6_EE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder13addCollectionEPKNS_4geom18GeometryCollectionEi@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder14addPolygonRingEPKNS_4geom10LinearRingEbi@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder15setClipEnvelopeEPKNS_4geom8EnvelopeE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder17computeDepthDeltaEPKNS_4geom10LinearRingEb@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder19isClippedCompletelyEPKNS_4geom8EnvelopeE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder20createEdgeSourceInfoEi@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder20createEdgeSourceInfoEiib@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder20removeRepeatedPointsEPKNS_4geom10LineStringE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder21addGeometryCollectionEPKNS_4geom18GeometryCollectionEii@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder25createFixedPrecisionNoderEPKNS_4geom14PrecisionModelE@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder28createFloatingPrecisionNoderEb@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder3addEPKNS_4geom8GeometryEi@Base 3.9.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_4geom10LineStringEi@Base 3.9.0 - _ZN4geos9operation9overlayng17EdgeNodingBuilder7addLineERSt10unique_ptrINS_4geom23CoordinateArraySequenceESt14default_deleteIS5_EEi@Base 3.9.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 - _ZN4geos9operation9overlayng4Edge14getCoordinatesEv@Base 3.9.0 - _ZN4geos9operation9overlayng4Edge18releaseCoordinatesEv@Base 3.9.0 - _ZN4geos9operation9overlayng4Edge5mergeEPKS2_@Base 3.9.0 - _ZN4geos9operation9overlayng4Edge8copyInfoEPKNS1_14EdgeSourceInfoE@Base 3.9.0 - _ZN4geos9operation9overlayng4EdgeC1EPNS_4geom18CoordinateSequenceEPKNS1_14EdgeSourceInfoE@Base 3.9.0 - _ZN4geos9operation9overlayng4EdgeC2EPNS_4geom18CoordinateSequenceEPKNS1_14EdgeSourceInfoE@Base 3.9.0 - _ZN4geos9operation9overlayng7EdgeKey10initPointsEPKNS1_4EdgeE@Base 3.9.0 - _ZN4geos9operation9overlayng7EdgeKey4initERKNS_4geom10CoordinateES6_@Base 3.9.0 - _ZN4geos9operation9overlayng7EdgeKeyC1EPKNS1_4EdgeE@Base 3.9.0 - _ZN4geos9operation9overlayng7EdgeKeyC2EPKNS1_4EdgeE@Base 3.9.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 - _ZN4geos9operation9overlayngeqERKNS1_7EdgeKeyES4_@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 - _ZN4geos9operation9overlayngltERKNS1_7EdgeKeyES4_@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 - _ZN4geos9precision24GeometryPrecisionReducer13createFactoryERKNS_4geom15GeometryFactoryERKNS2_14PrecisionModelE@Base 3.4.2 - _ZN4geos9precision24GeometryPrecisionReducer15reducePointwiseERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9precision24GeometryPrecisionReducer20fixPolygonalTopologyERKNS_4geom8GeometryE@Base 3.4.2 - _ZN4geos9precision24GeometryPrecisionReducer6reduceERKNS_4geom8GeometryE@Base 3.4.2 - _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 - _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 - _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 - _ZNK4geos2io9WKBWriter12getByteOrderEv@Base 3.4.2 - _ZNK4geos2io9WKBWriter14getIncludeSRIDEv@Base 3.4.2 - _ZNK4geos2io9WKBWriter18getOutputDimensionEv@Base 3.4.2 - _ZNK4geos4geom10Coordinate15distanceSquaredERKS1_@Base 3.8.0 - _ZNK4geos4geom10Coordinate6equalsERKS1_@Base 3.4.2 - _ZNK4geos4geom10Coordinate6isNullEv@Base 3.4.2 - _ZNK4geos4geom10Coordinate8HashCodeclERKS1_@Base 3.8.0 - _ZNK4geos4geom10Coordinate8distanceERKS1_@Base 3.4.2 - _ZNK4geos4geom10Coordinate8equals2DERKS1_@Base 3.4.2 - _ZNK4geos4geom10Coordinate8equals3DERKS1_@Base 3.4.2 - _ZNK4geos4geom10Coordinate8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom10Coordinate9compareToERKS1_@Base 3.4.2 - _ZNK4geos4geom10LineString11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 - _ZNK4geos4geom10LineString11getBoundaryEv@Base 3.4.2 - _ZNK4geos4geom10LineString11getEndPointEv@Base 3.4.2 - _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 - _ZNK4geos4geom10LineString5cloneEv@Base 3.4.2 - _ZNK4geos4geom10LineString6isRingEv@Base 3.4.2 - _ZNK4geos4geom10LineString7isEmptyEv@Base 3.4.2 - _ZNK4geos4geom10LineString7reverseEv@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 - _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 - _ZNK4geos4geom10LinearRing12getSortIndexEv@Base 3.8.0 - _ZNK4geos4geom10LinearRing15getGeometryTypeB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom10LinearRing17getGeometryTypeIdEv@Base 3.4.2 - _ZNK4geos4geom10LinearRing20getBoundaryDimensionEv@Base 3.4.2 - _ZNK4geos4geom10LinearRing5cloneEv@Base 3.4.2 - _ZNK4geos4geom10LinearRing7reverseEv@Base 3.4.2 - _ZNK4geos4geom10LinearRing8isClosedEv@Base 3.4.2 - _ZNK4geos4geom10MultiPoint11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 - _ZNK4geos4geom10MultiPoint11getBoundaryEv@Base 3.4.2 - _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 - _ZNK4geos4geom10MultiPoint5cloneEv@Base 3.4.2 - _ZNK4geos4geom10MultiPoint7reverseEv@Base 3.7.0 - _ZNK4geos4geom11LineSegment10equalsTopoERKS1_@Base 3.4.2 - _ZNK4geos4geom11LineSegment10isVerticalEv@Base 3.4.2 - _ZNK4geos4geom11LineSegment10pointAlongEdRNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment10toGeometryERKNS0_15GeometryFactoryE@Base 3.4.2 - _ZNK4geos4geom11LineSegment12closestPointERKNS0_10CoordinateERS2_@Base 3.4.2 - _ZNK4geos4geom11LineSegment12intersectionERKS1_@Base 3.8.0 - _ZNK4geos4geom11LineSegment12isHorizontalEv@Base 3.4.2 - _ZNK4geos4geom11LineSegment15segmentFractionERKNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment16lineIntersectionERKS1_@Base 3.8.0 - _ZNK4geos4geom11LineSegment16orientationIndexEPKS1_@Base 3.4.2 - _ZNK4geos4geom11LineSegment16orientationIndexERKNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment16orientationIndexERKS1_@Base 3.4.2 - _ZNK4geos4geom11LineSegment16pointAlongOffsetEddRNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment16projectionFactorERKNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment21distancePerpendicularERKNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment5angleEv@Base 3.4.2 - _ZNK4geos4geom11LineSegment7projectERKNS0_10CoordinateERS2_@Base 3.4.2 - _ZNK4geos4geom11LineSegment7projectERKS1_RS1_@Base 3.4.2 - _ZNK4geos4geom11LineSegment8distanceERKNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment8distanceERKS1_@Base 3.4.2 - _ZNK4geos4geom11LineSegment8midPointERNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom11LineSegment9compareToERKS1_@Base 3.4.2 - _ZNK4geos4geom11LineSegment9getLengthEv@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom11LineSegmentixEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom11LineSegmentixEm@Base 3.7.0 - _ZNK4geos4geom12MultiPolygon11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 - _ZNK4geos4geom12MultiPolygon11getBoundaryEv@Base 3.4.2 - _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 - _ZNK4geos4geom12MultiPolygon5cloneEv@Base 3.4.2 - _ZNK4geos4geom12MultiPolygon7reverseEv@Base 3.7.0 - _ZNK4geos4geom14PrecisionModel10getOffsetXEv@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel10getOffsetYEv@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel10isFloatingEv@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel11makePreciseEPNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel11makePreciseERNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel11makePreciseEd@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel27getMaximumSignificantDigitsEv@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel7getTypeEv@Base 3.4.2 - _ZNK4geos4geom14PrecisionModel8getScaleEv@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 - _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 - _ZNK4geos4geom15GeometryFactory17getPrecisionModelEv@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 - _ZNK4geos4geom15GeometryFactory28getCoordinateSequenceFactoryEv@Base 3.4.2 - _ZNK4geos4geom15GeometryFactory6addRefEv@Base 3.6.0 - _ZNK4geos4geom15GeometryFactory7dropRefEv@Base 3.6.0 - _ZNK4geos4geom15GeometryFactory7getSRIDEv@Base 3.4.2 - _ZNK4geos4geom15MultiLineString11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 - _ZNK4geos4geom15MultiLineString11getBoundaryEv@Base 3.4.2 - _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 - _ZNK4geos4geom15MultiLineString5cloneEv@Base 3.4.2 - _ZNK4geos4geom15MultiLineString7reverseEv@Base 3.4.2 - _ZNK4geos4geom15MultiLineString8isClosedEv@Base 3.4.2 - _ZNK4geos4geom16CoordinateFilter9filter_rwEPNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom18CoordinateLessThenclEPKNS0_10CoordinateES4_@Base 3.4.2 - _ZNK4geos4geom18CoordinateLessThenclERKNS0_10CoordinateES4_@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 - _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 - _ZNK4geos4geom18GeometryCollection3endEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection5beginEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection5cloneEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection7getAreaEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection7isEmptyEv@Base 3.4.2 - _ZNK4geos4geom18GeometryCollection7reverseEv@Base 3.7.0 - _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 - _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 - _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 - _ZNK4geos4geom4util15SineStarFactory14createSineStarEv@Base 3.4.2 - _ZNK4geos4geom4util9Densifier17getResultGeometryEv@Base 3.8.0 - _ZNK4geos4geom5Point11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 - _ZNK4geos4geom5Point11getBoundaryEv@Base 3.4.2 - _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 - _ZNK4geos4geom5Point5cloneEv@Base 3.4.2 - _ZNK4geos4geom5Point7isEmptyEv@Base 3.4.2 - _ZNK4geos4geom5Point7reverseEv@Base 3.7.0 - _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 - _ZNK4geos4geom7Polygon10convexHullEv@Base 3.4.2 - _ZNK4geos4geom7Polygon11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 - _ZNK4geos4geom7Polygon11getBoundaryEv@Base 3.4.2 - _ZNK4geos4geom7Polygon11isRectangleEv@Base 3.4.2 - _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 - _ZNK4geos4geom7Polygon5cloneEv@Base 3.4.2 - _ZNK4geos4geom7Polygon7getAreaEv@Base 3.4.2 - _ZNK4geos4geom7Polygon7isEmptyEv@Base 3.4.2 - _ZNK4geos4geom7Polygon7reverseEv@Base 3.7.0 - _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 - _ZNK4geos4geom7Polygon9getLengthEv@Base 3.4.2 - _ZNK4geos4geom8Envelope10intersectsEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Envelope10intersectsERKNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom8Envelope10intersectsERKNS0_10CoordinateES4_@Base 3.8.0 - _ZNK4geos4geom8Envelope10intersectsERKS1_@Base 3.4.2 - _ZNK4geos4geom8Envelope10intersectsEdd@Base 3.4.2 - _ZNK4geos4geom8Envelope12intersectionERKS1_RS1_@Base 3.4.2 - _ZNK4geos4geom8Envelope15distanceSquaredERKS1_@Base 3.9.0 - _ZNK4geos4geom8Envelope6centreERNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom8Envelope6coversEPKNS0_10CoordinateE@Base 3.4.2 - _ZNK4geos4geom8Envelope6coversERKS1_@Base 3.4.2 - _ZNK4geos4geom8Envelope6coversEdd@Base 3.4.2 - _ZNK4geos4geom8Envelope6equalsEPKS1_@Base 3.4.2 - _ZNK4geos4geom8Envelope6isNullEv@Base 3.4.2 - _ZNK4geos4geom8Envelope7getMaxXEv@Base 3.4.2 - _ZNK4geos4geom8Envelope7getMaxYEv@Base 3.4.2 - _ZNK4geos4geom8Envelope7getMinXEv@Base 3.4.2 - _ZNK4geos4geom8Envelope7getMinYEv@Base 3.4.2 - _ZNK4geos4geom8Envelope8disjointEPKS1_@Base 3.9.0 - _ZNK4geos4geom8Envelope8disjointERKS1_@Base 3.9.0 - _ZNK4geos4geom8Envelope8distanceERKS1_@Base 3.9.0 - _ZNK4geos4geom8Envelope8getWidthEv@Base 3.4.2 - _ZNK4geos4geom8Envelope8hashCodeEv@Base 3.4.2 - _ZNK4geos4geom8Envelope8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos4geom8Envelope9getHeightEv@Base 3.4.2 - _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 - _ZNK4geos5index5chain13MonotoneChain14getCoordinatesEv@Base 3.4.2 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos5index5chain13MonotoneChain14getLineSegmentEjRNS_4geom11LineSegmentE@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos5index5chain13MonotoneChain14getLineSegmentEmRNS_4geom11LineSegmentE@Base 3.7.0 - _ZNK4geos5index5chain13MonotoneChain8overlapsERKNS_4geom10CoordinateES6_S6_S6_d@Base 3.9.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 - _ZNK4geos5index7strtree8Interval10intersectsEPKS2_@Base 3.5.0 - _ZNK4geos5index7strtree8Interval6equalsEPKS2_@Base 3.5.0 - _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 - _ZNK4geos6noding11SegmentNode10isEndPointEj@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 - (subst)_ZNK4geos6noding15SegmentNodeList17findCollapseIndexERKNS0_11SegmentNodeES4_R{size_t}@Base 3.9.0 - _ZNK4geos6noding15SegmentNodeList18addEdgeCoordinatesEPKNS0_11SegmentNodeES4_RSt6vectorINS_4geom10CoordinateESaIS7_EE@Base 3.9.0 - _ZNK4geos6noding15SegmentNodeList18createSplitEdgePtsEPKNS0_11SegmentNodeES4_RSt6vectorINS_4geom10CoordinateESaIS7_EE@Base 3.9.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 - _ZNK4geos6noding15ValidatingNoder18getNodedSubstringsEv@Base 3.9.0 - _ZNK4geos6noding17IntersectionAdder6isDoneEv@Base 3.4.2 - (subst)_ZNK4geos6noding18BasicSegmentString13getCoordinateE{size_t}@Base 3.8.0 - _ZNK4geos6noding18BasicSegmentString14getCoordinatesEv@Base 3.4.2 - (subst)_ZNK4geos6noding18BasicSegmentString16getSegmentOctantE{size_t}@Base 3.8.0 - _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 - (subst)_ZNK4geos6noding18NodedSegmentString16getSegmentOctantE{size_t}@Base 3.8.0 - _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 - _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 - _ZNK4geos6noding9snapround8HotPixel10scaleRoundEd@Base 3.9.0 - _ZNK4geos6noding9snapround8HotPixel13getCoordinateEv@Base 3.9.0 - _ZNK4geos6noding9snapround8HotPixel16intersectsScaledEdddd@Base 3.9.0 - _ZNK4geos6noding9snapround8HotPixel22intersectsPixelClosureERKNS_4geom10CoordinateES6_@Base 3.9.0 - _ZNK4geos6noding9snapround8HotPixel5scaleEd@Base 3.4.2 - (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 - _ZNK4geos9algorithm15LineIntersector14isIntersectionERKNS_4geom10CoordinateE@Base 3.4.2 - (subst)_ZNK4geos9algorithm15LineIntersector15getEdgeDistanceE{size_t}{size_t}@Base 3.8.0 - _ZNK4geos9algorithm15LineIntersector16intersectionSafeERKNS_4geom10CoordinateES5_S5_S5_@Base 3.8.0 - _ZNK4geos9algorithm15LineIntersector20isInSegmentEnvelopesERKNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9algorithm15LineIntersector8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos9algorithm17InteriorPointArea16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9algorithm17InteriorPointLine16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9algorithm18InteriorPointPoint16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 - _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 - _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 - _ZNK4geos9geomgraph16TopologyLocation12getLocationsEv@Base 3.4.2 - _ZNK4geos9geomgraph16TopologyLocation13isEqualOnSideERKS1_j@Base 3.9.0 - _ZNK4geos9geomgraph16TopologyLocation17allPositionsEqualENS_4geom8LocationE@Base 3.8.0 - (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos9geomgraph16TopologyLocation3getEj@Base 3.4.2 - (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos9geomgraph16TopologyLocation3getEm@Base 3.7.0 - _ZNK4geos9geomgraph16TopologyLocation6isAreaEv@Base 3.4.2 - _ZNK4geos9geomgraph16TopologyLocation6isLineEv@Base 3.4.2 - _ZNK4geos9geomgraph16TopologyLocation6isNullEv@Base 3.4.2 - _ZNK4geos9geomgraph16TopologyLocation8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos9geomgraph16TopologyLocation9isAnyNullEv@Base 3.4.2 - _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 - _ZNK4geos9geomgraph5Depth11getLocationEii@Base 3.4.2 - _ZNK4geos9geomgraph5Depth6isNullEi@Base 3.4.2 - _ZNK4geos9geomgraph5Depth6isNullEii@Base 3.4.2 - _ZNK4geos9geomgraph5Depth6isNullEv@Base 3.4.2 - _ZNK4geos9geomgraph5Depth8getDeltaEi@Base 3.4.2 - _ZNK4geos9geomgraph5Depth8getDepthEii@Base 3.4.2 - _ZNK4geos9geomgraph5Depth8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos9geomgraph5Label11getLocationEj@Base 3.9.0 - _ZNK4geos9geomgraph5Label11getLocationEjj@Base 3.9.0 - _ZNK4geos9geomgraph5Label13isEqualOnSideERKS1_j@Base 3.9.0 - _ZNK4geos9geomgraph5Label16getGeometryCountEv@Base 3.4.2 - _ZNK4geos9geomgraph5Label17allPositionsEqualEjNS_4geom8LocationE@Base 3.9.0 - _ZNK4geos9geomgraph5Label6isAreaEj@Base 3.9.0 - _ZNK4geos9geomgraph5Label6isAreaEv@Base 3.4.2 - _ZNK4geos9geomgraph5Label6isLineEj@Base 3.9.0 - _ZNK4geos9geomgraph5Label6isNullEj@Base 3.9.0 - _ZNK4geos9geomgraph5Label6isNullEv@Base 3.4.2 - _ZNK4geos9geomgraph5Label8toStringB5cxx11Ev@Base 3.5.1 - _ZNK4geos9geomgraph5Label9isAnyNullEj@Base 3.9.0 - _ZNK4geos9geomgraph7EdgeEnd16compareDirectionEPKS1_@Base 3.4.2 - _ZNK4geos9geomgraph7EdgeEnd5printB5cxx11Ev@Base 3.6.0 - _ZNK4geos9geomgraph7EdgeEnd9compareToEPKS1_@Base 3.4.2 - _ZNK4geos9geomgraph7NodeMap16getBoundaryNodesEiRSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.4.2 - _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 - _ZNK4geos9operation6buffer13BufferBuilder25createEmptyResultGeometryEv@Base 3.4.2 - (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 - _ZNK4geos9operation8geounion20ClassicUnionStrategy19isFloatingPrecisionEv@Base 3.9.0 - _ZNK4geos9operation9linemerge13LineMergeEdge7getLineEv@Base 3.4.2 - _ZNK4geos9operation9overlayng11LineBuilder12isResultLineEPKNS1_12OverlayLabelE@Base 3.9.0 - _ZNK4geos9operation9overlayng11LineBuilder13degreeOfLinesEPNS1_11OverlayEdgeE@Base 3.9.0 - _ZNK4geos9operation9overlayng11LineBuilder17effectiveLocationEPKNS1_12OverlayLabelEi@Base 3.9.0 - _ZNK4geos9operation9overlayng11LineBuilder21nextLineEdgeUnvisitedEPNS1_11OverlayEdgeE@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge10isInResultEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge10nextResultEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge11directionPtEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge11getEdgeRingEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge11getLocationEii@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge12resultSymbolB5cxx11Ev@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge13getCoordinateEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge13nextResultMaxEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge14getEdgeRingMaxEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge14isInResultAreaEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge14isInResultLineEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge14isResultLinkedEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge16getCoordinatesROEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge16isInResultEitherEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge17isResultMaxLinkedEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge18isInResultAreaBothEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge5symOEEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge7oNextOEEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge8getLabelEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge9isForwardEv@Base 3.9.0 - _ZNK4geos9operation9overlayng11OverlayEdge9isVisitedEv@Base 3.9.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 - _ZNK4geos9operation9overlayng12OverlayLabel10isBoundaryEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel10isCollapseEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel11getLocationEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel11getLocationEiib@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel12isLineInAreaEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel14isBoundaryBothEv@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel14isLineInteriorEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel14locationStringEibRSo@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel15dimensionSymbolB5cxx11Ei@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel15getLineLocationEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel15isBoundaryTouchEv@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel16isBoundaryEitherEv@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel18isBoundaryCollapseEv@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel18isInteriorCollapseEv@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel19isBoundarySingletonEv@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel21isLineLocationUnknownEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel25getLocationBoundaryOrLineEiib@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel28isCollapseAndNotPartInteriorEv@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel4copyEv@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel6isHoleEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel6isLineEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel6isLineEv@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel7isKnownEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel8hasSidesEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel8isLinearEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel8toStringEbRSo@Base 3.9.0 - _ZNK4geos9operation9overlayng12OverlayLabel9isNotPartEi@Base 3.9.0 - _ZNK4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategy19isFloatingPrecisionEv@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry11getEnvelopeEi@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry11getGeometryEi@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry11isAllPointsEv@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry12getAreaIndexEv@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry12getDimensionEi@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry6isAreaEi@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry6isLineEi@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry7isEmptyEi@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry8hasEdgesEi@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry8isSingleEv@Base 3.9.0 - _ZNK4geos9operation9overlayng13InputGeometry9hasPointsEv@Base 3.9.0 - _ZNK4geos9operation9overlayng13OverlayPoints10roundCoordEPKNS_4geom5PointEPKNS3_14PrecisionModelE@Base 3.9.0 - _ZNK4geos9operation9overlayng14PolygonBuilder15findSingleShellERSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.9.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 - _ZNK4geos9operation9overlayng17EdgeNodingBuilder11hasEdgesForEi@Base 3.9.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_12OverlayLabelEi@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge10isBoundaryEi@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge12isHoleMergedEiPKS2_S4_@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge12locationLeftEi@Base 3.9.0 - (subst)_ZNK4geos9operation9overlayng4Edge13getCoordinateE{size_t}@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge13locationRightEi@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge13populateLabelERNS1_12OverlayLabelE@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge16getCoordinatesROEv@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge17relativeDirectionEPKS2_@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge4sizeEv@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge6isHoleEi@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge7delSignEi@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge7isShellEi@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge8labelDimEii@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge9dimensionEi@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge9directionEv@Base 3.9.0 - _ZNK4geos9operation9overlayng4Edge9initLabelERNS1_12OverlayLabelEiiib@Base 3.9.0 - _ZNK4geos9operation9overlayng7EdgeKey6equalsEPKS2_@Base 3.9.0 - _ZNK4geos9operation9overlayng7EdgeKey9compareToEPKS2_@Base 3.9.0 - _ZNK4geos9precision10Translater9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 - _ZNK4geos9precision22CommonCoordinateFilter9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 - (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_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|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|arch=armel armhf)_ZNSt10unique_ptrIN4geos11triangulate8quadedge19QuadEdgeSubdivisionESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst|arch=armel armhf)_ZNSt10unique_ptrIN4geos11triangulate8quadedge19QuadEdgeSubdivisionESt14default_deleteIS3_EED2Ev@Base 3.9.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_ptrIN4geos5index7strtree7STRtreeESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos5index7strtree7STRtreeESt14default_deleteIS3_EED2Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos5index8quadtree4NodeESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt10unique_ptrIN4geos5index8quadtree4NodeESt14default_deleteIS3_EED2Ev@Base 3.9.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_ptrIN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometryESt14default_deleteIS4_EED1Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometryESt14default_deleteIS4_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|arch=ia64)_ZNSt10unique_ptrIN4geos9operation8geounion18GeometryListHolderESt14default_deleteIS3_EED1Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9operation8geounion18GeometryListHolderESt14default_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|subst)_ZNSt11_Deque_baseIN4geos6noding11SegmentNodeESaIS2_EE17_M_initialize_mapE{size_t}@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)_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)_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)_ZNSt5dequeIN4geos11triangulate8quadedge15QuadEdgeQuartetESaIS3_EE16_M_push_back_auxIJEEEvDpOT_@Base 3.9.0 - (optional=templinst|arch=!mips64el !x32)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE12emplace_backIJS3_EEEvDpOT_@Base 3.9.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_EE16_M_push_back_auxIJRKNS0_4geom10CoordinateERPvEEEvDpOT_@Base 3.9.0 - (optional=templinst|arch=mips64el)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE16_M_push_back_auxIJS3_EEEvDpOT_@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|subst)_ZNSt5dequeIN4geos5index7strtree13SimpleSTRnodeESaIS3_EE16_M_push_back_auxIJRiRPKNS0_4geom8EnvelopeERPvR{size_t}EEEvDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos5index7strtree13SimpleSTRpairESaIS3_EE16_M_push_back_auxIJRPNS2_13SimpleSTRnodeES9_RPNS2_12ItemDistanceEEEEvDpOT_@Base 3.9.0 - (optional=templinst|subst)_ZNSt5dequeIN4geos6noding11SegmentNodeESaIS2_EE16_M_push_back_auxIJRKNS1_18NodedSegmentStringERKNS0_4geom10CoordinateER{size_t}iEEEvDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos6noding9snapround8HotPixelESaIS3_EE16_M_push_back_auxIJRNS0_4geom10CoordinateERdEEEvDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos9algorithm6locate25IndexedPointInAreaLocatorESaIS3_EE16_M_push_back_auxIJRKNS0_4geom10LinearRingEEEEvDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos9algorithm6locate25IndexedPointInAreaLocatorESaIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos9algorithm6locate25IndexedPointInAreaLocatorESaIS3_EED2Ev@Base 3.9.0 - (optional=templinst|arch=!amd64 !arm64 !hppa !ia64 !mips64el !riscv64 !sparc64 !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|arch=amd64 arm64 hppa ia64 mips64el mipsel riscv64 sparc64 x32)_ZNSt5dequeIN4geos9operation9overlayng11OverlayEdgeESaIS3_EE16_M_push_back_auxIJRNS0_4geom10CoordinateES9_RbRPNS2_12OverlayLabelERPKNS7_18CoordinateSequenceEEEEvDpOT_@Base 3.9.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_auxIJRiEEEvDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng14EdgeSourceInfoESaIS3_EE16_M_push_back_auxIJRiS7_RbEEEvDpOT_@Base 3.9.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 - (optional=templinst)_ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE12emplace_backIJS4_EEEvDpOT_@Base 3.9.0 - _ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE16_M_push_back_auxIJRKS4_EEEvDpOT_@Base 3.7.0 - (subst)_ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE17_M_reallocate_mapE{size_t}b@Base 3.7.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 !hppa !ia64 !mips64el !riscv64 !sparc64 !x32)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE12emplace_backIJRKS2_EEEvDpOT_@Base 3.9.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_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.7.1 - (optional=templinst|arch=mipsel)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE6insertEN9__gnu_cxx17__normal_iteratorIPKS2_S4_EERS7_@Base 3.9.0 - (optional=templinst|arch=mipsel)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE7reserveEj@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIN4geos4geom11LineSegmentESaIS2_EE17_M_realloc_insertIJRKNS1_10CoordinateES8_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorIN4geos5index13intervalrtree21IntervalRTreeLeafNodeESaIS3_EE17_M_realloc_insertIJRdS7_RPvEEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.8.0 - (optional=templinst)_ZNSt6vectorIN4geos5index13intervalrtree21IntervalRTreeLeafNodeESaIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIN4geos5index13intervalrtree21IntervalRTreeLeafNodeESaIS3_EED2Ev@Base 3.9.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)_ZNSt6vectorIN4geos5index13intervalrtree23IntervalRTreeBranchNodeESaIS3_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt6vectorIN4geos5index13intervalrtree23IntervalRTreeBranchNodeESaIS3_EED2Ev@Base 3.9.0 - _ZNSt6vectorIN4geos5index7strtree13ItemsListItemESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.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)_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 - (optional=templinst|arch=armel armhf)_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EED1Ev@Base 3.8.0 - (optional=templinst|arch=armel armhf)_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EED2Ev@Base 3.8.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 - _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)_ZNSt6vectorIPKN4geos4geom7PolygonESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.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 - _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 - _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)_ZNSt6vectorIPN4geos5index5chain13MonotoneChainESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 - (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 - _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)_ZNSt6vectorIPN4geos9operation9overlayng15OverlayEdgeRingESaIS4_EE17_M_realloc_insertIJS4_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)_ZNSt6vectorISt10unique_ptrIKN4geos4geom18CoordinateSequenceESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.9.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_insertIJRPS3_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_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_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@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_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|subst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_default_appendE{size_t}@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPNS2_10LineStringEEEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPNS2_5PointEEEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.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_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_ptrIN4geos5index5chain13MonotoneChainESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJS7_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.9.0 - (optional=templinst|subst)_ZNSt6vectorISt10unique_ptrIN4geos5index5chain13MonotoneChainESt14default_deleteIS4_EESaIS7_EE7reserveE{size_t}@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos5index5chain13MonotoneChainESt14default_deleteIS4_EESaIS7_EED1Ev@Base 3.8.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos5index5chain13MonotoneChainESt14default_deleteIS4_EESaIS7_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_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_EED1Ev@Base 3.9.0 - (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15MaximalEdgeRingESt14default_deleteIS4_EESaIS7_EED2Ev@Base 3.9.0 - (optional=templinst|arch=ia64)_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 - _ZNSt6vectorIdSaIdEE17_M_realloc_insertIJRKdEEEvN9__gnu_cxx17__normal_iteratorIPdS1_EEDpOT_@Base 3.7.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 - _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)_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)_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_PNS0_9operation9overlayng11OverlayEdgeEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE24_M_get_insert_unique_posERS4_@Base 3.9.0 - (optional=templinst|arch=!armel !armhf)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9operation9overlayng11OverlayEdgeEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS9_ERS4_@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)_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)_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)_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 armel armhf hppa hurd-i386 i386 ia64 mips64el mipsel powerpc 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|arch=alpha amd64 arm64 hppa hurd-i386 i386 ia64 kfreebsd-amd64 m68k mips64el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64 x32)_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 - (optional=templinst)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateESt4pairIKS4_PNS0_9operation12EndpointInfoEESt10_Select1stISA_ENS1_18CoordinateLessThenESaISA_EE24_M_get_insert_unique_posERS6_@Base 3.4.2 - (optional=templinst|arch=alpha amd64 arm64 hppa hurd-i386 i386 ia64 kfreebsd-amd64 m68k mips64el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64 x32)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateESt4pairIKS4_PNS0_9operation12EndpointInfoEESt10_Select1stISA_ENS1_18CoordinateLessThenESaISA_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISA_ERS6_@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|arch=alpha amd64 arm64 hppa hurd-i386 i386 ia64 kfreebsd-amd64 m68k mips64el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64 x32)_ZNSt8_Rb_treeIPN4geos4geom10CoordinateESt4pairIKS3_PNS0_9geomgraph4NodeEESt10_Select1stIS9_ENS1_18CoordinateLessThenESaIS9_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS9_ERS5_@Base 3.4.2 - (optional=templinst)_ZNSt8_Rb_treeIPN4geos6noding11SegmentNodeES3_St9_IdentityIS3_ENS1_13SegmentNodeLTESaIS3_EE16_M_insert_uniqueIRKS3_EESt4pairISt17_Rb_tree_iteratorIS3_EbEOT_@Base 3.7.0 - _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)_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=!alpha !amd64 !arm64 !hppa !hurd-i386 !i386 !ia64 !kfreebsd-amd64 !m68k !mips64el !mipsel !powerpc !ppc64 !ppc64el !riscv64 !s390x !sh4 !sparc64 !x32)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEEiS4_NS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_T0_SF_T1_T2_@Base 3.4.2 - (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=!armel !armhf !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=!alpha !hppa !ia64 !kfreebsd-i386 !mips !mips64el !mipsel !riscv64 !sparc64)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_SE_SE_T0_@Base 3.6.2 - (optional=templinst)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_SH_T0_@Base 3.9.0 - (optional=templinst)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos9geomgraph16EdgeIntersectionESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_SC_T0_@Base 3.9.0 - (optional=templinst|arch=armel armhf hurd-i386 i386 ia64 m68k mipsel powerpc)_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)_ZSt13__min_elementIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer12DepthSegmentESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterINS4_20DepthSegmentLessThenEEEET_SG_SG_T0_@Base 3.9.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)_ZSt15__copy_move_ditILb1EPN4geos9operation9overlayng11OverlayEdgeERS4_PS4_St15_Deque_iteratorIS4_S5_S6_EET3_S7_IT0_T1_T2_ESD_S9_@Base 3.9.0 - (optional=templinst|arch=armel armhf)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_SE_T0_@Base 3.9.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|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|arch=armel armhf)_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_SE_SE_SE_T0_@Base 3.9.0 - (optional=templinst)_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_SH_SH_T0_@Base 3.9.0 - (optional=templinst)_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_SG_SG_T0_@Base 3.8.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|arch=armel armhf)_ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEENS0_5__ops14_Val_comp_iterINS3_18CoordinateLessThenEEEEvT_T0_@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|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 - _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 - _ZTIN4geos2io14ParseExceptionE@Base 3.4.2 - _ZTIN4geos2io9WKBWriterE@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 - _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 - _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 - _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 - _ZTIN4geos5index9sweepline22SweepLineOverlapActionE@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 - _ZTIN4geos9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZTIN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 - _ZTIN4geos9algorithm6locate22PointOnGeometryLocatorE@Base 3.4.2 - _ZTIN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorE@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 - _ZTIN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionE@Base 3.4.2 - _ZTIN4geos9operation5valid9IsValidOpE@Base 3.4.2 - _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 - _ZTIN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 - _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 - _ZTSN4geos2io14ParseExceptionE@Base 3.4.2 - _ZTSN4geos2io9WKBWriterE@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 - _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 - _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 - _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 - _ZTSN4geos5index9sweepline22SweepLineOverlapActionE@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 - _ZTSN4geos9algorithm16BoundaryNodeRuleE@Base 3.4.2 - _ZTSN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 - _ZTSN4geos9algorithm6locate22PointOnGeometryLocatorE@Base 3.4.2 - _ZTSN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorE@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 - _ZTSN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionE@Base 3.4.2 - _ZTSN4geos9operation5valid9IsValidOpE@Base 3.4.2 - _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 - _ZTSN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 - _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 - _ZTVN4geos2io9WKBWriterE@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 - _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 - _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 - _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 - _ZTVN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 - _ZTVN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorE@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 - _ZTVN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionE@Base 3.4.2 - _ZTVN4geos9operation5valid9IsValidOpE@Base 3.4.2 - _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 - _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 - _ZTVN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 - _ZZ19getMachineByteOrdervE12endian_check@Base 3.4.2 - (optional=templinst|subst)_ZZNSt8__detail18__to_chars_10_implI{size_t}EEvPcjT_E8__digits@Base 3.9.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 - (c++)"non-virtual thunk to geos::operation::distance::FacetSequenceTreeBuilder::FacetSequenceTree::~FacetSequenceTree()@Base" 3.9.0 diff -Nru geos-3.9.0/debian/libgeos-3.9.1.install geos-3.9.1/debian/libgeos-3.9.1.install --- geos-3.9.0/debian/libgeos-3.9.1.install 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.9.1/debian/libgeos-3.9.1.install 2021-08-15 15:49:28.000000000 +0000 @@ -0,0 +1 @@ +usr/lib/*/libgeos-* diff -Nru geos-3.9.0/debian/libgeos-3.9.1.symbols geos-3.9.1/debian/libgeos-3.9.1.symbols --- geos-3.9.0/debian/libgeos-3.9.1.symbols 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.9.1/debian/libgeos-3.9.1.symbols 2021-08-15 15:49:28.000000000 +0000 @@ -0,0 +1,5331 @@ +# SymbolsHelper-Confirmed: 3.9.1 amd64 +libgeos-3.9.1.so #PACKAGE# #MINVER# +* Build-Depends-Package: libgeos++-dev + (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 + _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 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitor5visitEPPNS1_8QuadEdgeE@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD0Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD1Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision26TriangleCoordinatesVisitorD2Ev@Base 3.4.2 + _ZN4geos11triangulate8quadedge19QuadEdgeSubdivision27TriangleCircumcentreVisitor5visitEPPNS1_8QuadEdgeE@Base 3.5.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 + _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 + _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 + _ZN4geos2io15StringTokenizer7getNValEv@Base 3.4.2 + _ZN4geos2io15StringTokenizer7getSValB5cxx11Ev@Base 3.5.1 + _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 + _ZN4geos2io21ByteOrderDataInStream10readDoubleEv@Base 3.4.2 + _ZN4geos2io21ByteOrderDataInStream11setInStreamEPSi@Base 3.4.2 + _ZN4geos2io21ByteOrderDataInStream7readIntEv@Base 3.4.2 + _ZN4geos2io21ByteOrderDataInStream8readByteEv@Base 3.4.2 + _ZN4geos2io21ByteOrderDataInStream8readLongEv@Base 3.4.2 + _ZN4geos2io21ByteOrderDataInStream8setOrderEi@Base 3.4.2 + _ZN4geos2io21ByteOrderDataInStreamC1EPSi@Base 3.4.2 + _ZN4geos2io21ByteOrderDataInStreamC2EPSi@Base 3.4.2 + _ZN4geos2io21ByteOrderDataInStreamD1Ev@Base 3.4.2 + _ZN4geos2io21ByteOrderDataInStreamD2Ev@Base 3.4.2 + _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 + _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 + _ZN4geos2io9WKBReader22readCoordinateSequenceEi@Base 3.4.2 + _ZN4geos2io9WKBReader22readGeometryCollectionEv@Base 3.4.2 + _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 + _ZN4geos2io9WKBWriter14setIncludeSRIDEb@Base 3.9.0 + _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 + _ZN4geos2io9WKBWriter9writeSRIDEi@Base 3.4.2 + _ZN4geos2io9WKBWriterC1Ehib@Base 3.9.0 + _ZN4geos2io9WKBWriterC2Ehib@Base 3.9.0 + _ZN4geos2io9WKBWriterD0Ev@Base 3.4.2 + _ZN4geos2io9WKBWriterD1Ev@Base 3.4.2 + _ZN4geos2io9WKBWriterD2Ev@Base 3.4.2 + _ZN4geos2io9WKTReader11getNextWordB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 + _ZN4geos2io9WKTReader12isNumberNextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader13getNextCloserB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 + _ZN4geos2io9WKTReader13getNextNumberEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader13readPointTextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader14getCoordinatesEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader15readPolygonTextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader18readLineStringTextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader18readLinearRingTextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader18readMultiPointTextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader20getNextCloserOrCommaB5cxx11EPNS0_15StringTokenizerE@Base 3.5.1 + (subst)_ZN4geos2io9WKTReader20getNextEmptyOrOpenerB5cxx11EPNS0_15StringTokenizerER{size_t}@Base 3.9.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos2io9WKTReader20getPreciseCoordinateEPNS0_15StringTokenizerERNS_4geom10CoordinateERj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos2io9WKTReader20getPreciseCoordinateEPNS0_15StringTokenizerERNS_4geom10CoordinateERm@Base 3.7.0 + _ZN4geos2io9WKTReader20readMultiPolygonTextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader22readGeometryTaggedTextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader23readMultiLineStringTextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader26readGeometryCollectionTextEPNS0_15StringTokenizerE@Base 3.4.2 + _ZN4geos2io9WKTReader4readERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos2io9WKTReaderC1EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos2io9WKTReaderC1ERKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos2io9WKTReaderC1Ev@Base 3.4.2 + _ZN4geos2io9WKTReaderC2EPKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos2io9WKTReaderC2ERKNS_4geom15GeometryFactoryE@Base 3.4.2 + _ZN4geos2io9WKTReaderC2Ev@Base 3.4.2 + _ZN4geos2io9WKTReaderD1Ev@Base 3.4.2 + _ZN4geos2io9WKTReaderD2Ev@Base 3.4.2 + _ZN4geos2io9WKTWriter11writeNumberB5cxx11Ed@Base 3.5.1 + _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 + _ZN4geos2io9WKTWriter6indentEiPNS0_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 + _ZN4geos4geom10Coordinate7setNullEv@Base 3.4.2 + _ZN4geos4geom10CoordinateC1Eddd@Base 3.4.2 + _ZN4geos4geom10CoordinateC2Eddd@Base 3.4.2 + _ZN4geos4geom10LineString15normalizeClosedEv@Base 3.9.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 + _ZN4geos4geom11LineSegment13closestPointsEPKS1_@Base 3.4.2 + _ZN4geos4geom11LineSegment13closestPointsERKS1_@Base 3.4.2 + _ZN4geos4geom11LineSegment14setCoordinatesERKNS0_10CoordinateES4_@Base 3.4.2 + _ZN4geos4geom11LineSegment14setCoordinatesERKS1_@Base 3.4.2 + _ZN4geos4geom11LineSegment7reverseEv@Base 3.4.2 + _ZN4geos4geom11LineSegment9normalizeEv@Base 3.4.2 + _ZN4geos4geom11LineSegmentC1ERKNS0_10CoordinateES4_@Base 3.4.2 + _ZN4geos4geom11LineSegmentC1Edddd@Base 3.4.2 + _ZN4geos4geom11LineSegmentC1Ev@Base 3.4.2 + _ZN4geos4geom11LineSegmentC2ERKNS0_10CoordinateES4_@Base 3.4.2 + _ZN4geos4geom11LineSegmentC2Edddd@Base 3.4.2 + _ZN4geos4geom11LineSegmentC2Ev@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos4geom11LineSegmentixEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos4geom11LineSegmentixEm@Base 3.7.0 + _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 + _ZN4geos4geom12MultiPolygonC1ERKS1_@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 + _ZN4geos4geom12MultiPolygonC2ERKS1_@Base 3.4.2 + _ZN4geos4geom12MultiPolygonD0Ev@Base 3.4.2 + _ZN4geos4geom12MultiPolygonD1Ev@Base 3.4.2 + _ZN4geos4geom12MultiPolygonD2Ev@Base 3.4.2 + _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 + _ZN4geos4geom15MultiLineStringC1ERKS1_@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 + _ZN4geos4geom15MultiLineStringC2ERKS1_@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 + _ZN4geos4geom17TrianglePredicate16isInCircleRobustERKNS0_10CoordinateES4_S4_S4_@Base 3.4.2 + _ZN4geos4geom17TrianglePredicate19isInCircleNonRobustERKNS0_10CoordinateES4_S4_S4_@Base 3.4.2 + _ZN4geos4geom17TrianglePredicate20isInCircleNormalizedERKNS0_10CoordinateES4_S4_S4_@Base 3.4.2 + _ZN4geos4geom17TrianglePredicate7triAreaERKNS0_10CoordinateES4_S4_@Base 3.4.2 + _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 + _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 + _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 + (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 + _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 + _ZN4geos4geom4util16GeometryCombiner14extractFactoryERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.0 + _ZN4geos4geom4util16GeometryCombiner15extractElementsEPKNS0_8GeometryERSt6vectorIS5_SaIS5_EE@Base 3.8.0 + _ZN4geos4geom4util16GeometryCombiner7combineEPKNS0_8GeometryES5_@Base 3.4.2 + _ZN4geos4geom4util16GeometryCombiner7combineEPKNS0_8GeometryES5_S5_@Base 3.4.2 + _ZN4geos4geom4util16GeometryCombiner7combineERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.0 + _ZN4geos4geom4util16GeometryCombiner7combineERKSt6vectorISt10unique_ptrINS0_8GeometryESt14default_deleteIS5_EESaIS8_EE@Base 3.8.0 + _ZN4geos4geom4util16GeometryCombiner7combineEv@Base 3.4.2 + _ZN4geos4geom4util16GeometryCombinerC1ERKSt6vectorIPKNS0_8GeometryESaIS6_EE@Base 3.8.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 + _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 + _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 + _ZN4geos4geom8Envelope10intersectsERKNS0_10CoordinateES4_S4_S4_@Base 3.4.2 + _ZN4geos4geom8Envelope15expandToIncludeEPKS1_@Base 3.4.2 + _ZN4geos4geom8Envelope15expandToIncludeERKNS0_10CoordinateE@Base 3.4.2 + _ZN4geos4geom8Envelope15expandToIncludeERKS1_@Base 3.9.0 + _ZN4geos4geom8Envelope15expandToIncludeEdd@Base 3.4.2 + _ZN4geos4geom8Envelope20distanceToCoordinateERKNS0_10CoordinateES4_S4_@Base 3.9.0 + _ZN4geos4geom8Envelope27distanceSquaredToCoordinateERKNS0_10CoordinateES4_S4_@Base 3.9.0 + _ZN4geos4geom8Envelope4initERKNS0_10CoordinateE@Base 3.4.2 + _ZN4geos4geom8Envelope4initERKNS0_10CoordinateES4_@Base 3.4.2 + _ZN4geos4geom8Envelope4initEdddd@Base 3.4.2 + _ZN4geos4geom8Envelope4initEv@Base 3.4.2 + _ZN4geos4geom8Envelope5splitERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_@Base 3.5.1 + _ZN4geos4geom8Envelope8distanceEdddd@Base 3.4.2 + _ZN4geos4geom8Envelope8expandByEdd@Base 3.4.2 + _ZN4geos4geom8Envelope9setToNullEv@Base 3.4.2 + _ZN4geos4geom8Envelope9translateEdd@Base 3.4.2 + _ZN4geos4geom8EnvelopeC1ERKNS0_10CoordinateE@Base 3.4.2 + _ZN4geos4geom8EnvelopeC1ERKNS0_10CoordinateES4_@Base 3.4.2 + _ZN4geos4geom8EnvelopeC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4geom8EnvelopeC1ERKS1_@Base 3.4.2 + _ZN4geos4geom8EnvelopeC1Edddd@Base 3.4.2 + _ZN4geos4geom8EnvelopeC1Ev@Base 3.4.2 + _ZN4geos4geom8EnvelopeC2ERKNS0_10CoordinateE@Base 3.4.2 + _ZN4geos4geom8EnvelopeC2ERKNS0_10CoordinateES4_@Base 3.4.2 + _ZN4geos4geom8EnvelopeC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.5.1 + _ZN4geos4geom8EnvelopeC2ERKS1_@Base 3.4.2 + _ZN4geos4geom8EnvelopeC2Edddd@Base 3.4.2 + _ZN4geos4geom8EnvelopeC2Ev@Base 3.4.2 + _ZN4geos4geom8EnvelopeaSERKS1_@Base 3.4.2 + _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 + _ZN4geos4geom8Quadrant10isNorthernEi@Base 3.9.0 + _ZN4geos4geom8Quadrant10isOppositeEii@Base 3.9.0 + _ZN4geos4geom8Quadrant13isInHalfPlaneEii@Base 3.9.0 + _ZN4geos4geom8Quadrant15commonHalfPlaneEii@Base 3.9.0 + _ZN4geos4geom8Quadrant8quadrantERKNS0_10CoordinateES4_@Base 3.9.0 + _ZN4geos4geom8Quadrant8quadrantEdd@Base 3.9.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 + _ZN4geos4geom8Triangle8inCentreERNS0_10CoordinateE@Base 3.4.2 + _ZN4geos4geom9Dimension16toDimensionValueEc@Base 3.4.2 + _ZN4geos4geom9Dimension17toDimensionSymbolEi@Base 3.4.2 + _ZN4geos4geomeqERKNS0_10CoordinateES3_@Base 3.4.2 + _ZN4geos4geomeqERKNS0_11LineSegmentES3_@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_11LineSegmentE@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 + _ZN4geos4geomneERKNS0_10CoordinateES3_@Base 3.4.2 + _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 + (arch=amd64 arm64 x32)_ZN4geos4util21IllegalStateExceptionC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.9.0 + (arch=amd64 arm64 x32)_ZN4geos4util21IllegalStateExceptionC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base 3.9.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 + _ZN4geos5index5chain13MonotoneChain11getEnvelopeEd@Base 3.9.0 + _ZN4geos5index5chain13MonotoneChain11getEnvelopeEv@Base 3.9.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index5chain13MonotoneChain13computeSelectERKNS_4geom8EnvelopeEjjRNS1_25MonotoneChainSelectActionE@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index5chain13MonotoneChain13computeSelectERKNS_4geom8EnvelopeEmmRNS1_25MonotoneChainSelectActionE@Base 3.7.0 + _ZN4geos5index5chain13MonotoneChain15computeOverlapsEPS2_PNS1_26MonotoneChainOverlapActionE@Base 3.4.2 + _ZN4geos5index5chain13MonotoneChain15computeOverlapsEPS2_dPNS1_26MonotoneChainOverlapActionE@Base 3.9.0 + (subst)_ZN4geos5index5chain13MonotoneChain15computeOverlapsE{size_t}{size_t}RS2_{size_t}{size_t}dRNS1_26MonotoneChainOverlapActionE@Base 3.9.0 + _ZN4geos5index5chain13MonotoneChain6selectERKNS_4geom8EnvelopeERNS1_25MonotoneChainSelectActionE@Base 3.4.2 + (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 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index5chain20MonotoneChainBuilder12findChainEndERKNS_4geom18CoordinateSequenceEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index5chain20MonotoneChainBuilder12findChainEndERKNS_4geom18CoordinateSequenceEm@Base 3.7.0 + _ZN4geos5index5chain20MonotoneChainBuilder9getChainsEPKNS_4geom18CoordinateSequenceEPv@Base 3.4.2 + _ZN4geos5index5chain20MonotoneChainBuilder9getChainsEPKNS_4geom18CoordinateSequenceEPvRSt6vectorISt10unique_ptrINS1_13MonotoneChainESt14default_deleteISA_EESaISD_EE@Base 3.8.0 + (subst)_ZN4geos5index5chain25MonotoneChainSelectAction6selectERNS1_13MonotoneChainE{size_t}@Base 3.8.0 + _ZN4geos5index5chain26MonotoneChainOverlapAction7overlapERKNS_4geom11LineSegmentES6_@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos5index5chain26MonotoneChainOverlapAction7overlapERNS1_13MonotoneChainEjS4_j@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos5index5chain26MonotoneChainOverlapAction7overlapERNS1_13MonotoneChainEmS4_m@Base 3.7.0 + _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 + (subst)_ZN4geos5index7strtree15AbstractSTRtreeC1E{size_t}@Base 3.9.0 + (subst)_ZN4geos5index7strtree15AbstractSTRtreeC2E{size_t}@Base 3.9.0 + _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 + _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 + _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 + _ZN4geos5index7strtree8Interval15expandToIncludeEPKS2_@Base 3.5.0 + _ZN4geos5index7strtree8Interval9getCentreEv@Base 3.4.2 + _ZN4geos5index7strtree8IntervalC1Edd@Base 3.4.2 + _ZN4geos5index7strtree8IntervalC2Edd@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 + _ZN4geos5shape7fractal11HilbertCode10checkLevelEi@Base 3.9.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|arch=armel armhf)_ZN4geos6detail11make_uniqueINS_4geom27FixedSizeCoordinateSequenceILj1EEEJRjEEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@Base 3.9.0 + (optional=templinst|arch=armel armhf)_ZN4geos6detail11make_uniqueINS_4geom27FixedSizeCoordinateSequenceILj2EEEJRjEEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@Base 3.9.0 + (optional=templinst|arch=armel armhf)_ZN4geos6detail11make_uniqueINS_4geom27FixedSizeCoordinateSequenceILj3EEEJRjEEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@Base 3.9.0 + (optional=templinst|arch=armel armhf)_ZN4geos6detail11make_uniqueINS_4geom27FixedSizeCoordinateSequenceILj4EEEJRjEEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@Base 3.9.0 + (optional=templinst|arch=armel armhf)_ZN4geos6detail11make_uniqueINS_4geom27FixedSizeCoordinateSequenceILj5EEEJRjEEENS0_10_Unique_ifIT_E14_Single_objectEDpOT0_@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 + _ZN4geos6noding11SegmentNode9compareToERKS1_@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 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos6noding12MCIndexNoder20SegmentOverlapAction7overlapERNS_5index5chain13MonotoneChainEjS6_j@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos6noding12MCIndexNoder20SegmentOverlapAction7overlapERNS_5index5chain13MonotoneChainEmS6_m@Base 3.7.0 + _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD0Ev@Base 3.4.2 + _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD1Ev@Base 3.4.2 + _ZN4geos6noding12MCIndexNoder20SegmentOverlapActionD2Ev@Base 3.4.2 + _ZN4geos6noding12MCIndexNoder3addEPNS0_13SegmentStringE@Base 3.4.2 + _ZN4geos6noding12MCIndexNoder8getIndexEv@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 + _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 + _ZN4geos6noding15SegmentNodeListD1Ev@Base 3.4.2 + _ZN4geos6noding15SegmentNodeListD2Ev@Base 3.4.2 + _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 + _ZN4geos6noding18NodedSegmentString10safeOctantERKNS_4geom10CoordinateES5_@Base 3.4.2 + _ZN4geos6noding18NodedSegmentString11getNodeListEv@Base 3.4.2 + (subst)_ZN4geos6noding18NodedSegmentString15addIntersectionEPNS_9algorithm15LineIntersectorE{size_t}{size_t}{size_t}@Base 3.8.0 + (subst)_ZN4geos6noding18NodedSegmentString15addIntersectionERKNS_4geom10CoordinateE{size_t}@Base 3.8.0 + (subst)_ZN4geos6noding18NodedSegmentString16addIntersectionsEPNS_9algorithm15LineIntersectorE{size_t}{size_t}@Base 3.8.0 + _ZN4geos6noding18NodedSegmentString18getNodedSubstringsERKSt6vectorIPNS0_13SegmentStringESaIS4_EE@Base 3.4.2 + _ZN4geos6noding18NodedSegmentString18getNodedSubstringsERKSt6vectorIPNS0_13SegmentStringESaIS4_EEPS6_@Base 3.4.2 + _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 !ia64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_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)_ZN4geos6noding24NodingIntersectionFinder12isEndSegmentEPKNS0_13SegmentStringE{size_t}@Base 3.8.0 + (subst)_ZN4geos6noding24NodingIntersectionFinder20processIntersectionsEPNS0_13SegmentStringE{size_t}S3_{size_t}@Base 3.8.0 + _ZN4geos6noding24NodingIntersectionFinder28isInteriorVertexIntersectionERKNS_4geom10CoordinateES5_S5_S5_bbbb@Base 3.8.0 + _ZN4geos6noding24NodingIntersectionFinder28isInteriorVertexIntersectionERKNS_4geom10CoordinateES5_bb@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 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapAction7overlapERNS_5index5chain13MonotoneChainEjS6_j@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapAction7overlapERNS_5index5chain13MonotoneChainEmS6_m@Base 3.7.0 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD0Ev@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD1Ev@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector20SegmentOverlapActionD2Ev@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersector7processEPSt6vectorIPKNS0_13SegmentStringESaIS5_EE@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersectorC1Ev@Base 3.4.2 + _ZN4geos6noding34MCIndexSegmentSetMutualIntersectorC2Ev@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 + _ZN4geos6noding9snapround17SnapRoundingNoder5roundERKNS_4geom10CoordinateERS4_@Base 3.9.0 + _ZN4geos6noding9snapround17SnapRoundingNoder5roundERKSt6vectorINS_4geom10CoordinateESaIS5_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)_ZN4geos6noding9snapround18HotPixelSnapAction6selectERNS_5index5chain13MonotoneChainE{size_t}@Base 3.8.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 + _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 + _ZN4geos9algorithm10ConvexHull18extractCoordinatesEPKNS_4geom8GeometryE@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 + _ZN4geos9algorithm10ConvexHullC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm10ConvexHullC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm10ConvexHullD1Ev@Base 3.4.2 + _ZN4geos9algorithm10ConvexHullD2Ev@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 + _ZN4geos9algorithm14CGAlgorithmsDD22orientationIndexFilterEdddddd@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 + _ZN4geos9algorithm15LineIntersector17zGetOrInterpolateERKNS_4geom10CoordinateES5_S5_@Base 3.9.0 + _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 + _ZN4geos9algorithm15LineIntersector21zGetOrInterpolateCopyERKNS_4geom10CoordinateES5_S5_@Base 3.9.0 + _ZN4geos9algorithm15LineIntersector22isInteriorIntersectionEv@Base 3.4.2 + (subst)_ZN4geos9algorithm15LineIntersector22isInteriorIntersectionE{size_t}@Base 3.9.0 + (subst)_ZN4geos9algorithm15LineIntersector27getIntersectionAlongSegmentE{size_t}{size_t}@Base 3.9.0 + _ZN4geos9algorithm15LineIntersector28computeCollinearIntersectionERKNS_4geom10CoordinateES5_S5_S5_@Base 3.4.2 + _ZN4geos9algorithm15LineIntersector4zGetERKNS_4geom10CoordinateES5_@Base 3.9.0 + _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 + _ZN4geos9algorithm18InteriorPointPoint3addEPKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9algorithm18InteriorPointPoint3addEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm18InteriorPointPointC1EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm18InteriorPointPointC2EPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm18RayCrossingCounter11getLocationEv@Base 3.4.2 + _ZN4geos9algorithm18RayCrossingCounter12countSegmentERKNS_4geom10CoordinateES5_@Base 3.4.2 + _ZN4geos9algorithm18RayCrossingCounter16isPointInPolygonEv@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 + _ZN4geos9algorithm5Angle10PI_TIMES_2E@Base 3.4.2 + _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 + _ZN4geos9algorithm5Angle9PI_OVER_2E@Base 3.4.2 + _ZN4geos9algorithm5Angle9PI_OVER_4E@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 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitor9visitItemEPv@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorD0Ev@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorD1Ev@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorD2Ev@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometry4initERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometry5queryEddPNS_5index11ItemVisitorE@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)_ZN4geos9algorithm8distance23DiscreteFrechetDistance13getSegementAtERKNS_4geom18CoordinateSequenceE{size_t}@Base 3.7.0 + (subst)_ZN4geos9algorithm8distance23DiscreteFrechetDistance17getFrecheDistanceERSt6vectorIS3_INS1_17PointPairDistanceESaIS4_EESaIS6_EE{size_t}{size_t}RKNS_4geom18CoordinateSequenceESD_@Base 3.7.0 + _ZN4geos9algorithm8distance23DiscreteFrechetDistance7computeERKNS_4geom8GeometryES6_@Base 3.7.0 + _ZN4geos9algorithm8distance23DiscreteFrechetDistance8distanceERKNS_4geom8GeometryES6_@Base 3.7.0 + _ZN4geos9algorithm8distance23DiscreteFrechetDistance8distanceERKNS_4geom8GeometryES6_d@Base 3.7.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 + _ZN4geos9geomgraph11PlanarGraph14isBoundaryNodeEiRKNS_4geom10CoordinateE@Base 3.4.2 + _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 + _ZN4geos9geomgraph12DirectedEdge10getNextMinEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge10isInResultEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge10isLineEdgeEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge10setNextMinEPS1_@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge10setVisitedEb@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge11depthFactorENS_4geom8LocationES3_@Base 3.8.0 + _ZN4geos9geomgraph12DirectedEdge11getEdgeRingEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge11setEdgeRingEPNS0_8EdgeRingE@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge11setInResultEb@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge13setEdgeDepthsEii@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge14getMinEdgeRingEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge14setMinEdgeRingEPNS0_8EdgeRingE@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge14setVisitedEdgeEb@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge18isInteriorAreaEdgeEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge20computeDirectedLabelEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge6getSymEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge6setSymEPS1_@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge7getNextEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge7setNextEPS1_@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge8getDepthEi@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge8setDepthEii@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge9isForwardEv@Base 3.4.2 + _ZN4geos9geomgraph12DirectedEdge9isVisitedEv@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 + _ZN4geos9geomgraph13GeometryGraph11getGeometryEv@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph11insertPointEiRKNS_4geom10CoordinateENS2_8LocationE@Base 3.8.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 + _ZN4geos9geomgraph13GeometryGraph16getBoundaryNodesERSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.4.2 + _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 + _ZN4geos9geomgraph13GeometryGraph19insertBoundaryPointEiRKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraph23addSelfIntersectionNodeEiRKNS_4geom10CoordinateENS2_8LocationE@Base 3.8.0 + _ZN4geos9geomgraph13GeometryGraph24addSelfIntersectionNodesEi@Base 3.4.2 + _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 + _ZN4geos9geomgraph13GeometryGraphC1EiPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraphC1EiPKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraphC1Ev@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraphC2EiPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraphC2EiPKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9geomgraph13GeometryGraphC2Ev@Base 3.4.2 + _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 + _ZN4geos9geomgraph16TopologyLocation11setLocationENS_4geom8LocationE@Base 3.8.0 + (subst)_ZN4geos9geomgraph16TopologyLocation11setLocationE{size_t}NS_4geom8LocationE@Base 3.8.0 + _ZN4geos9geomgraph16TopologyLocation12setLocationsENS_4geom8LocationES3_S3_@Base 3.8.0 + _ZN4geos9geomgraph16TopologyLocation15setAllLocationsENS_4geom8LocationE@Base 3.8.0 + _ZN4geos9geomgraph16TopologyLocation21setAllLocationsIfNullENS_4geom8LocationE@Base 3.8.0 + _ZN4geos9geomgraph16TopologyLocation4flipEv@Base 3.4.2 + _ZN4geos9geomgraph16TopologyLocation5mergeERKS1_@Base 3.4.2 + _ZN4geos9geomgraph16TopologyLocationC1ENS_4geom8LocationE@Base 3.8.0 + _ZN4geos9geomgraph16TopologyLocationC1ENS_4geom8LocationES3_S3_@Base 3.8.0 + _ZN4geos9geomgraph16TopologyLocationC1ERKS1_@Base 3.4.2 + _ZN4geos9geomgraph16TopologyLocationC2ENS_4geom8LocationE@Base 3.8.0 + _ZN4geos9geomgraph16TopologyLocationC2ENS_4geom8LocationES3_S3_@Base 3.8.0 + _ZN4geos9geomgraph16TopologyLocationC2ERKS1_@Base 3.4.2 + _ZN4geos9geomgraph16TopologyLocationaSERKS1_@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 + _ZN4geos9geomgraph4Node16setLabelBoundaryEi@Base 3.4.2 + _ZN4geos9geomgraph4Node21computeMergedLocationERKNS0_5LabelEi@Base 3.4.2 + _ZN4geos9geomgraph4Node3addEPNS0_7EdgeEndE@Base 3.4.2 + _ZN4geos9geomgraph4Node4addZEd@Base 3.4.2 + _ZN4geos9geomgraph4Node5printB5cxx11Ev@Base 3.5.1 + _ZN4geos9geomgraph4Node8getEdgesEv@Base 3.4.2 + _ZN4geos9geomgraph4Node8setLabelEiNS_4geom8LocationE@Base 3.8.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 + _ZN4geos9geomgraph5Depth15depthAtLocationENS_4geom8LocationE@Base 3.8.0 + _ZN4geos9geomgraph5Depth3addERKNS0_5LabelE@Base 3.4.2 + _ZN4geos9geomgraph5Depth3addEiiNS_4geom8LocationE@Base 3.8.0 + _ZN4geos9geomgraph5Depth8setDepthEiii@Base 3.4.2 + _ZN4geos9geomgraph5Depth9normalizeEv@Base 3.4.2 + _ZN4geos9geomgraph5DepthC1Ev@Base 3.4.2 + _ZN4geos9geomgraph5DepthC2Ev@Base 3.4.2 + _ZN4geos9geomgraph5DepthD0Ev@Base 3.4.2 + _ZN4geos9geomgraph5DepthD1Ev@Base 3.4.2 + _ZN4geos9geomgraph5DepthD2Ev@Base 3.4.2 + _ZN4geos9geomgraph5Label11setLocationEjNS_4geom8LocationE@Base 3.9.0 + _ZN4geos9geomgraph5Label11setLocationEjjNS_4geom8LocationE@Base 3.9.0 + _ZN4geos9geomgraph5Label11toLineLabelERKS1_@Base 3.4.2 + _ZN4geos9geomgraph5Label15setAllLocationsEjNS_4geom8LocationE@Base 3.9.0 + _ZN4geos9geomgraph5Label21setAllLocationsIfNullENS_4geom8LocationE@Base 3.8.0 + _ZN4geos9geomgraph5Label21setAllLocationsIfNullEjNS_4geom8LocationE@Base 3.9.0 + _ZN4geos9geomgraph5Label4flipEv@Base 3.4.2 + _ZN4geos9geomgraph5Label5mergeERKS1_@Base 3.4.2 + _ZN4geos9geomgraph5Label6toLineEj@Base 3.9.0 + _ZN4geos9geomgraph5LabelC1ENS_4geom8LocationE@Base 3.8.0 + _ZN4geos9geomgraph5LabelC1ENS_4geom8LocationES3_S3_@Base 3.8.0 + _ZN4geos9geomgraph5LabelC1ERKS1_@Base 3.4.2 + _ZN4geos9geomgraph5LabelC1EjNS_4geom8LocationE@Base 3.9.0 + _ZN4geos9geomgraph5LabelC1EjNS_4geom8LocationES3_S3_@Base 3.9.0 + _ZN4geos9geomgraph5LabelC1Ev@Base 3.4.2 + _ZN4geos9geomgraph5LabelC2ENS_4geom8LocationE@Base 3.8.0 + _ZN4geos9geomgraph5LabelC2ENS_4geom8LocationES3_S3_@Base 3.8.0 + _ZN4geos9geomgraph5LabelC2ERKS1_@Base 3.4.2 + _ZN4geos9geomgraph5LabelC2EjNS_4geom8LocationE@Base 3.9.0 + _ZN4geos9geomgraph5LabelC2EjNS_4geom8LocationES3_S3_@Base 3.9.0 + _ZN4geos9geomgraph5LabelC2Ev@Base 3.4.2 + _ZN4geos9geomgraph5LabelaSERKS1_@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 + _ZN4geos9geomgraph5index18SegmentIntersector15hasIntersectionEv@Base 3.4.2 + _ZN4geos9geomgraph5index18SegmentIntersector15isBoundaryPointEPNS_9algorithm15LineIntersectorEPSt6vectorIPNS0_4NodeESaIS8_EE@Base 3.4.2 + (subst)_ZN4geos9geomgraph5index18SegmentIntersector15isBoundaryPointEPNS_9algorithm15LineIntersectorERSt5arrayIPSt6vectorIPNS0_4NodeESaIS9_EEL{size_t}2EE@Base 3.8.0 + (subst)_ZN4geos9geomgraph5index18SegmentIntersector16addIntersectionsEPNS0_4EdgeE{size_t}S4_{size_t}@Base 3.8.0 + _ZN4geos9geomgraph5index18SegmentIntersector16setBoundaryNodesEPSt6vectorIPNS0_4NodeESaIS5_EES8_@Base 3.4.2 + (subst)_ZN4geos9geomgraph5index18SegmentIntersector18isAdjacentSegmentsE{size_t}{size_t}@Base 3.8.0 + _ZN4geos9geomgraph5index18SegmentIntersector20setIsDoneIfProperIntEb@Base 3.5.1 + _ZN4geos9geomgraph5index18SegmentIntersector21hasProperIntersectionEv@Base 3.4.2 + (subst)_ZN4geos9geomgraph5index18SegmentIntersector21isTrivialIntersectionEPNS0_4EdgeE{size_t}S4_{size_t}@Base 3.8.0 + _ZN4geos9geomgraph5index18SegmentIntersector26getProperIntersectionPointEv@Base 3.4.2 + _ZN4geos9geomgraph5index18SegmentIntersector29hasProperInteriorIntersectionEv@Base 3.4.2 + _ZN4geos9geomgraph5index18SegmentIntersector9getIsDoneEv@Base 3.5.1 + _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 + _ZN4geos9geomgraph8EdgeList3getEi@Base 3.4.2 + _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_5LabelEi@Base 3.4.2 + _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 + _ZN4geos9operation10IsSimpleOp11addEndpointERSt3mapIPKNS_4geom10CoordinateEPNS0_12EndpointInfoENS3_18CoordinateLessThenESaISt4pairIKS6_S8_EEES6_b@Base 3.4.2 + _ZN4geos9operation10IsSimpleOp13computeSimpleEPKNS_4geom8GeometryE@Base 3.8.0 + _ZN4geos9operation10IsSimpleOp17isSimplePolygonalEPKNS_4geom8GeometryE@Base 3.8.0 + _ZN4geos9operation10IsSimpleOp18isSimpleMultiPointERKNS_4geom10MultiPointE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOp22isSimpleLinearGeometryEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOp26hasNonEndpointIntersectionERNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOp26isSimpleGeometryCollectionEPKNS_4geom18GeometryCollectionE@Base 3.8.0 + _ZN4geos9operation10IsSimpleOp29hasClosedEndpointIntersectionERNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOp8isSimpleEPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOp8isSimpleEPKNS_4geom10MultiPointE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOp8isSimpleEPKNS_4geom15MultiLineStringE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOp8isSimpleEv@Base 3.4.2 + _ZN4geos9operation10IsSimpleOpC1ERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOpC1ERKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOpC1Ev@Base 3.4.2 + _ZN4geos9operation10IsSimpleOpC2ERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOpC2ERKNS_4geom8GeometryERKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9operation10IsSimpleOpC2Ev@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 + _ZN4geos9operation12EndpointInfoC1ERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation12EndpointInfoC2ERKNS_4geom10CoordinateE@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 + _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 + _ZN4geos9operation5valid22PolygonIndexedLocatorsD1Ev@Base 3.9.0 + _ZN4geos9operation5valid22PolygonIndexedLocatorsD2Ev@Base 3.9.0 + _ZN4geos9operation5valid22SimpleNestedRingTester11isNonNestedEv@Base 3.4.2 + _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 + _ZN4geos9operation5valid23IndexedNestedRingTester10buildIndexEv@Base 3.4.2 + _ZN4geos9operation5valid23IndexedNestedRingTester11isNonNestedEv@Base 3.4.2 + _ZN4geos9operation5valid23IndexedNestedRingTesterD1Ev@Base 3.4.2 + _ZN4geos9operation5valid23IndexedNestedRingTesterD2Ev@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationError10getMessageB5cxx11Ev@Base 3.5.1 + _ZN4geos9operation5valid23TopologyValidationError12getErrorTypeEv@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationError13getCoordinateEv@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationError6errMsgE@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationError8toStringB5cxx11Ev@Base 3.5.1 + _ZN4geos9operation5valid23TopologyValidationErrorC1Ei@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationErrorC1EiRKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationErrorC2Ei@Base 3.4.2 + _ZN4geos9operation5valid23TopologyValidationErrorC2EiRKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation5valid24IndexedNestedShellTester11isNonNestedEv@Base 3.9.0 + _ZN4geos9operation5valid24IndexedNestedShellTester14getNestedPointEv@Base 3.9.0 + _ZN4geos9operation5valid24IndexedNestedShellTester19checkShellNotNestedEPKNS_4geom10LinearRingERNS1_22PolygonIndexedLocatorsE@Base 3.9.0 + _ZN4geos9operation5valid24IndexedNestedShellTester20checkShellInsideHoleEPKNS_4geom10LinearRingERNS_9algorithm6locate25IndexedPointInAreaLocatorE@Base 3.9.0 + _ZN4geos9operation5valid24IndexedNestedShellTester7computeEv@Base 3.9.0 + (subst)_ZN4geos9operation5valid24IndexedNestedShellTesterC1ERKNS_9geomgraph13GeometryGraphE{size_t}@Base 3.9.0 + (subst)_ZN4geos9operation5valid24IndexedNestedShellTesterC2ERKNS_9geomgraph13GeometryGraphE{size_t}@Base 3.9.0 + _ZN4geos9operation5valid24QuadtreeNestedRingTester11isNonNestedEv@Base 3.4.2 + _ZN4geos9operation5valid24QuadtreeNestedRingTester13buildQuadtreeEv@Base 3.4.2 + _ZN4geos9operation5valid24QuadtreeNestedRingTester14getNestedPointEv@Base 3.4.2 + _ZN4geos9operation5valid24QuadtreeNestedRingTester3addEPKNS_4geom10LinearRingE@Base 3.4.2 + _ZN4geos9operation5valid24QuadtreeNestedRingTesterC1EPNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation5valid24QuadtreeNestedRingTesterC2EPNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation5valid24QuadtreeNestedRingTesterD1Ev@Base 3.4.2 + _ZN4geos9operation5valid24QuadtreeNestedRingTesterD2Ev@Base 3.4.2 + _ZN4geos9operation5valid25SweeplineNestedRingTester10buildIndexEv@Base 3.4.2 + _ZN4geos9operation5valid25SweeplineNestedRingTester11isNonNestedEv@Base 3.4.2 + _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapAction7overlapEPNS_5index9sweepline17SweepLineIntervalES7_@Base 3.4.2 + _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionC1EPS2_@Base 3.4.2 + _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionC2EPS2_@Base 3.4.2 + _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionD0Ev@Base 3.4.2 + _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionD1Ev@Base 3.4.2 + _ZN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionD2Ev@Base 3.4.2 + _ZN4geos9operation5valid25SweeplineNestedRingTester8isInsideEPNS_4geom10LinearRingES5_@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom10LinearRingE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom12MultiPolygonE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom18GeometryCollectionE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom5PointE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom7PolygonE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp10checkValidEPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp10checkValidEv@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp13findPtNotNodeEPKNS_4geom18CoordinateSequenceEPKNS3_10LinearRingEPKNS_9geomgraph13GeometryGraphE@Base 3.9.0 + _ZN4geos9operation5valid9IsValidOp15checkClosedRingEPKNS_4geom10LinearRingE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp16checkClosedRingsEPKNS_4geom7PolygonE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp17checkHolesInShellEPKNS_4geom7PolygonEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp17checkTooFewPointsEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp18getValidationErrorEv@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp19checkConsistentAreaEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp19checkHolesNotNestedEPKNS_4geom7PolygonEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp20checkShellsNotNestedEPKNS_4geom12MultiPolygonEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp23checkConnectedInteriorsERNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp23checkInvalidCoordinatesEPKNS_4geom18CoordinateSequenceE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp23checkInvalidCoordinatesEPKNS_4geom7PolygonE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp27checkNoSelfIntersectingRingERNS_9geomgraph20EdgeIntersectionListE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp28checkNoSelfIntersectingRingsEPNS_9geomgraph13GeometryGraphE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp7isValidERKNS_4geom10CoordinateE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp7isValidERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOp7isValidEv@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOpD0Ev@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOpD1Ev@Base 3.4.2 + _ZN4geos9operation5valid9IsValidOpD2Ev@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 + _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 + _ZN4geos9operation6buffer21OffsetCurveSetBuilder13addCollectionEPKNS_4geom18GeometryCollectionE@Base 3.4.2 + _ZN4geos9operation6buffer21OffsetCurveSetBuilder13addLineStringEPKNS_4geom10LineStringE@Base 3.4.2 + _ZN4geos9operation6buffer21OffsetCurveSetBuilder16addRingBothSidesEPKNS_4geom18CoordinateSequenceEd@Base 3.9.0 + _ZN4geos9operation6buffer21OffsetCurveSetBuilder18isErodedCompletelyEPKNS_4geom10LinearRingEd@Base 3.4.2 + _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 + _ZN4geos9operation6buffer22OffsetSegmentGenerator2PIE@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 + _ZN4geos9operation6buffer8BufferOp15computeGeometryEv@Base 3.4.2 + _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 + _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 + _ZN4geos9operation6relate13EdgeEndBundle14computeLabelOnEiRKNS_9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundle16computeLabelSideEii@Base 3.4.2 + _ZN4geos9operation6relate13EdgeEndBundle17computeLabelSidesEi@Base 3.4.2 + _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_9geomgraph4EdgeEiPKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer17labelIsolatedNodeEPNS_9geomgraph4NodeEi@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer18copyNodesAndLabelsEi@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer18labelIsolatedEdgesEii@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer18labelIsolatedNodesEv@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer22labelIntersectionNodesEi@Base 3.4.2 + _ZN4geos9operation6relate14RelateComputer24computeIntersectionNodesEi@Base 3.4.2 + _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_9geomgraph13GeometryGraphEi@Base 3.4.2 + _ZN4geos9operation6relate15RelateNodeGraph24computeIntersectionNodesEPNS_9geomgraph13GeometryGraphEi@Base 3.4.2 + _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_9geomgraph4EdgeEi@Base 3.4.2 + _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 + _ZN4geos9operation7overlay4snap21SnapIfNeededOverlayOp17getResultGeometryENS1_9OverlayOp6OpCodeE@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 + _ZN4geos9operation7overlay9OverlayOp10copyPointsEiPKNS_4geom8EnvelopeE@Base 3.5.0 + _ZN4geos9operation7overlay9OverlayOp11getAverageZEPKNS_4geom7PolygonE@Base 3.4.2 + _ZN4geos9operation7overlay9OverlayOp11getAverageZEi@Base 3.4.2 + _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_9geomgraph4NodeEi@Base 3.4.2 + _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 + _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 + _ZN4geos9operation8geounion12UnaryUnionOp13unionWithNullESt10unique_ptrINS_4geom8GeometryESt14default_deleteIS5_EES8_@Base 3.7.0 + _ZN4geos9operation8geounion12UnaryUnionOp5UnionEv@Base 3.4.2 + _ZN4geos9operation8geounion12UnaryUnionOp7extractERKNS_4geom8GeometryE@Base 3.9.0 + _ZN4geos9operation8geounion12UnaryUnionOpD1Ev@Base 3.9.0 + _ZN4geos9operation8geounion12UnaryUnionOpD2Ev@Base 3.9.0 + _ZN4geos9operation8geounion13CascadedUnion11binaryUnionEPNS1_18GeometryListHolderE@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9operation8geounion13CascadedUnion11binaryUnionEPNS1_18GeometryListHolderEjj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos9operation8geounion13CascadedUnion11binaryUnionEPNS1_18GeometryListHolderEmm@Base 3.7.0 + _ZN4geos9operation8geounion13CascadedUnion11unionActualEPNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9operation8geounion13CascadedUnion14unionOptimizedEPNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9operation8geounion13CascadedUnion17extractByEnvelopeERKNS_4geom8EnvelopeEPNS3_8GeometryERSt6vectorIPKS7_SaISB_EE@Base 3.8.0 + _ZN4geos9operation8geounion13CascadedUnion18reduceToGeometriesEPNS_5index7strtree9ItemsListE@Base 3.4.2 + _ZN4geos9operation8geounion13CascadedUnion30unionUsingEnvelopeIntersectionEPNS_4geom8GeometryES5_RKNS3_8EnvelopeE@Base 3.4.2 + _ZN4geos9operation8geounion13CascadedUnion5UnionEPSt6vectorIPNS_4geom8GeometryESaIS6_EE@Base 3.4.2 + _ZN4geos9operation8geounion13CascadedUnion5UnionEv@Base 3.4.2 + _ZN4geos9operation8geounion13CascadedUnion9unionSafeEPNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9operation8geounion13CascadedUnion9unionTreeEPNS_5index7strtree9ItemsListE@Base 3.4.2 + _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 + _ZN4geos9operation8geounion18GeometryListHolder10deleteItemEPNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9operation8geounion18PointGeometryUnion5UnionERKNS_4geom8GeometryES6_@Base 3.8.0 + _ZN4geos9operation8geounion18PointGeometryUnionC1ERKNS_4geom8GeometryES6_@Base 3.8.0 + _ZN4geos9operation8geounion18PointGeometryUnionC2ERKNS_4geom8GeometryES6_@Base 3.8.0 + _ZN4geos9operation8geounion20CascadedPolygonUnion11binaryUnionEPNS1_18GeometryListHolderE@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZN4geos9operation8geounion20CascadedPolygonUnion11binaryUnionEPNS1_18GeometryListHolderEjj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZN4geos9operation8geounion20CascadedPolygonUnion11binaryUnionEPNS1_18GeometryListHolderEmm@Base 3.7.0 + _ZN4geos9operation8geounion20CascadedPolygonUnion11unionActualEPNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9operation8geounion20CascadedPolygonUnion18reduceToGeometriesEPNS_5index7strtree9ItemsListE@Base 3.4.2 + _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 + _ZN4geos9operation8geounion20CascadedPolygonUnion9unionSafeEPNS_4geom8GeometryES5_@Base 3.4.2 + _ZN4geos9operation8geounion20CascadedPolygonUnion9unionTreeEPNS_5index7strtree9ItemsListE@Base 3.4.2 + _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 + _ZN4geos9operation9linemerge13LineSequencer7reverseEPKNS_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 + _ZN4geos9operation9overlayng11LineBuilder14addResultLinesEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder15markResultLinesEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder19addResultLinesRingsEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder20addResultLinesMergedEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder22addResultLinesForNodesEv@Base 3.9.0 + _ZN4geos9operation9overlayng11LineBuilder6toLineEPNS1_11OverlayEdgeE@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 + _ZN4geos9operation9overlayng11OverlayEdge11markVisitedEv@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge11setEdgeRingEPKNS1_15OverlayEdgeRingE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge13setNextResultEPS2_@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge14addCoordinatesEPNS_4geom23CoordinateArraySequenceE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge14getCoordinatesEv@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge14setEdgeRingMaxEPKNS1_15MaximalEdgeRingE@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge15markVisitedBothEv@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge16markInResultAreaEv@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge16markInResultLineEv@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge16setNextResultMaxEPS2_@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge20markInResultAreaBothEv@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge22getCoordinatesOrientedEv@Base 3.9.0 + _ZN4geos9operation9overlayng11OverlayEdge24unmarkFromResultAreaBothEv@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 + _ZN4geos9operation9overlayng12OverlayLabel11initNotPartEi@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayLabel12initBoundaryEiNS_4geom8LocationES4_b@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayLabel12initCollapseEib@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayLabel14setLocationAllEiNS_4geom8LocationE@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayLabel15setLocationLineEiNS_4geom8LocationE@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayLabel19setLocationCollapseEi@Base 3.9.0 + _ZN4geos9operation9overlayng12OverlayLabel8initLineEi@Base 3.9.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 + _ZN4geos9operation9overlayng13InputGeometry10getLocatorEi@Base 3.9.0 + _ZN4geos9operation9overlayng13InputGeometry12setCollapsedEib@Base 3.9.0 + _ZN4geos9operation9overlayng13InputGeometry17locatePointInAreaEiRKNS_4geom10CoordinateE@Base 3.9.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 + _ZN4geos9operation9overlayng14EdgeSourceInfoC1Ei@Base 3.9.0 + _ZN4geos9operation9overlayng14EdgeSourceInfoC1Eiib@Base 3.9.0 + _ZN4geos9operation9overlayng14EdgeSourceInfoC2Ei@Base 3.9.0 + _ZN4geos9operation9overlayng14EdgeSourceInfoC2Eiib@Base 3.9.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 + _ZN4geos9operation9overlayng14PolygonBuilder10buildRingsERSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder11assignHolesEPNS1_15OverlayEdgeRingERSt6vectorIS4_SaIS4_EE@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder11getPolygonsEv@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder13getShellRingsEv@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder14placeFreeHolesESt6vectorIPNS1_15OverlayEdgeRingESaIS5_EES7_@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder15computePolygonsESt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder17buildMaximalRingsERSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder17buildMinimalRingsERSt6vectorISt10unique_ptrINS1_15MaximalEdgeRingESt14default_deleteIS5_EESaIS8_EE@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder17storeMinimalRingsERSt6vectorISt10unique_ptrINS1_15OverlayEdgeRingESt14default_deleteIS5_EESaIS8_EE@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder20assignShellsAndHolesERSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.9.0 + _ZN4geos9operation9overlayng14PolygonBuilder22linkResultAreaEdgesMaxERSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.9.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 + _ZN4geos9operation9overlayng15OverlayEdgeRing11computeRingERKNS_4geom23CoordinateArraySequenceEPKNS3_15GeometryFactoryE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing13getCoordinateEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing14computeRingPtsEPNS1_11OverlayEdgeERNS_4geom23CoordinateArraySequenceE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing14getCoordinatesEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayEdgeRing22findEdgeRingContainingERSt6vectorIPS2_SaIS4_EE@Base 3.9.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 + _ZN4geos9operation9overlayng15OverlayLabeller10locateEdgeEiPNS1_11OverlayEdgeE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller16computeLabellingEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller16markInResultAreaEPNS1_11OverlayEdgeEi@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller18labelAreaNodeEdgesERSt6vectorIPNS1_11OverlayEdgeESaIS5_EE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller18labelCollapsedEdgeEPNS1_11OverlayEdgeEi@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller18locateEdgeBothEndsEiPNS1_11OverlayEdgeE@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller19labelCollapsedEdgesEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller19markResultAreaEdgesEi@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller21labelDisconnectedEdgeEPNS1_11OverlayEdgeEi@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller22labelDisconnectedEdgesEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller22propagateAreaLocationsEPNS1_11OverlayEdgeEi@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller24findPropagationStartEdgeEPNS1_11OverlayEdgeEi@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller24propagateLinearLocationsEi@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller25labelConnectedLinearEdgesEv@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller27findLinearEdgesWithLocationERSt6vectorIPNS1_11OverlayEdgeESaIS5_EEi@Base 3.9.0 + _ZN4geos9operation9overlayng15OverlayLabeller29propagateLinearLocationAtNodeEPNS1_11OverlayEdgeEibRSt5dequeIS4_SaIS4_EE@Base 3.9.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_4geom7PolygonEi@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder11createEdgesEPSt6vectorIPNS_6noding13SegmentStringESaIS6_EE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder13addCollectionEPKNS_4geom18GeometryCollectionEi@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder14addPolygonRingEPKNS_4geom10LinearRingEbi@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder15setClipEnvelopeEPKNS_4geom8EnvelopeE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder17computeDepthDeltaEPKNS_4geom10LinearRingEb@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder19isClippedCompletelyEPKNS_4geom8EnvelopeE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder20createEdgeSourceInfoEi@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder20createEdgeSourceInfoEiib@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder20removeRepeatedPointsEPKNS_4geom10LineStringE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder21addGeometryCollectionEPKNS_4geom18GeometryCollectionEii@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder25createFixedPrecisionNoderEPKNS_4geom14PrecisionModelE@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder28createFloatingPrecisionNoderEb@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder3addEPKNS_4geom8GeometryEi@Base 3.9.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_4geom10LineStringEi@Base 3.9.0 + _ZN4geos9operation9overlayng17EdgeNodingBuilder7addLineERSt10unique_ptrINS_4geom23CoordinateArraySequenceESt14default_deleteIS5_EEi@Base 3.9.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 + _ZN4geos9operation9overlayng4Edge14getCoordinatesEv@Base 3.9.0 + _ZN4geos9operation9overlayng4Edge18releaseCoordinatesEv@Base 3.9.0 + _ZN4geos9operation9overlayng4Edge5mergeEPKS2_@Base 3.9.0 + _ZN4geos9operation9overlayng4Edge8copyInfoEPKNS1_14EdgeSourceInfoE@Base 3.9.0 + _ZN4geos9operation9overlayng4EdgeC1EPNS_4geom18CoordinateSequenceEPKNS1_14EdgeSourceInfoE@Base 3.9.0 + _ZN4geos9operation9overlayng4EdgeC2EPNS_4geom18CoordinateSequenceEPKNS1_14EdgeSourceInfoE@Base 3.9.0 + _ZN4geos9operation9overlayng7EdgeKey10initPointsEPKNS1_4EdgeE@Base 3.9.0 + _ZN4geos9operation9overlayng7EdgeKey4initERKNS_4geom10CoordinateES6_@Base 3.9.0 + _ZN4geos9operation9overlayng7EdgeKeyC1EPKNS1_4EdgeE@Base 3.9.0 + _ZN4geos9operation9overlayng7EdgeKeyC2EPKNS1_4EdgeE@Base 3.9.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 + _ZN4geos9operation9overlayngeqERKNS1_7EdgeKeyES4_@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 + _ZN4geos9operation9overlayngltERKNS1_7EdgeKeyES4_@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 + _ZN4geos9precision24GeometryPrecisionReducer13createFactoryERKNS_4geom15GeometryFactoryERKNS2_14PrecisionModelE@Base 3.4.2 + _ZN4geos9precision24GeometryPrecisionReducer15reducePointwiseERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9precision24GeometryPrecisionReducer20fixPolygonalTopologyERKNS_4geom8GeometryE@Base 3.4.2 + _ZN4geos9precision24GeometryPrecisionReducer6reduceERKNS_4geom8GeometryE@Base 3.4.2 + _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 + _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 + _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 + _ZNK4geos2io9WKBWriter12getByteOrderEv@Base 3.4.2 + _ZNK4geos2io9WKBWriter14getIncludeSRIDEv@Base 3.4.2 + _ZNK4geos2io9WKBWriter18getOutputDimensionEv@Base 3.4.2 + _ZNK4geos4geom10Coordinate15distanceSquaredERKS1_@Base 3.8.0 + _ZNK4geos4geom10Coordinate6equalsERKS1_@Base 3.4.2 + _ZNK4geos4geom10Coordinate6isNullEv@Base 3.4.2 + _ZNK4geos4geom10Coordinate8HashCodeclERKS1_@Base 3.8.0 + _ZNK4geos4geom10Coordinate8distanceERKS1_@Base 3.4.2 + _ZNK4geos4geom10Coordinate8equals2DERKS1_@Base 3.4.2 + _ZNK4geos4geom10Coordinate8equals3DERKS1_@Base 3.4.2 + _ZNK4geos4geom10Coordinate8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom10Coordinate9compareToERKS1_@Base 3.4.2 + _ZNK4geos4geom10LineString11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 + _ZNK4geos4geom10LineString11getBoundaryEv@Base 3.4.2 + _ZNK4geos4geom10LineString11getEndPointEv@Base 3.4.2 + _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 + _ZNK4geos4geom10LineString5cloneEv@Base 3.4.2 + _ZNK4geos4geom10LineString6isRingEv@Base 3.4.2 + _ZNK4geos4geom10LineString7isEmptyEv@Base 3.4.2 + _ZNK4geos4geom10LineString7reverseEv@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 + _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 + _ZNK4geos4geom10LinearRing12getSortIndexEv@Base 3.8.0 + _ZNK4geos4geom10LinearRing15getGeometryTypeB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom10LinearRing17getGeometryTypeIdEv@Base 3.4.2 + _ZNK4geos4geom10LinearRing20getBoundaryDimensionEv@Base 3.4.2 + _ZNK4geos4geom10LinearRing5cloneEv@Base 3.4.2 + _ZNK4geos4geom10LinearRing7reverseEv@Base 3.4.2 + _ZNK4geos4geom10LinearRing8isClosedEv@Base 3.4.2 + _ZNK4geos4geom10MultiPoint11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 + _ZNK4geos4geom10MultiPoint11getBoundaryEv@Base 3.4.2 + _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 + _ZNK4geos4geom10MultiPoint5cloneEv@Base 3.4.2 + _ZNK4geos4geom10MultiPoint7reverseEv@Base 3.7.0 + _ZNK4geos4geom11LineSegment10equalsTopoERKS1_@Base 3.4.2 + _ZNK4geos4geom11LineSegment10isVerticalEv@Base 3.4.2 + _ZNK4geos4geom11LineSegment10pointAlongEdRNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment10toGeometryERKNS0_15GeometryFactoryE@Base 3.4.2 + _ZNK4geos4geom11LineSegment12closestPointERKNS0_10CoordinateERS2_@Base 3.4.2 + _ZNK4geos4geom11LineSegment12intersectionERKS1_@Base 3.8.0 + _ZNK4geos4geom11LineSegment12isHorizontalEv@Base 3.4.2 + _ZNK4geos4geom11LineSegment15segmentFractionERKNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment16lineIntersectionERKS1_@Base 3.8.0 + _ZNK4geos4geom11LineSegment16orientationIndexEPKS1_@Base 3.4.2 + _ZNK4geos4geom11LineSegment16orientationIndexERKNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment16orientationIndexERKS1_@Base 3.4.2 + _ZNK4geos4geom11LineSegment16pointAlongOffsetEddRNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment16projectionFactorERKNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment21distancePerpendicularERKNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment5angleEv@Base 3.4.2 + _ZNK4geos4geom11LineSegment7projectERKNS0_10CoordinateERS2_@Base 3.4.2 + _ZNK4geos4geom11LineSegment7projectERKS1_RS1_@Base 3.4.2 + _ZNK4geos4geom11LineSegment8distanceERKNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment8distanceERKS1_@Base 3.4.2 + _ZNK4geos4geom11LineSegment8midPointERNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom11LineSegment9compareToERKS1_@Base 3.4.2 + _ZNK4geos4geom11LineSegment9getLengthEv@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos4geom11LineSegmentixEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos4geom11LineSegmentixEm@Base 3.7.0 + _ZNK4geos4geom12MultiPolygon11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 + _ZNK4geos4geom12MultiPolygon11getBoundaryEv@Base 3.4.2 + _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 + _ZNK4geos4geom12MultiPolygon5cloneEv@Base 3.4.2 + _ZNK4geos4geom12MultiPolygon7reverseEv@Base 3.7.0 + _ZNK4geos4geom14PrecisionModel10getOffsetXEv@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel10getOffsetYEv@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel10isFloatingEv@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel11makePreciseEPNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel11makePreciseERNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel11makePreciseEd@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel27getMaximumSignificantDigitsEv@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel7getTypeEv@Base 3.4.2 + _ZNK4geos4geom14PrecisionModel8getScaleEv@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 + _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 + _ZNK4geos4geom15GeometryFactory17getPrecisionModelEv@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 + _ZNK4geos4geom15GeometryFactory28getCoordinateSequenceFactoryEv@Base 3.4.2 + _ZNK4geos4geom15GeometryFactory6addRefEv@Base 3.6.0 + _ZNK4geos4geom15GeometryFactory7dropRefEv@Base 3.6.0 + _ZNK4geos4geom15GeometryFactory7getSRIDEv@Base 3.4.2 + _ZNK4geos4geom15MultiLineString11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 + _ZNK4geos4geom15MultiLineString11getBoundaryEv@Base 3.4.2 + _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 + _ZNK4geos4geom15MultiLineString5cloneEv@Base 3.4.2 + _ZNK4geos4geom15MultiLineString7reverseEv@Base 3.4.2 + _ZNK4geos4geom15MultiLineString8isClosedEv@Base 3.4.2 + _ZNK4geos4geom16CoordinateFilter9filter_rwEPNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom18CoordinateLessThenclEPKNS0_10CoordinateES4_@Base 3.4.2 + _ZNK4geos4geom18CoordinateLessThenclERKNS0_10CoordinateES4_@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 + _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 + _ZNK4geos4geom18GeometryCollection3endEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection5beginEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection5cloneEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection7getAreaEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection7isEmptyEv@Base 3.4.2 + _ZNK4geos4geom18GeometryCollection7reverseEv@Base 3.7.0 + _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 + _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 + _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 + _ZNK4geos4geom4util15SineStarFactory14createSineStarEv@Base 3.4.2 + _ZNK4geos4geom4util9Densifier17getResultGeometryEv@Base 3.8.0 + _ZNK4geos4geom5Point11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 + _ZNK4geos4geom5Point11getBoundaryEv@Base 3.4.2 + _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 + _ZNK4geos4geom5Point5cloneEv@Base 3.4.2 + _ZNK4geos4geom5Point7isEmptyEv@Base 3.4.2 + _ZNK4geos4geom5Point7reverseEv@Base 3.7.0 + _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 + _ZNK4geos4geom7Polygon10convexHullEv@Base 3.4.2 + _ZNK4geos4geom7Polygon11equalsExactEPKNS0_8GeometryEd@Base 3.4.2 + _ZNK4geos4geom7Polygon11getBoundaryEv@Base 3.4.2 + _ZNK4geos4geom7Polygon11isRectangleEv@Base 3.4.2 + _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 + _ZNK4geos4geom7Polygon5cloneEv@Base 3.4.2 + _ZNK4geos4geom7Polygon7getAreaEv@Base 3.4.2 + _ZNK4geos4geom7Polygon7isEmptyEv@Base 3.4.2 + _ZNK4geos4geom7Polygon7reverseEv@Base 3.7.0 + _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 + _ZNK4geos4geom7Polygon9getLengthEv@Base 3.4.2 + _ZNK4geos4geom8Envelope10intersectsEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Envelope10intersectsERKNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom8Envelope10intersectsERKNS0_10CoordinateES4_@Base 3.8.0 + _ZNK4geos4geom8Envelope10intersectsERKS1_@Base 3.4.2 + _ZNK4geos4geom8Envelope10intersectsEdd@Base 3.4.2 + _ZNK4geos4geom8Envelope12intersectionERKS1_RS1_@Base 3.4.2 + _ZNK4geos4geom8Envelope15distanceSquaredERKS1_@Base 3.9.0 + _ZNK4geos4geom8Envelope6centreERNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom8Envelope6coversEPKNS0_10CoordinateE@Base 3.4.2 + _ZNK4geos4geom8Envelope6coversERKS1_@Base 3.4.2 + _ZNK4geos4geom8Envelope6coversEdd@Base 3.4.2 + _ZNK4geos4geom8Envelope6equalsEPKS1_@Base 3.4.2 + _ZNK4geos4geom8Envelope6isNullEv@Base 3.4.2 + _ZNK4geos4geom8Envelope7getMaxXEv@Base 3.4.2 + _ZNK4geos4geom8Envelope7getMaxYEv@Base 3.4.2 + _ZNK4geos4geom8Envelope7getMinXEv@Base 3.4.2 + _ZNK4geos4geom8Envelope7getMinYEv@Base 3.4.2 + _ZNK4geos4geom8Envelope8disjointEPKS1_@Base 3.9.0 + _ZNK4geos4geom8Envelope8disjointERKS1_@Base 3.9.0 + _ZNK4geos4geom8Envelope8distanceERKS1_@Base 3.9.0 + _ZNK4geos4geom8Envelope8getWidthEv@Base 3.4.2 + _ZNK4geos4geom8Envelope8hashCodeEv@Base 3.4.2 + _ZNK4geos4geom8Envelope8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos4geom8Envelope9getHeightEv@Base 3.4.2 + _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 + _ZNK4geos5index5chain13MonotoneChain14getCoordinatesEv@Base 3.4.2 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos5index5chain13MonotoneChain14getLineSegmentEjRNS_4geom11LineSegmentE@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos5index5chain13MonotoneChain14getLineSegmentEmRNS_4geom11LineSegmentE@Base 3.7.0 + _ZNK4geos5index5chain13MonotoneChain8overlapsERKNS_4geom10CoordinateES6_S6_S6_d@Base 3.9.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 + _ZNK4geos5index7strtree8Interval10intersectsEPKS2_@Base 3.5.0 + _ZNK4geos5index7strtree8Interval6equalsEPKS2_@Base 3.5.0 + _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 + _ZNK4geos6noding11SegmentNode10isEndPointEj@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 + (subst)_ZNK4geos6noding15SegmentNodeList17findCollapseIndexERKNS0_11SegmentNodeES4_R{size_t}@Base 3.9.0 + _ZNK4geos6noding15SegmentNodeList18addEdgeCoordinatesEPKNS0_11SegmentNodeES4_RSt6vectorINS_4geom10CoordinateESaIS7_EE@Base 3.9.0 + _ZNK4geos6noding15SegmentNodeList18createSplitEdgePtsEPKNS0_11SegmentNodeES4_RSt6vectorINS_4geom10CoordinateESaIS7_EE@Base 3.9.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 + _ZNK4geos6noding15ValidatingNoder18getNodedSubstringsEv@Base 3.9.0 + _ZNK4geos6noding17IntersectionAdder6isDoneEv@Base 3.4.2 + (subst)_ZNK4geos6noding18BasicSegmentString13getCoordinateE{size_t}@Base 3.8.0 + _ZNK4geos6noding18BasicSegmentString14getCoordinatesEv@Base 3.4.2 + (subst)_ZNK4geos6noding18BasicSegmentString16getSegmentOctantE{size_t}@Base 3.8.0 + _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 + (subst)_ZNK4geos6noding18NodedSegmentString16getSegmentOctantE{size_t}@Base 3.8.0 + _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 + _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 + _ZNK4geos6noding9snapround8HotPixel10scaleRoundEd@Base 3.9.0 + _ZNK4geos6noding9snapround8HotPixel13getCoordinateEv@Base 3.9.0 + _ZNK4geos6noding9snapround8HotPixel16intersectsScaledEdddd@Base 3.9.0 + _ZNK4geos6noding9snapround8HotPixel22intersectsPixelClosureERKNS_4geom10CoordinateES6_@Base 3.9.0 + _ZNK4geos6noding9snapround8HotPixel5scaleEd@Base 3.4.2 + (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 + _ZNK4geos9algorithm15LineIntersector14isIntersectionERKNS_4geom10CoordinateE@Base 3.4.2 + (subst)_ZNK4geos9algorithm15LineIntersector15getEdgeDistanceE{size_t}{size_t}@Base 3.8.0 + _ZNK4geos9algorithm15LineIntersector16intersectionSafeERKNS_4geom10CoordinateES5_S5_S5_@Base 3.8.0 + _ZNK4geos9algorithm15LineIntersector20isInSegmentEnvelopesERKNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9algorithm15LineIntersector8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos9algorithm17InteriorPointArea16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9algorithm17InteriorPointLine16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9algorithm18InteriorPointPoint16getInteriorPointERNS_4geom10CoordinateE@Base 3.4.2 + _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 + _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 + _ZNK4geos9geomgraph16TopologyLocation12getLocationsEv@Base 3.4.2 + _ZNK4geos9geomgraph16TopologyLocation13isEqualOnSideERKS1_j@Base 3.9.0 + _ZNK4geos9geomgraph16TopologyLocation17allPositionsEqualENS_4geom8LocationE@Base 3.8.0 + (arch=!alpha !amd64 !arm64 !ia64 !kfreebsd-amd64 !mips64el !ppc64 !ppc64el !riscv64 !s390x !sparc64)_ZNK4geos9geomgraph16TopologyLocation3getEj@Base 3.4.2 + (arch=alpha amd64 arm64 ia64 kfreebsd-amd64 mips64el ppc64 ppc64el riscv64 s390x sparc64)_ZNK4geos9geomgraph16TopologyLocation3getEm@Base 3.7.0 + _ZNK4geos9geomgraph16TopologyLocation6isAreaEv@Base 3.4.2 + _ZNK4geos9geomgraph16TopologyLocation6isLineEv@Base 3.4.2 + _ZNK4geos9geomgraph16TopologyLocation6isNullEv@Base 3.4.2 + _ZNK4geos9geomgraph16TopologyLocation8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos9geomgraph16TopologyLocation9isAnyNullEv@Base 3.4.2 + _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 + _ZNK4geos9geomgraph5Depth11getLocationEii@Base 3.4.2 + _ZNK4geos9geomgraph5Depth6isNullEi@Base 3.4.2 + _ZNK4geos9geomgraph5Depth6isNullEii@Base 3.4.2 + _ZNK4geos9geomgraph5Depth6isNullEv@Base 3.4.2 + _ZNK4geos9geomgraph5Depth8getDeltaEi@Base 3.4.2 + _ZNK4geos9geomgraph5Depth8getDepthEii@Base 3.4.2 + _ZNK4geos9geomgraph5Depth8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos9geomgraph5Label11getLocationEj@Base 3.9.0 + _ZNK4geos9geomgraph5Label11getLocationEjj@Base 3.9.0 + _ZNK4geos9geomgraph5Label13isEqualOnSideERKS1_j@Base 3.9.0 + _ZNK4geos9geomgraph5Label16getGeometryCountEv@Base 3.4.2 + _ZNK4geos9geomgraph5Label17allPositionsEqualEjNS_4geom8LocationE@Base 3.9.0 + _ZNK4geos9geomgraph5Label6isAreaEj@Base 3.9.0 + _ZNK4geos9geomgraph5Label6isAreaEv@Base 3.4.2 + _ZNK4geos9geomgraph5Label6isLineEj@Base 3.9.0 + _ZNK4geos9geomgraph5Label6isNullEj@Base 3.9.0 + _ZNK4geos9geomgraph5Label6isNullEv@Base 3.4.2 + _ZNK4geos9geomgraph5Label8toStringB5cxx11Ev@Base 3.5.1 + _ZNK4geos9geomgraph5Label9isAnyNullEj@Base 3.9.0 + _ZNK4geos9geomgraph7EdgeEnd16compareDirectionEPKS1_@Base 3.4.2 + _ZNK4geos9geomgraph7EdgeEnd5printB5cxx11Ev@Base 3.6.0 + _ZNK4geos9geomgraph7EdgeEnd9compareToEPKS1_@Base 3.4.2 + _ZNK4geos9geomgraph7NodeMap16getBoundaryNodesEiRSt6vectorIPNS0_4NodeESaIS4_EE@Base 3.4.2 + _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 + _ZNK4geos9operation6buffer13BufferBuilder25createEmptyResultGeometryEv@Base 3.4.2 + (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 + _ZNK4geos9operation8geounion20ClassicUnionStrategy19isFloatingPrecisionEv@Base 3.9.0 + _ZNK4geos9operation9linemerge13LineMergeEdge7getLineEv@Base 3.4.2 + _ZNK4geos9operation9overlayng11LineBuilder12isResultLineEPKNS1_12OverlayLabelE@Base 3.9.0 + _ZNK4geos9operation9overlayng11LineBuilder13degreeOfLinesEPNS1_11OverlayEdgeE@Base 3.9.0 + _ZNK4geos9operation9overlayng11LineBuilder17effectiveLocationEPKNS1_12OverlayLabelEi@Base 3.9.0 + _ZNK4geos9operation9overlayng11LineBuilder21nextLineEdgeUnvisitedEPNS1_11OverlayEdgeE@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge10isInResultEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge10nextResultEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge11directionPtEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge11getEdgeRingEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge11getLocationEii@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge12resultSymbolB5cxx11Ev@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge13getCoordinateEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge13nextResultMaxEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge14getEdgeRingMaxEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge14isInResultAreaEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge14isInResultLineEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge14isResultLinkedEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge16getCoordinatesROEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge16isInResultEitherEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge17isResultMaxLinkedEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge18isInResultAreaBothEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge5symOEEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge7oNextOEEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge8getLabelEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge9isForwardEv@Base 3.9.0 + _ZNK4geos9operation9overlayng11OverlayEdge9isVisitedEv@Base 3.9.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 + _ZNK4geos9operation9overlayng12OverlayLabel10isBoundaryEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel10isCollapseEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel11getLocationEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel11getLocationEiib@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel12isLineInAreaEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel14isBoundaryBothEv@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel14isLineInteriorEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel14locationStringEibRSo@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel15dimensionSymbolB5cxx11Ei@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel15getLineLocationEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel15isBoundaryTouchEv@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel16isBoundaryEitherEv@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel18isBoundaryCollapseEv@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel18isInteriorCollapseEv@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel19isBoundarySingletonEv@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel21isLineLocationUnknownEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel25getLocationBoundaryOrLineEiib@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel28isCollapseAndNotPartInteriorEv@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel4copyEv@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel6isHoleEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel6isLineEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel6isLineEv@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel7isKnownEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel8hasSidesEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel8isLinearEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel8toStringEbRSo@Base 3.9.0 + _ZNK4geos9operation9overlayng12OverlayLabel9isNotPartEi@Base 3.9.0 + _ZNK4geos9operation9overlayng12UnaryUnionNG15NGUnionStrategy19isFloatingPrecisionEv@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry11getEnvelopeEi@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry11getGeometryEi@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry11isAllPointsEv@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry12getAreaIndexEv@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry12getDimensionEi@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry6isAreaEi@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry6isLineEi@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry7isEmptyEi@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry8hasEdgesEi@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry8isSingleEv@Base 3.9.0 + _ZNK4geos9operation9overlayng13InputGeometry9hasPointsEv@Base 3.9.0 + _ZNK4geos9operation9overlayng13OverlayPoints10roundCoordEPKNS_4geom5PointEPKNS3_14PrecisionModelE@Base 3.9.0 + _ZNK4geos9operation9overlayng14PolygonBuilder15findSingleShellERSt6vectorIPNS1_15OverlayEdgeRingESaIS5_EE@Base 3.9.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 + _ZNK4geos9operation9overlayng17EdgeNodingBuilder11hasEdgesForEi@Base 3.9.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_12OverlayLabelEi@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge10isBoundaryEi@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge12isHoleMergedEiPKS2_S4_@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge12locationLeftEi@Base 3.9.0 + (subst)_ZNK4geos9operation9overlayng4Edge13getCoordinateE{size_t}@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge13locationRightEi@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge13populateLabelERNS1_12OverlayLabelE@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge16getCoordinatesROEv@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge17relativeDirectionEPKS2_@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge4sizeEv@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge6isHoleEi@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge7delSignEi@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge7isShellEi@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge8labelDimEii@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge9dimensionEi@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge9directionEv@Base 3.9.0 + _ZNK4geos9operation9overlayng4Edge9initLabelERNS1_12OverlayLabelEiiib@Base 3.9.0 + _ZNK4geos9operation9overlayng7EdgeKey6equalsEPKS2_@Base 3.9.0 + _ZNK4geos9operation9overlayng7EdgeKey9compareToEPKS2_@Base 3.9.0 + _ZNK4geos9precision10Translater9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 + _ZNK4geos9precision22CommonCoordinateFilter9filter_rwEPNS_4geom10CoordinateE@Base 3.4.2 + (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_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|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|arch=armel armhf)_ZNSt10unique_ptrIN4geos11triangulate8quadedge19QuadEdgeSubdivisionESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst|arch=armel armhf)_ZNSt10unique_ptrIN4geos11triangulate8quadedge19QuadEdgeSubdivisionESt14default_deleteIS3_EED2Ev@Base 3.9.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_ptrIN4geos5index7strtree7STRtreeESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos5index7strtree7STRtreeESt14default_deleteIS3_EED2Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos5index8quadtree4NodeESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt10unique_ptrIN4geos5index8quadtree4NodeESt14default_deleteIS3_EED2Ev@Base 3.9.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_ptrIN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometryESt14default_deleteIS4_EED1Ev@Base 3.9.0 + (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9algorithm6locate25IndexedPointInAreaLocator23IntervalIndexedGeometryESt14default_deleteIS4_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|arch=ia64)_ZNSt10unique_ptrIN4geos9operation8geounion18GeometryListHolderESt14default_deleteIS3_EED1Ev@Base 3.9.0 + (optional=templinst|arch=ia64)_ZNSt10unique_ptrIN4geos9operation8geounion18GeometryListHolderESt14default_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|subst)_ZNSt11_Deque_baseIN4geos6noding11SegmentNodeESaIS2_EE17_M_initialize_mapE{size_t}@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)_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)_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)_ZNSt5dequeIN4geos11triangulate8quadedge15QuadEdgeQuartetESaIS3_EE16_M_push_back_auxIJEEEvDpOT_@Base 3.9.0 + (optional=templinst|arch=!mips64el !x32)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE12emplace_backIJS3_EEEvDpOT_@Base 3.9.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_EE16_M_push_back_auxIJRKNS0_4geom10CoordinateERPvEEEvDpOT_@Base 3.9.0 + (optional=templinst|arch=mips64el)_ZNSt5dequeIN4geos5index6kdtree6KdNodeESaIS3_EE16_M_push_back_auxIJS3_EEEvDpOT_@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|subst)_ZNSt5dequeIN4geos5index7strtree13SimpleSTRnodeESaIS3_EE16_M_push_back_auxIJRiRPKNS0_4geom8EnvelopeERPvR{size_t}EEEvDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos5index7strtree13SimpleSTRpairESaIS3_EE16_M_push_back_auxIJRPNS2_13SimpleSTRnodeES9_RPNS2_12ItemDistanceEEEEvDpOT_@Base 3.9.0 + (optional=templinst|subst)_ZNSt5dequeIN4geos6noding11SegmentNodeESaIS2_EE16_M_push_back_auxIJRKNS1_18NodedSegmentStringERKNS0_4geom10CoordinateER{size_t}iEEEvDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos6noding9snapround8HotPixelESaIS3_EE16_M_push_back_auxIJRNS0_4geom10CoordinateERdEEEvDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos9algorithm6locate25IndexedPointInAreaLocatorESaIS3_EE16_M_push_back_auxIJRKNS0_4geom10LinearRingEEEEvDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos9algorithm6locate25IndexedPointInAreaLocatorESaIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos9algorithm6locate25IndexedPointInAreaLocatorESaIS3_EED2Ev@Base 3.9.0 + (optional=templinst|arch=!amd64 !arm64 !hppa !ia64 !mips64el !riscv64 !sparc64 !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|arch=amd64 arm64 hppa ia64 mips64el mipsel riscv64 sparc64 x32)_ZNSt5dequeIN4geos9operation9overlayng11OverlayEdgeESaIS3_EE16_M_push_back_auxIJRNS0_4geom10CoordinateES9_RbRPNS2_12OverlayLabelERPKNS7_18CoordinateSequenceEEEEvDpOT_@Base 3.9.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_auxIJRiEEEvDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt5dequeIN4geos9operation9overlayng14EdgeSourceInfoESaIS3_EE16_M_push_back_auxIJRiS7_RbEEEvDpOT_@Base 3.9.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 + (optional=templinst)_ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE12emplace_backIJS4_EEEvDpOT_@Base 3.9.0 + _ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE16_M_push_back_auxIJRKS4_EEEvDpOT_@Base 3.7.0 + (subst)_ZNSt5dequeIPN4geos11triangulate8quadedge8QuadEdgeESaIS4_EE17_M_reallocate_mapE{size_t}b@Base 3.7.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 !hppa !ia64 !mips64el !riscv64 !sparc64 !x32)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE12emplace_backIJRKS2_EEEvDpOT_@Base 3.9.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_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.7.1 + (optional=templinst|arch=mipsel)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE6insertEN9__gnu_cxx17__normal_iteratorIPKS2_S4_EERS7_@Base 3.9.0 + (optional=templinst|arch=mipsel)_ZNSt6vectorIN4geos4geom10CoordinateESaIS2_EE7reserveEj@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIN4geos4geom11LineSegmentESaIS2_EE17_M_realloc_insertIJRKNS1_10CoordinateES8_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorIN4geos5index13intervalrtree21IntervalRTreeLeafNodeESaIS3_EE17_M_realloc_insertIJRdS7_RPvEEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.8.0 + (optional=templinst)_ZNSt6vectorIN4geos5index13intervalrtree21IntervalRTreeLeafNodeESaIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIN4geos5index13intervalrtree21IntervalRTreeLeafNodeESaIS3_EED2Ev@Base 3.9.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)_ZNSt6vectorIN4geos5index13intervalrtree23IntervalRTreeBranchNodeESaIS3_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt6vectorIN4geos5index13intervalrtree23IntervalRTreeBranchNodeESaIS3_EED2Ev@Base 3.9.0 + _ZNSt6vectorIN4geos5index7strtree13ItemsListItemESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.7.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)_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 + (optional=templinst|arch=armel armhf)_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EED1Ev@Base 3.8.0 + (optional=templinst|arch=armel armhf)_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EED2Ev@Base 3.8.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 + _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)_ZNSt6vectorIPKN4geos4geom7PolygonESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.9.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 + _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 + _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)_ZNSt6vectorIPN4geos5index5chain13MonotoneChainESaIS4_EE17_M_realloc_insertIJS4_EEEvN9__gnu_cxx17__normal_iteratorIPS4_S6_EEDpOT_@Base 3.8.0 + (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 + _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)_ZNSt6vectorIPN4geos9operation9overlayng15OverlayEdgeRingESaIS4_EE17_M_realloc_insertIJS4_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)_ZNSt6vectorISt10unique_ptrIKN4geos4geom18CoordinateSequenceESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.9.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_insertIJRPS3_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_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_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@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_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|subst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_default_appendE{size_t}@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPNS2_10LineStringEEEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos4geom8GeometryESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJPNS2_5PointEEEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.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_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_ptrIN4geos5index5chain13MonotoneChainESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJS7_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_@Base 3.9.0 + (optional=templinst|subst)_ZNSt6vectorISt10unique_ptrIN4geos5index5chain13MonotoneChainESt14default_deleteIS4_EESaIS7_EE7reserveE{size_t}@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos5index5chain13MonotoneChainESt14default_deleteIS4_EESaIS7_EED1Ev@Base 3.8.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos5index5chain13MonotoneChainESt14default_deleteIS4_EESaIS7_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_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_EED1Ev@Base 3.9.0 + (optional=templinst)_ZNSt6vectorISt10unique_ptrIN4geos9operation9overlayng15MaximalEdgeRingESt14default_deleteIS4_EESaIS7_EED2Ev@Base 3.9.0 + (optional=templinst|arch=ia64)_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 + _ZNSt6vectorIdSaIdEE17_M_realloc_insertIJRKdEEEvN9__gnu_cxx17__normal_iteratorIPdS1_EEDpOT_@Base 3.7.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 + _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)_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)_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_PNS0_9operation9overlayng11OverlayEdgeEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE24_M_get_insert_unique_posERS4_@Base 3.9.0 + (optional=templinst|arch=!armel !armhf)_ZNSt8_Rb_treeIN4geos4geom10CoordinateESt4pairIKS2_PNS0_9operation9overlayng11OverlayEdgeEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS9_ERS4_@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)_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)_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)_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 armel armhf hppa hurd-i386 i386 ia64 mips64el mipsel powerpc 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|arch=alpha amd64 arm64 hppa hurd-i386 i386 ia64 kfreebsd-amd64 m68k mips64el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64 x32)_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 + (optional=templinst)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateESt4pairIKS4_PNS0_9operation12EndpointInfoEESt10_Select1stISA_ENS1_18CoordinateLessThenESaISA_EE24_M_get_insert_unique_posERS6_@Base 3.4.2 + (optional=templinst|arch=alpha amd64 arm64 hppa hurd-i386 i386 ia64 kfreebsd-amd64 m68k mips64el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64 x32)_ZNSt8_Rb_treeIPKN4geos4geom10CoordinateESt4pairIKS4_PNS0_9operation12EndpointInfoEESt10_Select1stISA_ENS1_18CoordinateLessThenESaISA_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISA_ERS6_@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|arch=alpha amd64 arm64 hppa hurd-i386 i386 ia64 kfreebsd-amd64 m68k mips64el mipsel powerpc ppc64 ppc64el riscv64 s390x sh4 sparc64 x32)_ZNSt8_Rb_treeIPN4geos4geom10CoordinateESt4pairIKS3_PNS0_9geomgraph4NodeEESt10_Select1stIS9_ENS1_18CoordinateLessThenESaIS9_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS9_ERS5_@Base 3.4.2 + (optional=templinst)_ZNSt8_Rb_treeIPN4geos6noding11SegmentNodeES3_St9_IdentityIS3_ENS1_13SegmentNodeLTESaIS3_EE16_M_insert_uniqueIRKS3_EESt4pairISt17_Rb_tree_iteratorIS3_EbEOT_@Base 3.7.0 + _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)_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=!alpha !amd64 !arm64 !hppa !hurd-i386 !i386 !ia64 !kfreebsd-amd64 !m68k !mips64el !mipsel !powerpc !ppc64 !ppc64el !riscv64 !s390x !sh4 !sparc64 !x32)_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEEiS4_NS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_T0_SF_T1_T2_@Base 3.4.2 + (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=!armel !armhf !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=!alpha !hppa !ia64 !kfreebsd-i386 !mips !mips64el !mipsel !riscv64 !sparc64)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_SE_SE_T0_@Base 3.6.2 + (optional=templinst)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_SH_T0_@Base 3.9.0 + (optional=templinst)_ZSt13__heap_selectIN9__gnu_cxx17__normal_iteratorIPN4geos9geomgraph16EdgeIntersectionESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_less_iterEEvT_SC_SC_T0_@Base 3.9.0 + (optional=templinst|arch=armel armhf hurd-i386 i386 ia64 m68k mipsel powerpc)_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)_ZSt13__min_elementIN9__gnu_cxx17__normal_iteratorIPPN4geos9operation6buffer12DepthSegmentESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterINS4_20DepthSegmentLessThenEEEET_SG_SG_T0_@Base 3.9.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)_ZSt15__copy_move_ditILb1EPN4geos9operation9overlayng11OverlayEdgeERS4_PS4_St15_Deque_iteratorIS4_S5_S6_EET3_S7_IT0_T1_T2_ESD_S9_@Base 3.9.0 + (optional=templinst|arch=armel armhf)_ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_SE_T0_@Base 3.9.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|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|arch=armel armhf)_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterINS3_18CoordinateLessThenEEEEvT_SE_SE_SE_T0_@Base 3.9.0 + (optional=templinst)_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPN4geos4geom11LineSegmentESt6vectorIS4_SaIS4_EEEENS0_5__ops15_Iter_comp_iterIPFbRKS4_SD_EEEEvT_SH_SH_SH_T0_@Base 3.9.0 + (optional=templinst)_ZSt22__move_median_to_firstIN9__gnu_cxx17__normal_iteratorIPPN4geos9geomgraph5index14SweepLineEventESt6vectorIS6_SaIS6_EEEENS0_5__ops15_Iter_comp_iterINS4_22SweepLineEventLessThenEEEEvT_SG_SG_SG_T0_@Base 3.8.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|arch=armel armhf)_ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPN4geos4geom10CoordinateESt6vectorIS4_SaIS4_EEEENS0_5__ops14_Val_comp_iterINS3_18CoordinateLessThenEEEEvT_T0_@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|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 + _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 + _ZTIN4geos2io14ParseExceptionE@Base 3.4.2 + _ZTIN4geos2io9WKBWriterE@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 + _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 + _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 + _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 + _ZTIN4geos5index9sweepline22SweepLineOverlapActionE@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 + _ZTIN4geos9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZTIN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 + _ZTIN4geos9algorithm6locate22PointOnGeometryLocatorE@Base 3.4.2 + _ZTIN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorE@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 + _ZTIN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionE@Base 3.4.2 + _ZTIN4geos9operation5valid9IsValidOpE@Base 3.4.2 + _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 + _ZTIN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 + _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 + _ZTSN4geos2io14ParseExceptionE@Base 3.4.2 + _ZTSN4geos2io9WKBWriterE@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 + _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 + _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 + _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 + _ZTSN4geos5index9sweepline22SweepLineOverlapActionE@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 + _ZTSN4geos9algorithm16BoundaryNodeRuleE@Base 3.4.2 + _ZTSN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 + _ZTSN4geos9algorithm6locate22PointOnGeometryLocatorE@Base 3.4.2 + _ZTSN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorE@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 + _ZTSN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionE@Base 3.4.2 + _ZTSN4geos9operation5valid9IsValidOpE@Base 3.4.2 + _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 + _ZTSN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 + _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 + _ZTVN4geos2io9WKBWriterE@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 + _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 + _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 + _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 + _ZTVN4geos9algorithm25NotRepresentableExceptionE@Base 3.4.2 + _ZTVN4geos9algorithm6locate25IndexedPointInAreaLocator14SegmentVisitorE@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 + _ZTVN4geos9operation5valid25SweeplineNestedRingTester13OverlapActionE@Base 3.4.2 + _ZTVN4geos9operation5valid9IsValidOpE@Base 3.4.2 + _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 + _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 + _ZTVN4geos9precision35PrecisionReducerCoordinateOperationE@Base 3.4.2 + _ZZ19getMachineByteOrdervE12endian_check@Base 3.4.2 + (optional=templinst|subst)_ZZNSt8__detail18__to_chars_10_implI{size_t}EEvPcjT_E8__digits@Base 3.9.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 + (c++)"non-virtual thunk to geos::operation::distance::FacetSequenceTreeBuilder::FacetSequenceTree::~FacetSequenceTree()@Base" 3.9.0 diff -Nru geos-3.9.0/debian/libgeos-c1v5.symbols geos-3.9.1/debian/libgeos-c1v5.symbols --- geos-3.9.0/debian/libgeos-c1v5.symbols 2020-12-10 04:34:34.000000000 +0000 +++ geos-3.9.1/debian/libgeos-c1v5.symbols 2021-08-15 15:49:28.000000000 +0000 @@ -1,4 +1,4 @@ -# SymbolsHelper-Confirmed: 3.9.0~beta2 amd64 armel armhf hurd-i386 i386 ia64 mips64el mipsel powerpc ppc64 ppc64el riscv64 s390x sparc64 +# SymbolsHelper-Confirmed: 3.9.1 amd64 libgeos_c.so.1 #PACKAGE# #MINVER# * Build-Depends-Package: libgeos-dev GEOSArea@Base 3.4.2 @@ -548,6 +548,7 @@ (optional=templinst)_ZNSt6vectorIPN4geos4geom8GeometryESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_@Base 3.9.0 (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)_ZNSt6vectorISt10unique_ptrIN4geos4geom10LinearRingESt14default_deleteIS3_EESaIS6_EE17_M_realloc_insertIJRPS3_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_@Base 3.9.1 (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 diff -Nru geos-3.9.0/doc/Doxyfile geos-3.9.1/doc/Doxyfile --- geos-3.9.0/doc/Doxyfile 2020-12-09 20:03:50.000000000 +0000 +++ geos-3.9.1/doc/Doxyfile 2021-02-10 18:22:06.000000000 +0000 @@ -38,7 +38,7 @@ # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 3.9.0 +PROJECT_NUMBER = 3.9.1 # 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 diff -Nru geos-3.9.0/include/geos/algorithm/Orientation.h geos-3.9.1/include/geos/algorithm/Orientation.h --- geos-3.9.0/include/geos/algorithm/Orientation.h 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/include/geos/algorithm/Orientation.h 2021-02-03 23:19:52.000000000 +0000 @@ -89,6 +89,32 @@ */ static bool isCCW(const geom::CoordinateSequence* ring); + /** + * Tests if a ring defined by a CoordinateSequence is + * oriented counter-clockwise, using the signed area of the ring. + * + * * The list of points is assumed to have the first and last points equal. + * * This handles coordinate lists which contain repeated points. + * * This handles rings which contain collapsed segments + * (in particular, along the top of the ring). + * * This handles rings which are invalid due to self-intersection + * + * This algorithm is guaranteed to work with valid rings. + * For invalid rings (containing self-intersections), + * the algorithm determines the orientation of + * the largest enclosed area (including overlaps). + * This provides a more useful result in some situations, such as buffering. + * + * However, this approach may be less accurate in the case of + * rings with almost zero area. + * (Note that the orientation of rings with zero area is essentially + * undefined, and hence non-deterministic.) + * + * @param ring a CoordinateSequence forming a ring (with first and last point identical) + * @return true if the ring is oriented counter-clockwise. + */ + static bool isCCWArea(const geom::CoordinateSequence* ring); + }; diff -Nru geos-3.9.0/include/geos/operation/overlayng/EdgeMerger.h geos-3.9.1/include/geos/operation/overlayng/EdgeMerger.h --- geos-3.9.0/include/geos/operation/overlayng/EdgeMerger.h 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/include/geos/operation/overlayng/EdgeMerger.h 2021-02-03 23:21:39.000000000 +0000 @@ -59,32 +59,23 @@ * This ensures that the overlay output line direction will be as consistent * as possible with input lines. * + * The merger also preserves the order of the edges in the input. + * This means that for polygon-line overlay + * the result lines will be in the same order as in the input + * (possibly with multiple result lines for a single input line). + * * @author mdavis * */ class GEOS_DLL EdgeMerger { -private: - - - // Members - std::vector& edges; - std::map edgeMap; - public: - // Methods - EdgeMerger(std::vector& p_edges); - static std::vector merge(std::vector& edges); - std::vector merge(); - - }; } // namespace geos.operation.overlayng } // namespace geos.operation } // namespace geos - diff -Nru geos-3.9.0/install-sh geos-3.9.1/install-sh --- geos-3.9.0/install-sh 2017-09-05 18:37:08.000000000 +0000 +++ geos-3.9.1/install-sh 2021-02-10 18:21:37.000000000 +0000 @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2013-12-25.23; # UTC +scriptversion=2018-03-11.20; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -271,15 +271,18 @@ fi dst=$dst_arg - # If destination is a directory, append the input filename; won't work - # if double slashes aren't ignored. + # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst - dst=$dstdir/`basename "$src"` + dstbase=`basename "$src"` + case $dst in + */) dst=$dst$dstbase;; + *) dst=$dst/$dstbase;; + esac dstdir_status=0 else dstdir=`dirname "$dst"` @@ -288,6 +291,11 @@ fi fi + case $dstdir in + */) dstdirslash=$dstdir;; + *) dstdirslash=$dstdir/;; + esac + obsolete_mkdir_used=false if test $dstdir_status != 0; then @@ -324,34 +332,43 @@ # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) + # Note that $RANDOM variable is not portable (e.g. dash); Use it + # here however when possible just to lower collision chance. tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 + + # Because "mkdir -p" follows existing symlinks and we likely work + # directly in world-writeable /tmp, make sure that the '$tmpdir' + # directory is successfully created first before we actually test + # 'mkdir -p' feature. if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + $mkdirprog $mkdir_mode "$tmpdir" && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` + test_tmpdir="$tmpdir/a" + ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi - rmdir "$tmpdir/d" "$tmpdir" + rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac;; @@ -427,14 +444,25 @@ else # Make a couple of temp file names in the proper directory. - dsttmp=$dstdir/_inst.$$_ - rmtmp=$dstdir/_rm.$$_ + dsttmp=${dstdirslash}_inst.$$_ + rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. - (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + (umask $cp_umask && + { test -z "$stripcmd" || { + # Create $dsttmp read-write so that cp doesn't create it read-only, + # which would cause strip to fail. + if test -z "$doit"; then + : >"$dsttmp" # No need to fork-exec 'touch'. + else + $doit touch "$dsttmp" + fi + } + } && + $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # @@ -493,9 +521,9 @@ done # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru geos-3.9.0/Makefile.in geos-3.9.1/Makefile.in --- geos-3.9.0/Makefile.in 2020-12-09 20:03:23.000000000 +0000 +++ geos-3.9.1/Makefile.in 2021-02-10 18:21:37.000000000 +0000 @@ -204,8 +204,7 @@ CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in AUTHORS COPYING INSTALL NEWS \ - compile config.guess config.sub install-sh ltmain.sh missing \ - py-compile + compile config.guess config.sub install-sh ltmain.sh missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) diff -Nru geos-3.9.0/NEWS geos-3.9.1/NEWS --- geos-3.9.0/NEWS 2020-12-09 19:03:27.000000000 +0000 +++ geos-3.9.1/NEWS 2021-02-10 18:51:37.000000000 +0000 @@ -1,3 +1,15 @@ + +Changes in 3.9.1 +2021-02-10 + +- Bug fixes / improvements: + - Windows memory management quirk in createPolygon CAPI (#1050, Paul Ramsey) + - Allow build on Apple ARM64 (Taras Zakharko) + - Fix buffer to use largest enclosed area for invalid rings (#732, Paul Ramsey) + - Preserve ordering of lines in overlay results (Martin Davis) + - Fix overlay handling of flat interior lines (JTS-685, Martin Davis) + + Changes in 3.9.0 2020-12-09 diff -Nru geos-3.9.0/py-compile geos-3.9.1/py-compile --- geos-3.9.0/py-compile 2017-09-05 18:37:10.000000000 +0000 +++ geos-3.9.1/py-compile 1970-01-01 00:00:00.000000000 +0000 @@ -1,170 +0,0 @@ -#!/bin/sh -# py-compile - Compile a Python program - -scriptversion=2011-06-08.12; # UTC - -# Copyright (C) 2000-2014 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# This file is maintained in Automake, please report -# bugs to or send patches to -# . - -if [ -z "$PYTHON" ]; then - PYTHON=python -fi - -me=py-compile - -usage_error () -{ - echo "$me: $*" >&2 - echo "Try '$me --help' for more information." >&2 - exit 1 -} - -basedir= -destdir= -while test $# -ne 0; do - case "$1" in - --basedir) - if test $# -lt 2; then - usage_error "option '--basedir' requires an argument" - else - basedir=$2 - fi - shift - ;; - --destdir) - if test $# -lt 2; then - usage_error "option '--destdir' requires an argument" - else - destdir=$2 - fi - shift - ;; - -h|--help) - cat <<\EOF -Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..." - -Byte compile some python scripts FILES. Use --destdir to specify any -leading directory path to the FILES that you don't want to include in the -byte compiled file. Specify --basedir for any additional path information you -do want to be shown in the byte compiled file. - -Example: - py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py - -Report bugs to . -EOF - exit $? - ;; - -v|--version) - echo "$me $scriptversion" - exit $? - ;; - --) - shift - break - ;; - -*) - usage_error "unrecognized option '$1'" - ;; - *) - break - ;; - esac - shift -done - -files=$* -if test -z "$files"; then - usage_error "no files given" -fi - -# if basedir was given, then it should be prepended to filenames before -# byte compilation. -if [ -z "$basedir" ]; then - pathtrans="path = file" -else - pathtrans="path = os.path.join('$basedir', file)" -fi - -# if destdir was given, then it needs to be prepended to the filename to -# byte compile but not go into the compiled file. -if [ -z "$destdir" ]; then - filetrans="filepath = path" -else - filetrans="filepath = os.path.normpath('$destdir' + os.sep + path)" -fi - -$PYTHON -c " -import sys, os, py_compile, imp - -files = '''$files''' - -sys.stdout.write('Byte-compiling python modules...\n') -for file in files.split(): - $pathtrans - $filetrans - if not os.path.exists(filepath) or not (len(filepath) >= 3 - and filepath[-3:] == '.py'): - continue - sys.stdout.write(file) - sys.stdout.flush() - if hasattr(imp, 'get_tag'): - py_compile.compile(filepath, imp.cache_from_source(filepath), path) - else: - py_compile.compile(filepath, filepath + 'c', path) -sys.stdout.write('\n')" || exit $? - -# this will fail for python < 1.5, but that doesn't matter ... -$PYTHON -O -c " -import sys, os, py_compile, imp - -# pypy does not use .pyo optimization -if hasattr(sys, 'pypy_translation_info'): - sys.exit(0) - -files = '''$files''' -sys.stdout.write('Byte-compiling python modules (optimized versions) ...\n') -for file in files.split(): - $pathtrans - $filetrans - if not os.path.exists(filepath) or not (len(filepath) >= 3 - and filepath[-3:] == '.py'): - continue - sys.stdout.write(file) - sys.stdout.flush() - if hasattr(imp, 'get_tag'): - py_compile.compile(filepath, imp.cache_from_source(filepath, False), path) - else: - py_compile.compile(filepath, filepath + 'o', path) -sys.stdout.write('\n')" 2>/dev/null || : - -# Local Variables: -# mode: shell-script -# sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" -# time-stamp-end: "; # UTC" -# End: diff -Nru geos-3.9.0/README.md geos-3.9.1/README.md --- geos-3.9.0/README.md 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/README.md 2021-02-10 18:10:27.000000000 +0000 @@ -15,6 +15,7 @@ | branch / CI | Debbie | Winnie | Dronie | Travis CI | GitLab CI | AppVeyor | GitHub | Bessie | Bessie32 | |:--- |:--- |:--- |:--- |:--- |:--- |:--- |:--- |:--- |:--- | | master | [![debbie](https://debbie.postgis.net/buildStatus/icon?job=GEOS_Master)](https://debbie.postgis.net/view/GEOS/job/GEOS_Master/) | [![winnie](https://winnie.postgis.net:444/view/GEOS/job/GEOS_Master/badge/icon)](https://winnie.postgis.net:444/view/GEOS/job/GEOS_Master/) | [![dronie](https://dronie.osgeo.org/api/badges/geos/geos/status.svg?branch=master)](https://dronie.osgeo.org/geos/geos?branch=master) | [![travis](https://travis-ci.com/libgeos/geos.svg?branch=master)](https://travis-ci.com/libgeos/geos?branch=master) | [![gitlab-ci](https://gitlab.com/geos/libgeos/badges/master/pipeline.svg)](https://gitlab.com/geos/libgeos/commits/master) | [![appveyor](https://ci.appveyor.com/api/projects/status/62aplwst722b89au/branch/master?svg=true)](https://ci.appveyor.com/project/dbaston/geos/branch/master) | [![github](https://github.com/libgeos/geos/workflows/CI/badge.svg?branch=master)](https://github.com/libgeos/geos/actions?query=workflow%3ACI) | [![bessie](https://debbie.postgis.net/buildStatus/icon?job=GEOS_Worker_Run/label=bessie&BRANCH=master)](https://debbie.postgis.net/view/GEOS/job/GEOS_Worker_Run/label=bessie) | [![bessie32](https://debbie.postgis.net/buildStatus/icon?job=GEOS_Worker_Run/label=bessie32&BRANCH=master)](https://debbie.postgis.net/view/GEOS/job/GEOS_Worker_Run/label=bessie32) +| 3.9 | [![debbie](https://debbie.postgis.net/buildStatus/icon?job=GEOS_Branch_3.9)](https://debbie.postgis.net/view/GEOS/job/GEOS_Branch_3.9/) | [![winnie](https://winnie.postgis.net:444/view/GEOS/job/GEOS_Branch_3.9/badge/icon)](https://winnie.postgis.net:444/view/GEOS/job/GEOS_Branch_3.9/) | [![dronie](https://dronie.osgeo.org/api/badges/geos/geos/status.svg?branch=3.9)](https://dronie.osgeo.org/geos/geos?branch=3.9) | [![travis](https://travis-ci.com/libgeos/geos.svg?branch=3.9)](https://travis-ci.com/libgeos/geos?branch=3.9) | [![gitlab-ci](https://gitlab.com/geos/libgeos/badges/3.9/pipeline.svg)](https://gitlab.com/geos/libgeos/commits/3.9) | [![appveyor](https://ci.appveyor.com/api/projects/status/62aplwst722b89au/branch/3.9?svg=true)](https://ci.appveyor.com/project/dbaston/geos/branch/3.9) | [![github](https://github.com/libgeos/geos/workflows/CI/badge.svg?branch=3.9)](https://github.com/libgeos/geos/actions?query=workflow%3ACI) | | 3.8 | [![debbie](https://debbie.postgis.net/buildStatus/icon?job=GEOS_Branch_3.8)](https://debbie.postgis.net/view/GEOS/job/GEOS_Branch_3.8/) | [![winnie](https://winnie.postgis.net:444/view/GEOS/job/GEOS_Branch_3.8/badge/icon)](https://winnie.postgis.net:444/view/GEOS/job/GEOS_Branch_3.8/) | [![dronie](https://dronie.osgeo.org/api/badges/geos/geos/status.svg?branch=3.8)](https://dronie.osgeo.org/geos/geos?branch=3.8) | [![travis](https://travis-ci.com/libgeos/geos.svg?branch=3.8)](https://travis-ci.com/libgeos/geos?branch=3.8) | [![gitlab-ci](https://gitlab.com/geos/libgeos/badges/3.8/pipeline.svg)](https://gitlab.com/geos/libgeos/commits/3.8) | [![appveyor](https://ci.appveyor.com/api/projects/status/62aplwst722b89au/branch/3.8?svg=true)](https://ci.appveyor.com/project/dbaston/geos/branch/3.8) | [![github](https://github.com/libgeos/geos/workflows/CI/badge.svg?branch=3.8)](https://github.com/libgeos/geos/actions?query=workflow%3ACI) | | 3.7 | [![debbie](https://debbie.postgis.net/buildStatus/icon?job=GEOS_Branch_3.7)](https://debbie.postgis.net/view/GEOS/job/GEOS_Branch_3.7/) | [![winnie](https://winnie.postgis.net:444/view/GEOS/job/GEOS_Branch_3.7/badge/icon)](https://winnie.postgis.net:444/view/GEOS/job/GEOS_Branch_3.7/) | [![dronie](https://dronie.osgeo.org/api/badges/geos/geos/status.svg?branch=3.7)](https://dronie.osgeo.org/geos/geos?branch=3.7) | [![travis](https://travis-ci.com/libgeos/geos.svg?branch=3.7)](https://travis-ci.com/libgeos/geos?branch=3.7) | [![gitlab-ci](https://gitlab.com/geos/libgeos/badges/3.7/pipeline.svg)](https://gitlab.com/geos/libgeos/commits/3.7) | [![appveyor](https://ci.appveyor.com/api/projects/status/62aplwst722b89au/branch/3.7?svg=true)](https://ci.appveyor.com/project/dbaston/geos/branch/3.7) | [![github](https://github.com/libgeos/geos/workflows/CI/badge.svg?branch=3.7)](https://github.com/libgeos/geos/actions?query=workflow%3ACI) | diff -Nru geos-3.9.0/src/algorithm/Orientation.cpp geos-3.9.1/src/algorithm/Orientation.cpp --- geos-3.9.0/src/algorithm/Orientation.cpp 2020-12-09 00:07:19.000000000 +0000 +++ geos-3.9.1/src/algorithm/Orientation.cpp 2021-02-10 18:10:27.000000000 +0000 @@ -20,6 +20,7 @@ #include #include +#include #include #include #include @@ -134,92 +135,12 @@ } } -#if 0 /* public static */ bool -Orientation::isCCW(const geom::CoordinateSequence* ring) +Orientation::isCCWArea(const geom::CoordinateSequence* ring) { - // sanity check - if(ring->getSize() < 4) { - throw util::IllegalArgumentException("Ring has fewer than 4 points, so orientation cannot be determined"); - } - - // # of points without closing endpoint - const std::size_t nPts = ring->getSize() - 1; - assert(nPts >= 3); // This is here for scan-build - - // find highest point - const geom::Coordinate* hiPt = &ring->getAt(0); - size_t hiIndex = 0; - for(std::size_t i = 1; i <= nPts; ++i) { - const geom::Coordinate* p = &ring->getAt(i); - if(p->y > hiPt->y) { - hiPt = p; - hiIndex = i; - } - } - - // find distinct point before highest point - auto iPrev = hiIndex; - do { - if(iPrev == 0) { - iPrev = nPts; - } - iPrev = iPrev - 1; - } - while(ring->getAt(iPrev) == *hiPt && iPrev != hiIndex); - - // find distinct point after highest point - auto iNext = hiIndex; - do { - iNext = (iNext + 1) % nPts; - } - while(ring->getAt(iNext) == *hiPt && iNext != hiIndex); - - const geom::Coordinate* prev = &ring->getAt(iPrev); - const geom::Coordinate* next = &ring->getAt(iNext); - - /* - * This check catches cases where the ring contains an A-B-A - * configuration of points. - * This can happen if the ring does not contain 3 distinct points - * (including the case where the input array has fewer than 4 elements), - * or it contains coincident line segments. - */ - if(prev->equals2D(*hiPt) || next->equals2D(*hiPt) || - prev->equals2D(*next)) { - return false; - // MD - don't bother throwing exception, - // since this isn't a complete check for ring validity - //throw IllegalArgumentException("degenerate ring (does not contain 3 distinct points)"); - } - - int disc = Orientation::index(*prev, *hiPt, *next); - - /* - * If disc is exactly 0, lines are collinear. - * There are two possible cases: - * (1) the lines lie along the x axis in opposite directions - * (2) the lines lie on top of one another - * - * (1) is handled by checking if next is left of prev ==> CCW - * (2) should never happen, so we're going to ignore it! - * (Might want to assert this) - */ - bool isCCW = false; - - if(disc == 0) { - // poly is CCW if prev x is right of next x - isCCW = (prev->x > next->x); - } - else { - // if area is positive, points are ordered CCW - isCCW = (disc > 0); - } - - return isCCW; + return algorithm::Area::ofRingSigned(ring) < 0; } -#endif } // namespace geos.algorithm diff -Nru geos-3.9.0/src/inlines.cpp geos-3.9.1/src/inlines.cpp --- geos-3.9.0/src/inlines.cpp 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/src/inlines.cpp 2021-02-03 23:19:53.000000000 +0000 @@ -35,6 +35,9 @@ // the stubs correctly at link time by itself #if !defined(__CYGWIN__) +// Same as above for Apple ARM64 platforms +#if !(defined(__APPLE__) && defined(__aarch64__)) + // Undefine GEOS_INLINE so that .inl files // will be ready for an implementation file #undef GEOS_INLINE @@ -65,6 +68,8 @@ #include #include +#endif // defined __APPLE__ && defined __aarch64__ + #endif // defined __CYGWIN__ #endif // defined __MINGW32__ and !defined GEOS_DLL_EXPORT diff -Nru geos-3.9.0/src/operation/buffer/OffsetCurveSetBuilder.cpp geos-3.9.1/src/operation/buffer/OffsetCurveSetBuilder.cpp --- geos-3.9.0/src/operation/buffer/OffsetCurveSetBuilder.cpp 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/src/operation/buffer/OffsetCurveSetBuilder.cpp 2021-02-10 18:10:27.000000000 +0000 @@ -320,8 +320,9 @@ #if GEOS_DEBUG std::cerr << "OffsetCurveSetBuilder::addPolygonRing: CCW: " << Orientation::isCCW(coord) << std::endl; #endif - if(coord->size() >= LinearRing::MINIMUM_VALID_SIZE - && Orientation::isCCW(coord)) { + if(coord->size() >= LinearRing::MINIMUM_VALID_SIZE && + Orientation::isCCWArea(coord)) + { leftLoc = cwRightLoc; rightLoc = cwLeftLoc; #if GEOS_DEBUG diff -Nru geos-3.9.0/src/operation/overlayng/EdgeMerger.cpp geos-3.9.1/src/operation/overlayng/EdgeMerger.cpp --- geos-3.9.0/src/operation/overlayng/EdgeMerger.cpp 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/src/operation/overlayng/EdgeMerger.cpp 2021-02-03 23:21:39.000000000 +0000 @@ -23,23 +23,12 @@ namespace operation { // geos.operation namespace overlayng { // geos.operation.overlayng -EdgeMerger::EdgeMerger(std::vector& p_edges) - : edges(p_edges) {} - /*public static */ std::vector EdgeMerger::merge(std::vector& edges) { - EdgeMerger merger(edges); - return merger.merge(); -} - - -/*public static */ -std::vector -EdgeMerger::merge() -{ std::vector mergedEdges; + std::map edgeMap; for (Edge* edge : edges) { EdgeKey edgeKey(edge); @@ -47,6 +36,7 @@ if (it == edgeMap.end()) { // this is the first (and maybe only) edge for this line edgeMap[edgeKey] = edge; + mergedEdges.push_back(edge); //Debug.println("edge added: " + edge); //Debug.println(edge.toLineString()); } @@ -69,11 +59,6 @@ //Debug.println(edge.toLineString()); } } - - // copy map values into return vector - for (auto it: edgeMap) { - mergedEdges.push_back(it.second); - } return mergedEdges; } diff -Nru geos-3.9.0/src/operation/overlayng/OverlayUtil.cpp geos-3.9.1/src/operation/overlayng/OverlayUtil.cpp --- geos-3.9.0/src/operation/overlayng/OverlayUtil.cpp 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/src/operation/overlayng/OverlayUtil.cpp 2021-02-10 00:56:37.000000000 +0000 @@ -48,6 +48,10 @@ if (isFloating(pm)) { // if PM is FLOAT then there is no scale factor, so add 10% double minSize = std::min(env->getHeight(), env->getWidth()); + // heuristic to ensure zero-width envelopes don't cause total clipping + if (minSize <= 0.0) { + minSize = std::max(env->getHeight(), env->getWidth()); + } envExpandDist = SAFE_ENV_BUFFER_FACTOR * minSize; } else { diff -Nru geos-3.9.0/test-driver geos-3.9.1/test-driver --- geos-3.9.0/test-driver 2017-09-05 18:37:11.000000000 +0000 +++ geos-3.9.1/test-driver 2021-02-10 18:21:41.000000000 +0000 @@ -1,9 +1,9 @@ #! /bin/sh # test-driver - basic testsuite driver script. -scriptversion=2013-07-13.22; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 2011-2014 Free Software Foundation, Inc. +# Copyright (C) 2011-2020 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -140,9 +140,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff -Nru geos-3.9.0/tests/unit/algorithm/CGAlgorithms/isCCWTest.cpp geos-3.9.1/tests/unit/algorithm/CGAlgorithms/isCCWTest.cpp --- geos-3.9.0/tests/unit/algorithm/CGAlgorithms/isCCWTest.cpp 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/tests/unit/algorithm/CGAlgorithms/isCCWTest.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,246 +0,0 @@ -// -// Test Suite for Orientation::isCCW() function -// Ported from JTS junit/algorithm/IsCCWTest.java - -// tut -#include -// geos -#include -#include -#include -#include -#include -#include -#include -// std -#include -#include -#include -#include - -using namespace geos::algorithm; - -namespace tut { -// -// Test Group -// - -struct test_isccw_data { - typedef std::unique_ptr GeometryPtr; - - geos::io::WKTReader reader_; - geos::io::WKBReader breader_; - - test_isccw_data() - { - } - - ~test_isccw_data() - { - } - - void - checkOrientationCCW(bool expectedCCW, const std::string& wkt) - { - GeometryPtr geom(reader_.read(wkt)); - geos::geom::Polygon* poly = dynamic_cast(geom.get()); - ensure("WKT must be POLYGON)", poly != nullptr); - const geos::geom::CoordinateSequence* cs = poly->getExteriorRing()->getCoordinatesRO(); - bool actualCCW = Orientation::isCCW(cs); - ensure_equals("CoordinateSequence isCCW", expectedCCW, actualCCW); - } - - void - checkHexOrientationCCW(bool expectedCCW, std::istringstream& wkt) - { - GeometryPtr geom(breader_.readHEX(wkt)); - auto cs = geom->getCoordinates(); - bool actualCCW = Orientation::isCCW(cs.get()); - ensure_equals("CoordinateSequence isCCW", expectedCCW, actualCCW); - } - -}; - -typedef test_group group; -typedef group::object object; - -group test_isccw_group("geos::algorithm::CGAlgorithms::isCCW"); - -// -// Test Cases -// - -// 1 - Test if coordinates of polygon are counter-clockwise oriented -template<> -template<> -void object::test<1> -() -{ - const std::string wkt("POLYGON ((60 180, 140 240, 140 240, 140 240, 200 180, 120 120, 60 180))"); - checkOrientationCCW(false, wkt); -} - -// 2 - Test if coordinates of polygon are counter-clockwise oriented -template<> -template<> -void object::test<2> -() -{ - const std::string wkt("POLYGON ((60 180, 140 120, 100 180, 140 240, 60 180))"); - checkOrientationCCW(true, wkt); -} - -// 3 - Test the same polygon as in test No 2 but with duplicated top point -template<> -template<> -void object::test<3> -() -{ - const std::string wkt("POLYGON ((60 180, 140 120, 100 180, 140 240, 140 240, 60 180))"); - checkOrientationCCW(true, wkt); -} - -// 4 - Test orientation the narrow (almost collapsed) ring -// resulting in GEOS during execution of the union described -// in http://trac.osgeo.org/geos/ticket/398 -template<> -template<> -void object::test<4> -() -{ - std::istringstream - wkt("0102000000040000000000000000000000841D588465963540F56BFB214F0341408F26B714B2971B40F66BFB214F0341408C26B714B2971B400000000000000000841D588465963540"); - checkHexOrientationCCW(true, wkt); -} - -// 5 - Test orientation the narrow (almost collapsed) ring -// resulting in JTS during execution of the union described -// in http://trac.osgeo.org/geos/ticket/398 -template<> -template<> -void object::test<5> -() -{ - std::istringstream - wkt("0102000000040000000000000000000000841D588465963540F56BFB214F0341408F26B714B2971B40F66BFB214F0341408E26B714B2971B400000000000000000841D588465963540"); - checkHexOrientationCCW(true, wkt); -} - -// testCCWSmall -template<> -template<> -void object::test<6> -() -{ - const std::string wkt("POLYGON ((1 1, 9 1, 5 9, 1 1))"); - checkOrientationCCW(true, wkt); -} - -// testFlatTopSegment -template<> -template<> -void object::test<7> -() -{ - const std::string wkt("POLYGON ((100 200, 200 200, 200 100, 100 100, 100 200))"); - checkOrientationCCW(false, wkt); -} - -// testFlatMultipleTopSegment -template<> -template<> -void object::test<8> -() -{ - const std::string wkt("POLYGON ((100 200, 127 200, 151 200, 173 200, 200 200, 100 100, 100 200))"); - checkOrientationCCW(false, wkt); -} - -// testDegenerateRingHorizontal -template<> -template<> -void object::test<9> -() -{ - const std::string wkt("POLYGON ((100 200, 100 200, 200 200, 100 200))"); - checkOrientationCCW(false, wkt); -} - -// testDegenerateRingAngled -template<> -template<> -void object::test<10> -() -{ - const std::string wkt("POLYGON ((100 100, 100 100, 200 200, 100 100))"); - checkOrientationCCW(false, wkt); -} - -// testDegenerateRingVertical -template<> -template<> -void object::test<11> -() -{ - const std::string wkt("POLYGON ((200 100, 200 100, 200 200, 200 100))"); - checkOrientationCCW(false, wkt); -} - -/** -* This case is an invalid ring, so answer is a default value -*/ -// testTopAngledSegmentCollapse -template<> -template<> -void object::test<12> -() -{ - const std::string wkt("POLYGON ((10 20, 61 20, 20 30, 50 60, 10 20))"); - checkOrientationCCW(false, wkt); -} - -// testABATopFlatSegmentCollapse -template<> -template<> -void object::test<13> -() -{ - const std::string wkt("POLYGON ((71 0, 40 40, 70 40, 40 40, 20 0, 71 0))"); - checkOrientationCCW(true, wkt); -} - -// testABATopFlatSegmentCollapseMiddleStart -template<> -template<> -void object::test<14> -() -{ - const std::string wkt("POLYGON ((90 90, 50 90, 10 10, 90 10, 50 90, 90 90))"); - checkOrientationCCW(true, wkt); -} - -// testMultipleTopFlatSegmentCollapseSinglePoint -template<> -template<> -void object::test<15> -() -{ - const std::string wkt("POLYGON ((100 100, 200 100, 150 200, 170 200, 200 200, 100 200, 150 200, 100 100))"); - checkOrientationCCW(true, wkt); -} - -// testMultipleTopFlatSegmentCollapseFlatTop -template<> -template<> -void object::test<16> -() -{ - const std::string wkt("POLYGON ((10 10, 90 10, 70 70, 90 70, 10 70, 30 70, 50 70, 10 10))"); - checkOrientationCCW(true, wkt); -} - - - - -} // namespace tut - diff -Nru geos-3.9.0/tests/unit/algorithm/CGAlgorithms/OrientationIsCCWTest.cpp geos-3.9.1/tests/unit/algorithm/CGAlgorithms/OrientationIsCCWTest.cpp --- geos-3.9.0/tests/unit/algorithm/CGAlgorithms/OrientationIsCCWTest.cpp 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.9.1/tests/unit/algorithm/CGAlgorithms/OrientationIsCCWTest.cpp 2021-02-03 23:19:53.000000000 +0000 @@ -0,0 +1,257 @@ +// +// Test Suite for Orientation::isCCW() function +// Ported from JTS junit/algorithm/IsCCWTest.java + +// tut +#include +// geos +#include +#include +#include +#include +#include +#include +#include +// std +#include +#include +#include +#include + +using namespace geos::algorithm; + +namespace tut { +// +// Test Group +// + +struct test_isccw_data { + typedef std::unique_ptr GeometryPtr; + + geos::io::WKTReader reader_; + geos::io::WKBReader breader_; + + test_isccw_data() + { + } + + ~test_isccw_data() + { + } + + void + checkCCW(bool expectedCCW, const std::string& wkt) + { + GeometryPtr geom(reader_.read(wkt)); + geos::geom::Polygon* poly = dynamic_cast(geom.get()); + ensure("WKT must be POLYGON)", poly != nullptr); + const geos::geom::CoordinateSequence* cs = poly->getExteriorRing()->getCoordinatesRO(); + bool actualCCW = Orientation::isCCW(cs); + ensure_equals("CoordinateSequence isCCW", expectedCCW, actualCCW); + } + + void + checkCCWArea(bool expectedCCWArea, const std::string& wkt) + { + GeometryPtr geom(reader_.read(wkt)); + geos::geom::Polygon* poly = dynamic_cast(geom.get()); + ensure("WKT must be POLYGON)", poly != nullptr); + const geos::geom::CoordinateSequence* cs = poly->getExteriorRing()->getCoordinatesRO(); + bool actualCCWArea = Orientation::isCCWArea(cs); + ensure_equals("CoordinateSequence isCCWArea", expectedCCWArea, actualCCWArea); + } + + void + checkHexOrientationCCW(bool expectedCCW, std::istringstream& wkt) + { + GeometryPtr geom(breader_.readHEX(wkt)); + auto cs = geom->getCoordinates(); + bool actualCCW = Orientation::isCCW(cs.get()); + ensure_equals("CoordinateSequence isCCW", expectedCCW, actualCCW); + } + +}; + +typedef test_group group; +typedef group::object object; + +group test_isccw_group("geos::algorithm::CGAlgorithms::OrientationIsCCW"); + +// +// Test Cases +// + +// 1 - Test if coordinates of polygon are counter-clockwise oriented +template<> +template<> +void object::test<1> +() +{ + const std::string wkt("POLYGON ((60 180, 140 240, 140 240, 140 240, 200 180, 120 120, 60 180))"); + checkCCW(false, wkt); +} + +// 2 - Test if coordinates of polygon are counter-clockwise oriented +template<> +template<> +void object::test<2> +() +{ + const std::string wkt("POLYGON ((60 180, 140 120, 100 180, 140 240, 60 180))"); + checkCCW(true, wkt); +} + +// 3 - Test the same polygon as in test No 2 but with duplicated top point +template<> +template<> +void object::test<3> +() +{ + const std::string wkt("POLYGON ((60 180, 140 120, 100 180, 140 240, 140 240, 60 180))"); + checkCCW(true, wkt); +} + +// 4 - Test orientation the narrow (almost collapsed) ring +// resulting in GEOS during execution of the union described +// in http://trac.osgeo.org/geos/ticket/398 +template<> +template<> +void object::test<4> +() +{ + std::istringstream + wkt("0102000000040000000000000000000000841D588465963540F56BFB214F0341408F26B714B2971B40F66BFB214F0341408C26B714B2971B400000000000000000841D588465963540"); + checkHexOrientationCCW(true, wkt); +} + +// 5 - Test orientation the narrow (almost collapsed) ring +// resulting in JTS during execution of the union described +// in http://trac.osgeo.org/geos/ticket/398 +template<> +template<> +void object::test<5> +() +{ + std::istringstream + wkt("0102000000040000000000000000000000841D588465963540F56BFB214F0341408F26B714B2971B40F66BFB214F0341408E26B714B2971B400000000000000000841D588465963540"); + checkHexOrientationCCW(true, wkt); +} + +// testCCWSmall +template<> +template<> +void object::test<6> +() +{ + const std::string wkt("POLYGON ((1 1, 9 1, 5 9, 1 1))"); + checkCCW(true, wkt); +} + +// testFlatTopSegment +template<> +template<> +void object::test<7> +() +{ + const std::string wkt("POLYGON ((100 200, 200 200, 200 100, 100 100, 100 200))"); + checkCCW(false, wkt); +} + +// testFlatMultipleTopSegment +template<> +template<> +void object::test<8> +() +{ + const std::string wkt("POLYGON ((100 200, 127 200, 151 200, 173 200, 200 200, 100 100, 100 200))"); + checkCCW(false, wkt); +} + +// testDegenerateRingHorizontal +template<> +template<> +void object::test<9> +() +{ + const std::string wkt("POLYGON ((100 200, 100 200, 200 200, 100 200))"); + checkCCW(false, wkt); +} + +// testDegenerateRingAngled +template<> +template<> +void object::test<10> +() +{ + const std::string wkt("POLYGON ((100 100, 100 100, 200 200, 100 100))"); + checkCCW(false, wkt); +} + +// testDegenerateRingVertical +template<> +template<> +void object::test<11> +() +{ + const std::string wkt("POLYGON ((200 100, 200 100, 200 200, 200 100))"); + checkCCW(false, wkt); +} + +/** +* This case is an invalid ring, so answer is a default value +*/ +// testTopAngledSegmentCollapse +template<> +template<> +void object::test<12> +() +{ + const std::string wkt("POLYGON ((10 20, 61 20, 20 30, 50 60, 10 20))"); + checkCCW(false, wkt); +} + +// testABATopFlatSegmentCollapse +template<> +template<> +void object::test<13> +() +{ + const std::string wkt("POLYGON ((71 0, 40 40, 70 40, 40 40, 20 0, 71 0))"); + checkCCW(true, wkt); +} + +// testABATopFlatSegmentCollapseMiddleStart +template<> +template<> +void object::test<14> +() +{ + const std::string wkt("POLYGON ((90 90, 50 90, 10 10, 90 10, 50 90, 90 90))"); + checkCCW(true, wkt); +} + +// testMultipleTopFlatSegmentCollapseSinglePoint +template<> +template<> +void object::test<15> +() +{ + const std::string wkt("POLYGON ((100 100, 200 100, 150 200, 170 200, 200 200, 100 200, 150 200, 100 100))"); + checkCCW(true, wkt); +} + +// testMultipleTopFlatSegmentCollapseFlatTop +template<> +template<> +void object::test<16> +() +{ + const std::string wkt("POLYGON ((10 10, 90 10, 70 70, 90 70, 10 70, 30 70, 50 70, 10 10))"); + checkCCW(true, wkt); +} + + + + +} // namespace tut + diff -Nru geos-3.9.0/tests/unit/capi/GEOSGeom_createLineStringTest.cpp geos-3.9.1/tests/unit/capi/GEOSGeom_createLineStringTest.cpp --- geos-3.9.0/tests/unit/capi/GEOSGeom_createLineStringTest.cpp 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.9.1/tests/unit/capi/GEOSGeom_createLineStringTest.cpp 2021-02-03 23:19:53.000000000 +0000 @@ -0,0 +1,37 @@ +#include +#include "capi_test_utils.h" + +namespace tut { +// +// Test Group +// + +struct test_geosgeom_createlinestring_data : public capitest::utility {}; + +typedef test_group group; +typedef group::object object; + +group test_geosgeom_createlinestring("capi::GEOSGeom_createLineString"); + +template<> +template<> +void object::test<1> +() +{ + GEOSCoordSequence* seq = GEOSCoordSeq_create(3, 2); + + GEOSCoordSeq_setXY(seq, 0, 1, 2); + GEOSCoordSeq_setXY(seq, 1, 4, 5); + GEOSCoordSeq_setXY(seq, 2, 9, -2); + + GEOSGeometry* result = GEOSGeom_createLineString(seq); + GEOSGeometry* expected = GEOSGeomFromWKT("LINESTRING (1 2, 4 5, 9 -2)"); + + ensure_equals(GEOSEqualsExact(result, expected, 0), 1); + + GEOSGeom_destroy(result); + GEOSGeom_destroy(expected); +} + +} // namespace tut + diff -Nru geos-3.9.0/tests/unit/capi/GEOSGeom_createPolygonTest.cpp geos-3.9.1/tests/unit/capi/GEOSGeom_createPolygonTest.cpp --- geos-3.9.0/tests/unit/capi/GEOSGeom_createPolygonTest.cpp 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.9.1/tests/unit/capi/GEOSGeom_createPolygonTest.cpp 2021-02-10 18:10:27.000000000 +0000 @@ -0,0 +1,54 @@ +#include +#include "capi_test_utils.h" + +namespace tut { +// +// Test Group +// + +struct test_geosgeom_createpolygon_data : public capitest::utility {}; + +typedef test_group group; +typedef group::object object; + +group test_geosgeom_createpolygon("capi::GEOSGeom_createPolygon"); + +template<> +template<> +void object::test<1> +() +{ + GEOSCoordSequence* shell_seq = GEOSCoordSeq_create(5, 2); + GEOSCoordSequence* hole_seq = GEOSCoordSeq_create(5, 2); + + double shell_coords[] = {0,0, 0,10, 10,10, 10,0, 0,0}; + double hole_coords[] = {5,5, 5,6, 6,6, 6,5, 5,5}; + for (int i = 0; i < 5; i++) { + GEOSCoordSeq_setXY(shell_seq, i, shell_coords[2*i], shell_coords[2*i+1]); + GEOSCoordSeq_setXY(hole_seq, i, hole_coords[2*i], hole_coords[2*i+1]); + } + + GEOSGeometry* shell = GEOSGeom_createLinearRing(shell_seq); + GEOSGeometry* hole = GEOSGeom_createLinearRing(hole_seq); + GEOSGeometry** holes = (GEOSGeometry**)malloc(sizeof(GEOSGeometry *)); + holes[0] = hole; + + GEOSGeometry* polygon = GEOSGeom_createPolygon(shell, holes, 1); + GEOSGeometry* expected = GEOSGeomFromWKT("POLYGON((0 0, 0 10, 10 10, 10 0, 0 0),(5 5, 5 6, 6 6, 6 5, 5 5))"); + + // GEOSWKTWriter* w = GEOSWKTWriter_create(); + // printf("%s\n", GEOSWKTWriter_write(w, polygon)); + // printf("%s\n", GEOSWKTWriter_write(w, expected)); + + ensure_equals(GEOSEqualsExact(polygon, expected, 0), 1); + + GEOSGeom_destroy(polygon); + GEOSGeom_destroy(expected); + // WARNING! The GEOSGeom_createPolygon takes ownership of the + // GEOSGeometry, but not the containing array! + // maybe this should be changed... + free(holes); +} + +} // namespace tut + diff -Nru geos-3.9.0/tests/unit/Makefile.am geos-3.9.1/tests/unit/Makefile.am --- geos-3.9.0/tests/unit/Makefile.am 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/tests/unit/Makefile.am 2021-02-10 18:10:27.000000000 +0000 @@ -44,7 +44,7 @@ algorithm/AngleTest.cpp \ algorithm/AreaTest.cpp \ algorithm/CGAlgorithms/computeOrientationTest.cpp \ - algorithm/CGAlgorithms/isCCWTest.cpp \ + algorithm/CGAlgorithms/OrientationIsCCWTest.cpp \ algorithm/CGAlgorithms/isPointInRingTest.cpp \ algorithm/CGAlgorithms/signedAreaTest.cpp \ algorithm/ConvexHullTest.cpp \ @@ -78,6 +78,8 @@ capi/GEOSEqualsTest.cpp \ capi/GEOSFrechetDistanceTest.cpp \ capi/GEOSGeom_createCollectionTest.cpp \ + capi/GEOSGeom_createPolygonTest.cpp \ + capi/GEOSGeom_createLineStringTest.cpp \ capi/GEOSGeom_createTest.cpp \ capi/GEOSGeom_extentTest.cpp \ capi/GEOSGeom_extractUniquePointsTest.cpp \ @@ -214,6 +216,7 @@ operation/polygonize/PolygonizeTest.cpp \ operation/sharedpaths/SharedPathsOpTest.cpp \ operation/valid/IsValidOpTest.cpp \ + operation/valid/MakeValidTest.cpp \ operation/valid/RepeatedPointRemoverTest.cpp \ operation/valid/ValidClosedRingTest.cpp \ operation/valid/ValidSelfTouchingRingFormingHoleTest.cpp \ diff -Nru geos-3.9.0/tests/unit/Makefile.in geos-3.9.1/tests/unit/Makefile.in --- geos-3.9.0/tests/unit/Makefile.in 2020-12-09 20:03:27.000000000 +0000 +++ geos-3.9.1/tests/unit/Makefile.in 2021-02-10 18:21:41.000000000 +0000 @@ -116,7 +116,7 @@ am_geos_unit_OBJECTS = geos_unit.$(OBJEXT) \ algorithm/AngleTest.$(OBJEXT) algorithm/AreaTest.$(OBJEXT) \ algorithm/CGAlgorithms/computeOrientationTest.$(OBJEXT) \ - algorithm/CGAlgorithms/isCCWTest.$(OBJEXT) \ + algorithm/CGAlgorithms/OrientationIsCCWTest.$(OBJEXT) \ algorithm/CGAlgorithms/isPointInRingTest.$(OBJEXT) \ algorithm/CGAlgorithms/signedAreaTest.$(OBJEXT) \ algorithm/ConvexHullTest.$(OBJEXT) \ @@ -148,6 +148,8 @@ capi/GEOSDistanceTest.$(OBJEXT) capi/GEOSEqualsTest.$(OBJEXT) \ capi/GEOSFrechetDistanceTest.$(OBJEXT) \ capi/GEOSGeom_createCollectionTest.$(OBJEXT) \ + capi/GEOSGeom_createPolygonTest.$(OBJEXT) \ + capi/GEOSGeom_createLineStringTest.$(OBJEXT) \ capi/GEOSGeom_createTest.$(OBJEXT) \ capi/GEOSGeom_extentTest.$(OBJEXT) \ capi/GEOSGeom_extractUniquePointsTest.$(OBJEXT) \ @@ -272,6 +274,7 @@ operation/polygonize/PolygonizeTest.$(OBJEXT) \ operation/sharedpaths/SharedPathsOpTest.$(OBJEXT) \ operation/valid/IsValidOpTest.$(OBJEXT) \ + operation/valid/MakeValidTest.$(OBJEXT) \ operation/valid/RepeatedPointRemoverTest.$(OBJEXT) \ operation/valid/ValidClosedRingTest.$(OBJEXT) \ operation/valid/ValidSelfTouchingRingFormingHoleTest.$(OBJEXT) \ @@ -326,8 +329,8 @@ algorithm/$(DEPDIR)/RobustLineIntersectionTest.Po \ algorithm/$(DEPDIR)/RobustLineIntersectorTest.Po \ algorithm/$(DEPDIR)/RobustLineIntersectorZTest.Po \ + algorithm/CGAlgorithms/$(DEPDIR)/OrientationIsCCWTest.Po \ algorithm/CGAlgorithms/$(DEPDIR)/computeOrientationTest.Po \ - algorithm/CGAlgorithms/$(DEPDIR)/isCCWTest.Po \ algorithm/CGAlgorithms/$(DEPDIR)/isPointInRingTest.Po \ algorithm/CGAlgorithms/$(DEPDIR)/signedAreaTest.Po \ algorithm/construct/$(DEPDIR)/LargestEmptyCircleTest.Po \ @@ -351,6 +354,8 @@ capi/$(DEPDIR)/GEOSGeomFromWKBTest.Po \ capi/$(DEPDIR)/GEOSGeomToWKTTest.Po \ capi/$(DEPDIR)/GEOSGeom_createCollectionTest.Po \ + capi/$(DEPDIR)/GEOSGeom_createLineStringTest.Po \ + capi/$(DEPDIR)/GEOSGeom_createPolygonTest.Po \ capi/$(DEPDIR)/GEOSGeom_createTest.Po \ capi/$(DEPDIR)/GEOSGeom_extentTest.Po \ capi/$(DEPDIR)/GEOSGeom_extractUniquePointsTest.Po \ @@ -481,6 +486,7 @@ operation/polygonize/$(DEPDIR)/PolygonizeTest.Po \ operation/sharedpaths/$(DEPDIR)/SharedPathsOpTest.Po \ operation/valid/$(DEPDIR)/IsValidOpTest.Po \ + operation/valid/$(DEPDIR)/MakeValidTest.Po \ operation/valid/$(DEPDIR)/RepeatedPointRemoverTest.Po \ operation/valid/$(DEPDIR)/ValidClosedRingTest.Po \ operation/valid/$(DEPDIR)/ValidSelfTouchingRingFormingHoleTest.Po \ @@ -928,7 +934,7 @@ algorithm/AngleTest.cpp \ algorithm/AreaTest.cpp \ algorithm/CGAlgorithms/computeOrientationTest.cpp \ - algorithm/CGAlgorithms/isCCWTest.cpp \ + algorithm/CGAlgorithms/OrientationIsCCWTest.cpp \ algorithm/CGAlgorithms/isPointInRingTest.cpp \ algorithm/CGAlgorithms/signedAreaTest.cpp \ algorithm/ConvexHullTest.cpp \ @@ -962,6 +968,8 @@ capi/GEOSEqualsTest.cpp \ capi/GEOSFrechetDistanceTest.cpp \ capi/GEOSGeom_createCollectionTest.cpp \ + capi/GEOSGeom_createPolygonTest.cpp \ + capi/GEOSGeom_createLineStringTest.cpp \ capi/GEOSGeom_createTest.cpp \ capi/GEOSGeom_extentTest.cpp \ capi/GEOSGeom_extractUniquePointsTest.cpp \ @@ -1098,6 +1106,7 @@ operation/polygonize/PolygonizeTest.cpp \ operation/sharedpaths/SharedPathsOpTest.cpp \ operation/valid/IsValidOpTest.cpp \ + operation/valid/MakeValidTest.cpp \ operation/valid/RepeatedPointRemoverTest.cpp \ operation/valid/ValidClosedRingTest.cpp \ operation/valid/ValidSelfTouchingRingFormingHoleTest.cpp \ @@ -1180,7 +1189,7 @@ algorithm/CGAlgorithms/computeOrientationTest.$(OBJEXT): \ algorithm/CGAlgorithms/$(am__dirstamp) \ algorithm/CGAlgorithms/$(DEPDIR)/$(am__dirstamp) -algorithm/CGAlgorithms/isCCWTest.$(OBJEXT): \ +algorithm/CGAlgorithms/OrientationIsCCWTest.$(OBJEXT): \ algorithm/CGAlgorithms/$(am__dirstamp) \ algorithm/CGAlgorithms/$(DEPDIR)/$(am__dirstamp) algorithm/CGAlgorithms/isPointInRingTest.$(OBJEXT): \ @@ -1273,6 +1282,10 @@ capi/$(DEPDIR)/$(am__dirstamp) capi/GEOSGeom_createCollectionTest.$(OBJEXT): capi/$(am__dirstamp) \ capi/$(DEPDIR)/$(am__dirstamp) +capi/GEOSGeom_createPolygonTest.$(OBJEXT): capi/$(am__dirstamp) \ + capi/$(DEPDIR)/$(am__dirstamp) +capi/GEOSGeom_createLineStringTest.$(OBJEXT): capi/$(am__dirstamp) \ + capi/$(DEPDIR)/$(am__dirstamp) capi/GEOSGeom_createTest.$(OBJEXT): capi/$(am__dirstamp) \ capi/$(DEPDIR)/$(am__dirstamp) capi/GEOSGeom_extentTest.$(OBJEXT): capi/$(am__dirstamp) \ @@ -1749,6 +1762,9 @@ operation/valid/IsValidOpTest.$(OBJEXT): \ operation/valid/$(am__dirstamp) \ operation/valid/$(DEPDIR)/$(am__dirstamp) +operation/valid/MakeValidTest.$(OBJEXT): \ + operation/valid/$(am__dirstamp) \ + operation/valid/$(DEPDIR)/$(am__dirstamp) operation/valid/RepeatedPointRemoverTest.$(OBJEXT): \ operation/valid/$(am__dirstamp) \ operation/valid/$(DEPDIR)/$(am__dirstamp) @@ -1890,8 +1906,8 @@ @AMDEP_TRUE@@am__include@ @am__quote@algorithm/$(DEPDIR)/RobustLineIntersectionTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@algorithm/$(DEPDIR)/RobustLineIntersectorTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@algorithm/$(DEPDIR)/RobustLineIntersectorZTest.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@algorithm/CGAlgorithms/$(DEPDIR)/OrientationIsCCWTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@algorithm/CGAlgorithms/$(DEPDIR)/computeOrientationTest.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@algorithm/CGAlgorithms/$(DEPDIR)/isCCWTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@algorithm/CGAlgorithms/$(DEPDIR)/isPointInRingTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@algorithm/CGAlgorithms/$(DEPDIR)/signedAreaTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@algorithm/construct/$(DEPDIR)/LargestEmptyCircleTest.Po@am__quote@ # am--include-marker @@ -1915,6 +1931,8 @@ @AMDEP_TRUE@@am__include@ @am__quote@capi/$(DEPDIR)/GEOSGeomFromWKBTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@capi/$(DEPDIR)/GEOSGeomToWKTTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@capi/$(DEPDIR)/GEOSGeom_createCollectionTest.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@capi/$(DEPDIR)/GEOSGeom_createLineStringTest.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@capi/$(DEPDIR)/GEOSGeom_createPolygonTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@capi/$(DEPDIR)/GEOSGeom_createTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@capi/$(DEPDIR)/GEOSGeom_extentTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@capi/$(DEPDIR)/GEOSGeom_extractUniquePointsTest.Po@am__quote@ # am--include-marker @@ -2049,6 +2067,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@operation/polygonize/$(DEPDIR)/PolygonizeTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@operation/sharedpaths/$(DEPDIR)/SharedPathsOpTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@operation/valid/$(DEPDIR)/IsValidOpTest.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@operation/valid/$(DEPDIR)/MakeValidTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@operation/valid/$(DEPDIR)/RepeatedPointRemoverTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@operation/valid/$(DEPDIR)/ValidClosedRingTest.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@operation/valid/$(DEPDIR)/ValidSelfTouchingRingFormingHoleTest.Po@am__quote@ # am--include-marker @@ -2487,8 +2506,8 @@ -rm -f algorithm/$(DEPDIR)/RobustLineIntersectionTest.Po -rm -f algorithm/$(DEPDIR)/RobustLineIntersectorTest.Po -rm -f algorithm/$(DEPDIR)/RobustLineIntersectorZTest.Po + -rm -f algorithm/CGAlgorithms/$(DEPDIR)/OrientationIsCCWTest.Po -rm -f algorithm/CGAlgorithms/$(DEPDIR)/computeOrientationTest.Po - -rm -f algorithm/CGAlgorithms/$(DEPDIR)/isCCWTest.Po -rm -f algorithm/CGAlgorithms/$(DEPDIR)/isPointInRingTest.Po -rm -f algorithm/CGAlgorithms/$(DEPDIR)/signedAreaTest.Po -rm -f algorithm/construct/$(DEPDIR)/LargestEmptyCircleTest.Po @@ -2512,6 +2531,8 @@ -rm -f capi/$(DEPDIR)/GEOSGeomFromWKBTest.Po -rm -f capi/$(DEPDIR)/GEOSGeomToWKTTest.Po -rm -f capi/$(DEPDIR)/GEOSGeom_createCollectionTest.Po + -rm -f capi/$(DEPDIR)/GEOSGeom_createLineStringTest.Po + -rm -f capi/$(DEPDIR)/GEOSGeom_createPolygonTest.Po -rm -f capi/$(DEPDIR)/GEOSGeom_createTest.Po -rm -f capi/$(DEPDIR)/GEOSGeom_extentTest.Po -rm -f capi/$(DEPDIR)/GEOSGeom_extractUniquePointsTest.Po @@ -2646,6 +2667,7 @@ -rm -f operation/polygonize/$(DEPDIR)/PolygonizeTest.Po -rm -f operation/sharedpaths/$(DEPDIR)/SharedPathsOpTest.Po -rm -f operation/valid/$(DEPDIR)/IsValidOpTest.Po + -rm -f operation/valid/$(DEPDIR)/MakeValidTest.Po -rm -f operation/valid/$(DEPDIR)/RepeatedPointRemoverTest.Po -rm -f operation/valid/$(DEPDIR)/ValidClosedRingTest.Po -rm -f operation/valid/$(DEPDIR)/ValidSelfTouchingRingFormingHoleTest.Po @@ -2723,8 +2745,8 @@ -rm -f algorithm/$(DEPDIR)/RobustLineIntersectionTest.Po -rm -f algorithm/$(DEPDIR)/RobustLineIntersectorTest.Po -rm -f algorithm/$(DEPDIR)/RobustLineIntersectorZTest.Po + -rm -f algorithm/CGAlgorithms/$(DEPDIR)/OrientationIsCCWTest.Po -rm -f algorithm/CGAlgorithms/$(DEPDIR)/computeOrientationTest.Po - -rm -f algorithm/CGAlgorithms/$(DEPDIR)/isCCWTest.Po -rm -f algorithm/CGAlgorithms/$(DEPDIR)/isPointInRingTest.Po -rm -f algorithm/CGAlgorithms/$(DEPDIR)/signedAreaTest.Po -rm -f algorithm/construct/$(DEPDIR)/LargestEmptyCircleTest.Po @@ -2748,6 +2770,8 @@ -rm -f capi/$(DEPDIR)/GEOSGeomFromWKBTest.Po -rm -f capi/$(DEPDIR)/GEOSGeomToWKTTest.Po -rm -f capi/$(DEPDIR)/GEOSGeom_createCollectionTest.Po + -rm -f capi/$(DEPDIR)/GEOSGeom_createLineStringTest.Po + -rm -f capi/$(DEPDIR)/GEOSGeom_createPolygonTest.Po -rm -f capi/$(DEPDIR)/GEOSGeom_createTest.Po -rm -f capi/$(DEPDIR)/GEOSGeom_extentTest.Po -rm -f capi/$(DEPDIR)/GEOSGeom_extractUniquePointsTest.Po @@ -2882,6 +2906,7 @@ -rm -f operation/polygonize/$(DEPDIR)/PolygonizeTest.Po -rm -f operation/sharedpaths/$(DEPDIR)/SharedPathsOpTest.Po -rm -f operation/valid/$(DEPDIR)/IsValidOpTest.Po + -rm -f operation/valid/$(DEPDIR)/MakeValidTest.Po -rm -f operation/valid/$(DEPDIR)/RepeatedPointRemoverTest.Po -rm -f operation/valid/$(DEPDIR)/ValidClosedRingTest.Po -rm -f operation/valid/$(DEPDIR)/ValidSelfTouchingRingFormingHoleTest.Po diff -Nru geos-3.9.0/tests/unit/operation/buffer/BufferOpTest.cpp geos-3.9.1/tests/unit/operation/buffer/BufferOpTest.cpp --- geos-3.9.0/tests/unit/operation/buffer/BufferOpTest.cpp 2020-12-01 16:11:13.000000000 +0000 +++ geos-3.9.1/tests/unit/operation/buffer/BufferOpTest.cpp 2021-02-03 23:19:53.000000000 +0000 @@ -3,6 +3,7 @@ // tut #include +#include // geos #include #include @@ -447,5 +448,22 @@ ensure_equals(gBuffer->getGeometryTypeId(), geos::geom::GEOS_MULTIPOLYGON); } + +// This now works since buffer ring orientation is changed to use signed-area test. +// testBowtiePolygonLargestAreaRetained +template<> +template<> +void object::test<15> +() +{ + std::string wkt0("POLYGON ((10 10, 50 10, 25 35, 35 35, 10 10))"); + GeomPtr g0(wktreader.read(wkt0)); + GeomPtr gresult = g0->buffer(0.0); + std::string wkt1("POLYGON ((10 10, 30 30, 50 10, 10 10))"); + GeomPtr gexpected(wktreader.read(wkt1)); + ensure_equals_geometry(gresult.get(), gexpected.get()); +} + + } // namespace tut diff -Nru geos-3.9.0/tests/unit/operation/overlayng/OverlayNGTest.cpp geos-3.9.1/tests/unit/operation/overlayng/OverlayNGTest.cpp --- geos-3.9.0/tests/unit/operation/overlayng/OverlayNGTest.cpp 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/tests/unit/operation/overlayng/OverlayNGTest.cpp 2021-02-10 00:56:37.000000000 +0000 @@ -45,6 +45,24 @@ } void + testOverlayExact(const std::string& a, const std::string& b, const std::string& expected, int opCode, double scaleFactor) + { + std::unique_ptr pm; + if (scaleFactor > 0) + pm.reset(new PrecisionModel(scaleFactor)); + else + pm.reset(new PrecisionModel()); + + std::unique_ptr geom_a = r.read(a); + std::unique_ptr geom_b = r.read(b); + std::unique_ptr geom_expected = r.read(expected); + std::unique_ptr geom_result = OverlayNG::overlay(geom_a.get(), geom_b.get(), opCode, pm.get()); + // std::string wkt_result = w.write(geom_result.get()); + // std::cout << std::endl << wkt_result << std::endl; + ensure_equals_exact_geometry(geom_expected.get(), geom_result.get(), 0); + } + + void testOverlayNoOpt(const std::string& a, const std::string& b, const std::string& expected, int opCode, double scaleFactor) { PrecisionModel pm(scaleFactor); @@ -531,4 +549,37 @@ testOverlay(a, b, exp, OverlayNG::INTERSECTION, 0); } +template<> +template<> +void object::test<43> () +{ + set_test_name("testPolygonLineIntersectionOrder"); + std::string a = "POLYGON ((1 1, 1 9, 9 9, 9 7, 3 7, 3 3, 9 3, 9 1, 1 1))"; + std::string b = "MULTILINESTRING ((2 10, 2 0), (4 10, 4 0))"; + std::string exp = "MULTILINESTRING ((2 9, 2 1), (4 9, 4 7), (4 3, 4 1))"; + testOverlay(a, b, exp, OverlayNG::INTERSECTION, 0); +} + +template<> +template<> +void object::test<44> () +{ + set_test_name("testPolygonLineVerticalntersection"); + std::string a = "POLYGON ((-200 -200, 200 -200, 200 200, -200 200, -200 -200))"; + std::string b = "LINESTRING (-100 100, -100 -100)"; + std::string exp = "LINESTRING (-100 100, -100 -100)"; + testOverlay(a, b, exp, OverlayNG::INTERSECTION, 0); +} + +template<> +template<> +void object::test<45> () +{ + set_test_name("testPolygonLineHorizontalIntersection"); + std::string a = "POLYGON ((10 90, 90 90, 90 10, 10 10, 10 90))"; + std::string b = "LINESTRING (20 50, 80 50)"; + std::string exp = "LINESTRING (20 50, 80 50)"; + testOverlay(a, b, exp, OverlayNG::INTERSECTION, 0); +} + } // namespace tut diff -Nru geos-3.9.0/tests/unit/operation/valid/MakeValidTest.cpp geos-3.9.1/tests/unit/operation/valid/MakeValidTest.cpp --- geos-3.9.0/tests/unit/operation/valid/MakeValidTest.cpp 1970-01-01 00:00:00.000000000 +0000 +++ geos-3.9.1/tests/unit/operation/valid/MakeValidTest.cpp 2021-02-10 18:10:27.000000000 +0000 @@ -0,0 +1,108 @@ +#include +// geos +#include // for std::isnan +#include +#include +#include +#include +#include +#include +#include +// std +#include +#include +#include +#include + +using namespace geos::geom; +using namespace geos::operation::valid; + +namespace tut { +// +// Test Group +// + +struct test_makevalid_data { + test_makevalid_data() {} +}; + +typedef test_group group; +typedef group::object object; + +group test_makevalid_group("geos::operation::valid::MakeValid"); + +// +// Test Cases +// + +// https://github.com/libgeos/geos/issues/265 +template<> +template<> +void object::test<1> +() +{ + std::vector v; + v.emplace_back(2.22, 2.28); + v.emplace_back(7.67, 2.06); + v.emplace_back(10.98, 7.70); + v.emplace_back(9.39, 5.00); + v.emplace_back(7.96, 7.12); + v.emplace_back(6.77, 5.16); + v.emplace_back(7.43, 6.24); + v.emplace_back(3.70, 7.22); + v.emplace_back(5.72, 5.77); + v.emplace_back(4.18, 10.74); + v.emplace_back(2.20, 6.83); + v.emplace_back(2.22, 2.28); + + auto gf = GeometryFactory::getDefaultInstance(); + + auto cs = gf->getCoordinateSequenceFactory()->create(std::move(v)); + auto lr = gf->createLinearRing(std::move(cs)); + auto errplyg = gf->createPolygon(std::move(lr)); + + ensure(!errplyg->isValid()); + + MakeValid mkvalid; + auto validGeom = mkvalid.build(errplyg.get()); + + ensure(validGeom->isValid()); +} + +// template<> +// template<> +// void object::test<2> +// () +// { + + +// std::ifstream ifs("GoesBathymetryBug.txt"); +// std::string content((std::istreambuf_iterator(ifs)), +// (std::istreambuf_iterator())); + +// geos::io::WKTReader reader; +// auto geom(reader.read(content)); + +// // auto gf = GeometryFactory::getDefaultInstance(); + +// // auto cs = gf->getCoordinateSequenceFactory()->create(std::move(v)); +// // auto lr = gf->createLinearRing(std::move(cs)); +// // auto errplyg = gf->createPolygon(std::move(lr)); + +// // ensure(!errplyg->isValid()); + +// MakeValid mkvalid; +// auto validGeom = mkvalid.build(geom.get()); +// ensure("MakeValid output is not valid", validGeom->isValid()); + +// geos::io::WKTWriter writer; +// writer.setOutputDimension(2); +// writer.setTrim(true); +// std::string result = writer.write(validGeom.get()); +// std::cout << result << std::endl; + +// } + + + +} // namespace tut diff -Nru geos-3.9.0/tests/unit/simplify/DouglasPeuckerSimplifierTest.cpp geos-3.9.1/tests/unit/simplify/DouglasPeuckerSimplifierTest.cpp --- geos-3.9.0/tests/unit/simplify/DouglasPeuckerSimplifierTest.cpp 2020-05-04 20:52:24.000000000 +0000 +++ geos-3.9.1/tests/unit/simplify/DouglasPeuckerSimplifierTest.cpp 2021-02-10 18:10:27.000000000 +0000 @@ -2,6 +2,7 @@ // Test Suite for geos::simplify::DouglasPeuckerSimplifierTest #include +#include // geos #include #include @@ -353,7 +354,7 @@ // 13 - Polygon with inner ring whose extent is less than the simplify distance (#741) template<> template<> -void object::test<13> +void object::test<12> () { std::string wkt_in("POLYGON ((0 0,0 1,1 1,0 0),(0.1 0.1,0.2 0.1,0.2 0.2,0.1 0.1))"); @@ -372,5 +373,27 @@ ensure(simplified->equalsExact(expected.get())); } +/** +* Test that a polygon made invalid by simplification +* is fixed in a sensible way. +* Fixed by buffer(0) area-base orientation +* See https://github.com/locationtech/jts/issues/498 +*/ +template<> +template<> +void object::test<13> +() +{ + std::string wkt_in("POLYGON ((21.32686 47.78723, 21.32386 47.79023, 21.32186 47.80223, 21.31486 47.81023, 21.32786 47.81123, 21.33986 47.80223, 21.33886 47.81123, 21.32686 47.82023, 21.32586 47.82723, 21.32786 47.82323, 21.33886 47.82623, 21.34186 47.82123, 21.36386 47.82223, 21.40686 47.81723, 21.32686 47.78723))"); + std::string wkt_ex("POLYGON ((21.32686 47.78723, 21.31486 47.81023, 21.32786 47.81123, 21.33986 47.80223, 21.328068201892744 47.823286782334385, 21.33886 47.82623, 21.34186 47.82123, 21.40686 47.81723, 21.32686 47.78723))"); + GeomPtr g(wktreader.read(wkt_in)); + GeomPtr expected(wktreader.read(wkt_ex)); + GeomPtr simplified = DouglasPeuckerSimplifier::simplify(g.get(), 0.0036); + ensure(simplified->isValid()); + ensure_equals_geometry(simplified.get(), expected.get()); +} + + + } // namespace tut diff -Nru geos-3.9.0/tests/unit/simplify/TopologyPreservingSimplifierTest.cpp geos-3.9.1/tests/unit/simplify/TopologyPreservingSimplifierTest.cpp --- geos-3.9.0/tests/unit/simplify/TopologyPreservingSimplifierTest.cpp 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/tests/unit/simplify/TopologyPreservingSimplifierTest.cpp 2021-02-03 23:19:53.000000000 +0000 @@ -312,7 +312,11 @@ // std::cout << "expected " << *exp << std::endl; // std::cout << "result " << *simplified << std::endl; ensure("Simplified geometry is invalid!", simplified->isValid()); + /* Temporarily disable this component of the test only for MSVC + See https://trac.osgeo.org/geos/ticket/1081 */ +#ifndef _MSC_VER ensure_equals_geometry(exp.get(), simplified.get()); +#endif } // GeometryCollection diff -Nru geos-3.9.0/tests/unit/utility.h geos-3.9.1/tests/unit/utility.h --- geos-3.9.0/tests/unit/utility.h 2020-12-09 00:07:19.000000000 +0000 +++ geos-3.9.1/tests/unit/utility.h 2021-02-10 18:10:27.000000000 +0000 @@ -327,6 +327,49 @@ ensure_equals_exact_geometry_xyz(g1.get(), g2.get(), tolerance); } +/* + * Checks for geometries exactly equal in XY only + */ + +template inline void ensure_equals_exact_geometry(const T *lhs_in, const T *rhs_in, double tolerance = 0.0); + +template <> +inline void +ensure_equals_exact_geometry(const geos::geom::Geometry *lhs_in, + const geos::geom::Geometry *rhs_in, + double tolerance) +{ + assert(nullptr != lhs_in); + assert(nullptr != rhs_in); + + using geos::geom::Point; + using geos::geom::LineString; + using geos::geom::Polygon; + using geos::geom::CoordinateSequence; + using geos::geom::GeometryCollection; + + ensure_equals("type id do not match", + lhs_in->getGeometryTypeId(), rhs_in->getGeometryTypeId()); + + if (const Point* gpt1 = dynamic_cast(lhs_in)) { + const Point *gpt2 = static_cast(rhs_in); + return ensure_equals_dims( gpt1->getCoordinatesRO(), gpt2->getCoordinatesRO(), 2, tolerance); + } + else if (const LineString* gln1 = dynamic_cast(lhs_in)) { + const LineString *gln2 = static_cast(rhs_in); + return ensure_equals_dims( gln1->getCoordinatesRO(), gln2->getCoordinatesRO(), 2, tolerance); + } + else if (dynamic_cast(lhs_in)) { + assert("Not implemented yet" == 0); + } + else if (const GeometryCollection* gc1 = dynamic_cast(lhs_in)) { + const GeometryCollection *gc2 = static_cast(rhs_in); + for (unsigned int i = 0; i < gc1->getNumGeometries(); i++) { + ensure_equals_exact_geometry(gc1->getGeometryN(i), gc2->getGeometryN(i), tolerance); + } + } +} + // // Utility functions // @@ -353,4 +396,3 @@ } // namespace tut #endif // #ifndef GEOS_TUT_UTILITY_H_INCLUDED - diff -Nru geos-3.9.0/tests/xmltester/Makefile.am geos-3.9.1/tests/xmltester/Makefile.am --- geos-3.9.0/tests/xmltester/Makefile.am 2020-12-01 01:33:29.000000000 +0000 +++ geos-3.9.1/tests/xmltester/Makefile.am 2021-02-10 18:10:27.000000000 +0000 @@ -166,6 +166,7 @@ $(srcdir)/tests/issue/issue-geos-990.xml \ $(srcdir)/tests/issue/issue-geos-994.xml \ $(srcdir)/tests/issue/issue-geos-1018.xml \ + $(srcdir)/tests/issue/issue-geos-1085.xml \ $(srcdir)/tests/validate/TestRelateAA-big.xml \ $(srcdir)/tests/validate/TestRelateAA.xml \ $(srcdir)/tests/validate/TestRelateAC.xml \ diff -Nru geos-3.9.0/tests/xmltester/Makefile.in geos-3.9.1/tests/xmltester/Makefile.in --- geos-3.9.0/tests/xmltester/Makefile.in 2020-12-09 20:03:27.000000000 +0000 +++ geos-3.9.1/tests/xmltester/Makefile.in 2021-02-10 18:21:41.000000000 +0000 @@ -1237,6 +1237,7 @@ $(srcdir)/tests/issue/issue-geos-990.xml \ $(srcdir)/tests/issue/issue-geos-994.xml \ $(srcdir)/tests/issue/issue-geos-1018.xml \ + $(srcdir)/tests/issue/issue-geos-1085.xml \ $(srcdir)/tests/validate/TestRelateAA-big.xml \ $(srcdir)/tests/validate/TestRelateAA.xml \ $(srcdir)/tests/validate/TestRelateAC.xml \ diff -Nru geos-3.9.0/tests/xmltester/tests/general/TestNGOverlayL.xml geos-3.9.1/tests/xmltester/tests/general/TestNGOverlayL.xml --- geos-3.9.0/tests/xmltester/tests/general/TestNGOverlayL.xml 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/tests/xmltester/tests/general/TestNGOverlayL.xml 2021-02-10 00:56:37.000000000 +0000 @@ -205,6 +205,31 @@ + LA - vertical Line + + LINESTRING (50 50, 50 20) + + + POLYGON ((10 60, 90 60, 90 10, 10 10, 10 60)) + + +LINESTRING (50 50, 50 20) + + +POLYGON ((90 60, 90 10, 10 10, 10 60, 90 60)) + + +LINESTRING EMPTY + + +POLYGON ((90 60, 90 10, 10 10, 10 60, 90 60)) + + +POLYGON ((90 60, 90 10, 10 10, 10 60, 90 60)) + + + + mLmA - disjoint and overlaps in lines and points MULTILINESTRING ((50 150, 150 150), (100 350, 200 350), (320 350, 350 350), (300 150, 400 150), (150 300, 400 300)) diff -Nru geos-3.9.0/tests/xmltester/XMLTester.cpp geos-3.9.1/tests/xmltester/XMLTester.cpp --- geos-3.9.0/tests/xmltester/XMLTester.cpp 2020-11-30 19:08:52.000000000 +0000 +++ geos-3.9.1/tests/xmltester/XMLTester.cpp 2021-02-10 18:10:27.000000000 +0000 @@ -1312,6 +1312,7 @@ else if(opName == "union") { GeomPtr gRes(parseGeometry(opRes, "expected")); + gRes->normalize(); profile.start(); @@ -1324,6 +1325,7 @@ } profile.stop(); + gRealRes->normalize(); success = checkOverlaySuccess(*gRes, *gRealRes); @@ -2414,4 +2416,3 @@ * Revision 1.29 2006/03/17 14:56:39 strk * Fixed filename normalizer for sql output **********************************************************************/ - diff -Nru geos-3.9.0/Version.txt geos-3.9.1/Version.txt --- geos-3.9.0/Version.txt 2020-12-09 18:52:03.000000000 +0000 +++ geos-3.9.1/Version.txt 2021-02-10 18:20:52.000000000 +0000 @@ -2,21 +2,22 @@ # GEOS Versions GEOS_VERSION_MAJOR=3 GEOS_VERSION_MINOR=9 -GEOS_VERSION_PATCH=0 +GEOS_VERSION_PATCH=1 # OPTIONS: "", "dev", "rc1" etc. GEOS_PATCH_WORD= # GEOS CAPI Versions # -# Always increase the revision value. -# Increase the current value whenever an interface has been -# added, removed or changed. -# Increase the age value only if the changes made to the ABI -# are backward compatible. -CAPI_INTERFACE_CURRENT=17 +# - For a release with no interface changes just bump REVISION. +# ( Even if *nothing* changed in CAPI ) +# - Adding interfaces, bump CURRENT/AGE, set REVISION to 0. +# - Deleting interfaces / compatibility issues - bump CURRENT, others to zero +# ( THIS MUST BE CAREFULLY AVOIDED ) +# +CAPI_INTERFACE_CURRENT=15 CAPI_INTERFACE_REVISION=2 -CAPI_INTERFACE_AGE=16 +CAPI_INTERFACE_AGE=14 # JTS Port JTS_PORT=1.17.0