├── .clang-format ├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── publish.yml │ ├── test-dev.yml │ ├── test-npm.yml │ └── test-release.yml ├── .gitignore ├── .mocharc.json ├── .npmignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── ASYNCIO.md ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASE.md ├── ROADMAP.md ├── bench ├── 00.streams.read.bench.js ├── 01.streams.readCompress.bench.js ├── 02.streams.write.bench.js ├── 03.streams.writeCompress.bench.js ├── 04.streams.piping.bench.js ├── streams.common.js └── streams.js ├── binding.gyp ├── codecov.yml ├── common.gypi ├── cpp_17.gypi ├── deps ├── Makefile ├── exprtk.sh ├── exprtk │ └── exprtk.hpp ├── gen_patches.sh ├── glob-files.py ├── libaec.sh ├── libaec │ ├── config │ │ └── config.h │ ├── libaec.gyp │ └── libaec │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── INSTALL.md │ │ ├── LICENSE.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.SZIP │ │ ├── README.md │ │ ├── THANKS │ │ ├── aclocal.m4 │ │ ├── cmake │ │ ├── config.h.in │ │ ├── libaec-config-version.cmake.in │ │ └── libaec-config.cmake.in │ │ ├── config │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ └── test-driver │ │ ├── configure │ │ ├── configure.ac │ │ ├── data │ │ ├── 121B2TestData │ │ │ ├── AllOptions │ │ │ │ ├── test_p256n01-basic.rz │ │ │ │ ├── test_p256n01-restricted.rz │ │ │ │ ├── test_p256n01.dat │ │ │ │ ├── test_p256n02-basic.rz │ │ │ │ ├── test_p256n02-restricted.rz │ │ │ │ ├── test_p256n02.dat │ │ │ │ ├── test_p256n03-basic.rz │ │ │ │ ├── test_p256n03-restricted.rz │ │ │ │ ├── test_p256n03.dat │ │ │ │ ├── test_p256n04-basic.rz │ │ │ │ ├── test_p256n04-restricted.rz │ │ │ │ ├── test_p256n04.dat │ │ │ │ ├── test_p256n05.dat │ │ │ │ ├── test_p256n05.rz │ │ │ │ ├── test_p256n06.dat │ │ │ │ ├── test_p256n06.rz │ │ │ │ ├── test_p256n07.dat │ │ │ │ ├── test_p256n07.rz │ │ │ │ ├── test_p256n08.dat │ │ │ │ ├── test_p256n08.rz │ │ │ │ ├── test_p256n09.dat │ │ │ │ ├── test_p256n09.rz │ │ │ │ ├── test_p256n10.dat │ │ │ │ ├── test_p256n10.rz │ │ │ │ ├── test_p256n11.dat │ │ │ │ ├── test_p256n11.rz │ │ │ │ ├── test_p256n12.dat │ │ │ │ ├── test_p256n12.rz │ │ │ │ ├── test_p256n13.dat │ │ │ │ ├── test_p256n13.rz │ │ │ │ ├── test_p256n14.dat │ │ │ │ ├── test_p256n14.rz │ │ │ │ ├── test_p256n15.dat │ │ │ │ ├── test_p256n15.rz │ │ │ │ ├── test_p256n16.dat │ │ │ │ ├── test_p256n16.rz │ │ │ │ ├── test_p512n17.dat │ │ │ │ ├── test_p512n17.rz │ │ │ │ ├── test_p512n18.dat │ │ │ │ ├── test_p512n18.rz │ │ │ │ ├── test_p512n19.dat │ │ │ │ ├── test_p512n19.rz │ │ │ │ ├── test_p512n20.dat │ │ │ │ ├── test_p512n20.rz │ │ │ │ ├── test_p512n21.dat │ │ │ │ ├── test_p512n21.rz │ │ │ │ ├── test_p512n22.dat │ │ │ │ ├── test_p512n22.rz │ │ │ │ ├── test_p512n23.dat │ │ │ │ ├── test_p512n23.rz │ │ │ │ ├── test_p512n24.dat │ │ │ │ ├── test_p512n24.rz │ │ │ │ ├── test_p512n25.dat │ │ │ │ ├── test_p512n25.rz │ │ │ │ ├── test_p512n26.dat │ │ │ │ ├── test_p512n26.rz │ │ │ │ ├── test_p512n27.dat │ │ │ │ ├── test_p512n27.rz │ │ │ │ ├── test_p512n28.dat │ │ │ │ ├── test_p512n28.rz │ │ │ │ ├── test_p512n29.dat │ │ │ │ ├── test_p512n29.rz │ │ │ │ ├── test_p512n30.dat │ │ │ │ ├── test_p512n30.rz │ │ │ │ ├── test_p512n31.dat │ │ │ │ ├── test_p512n31.rz │ │ │ │ ├── test_p512n32.dat │ │ │ │ └── test_p512n32.rz │ │ │ ├── ExtendedParameters │ │ │ │ ├── sar32bit.dat │ │ │ │ ├── sar32bit.j16.r256.rz │ │ │ │ └── sar32bit.j64.r4096.rz │ │ │ ├── LowEntropyOptions │ │ │ │ ├── Lowset1_8bit.dat │ │ │ │ ├── Lowset1_8bit.n01-basic.rz │ │ │ │ ├── Lowset1_8bit.n01-restricted.rz │ │ │ │ ├── Lowset1_8bit.n02-basic.rz │ │ │ │ ├── Lowset1_8bit.n02-restricted.rz │ │ │ │ ├── Lowset1_8bit.n03-basic.rz │ │ │ │ ├── Lowset1_8bit.n03-restricted.rz │ │ │ │ ├── Lowset1_8bit.n04-basic.rz │ │ │ │ ├── Lowset1_8bit.n04-restricted.rz │ │ │ │ ├── Lowset1_8bit.n05.rz │ │ │ │ ├── Lowset1_8bit.n06.rz │ │ │ │ ├── Lowset1_8bit.n07.rz │ │ │ │ ├── Lowset1_8bit.n08.rz │ │ │ │ ├── Lowset2_8bit.dat │ │ │ │ ├── Lowset2_8bit.n01-basic.rz │ │ │ │ ├── Lowset2_8bit.n01-restricted.rz │ │ │ │ ├── Lowset2_8bit.n02-basic.rz │ │ │ │ ├── Lowset2_8bit.n02-restricted.rz │ │ │ │ ├── Lowset2_8bit.n03-basic.rz │ │ │ │ ├── Lowset2_8bit.n03-restricted.rz │ │ │ │ ├── Lowset2_8bit.n04-basic.rz │ │ │ │ ├── Lowset2_8bit.n04-restricted.rz │ │ │ │ ├── Lowset2_8bit.n05.rz │ │ │ │ ├── Lowset2_8bit.n06.rz │ │ │ │ ├── Lowset2_8bit.n07.rz │ │ │ │ ├── Lowset2_8bit.n08.rz │ │ │ │ ├── Lowset3_8bit.dat │ │ │ │ ├── Lowset3_8bit.n01-basic.rz │ │ │ │ ├── Lowset3_8bit.n01-restricted.rz │ │ │ │ ├── Lowset3_8bit.n02-basic.rz │ │ │ │ ├── Lowset3_8bit.n02-restricted.rz │ │ │ │ ├── Lowset3_8bit.n03-basic.rz │ │ │ │ ├── Lowset3_8bit.n03-restricted.rz │ │ │ │ ├── Lowset3_8bit.n04-basic.rz │ │ │ │ ├── Lowset3_8bit.n04-restricted.rz │ │ │ │ ├── Lowset3_8bit.n05.rz │ │ │ │ ├── Lowset3_8bit.n06.rz │ │ │ │ ├── Lowset3_8bit.n07.rz │ │ │ │ └── Lowset3_8bit.n08.rz │ │ │ └── README121BTest.docx │ │ └── typical.rz │ │ ├── include │ │ ├── libaec.h │ │ ├── libaec.h.in │ │ └── szlib.h │ │ ├── m4 │ │ ├── 00gnulib.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── visibility.m4 │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bdec.sh │ │ ├── benc.sh │ │ ├── decode.c │ │ ├── decode.h │ │ ├── encode.c │ │ ├── encode.h │ │ ├── encode_accessors.c │ │ ├── encode_accessors.h │ │ ├── graec.1 │ │ ├── graec.c │ │ ├── sz_compat.c │ │ ├── utime.c │ │ ├── vector.c │ │ └── vector.h │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── check_aec.c │ │ ├── check_aec.h │ │ ├── check_buffer_sizes.c │ │ ├── check_code_options.c │ │ ├── check_long_fs.c │ │ ├── check_rsi_block_access.c │ │ ├── check_seeking.c │ │ ├── check_szcomp.c │ │ ├── sampledata.sh │ │ └── szcomp.sh ├── libcurl.sh ├── libcurl │ ├── cacert.pem │ ├── curl │ │ ├── CHANGES │ │ ├── CMake │ │ │ ├── CMakeConfigurableFile.in │ │ │ ├── CurlSymbolHiding.cmake │ │ │ ├── CurlTests.c │ │ │ ├── FindBearSSL.cmake │ │ │ ├── FindBrotli.cmake │ │ │ ├── FindCARES.cmake │ │ │ ├── FindGSS.cmake │ │ │ ├── FindLibSSH2.cmake │ │ │ ├── FindMbedTLS.cmake │ │ │ ├── FindNGHTTP2.cmake │ │ │ ├── FindNGHTTP3.cmake │ │ │ ├── FindNGTCP2.cmake │ │ │ ├── FindNSS.cmake │ │ │ ├── FindQUICHE.cmake │ │ │ ├── FindWolfSSL.cmake │ │ │ ├── FindZstd.cmake │ │ │ ├── Macros.cmake │ │ │ ├── OtherTests.cmake │ │ │ ├── Platforms │ │ │ │ └── WindowsCache.cmake │ │ │ ├── Utilities.cmake │ │ │ ├── cmake_uninstall.cmake.in │ │ │ └── curl-config.cmake.in │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── MacOSX-Framework │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── RELEASE-NOTES │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── buildconf │ │ ├── buildconf.bat │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── curl-config.in │ │ ├── depcomp │ │ ├── docs │ │ │ ├── ALTSVC.md │ │ │ ├── BINDINGS.md │ │ │ ├── BUFREF.md │ │ │ ├── BUG-BOUNTY.md │ │ │ ├── BUGS.md │ │ │ ├── CHECKSRC.md │ │ │ ├── CIPHERS.md │ │ │ ├── CMakeLists.txt │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODE_REVIEW.md │ │ │ ├── CODE_STYLE.md │ │ │ ├── CONTRIBUTE.md │ │ │ ├── CURL-DISABLE.md │ │ │ ├── DEPRECATE.md │ │ │ ├── DYNBUF.md │ │ │ ├── ECH.md │ │ │ ├── EXPERIMENTAL.md │ │ │ ├── FAQ │ │ │ ├── FEATURES.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── HELP-US.md │ │ │ ├── HISTORY.md │ │ │ ├── HSTS.md │ │ │ ├── HTTP-COOKIES.md │ │ │ ├── HTTP2.md │ │ │ ├── HTTP3.md │ │ │ ├── HYPER.md │ │ │ ├── INSTALL │ │ │ ├── INSTALL.cmake │ │ │ ├── INSTALL.md │ │ │ ├── INTERNALS.md │ │ │ ├── KNOWN_BUGS │ │ │ ├── MAIL-ETIQUETTE │ │ │ ├── MQTT.md │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEW-PROTOCOL.md │ │ │ ├── PARALLEL-TRANSFERS.md │ │ │ ├── README.md │ │ │ ├── RELEASE-PROCEDURE.md │ │ │ ├── ROADMAP.md │ │ │ ├── RUSTLS.md │ │ │ ├── SECURITY-PROCESS.md │ │ │ ├── SSL-PROBLEMS.md │ │ │ ├── SSLCERTS.md │ │ │ ├── THANKS │ │ │ ├── TODO │ │ │ ├── TheArtOfHttpScripting.md │ │ │ ├── URL-SYNTAX.md │ │ │ ├── VERSIONS.md │ │ │ ├── cmdline-opts │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MANPAGE.md │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.inc │ │ │ │ ├── abstract-unix-socket.d │ │ │ │ ├── alt-svc.d │ │ │ │ ├── anyauth.d │ │ │ │ ├── append.d │ │ │ │ ├── aws-sigv4.d │ │ │ │ ├── basic.d │ │ │ │ ├── cacert.d │ │ │ │ ├── capath.d │ │ │ │ ├── cert-status.d │ │ │ │ ├── cert-type.d │ │ │ │ ├── cert.d │ │ │ │ ├── ciphers.d │ │ │ │ ├── compressed-ssh.d │ │ │ │ ├── compressed.d │ │ │ │ ├── config.d │ │ │ │ ├── connect-timeout.d │ │ │ │ ├── connect-to.d │ │ │ │ ├── continue-at.d │ │ │ │ ├── cookie-jar.d │ │ │ │ ├── cookie.d │ │ │ │ ├── create-dirs.d │ │ │ │ ├── create-file-mode.d │ │ │ │ ├── crlf.d │ │ │ │ ├── crlfile.d │ │ │ │ ├── curves.d │ │ │ │ ├── data-ascii.d │ │ │ │ ├── data-binary.d │ │ │ │ ├── data-raw.d │ │ │ │ ├── data-urlencode.d │ │ │ │ ├── data.d │ │ │ │ ├── delegation.d │ │ │ │ ├── digest.d │ │ │ │ ├── disable-eprt.d │ │ │ │ ├── disable-epsv.d │ │ │ │ ├── disable.d │ │ │ │ ├── disallow-username-in-url.d │ │ │ │ ├── dns-interface.d │ │ │ │ ├── dns-ipv4-addr.d │ │ │ │ ├── dns-ipv6-addr.d │ │ │ │ ├── dns-servers.d │ │ │ │ ├── doh-cert-status.d │ │ │ │ ├── doh-insecure.d │ │ │ │ ├── doh-url.d │ │ │ │ ├── dump-header.d │ │ │ │ ├── egd-file.d │ │ │ │ ├── engine.d │ │ │ │ ├── etag-compare.d │ │ │ │ ├── etag-save.d │ │ │ │ ├── expect100-timeout.d │ │ │ │ ├── fail-early.d │ │ │ │ ├── fail-with-body.d │ │ │ │ ├── fail.d │ │ │ │ ├── false-start.d │ │ │ │ ├── form-string.d │ │ │ │ ├── form.d │ │ │ │ ├── ftp-account.d │ │ │ │ ├── ftp-alternative-to-user.d │ │ │ │ ├── ftp-create-dirs.d │ │ │ │ ├── ftp-method.d │ │ │ │ ├── ftp-pasv.d │ │ │ │ ├── ftp-port.d │ │ │ │ ├── ftp-pret.d │ │ │ │ ├── ftp-skip-pasv-ip.d │ │ │ │ ├── ftp-ssl-ccc-mode.d │ │ │ │ ├── ftp-ssl-ccc.d │ │ │ │ ├── ftp-ssl-control.d │ │ │ │ ├── gen.pl │ │ │ │ ├── get.d │ │ │ │ ├── globoff.d │ │ │ │ ├── happy-eyeballs-timeout-ms.d │ │ │ │ ├── haproxy-protocol.d │ │ │ │ ├── head.d │ │ │ │ ├── header.d │ │ │ │ ├── help.d │ │ │ │ ├── hostpubmd5.d │ │ │ │ ├── hsts.d │ │ │ │ ├── http0.9.d │ │ │ │ ├── http1.0.d │ │ │ │ ├── http1.1.d │ │ │ │ ├── http2-prior-knowledge.d │ │ │ │ ├── http2.d │ │ │ │ ├── http3.d │ │ │ │ ├── ignore-content-length.d │ │ │ │ ├── include.d │ │ │ │ ├── insecure.d │ │ │ │ ├── interface.d │ │ │ │ ├── ipv4.d │ │ │ │ ├── ipv6.d │ │ │ │ ├── junk-session-cookies.d │ │ │ │ ├── keepalive-time.d │ │ │ │ ├── key-type.d │ │ │ │ ├── key.d │ │ │ │ ├── krb.d │ │ │ │ ├── libcurl.d │ │ │ │ ├── limit-rate.d │ │ │ │ ├── list-only.d │ │ │ │ ├── local-port.d │ │ │ │ ├── location-trusted.d │ │ │ │ ├── location.d │ │ │ │ ├── login-options.d │ │ │ │ ├── mail-auth.d │ │ │ │ ├── mail-from.d │ │ │ │ ├── mail-rcpt-allowfails.d │ │ │ │ ├── mail-rcpt.d │ │ │ │ ├── manual.d │ │ │ │ ├── max-filesize.d │ │ │ │ ├── max-redirs.d │ │ │ │ ├── max-time.d │ │ │ │ ├── metalink.d │ │ │ │ ├── negotiate.d │ │ │ │ ├── netrc-file.d │ │ │ │ ├── netrc-optional.d │ │ │ │ ├── netrc.d │ │ │ │ ├── next.d │ │ │ │ ├── no-alpn.d │ │ │ │ ├── no-buffer.d │ │ │ │ ├── no-keepalive.d │ │ │ │ ├── no-npn.d │ │ │ │ ├── no-progress-meter.d │ │ │ │ ├── no-sessionid.d │ │ │ │ ├── noproxy.d │ │ │ │ ├── ntlm-wb.d │ │ │ │ ├── ntlm.d │ │ │ │ ├── oauth2-bearer.d │ │ │ │ ├── output-dir.d │ │ │ │ ├── output.d │ │ │ │ ├── page-footer │ │ │ │ ├── page-header │ │ │ │ ├── parallel-immediate.d │ │ │ │ ├── parallel-max.d │ │ │ │ ├── parallel.d │ │ │ │ ├── pass.d │ │ │ │ ├── path-as-is.d │ │ │ │ ├── pinnedpubkey.d │ │ │ │ ├── post301.d │ │ │ │ ├── post302.d │ │ │ │ ├── post303.d │ │ │ │ ├── preproxy.d │ │ │ │ ├── progress-bar.d │ │ │ │ ├── proto-default.d │ │ │ │ ├── proto-redir.d │ │ │ │ ├── proto.d │ │ │ │ ├── proxy-anyauth.d │ │ │ │ ├── proxy-basic.d │ │ │ │ ├── proxy-cacert.d │ │ │ │ ├── proxy-capath.d │ │ │ │ ├── proxy-cert-type.d │ │ │ │ ├── proxy-cert.d │ │ │ │ ├── proxy-ciphers.d │ │ │ │ ├── proxy-crlfile.d │ │ │ │ ├── proxy-digest.d │ │ │ │ ├── proxy-header.d │ │ │ │ ├── proxy-insecure.d │ │ │ │ ├── proxy-key-type.d │ │ │ │ ├── proxy-key.d │ │ │ │ ├── proxy-negotiate.d │ │ │ │ ├── proxy-ntlm.d │ │ │ │ ├── proxy-pass.d │ │ │ │ ├── proxy-pinnedpubkey.d │ │ │ │ ├── proxy-service-name.d │ │ │ │ ├── proxy-ssl-allow-beast.d │ │ │ │ ├── proxy-ssl-auto-client-cert.d │ │ │ │ ├── proxy-tls13-ciphers.d │ │ │ │ ├── proxy-tlsauthtype.d │ │ │ │ ├── proxy-tlspassword.d │ │ │ │ ├── proxy-tlsuser.d │ │ │ │ ├── proxy-tlsv1.d │ │ │ │ ├── proxy-user.d │ │ │ │ ├── proxy.d │ │ │ │ ├── proxy1.0.d │ │ │ │ ├── proxytunnel.d │ │ │ │ ├── pubkey.d │ │ │ │ ├── quote.d │ │ │ │ ├── random-file.d │ │ │ │ ├── range.d │ │ │ │ ├── raw.d │ │ │ │ ├── referer.d │ │ │ │ ├── remote-header-name.d │ │ │ │ ├── remote-name-all.d │ │ │ │ ├── remote-name.d │ │ │ │ ├── remote-time.d │ │ │ │ ├── request-target.d │ │ │ │ ├── request.d │ │ │ │ ├── resolve.d │ │ │ │ ├── retry-all-errors.d │ │ │ │ ├── retry-connrefused.d │ │ │ │ ├── retry-delay.d │ │ │ │ ├── retry-max-time.d │ │ │ │ ├── retry.d │ │ │ │ ├── sasl-authzid.d │ │ │ │ ├── sasl-ir.d │ │ │ │ ├── service-name.d │ │ │ │ ├── show-error.d │ │ │ │ ├── silent.d │ │ │ │ ├── socks4.d │ │ │ │ ├── socks4a.d │ │ │ │ ├── socks5-basic.d │ │ │ │ ├── socks5-gssapi-nec.d │ │ │ │ ├── socks5-gssapi-service.d │ │ │ │ ├── socks5-gssapi.d │ │ │ │ ├── socks5-hostname.d │ │ │ │ ├── socks5.d │ │ │ │ ├── speed-limit.d │ │ │ │ ├── speed-time.d │ │ │ │ ├── ssl-allow-beast.d │ │ │ │ ├── ssl-auto-client-cert.d │ │ │ │ ├── ssl-no-revoke.d │ │ │ │ ├── ssl-reqd.d │ │ │ │ ├── ssl-revoke-best-effort.d │ │ │ │ ├── ssl.d │ │ │ │ ├── sslv2.d │ │ │ │ ├── sslv3.d │ │ │ │ ├── stderr.d │ │ │ │ ├── styled-output.d │ │ │ │ ├── suppress-connect-headers.d │ │ │ │ ├── tcp-fastopen.d │ │ │ │ ├── tcp-nodelay.d │ │ │ │ ├── telnet-option.d │ │ │ │ ├── tftp-blksize.d │ │ │ │ ├── tftp-no-options.d │ │ │ │ ├── time-cond.d │ │ │ │ ├── tls-max.d │ │ │ │ ├── tls13-ciphers.d │ │ │ │ ├── tlsauthtype.d │ │ │ │ ├── tlspassword.d │ │ │ │ ├── tlsuser.d │ │ │ │ ├── tlsv1.0.d │ │ │ │ ├── tlsv1.1.d │ │ │ │ ├── tlsv1.2.d │ │ │ │ ├── tlsv1.3.d │ │ │ │ ├── tlsv1.d │ │ │ │ ├── tr-encoding.d │ │ │ │ ├── trace-ascii.d │ │ │ │ ├── trace-time.d │ │ │ │ ├── trace.d │ │ │ │ ├── unix-socket.d │ │ │ │ ├── upload-file.d │ │ │ │ ├── url.d │ │ │ │ ├── use-ascii.d │ │ │ │ ├── user-agent.d │ │ │ │ ├── user.d │ │ │ │ ├── verbose.d │ │ │ │ ├── version.d │ │ │ │ ├── write-out.d │ │ │ │ └── xattr.d │ │ │ ├── curl-config.1 │ │ │ ├── curl.1 │ │ │ ├── examples │ │ │ │ ├── .checksrc │ │ │ │ ├── 10-at-a-time.c │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.example │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.inc │ │ │ │ ├── Makefile.m32 │ │ │ │ ├── Makefile.netware │ │ │ │ ├── README.md │ │ │ │ ├── altsvc.c │ │ │ │ ├── anyauthput.c │ │ │ │ ├── cacertinmem.c │ │ │ │ ├── certinfo.c │ │ │ │ ├── chkspeed.c │ │ │ │ ├── cookie_interface.c │ │ │ │ ├── crawler.c │ │ │ │ ├── curlgtk.c │ │ │ │ ├── curlx.c │ │ │ │ ├── debug.c │ │ │ │ ├── ephiperfifo.c │ │ │ │ ├── evhiperfifo.c │ │ │ │ ├── externalsocket.c │ │ │ │ ├── fileupload.c │ │ │ │ ├── fopen.c │ │ │ │ ├── ftp-wildcard.c │ │ │ │ ├── ftpget.c │ │ │ │ ├── ftpgetinfo.c │ │ │ │ ├── ftpgetresp.c │ │ │ │ ├── ftpsget.c │ │ │ │ ├── ftpupload.c │ │ │ │ ├── ftpuploadfrommem.c │ │ │ │ ├── ftpuploadresume.c │ │ │ │ ├── getinfo.c │ │ │ │ ├── getinmemory.c │ │ │ │ ├── getredirect.c │ │ │ │ ├── getreferrer.c │ │ │ │ ├── ghiper.c │ │ │ │ ├── hiperfifo.c │ │ │ │ ├── href_extractor.c │ │ │ │ ├── htmltidy.c │ │ │ │ ├── htmltitle.cpp │ │ │ │ ├── http-post.c │ │ │ │ ├── http2-download.c │ │ │ │ ├── http2-pushinmemory.c │ │ │ │ ├── http2-serverpush.c │ │ │ │ ├── http2-upload.c │ │ │ │ ├── http3-present.c │ │ │ │ ├── http3.c │ │ │ │ ├── httpcustomheader.c │ │ │ │ ├── httpput-postfields.c │ │ │ │ ├── httpput.c │ │ │ │ ├── https.c │ │ │ │ ├── imap-append.c │ │ │ │ ├── imap-authzid.c │ │ │ │ ├── imap-copy.c │ │ │ │ ├── imap-create.c │ │ │ │ ├── imap-delete.c │ │ │ │ ├── imap-examine.c │ │ │ │ ├── imap-fetch.c │ │ │ │ ├── imap-list.c │ │ │ │ ├── imap-lsub.c │ │ │ │ ├── imap-multi.c │ │ │ │ ├── imap-noop.c │ │ │ │ ├── imap-search.c │ │ │ │ ├── imap-ssl.c │ │ │ │ ├── imap-store.c │ │ │ │ ├── imap-tls.c │ │ │ │ ├── makefile.dj │ │ │ │ ├── multi-app.c │ │ │ │ ├── multi-debugcallback.c │ │ │ │ ├── multi-double.c │ │ │ │ ├── multi-event.c │ │ │ │ ├── multi-formadd.c │ │ │ │ ├── multi-legacy.c │ │ │ │ ├── multi-post.c │ │ │ │ ├── multi-single.c │ │ │ │ ├── multi-uv.c │ │ │ │ ├── multithread.c │ │ │ │ ├── opensslthreadlock.c │ │ │ │ ├── parseurl.c │ │ │ │ ├── persistent.c │ │ │ │ ├── pop3-authzid.c │ │ │ │ ├── pop3-dele.c │ │ │ │ ├── pop3-list.c │ │ │ │ ├── pop3-multi.c │ │ │ │ ├── pop3-noop.c │ │ │ │ ├── pop3-retr.c │ │ │ │ ├── pop3-ssl.c │ │ │ │ ├── pop3-stat.c │ │ │ │ ├── pop3-tls.c │ │ │ │ ├── pop3-top.c │ │ │ │ ├── pop3-uidl.c │ │ │ │ ├── post-callback.c │ │ │ │ ├── postinmemory.c │ │ │ │ ├── postit2-formadd.c │ │ │ │ ├── postit2.c │ │ │ │ ├── progressfunc.c │ │ │ │ ├── resolve.c │ │ │ │ ├── rtsp.c │ │ │ │ ├── sampleconv.c │ │ │ │ ├── sendrecv.c │ │ │ │ ├── sepheaders.c │ │ │ │ ├── sessioninfo.c │ │ │ │ ├── sftpget.c │ │ │ │ ├── sftpuploadresume.c │ │ │ │ ├── shared-connection-cache.c │ │ │ │ ├── simple.c │ │ │ │ ├── simplepost.c │ │ │ │ ├── simplessl.c │ │ │ │ ├── smooth-gtk-thread.c │ │ │ │ ├── smtp-authzid.c │ │ │ │ ├── smtp-expn.c │ │ │ │ ├── smtp-mail.c │ │ │ │ ├── smtp-mime.c │ │ │ │ ├── smtp-multi.c │ │ │ │ ├── smtp-ssl.c │ │ │ │ ├── smtp-tls.c │ │ │ │ ├── smtp-vrfy.c │ │ │ │ ├── sslbackend.c │ │ │ │ ├── synctime.c │ │ │ │ ├── threaded-ssl.c │ │ │ │ ├── url2file.c │ │ │ │ ├── urlapi.c │ │ │ │ ├── usercertinmem.c │ │ │ │ ├── version-check.pl │ │ │ │ └── xmlstream.c │ │ │ ├── libcurl │ │ │ │ ├── ABI.md │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.inc │ │ │ │ ├── curl_easy_cleanup.3 │ │ │ │ ├── curl_easy_duphandle.3 │ │ │ │ ├── curl_easy_escape.3 │ │ │ │ ├── curl_easy_getinfo.3 │ │ │ │ ├── curl_easy_init.3 │ │ │ │ ├── curl_easy_option_by_id.3 │ │ │ │ ├── curl_easy_option_by_name.3 │ │ │ │ ├── curl_easy_option_next.3 │ │ │ │ ├── curl_easy_pause.3 │ │ │ │ ├── curl_easy_perform.3 │ │ │ │ ├── curl_easy_recv.3 │ │ │ │ ├── curl_easy_reset.3 │ │ │ │ ├── curl_easy_send.3 │ │ │ │ ├── curl_easy_setopt.3 │ │ │ │ ├── curl_easy_strerror.3 │ │ │ │ ├── curl_easy_unescape.3 │ │ │ │ ├── curl_easy_upkeep.3 │ │ │ │ ├── curl_escape.3 │ │ │ │ ├── curl_formadd.3 │ │ │ │ ├── curl_formfree.3 │ │ │ │ ├── curl_formget.3 │ │ │ │ ├── curl_free.3 │ │ │ │ ├── curl_getdate.3 │ │ │ │ ├── curl_getenv.3 │ │ │ │ ├── curl_global_cleanup.3 │ │ │ │ ├── curl_global_init.3 │ │ │ │ ├── curl_global_init_mem.3 │ │ │ │ ├── curl_global_sslset.3 │ │ │ │ ├── curl_mime_addpart.3 │ │ │ │ ├── curl_mime_data.3 │ │ │ │ ├── curl_mime_data_cb.3 │ │ │ │ ├── curl_mime_encoder.3 │ │ │ │ ├── curl_mime_filedata.3 │ │ │ │ ├── curl_mime_filename.3 │ │ │ │ ├── curl_mime_free.3 │ │ │ │ ├── curl_mime_headers.3 │ │ │ │ ├── curl_mime_init.3 │ │ │ │ ├── curl_mime_name.3 │ │ │ │ ├── curl_mime_subparts.3 │ │ │ │ ├── curl_mime_type.3 │ │ │ │ ├── curl_mprintf.3 │ │ │ │ ├── curl_multi_add_handle.3 │ │ │ │ ├── curl_multi_assign.3 │ │ │ │ ├── curl_multi_cleanup.3 │ │ │ │ ├── curl_multi_fdset.3 │ │ │ │ ├── curl_multi_info_read.3 │ │ │ │ ├── curl_multi_init.3 │ │ │ │ ├── curl_multi_perform.3 │ │ │ │ ├── curl_multi_poll.3 │ │ │ │ ├── curl_multi_remove_handle.3 │ │ │ │ ├── curl_multi_setopt.3 │ │ │ │ ├── curl_multi_socket.3 │ │ │ │ ├── curl_multi_socket_action.3 │ │ │ │ ├── curl_multi_socket_all.3 │ │ │ │ ├── curl_multi_strerror.3 │ │ │ │ ├── curl_multi_timeout.3 │ │ │ │ ├── curl_multi_wait.3 │ │ │ │ ├── curl_multi_wakeup.3 │ │ │ │ ├── curl_share_cleanup.3 │ │ │ │ ├── curl_share_init.3 │ │ │ │ ├── curl_share_setopt.3 │ │ │ │ ├── curl_share_strerror.3 │ │ │ │ ├── curl_slist_append.3 │ │ │ │ ├── curl_slist_free_all.3 │ │ │ │ ├── curl_strequal.3 │ │ │ │ ├── curl_strnequal.3 │ │ │ │ ├── curl_unescape.3 │ │ │ │ ├── curl_url.3 │ │ │ │ ├── curl_url_cleanup.3 │ │ │ │ ├── curl_url_dup.3 │ │ │ │ ├── curl_url_get.3 │ │ │ │ ├── curl_url_set.3 │ │ │ │ ├── curl_version.3 │ │ │ │ ├── curl_version_info.3 │ │ │ │ ├── libcurl-easy.3 │ │ │ │ ├── libcurl-env.3 │ │ │ │ ├── libcurl-errors.3 │ │ │ │ ├── libcurl-multi.3 │ │ │ │ ├── libcurl-security.3 │ │ │ │ ├── libcurl-share.3 │ │ │ │ ├── libcurl-symbols.3 │ │ │ │ ├── libcurl-thread.3 │ │ │ │ ├── libcurl-tutorial.3 │ │ │ │ ├── libcurl-url.3 │ │ │ │ ├── libcurl.3 │ │ │ │ ├── libcurl.m4 │ │ │ │ ├── mksymbolsmanpage.pl │ │ │ │ ├── opts │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CURLINFO_ACTIVESOCKET.3 │ │ │ │ │ ├── CURLINFO_APPCONNECT_TIME.3 │ │ │ │ │ ├── CURLINFO_APPCONNECT_TIME_T.3 │ │ │ │ │ ├── CURLINFO_CERTINFO.3 │ │ │ │ │ ├── CURLINFO_CONDITION_UNMET.3 │ │ │ │ │ ├── CURLINFO_CONNECT_TIME.3 │ │ │ │ │ ├── CURLINFO_CONNECT_TIME_T.3 │ │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_DOWNLOAD.3 │ │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3 │ │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_UPLOAD.3 │ │ │ │ │ ├── CURLINFO_CONTENT_LENGTH_UPLOAD_T.3 │ │ │ │ │ ├── CURLINFO_CONTENT_TYPE.3 │ │ │ │ │ ├── CURLINFO_COOKIELIST.3 │ │ │ │ │ ├── CURLINFO_EFFECTIVE_METHOD.3 │ │ │ │ │ ├── CURLINFO_EFFECTIVE_URL.3 │ │ │ │ │ ├── CURLINFO_FILETIME.3 │ │ │ │ │ ├── CURLINFO_FILETIME_T.3 │ │ │ │ │ ├── CURLINFO_FTP_ENTRY_PATH.3 │ │ │ │ │ ├── CURLINFO_HEADER_SIZE.3 │ │ │ │ │ ├── CURLINFO_HTTPAUTH_AVAIL.3 │ │ │ │ │ ├── CURLINFO_HTTP_CONNECTCODE.3 │ │ │ │ │ ├── CURLINFO_HTTP_VERSION.3 │ │ │ │ │ ├── CURLINFO_LASTSOCKET.3 │ │ │ │ │ ├── CURLINFO_LOCAL_IP.3 │ │ │ │ │ ├── CURLINFO_LOCAL_PORT.3 │ │ │ │ │ ├── CURLINFO_NAMELOOKUP_TIME.3 │ │ │ │ │ ├── CURLINFO_NAMELOOKUP_TIME_T.3 │ │ │ │ │ ├── CURLINFO_NUM_CONNECTS.3 │ │ │ │ │ ├── CURLINFO_OS_ERRNO.3 │ │ │ │ │ ├── CURLINFO_PRETRANSFER_TIME.3 │ │ │ │ │ ├── CURLINFO_PRETRANSFER_TIME_T.3 │ │ │ │ │ ├── CURLINFO_PRIMARY_IP.3 │ │ │ │ │ ├── CURLINFO_PRIMARY_PORT.3 │ │ │ │ │ ├── CURLINFO_PRIVATE.3 │ │ │ │ │ ├── CURLINFO_PROTOCOL.3 │ │ │ │ │ ├── CURLINFO_PROXYAUTH_AVAIL.3 │ │ │ │ │ ├── CURLINFO_PROXY_ERROR.3 │ │ │ │ │ ├── CURLINFO_PROXY_SSL_VERIFYRESULT.3 │ │ │ │ │ ├── CURLINFO_REDIRECT_COUNT.3 │ │ │ │ │ ├── CURLINFO_REDIRECT_TIME.3 │ │ │ │ │ ├── CURLINFO_REDIRECT_TIME_T.3 │ │ │ │ │ ├── CURLINFO_REDIRECT_URL.3 │ │ │ │ │ ├── CURLINFO_REFERER.3 │ │ │ │ │ ├── CURLINFO_REQUEST_SIZE.3 │ │ │ │ │ ├── CURLINFO_RESPONSE_CODE.3 │ │ │ │ │ ├── CURLINFO_RETRY_AFTER.3 │ │ │ │ │ ├── CURLINFO_RTSP_CLIENT_CSEQ.3 │ │ │ │ │ ├── CURLINFO_RTSP_CSEQ_RECV.3 │ │ │ │ │ ├── CURLINFO_RTSP_SERVER_CSEQ.3 │ │ │ │ │ ├── CURLINFO_RTSP_SESSION_ID.3 │ │ │ │ │ ├── CURLINFO_SCHEME.3 │ │ │ │ │ ├── CURLINFO_SIZE_DOWNLOAD.3 │ │ │ │ │ ├── CURLINFO_SIZE_DOWNLOAD_T.3 │ │ │ │ │ ├── CURLINFO_SIZE_UPLOAD.3 │ │ │ │ │ ├── CURLINFO_SIZE_UPLOAD_T.3 │ │ │ │ │ ├── CURLINFO_SPEED_DOWNLOAD.3 │ │ │ │ │ ├── CURLINFO_SPEED_DOWNLOAD_T.3 │ │ │ │ │ ├── CURLINFO_SPEED_UPLOAD.3 │ │ │ │ │ ├── CURLINFO_SPEED_UPLOAD_T.3 │ │ │ │ │ ├── CURLINFO_SSL_ENGINES.3 │ │ │ │ │ ├── CURLINFO_SSL_VERIFYRESULT.3 │ │ │ │ │ ├── CURLINFO_STARTTRANSFER_TIME.3 │ │ │ │ │ ├── CURLINFO_STARTTRANSFER_TIME_T.3 │ │ │ │ │ ├── CURLINFO_TLS_SESSION.3 │ │ │ │ │ ├── CURLINFO_TLS_SSL_PTR.3 │ │ │ │ │ ├── CURLINFO_TOTAL_TIME.3 │ │ │ │ │ ├── CURLINFO_TOTAL_TIME_T.3 │ │ │ │ │ ├── CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 │ │ │ │ │ ├── CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 │ │ │ │ │ ├── CURLMOPT_MAXCONNECTS.3 │ │ │ │ │ ├── CURLMOPT_MAX_CONCURRENT_STREAMS.3 │ │ │ │ │ ├── CURLMOPT_MAX_HOST_CONNECTIONS.3 │ │ │ │ │ ├── CURLMOPT_MAX_PIPELINE_LENGTH.3 │ │ │ │ │ ├── CURLMOPT_MAX_TOTAL_CONNECTIONS.3 │ │ │ │ │ ├── CURLMOPT_PIPELINING.3 │ │ │ │ │ ├── CURLMOPT_PIPELINING_SERVER_BL.3 │ │ │ │ │ ├── CURLMOPT_PIPELINING_SITE_BL.3 │ │ │ │ │ ├── CURLMOPT_PUSHDATA.3 │ │ │ │ │ ├── CURLMOPT_PUSHFUNCTION.3 │ │ │ │ │ ├── CURLMOPT_SOCKETDATA.3 │ │ │ │ │ ├── CURLMOPT_SOCKETFUNCTION.3 │ │ │ │ │ ├── CURLMOPT_TIMERDATA.3 │ │ │ │ │ ├── CURLMOPT_TIMERFUNCTION.3 │ │ │ │ │ ├── CURLOPT_ABSTRACT_UNIX_SOCKET.3 │ │ │ │ │ ├── CURLOPT_ACCEPTTIMEOUT_MS.3 │ │ │ │ │ ├── CURLOPT_ACCEPT_ENCODING.3 │ │ │ │ │ ├── CURLOPT_ADDRESS_SCOPE.3 │ │ │ │ │ ├── CURLOPT_ALTSVC.3 │ │ │ │ │ ├── CURLOPT_ALTSVC_CTRL.3 │ │ │ │ │ ├── CURLOPT_APPEND.3 │ │ │ │ │ ├── CURLOPT_AUTOREFERER.3 │ │ │ │ │ ├── CURLOPT_AWS_SIGV4.3 │ │ │ │ │ ├── CURLOPT_BUFFERSIZE.3 │ │ │ │ │ ├── CURLOPT_CAINFO.3 │ │ │ │ │ ├── CURLOPT_CAINFO_BLOB.3 │ │ │ │ │ ├── CURLOPT_CAPATH.3 │ │ │ │ │ ├── CURLOPT_CERTINFO.3 │ │ │ │ │ ├── CURLOPT_CHUNK_BGN_FUNCTION.3 │ │ │ │ │ ├── CURLOPT_CHUNK_DATA.3 │ │ │ │ │ ├── CURLOPT_CHUNK_END_FUNCTION.3 │ │ │ │ │ ├── CURLOPT_CLOSESOCKETDATA.3 │ │ │ │ │ ├── CURLOPT_CLOSESOCKETFUNCTION.3 │ │ │ │ │ ├── CURLOPT_CONNECTTIMEOUT.3 │ │ │ │ │ ├── CURLOPT_CONNECTTIMEOUT_MS.3 │ │ │ │ │ ├── CURLOPT_CONNECT_ONLY.3 │ │ │ │ │ ├── CURLOPT_CONNECT_TO.3 │ │ │ │ │ ├── CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 │ │ │ │ │ ├── CURLOPT_CONV_FROM_UTF8_FUNCTION.3 │ │ │ │ │ ├── CURLOPT_CONV_TO_NETWORK_FUNCTION.3 │ │ │ │ │ ├── CURLOPT_COOKIE.3 │ │ │ │ │ ├── CURLOPT_COOKIEFILE.3 │ │ │ │ │ ├── CURLOPT_COOKIEJAR.3 │ │ │ │ │ ├── CURLOPT_COOKIELIST.3 │ │ │ │ │ ├── CURLOPT_COOKIESESSION.3 │ │ │ │ │ ├── CURLOPT_COPYPOSTFIELDS.3 │ │ │ │ │ ├── CURLOPT_CRLF.3 │ │ │ │ │ ├── CURLOPT_CRLFILE.3 │ │ │ │ │ ├── CURLOPT_CURLU.3 │ │ │ │ │ ├── CURLOPT_CUSTOMREQUEST.3 │ │ │ │ │ ├── CURLOPT_DEBUGDATA.3 │ │ │ │ │ ├── CURLOPT_DEBUGFUNCTION.3 │ │ │ │ │ ├── CURLOPT_DEFAULT_PROTOCOL.3 │ │ │ │ │ ├── CURLOPT_DIRLISTONLY.3 │ │ │ │ │ ├── CURLOPT_DISALLOW_USERNAME_IN_URL.3 │ │ │ │ │ ├── CURLOPT_DNS_CACHE_TIMEOUT.3 │ │ │ │ │ ├── CURLOPT_DNS_INTERFACE.3 │ │ │ │ │ ├── CURLOPT_DNS_LOCAL_IP4.3 │ │ │ │ │ ├── CURLOPT_DNS_LOCAL_IP6.3 │ │ │ │ │ ├── CURLOPT_DNS_SERVERS.3 │ │ │ │ │ ├── CURLOPT_DNS_SHUFFLE_ADDRESSES.3 │ │ │ │ │ ├── CURLOPT_DNS_USE_GLOBAL_CACHE.3 │ │ │ │ │ ├── CURLOPT_DOH_SSL_VERIFYHOST.3 │ │ │ │ │ ├── CURLOPT_DOH_SSL_VERIFYPEER.3 │ │ │ │ │ ├── CURLOPT_DOH_SSL_VERIFYSTATUS.3 │ │ │ │ │ ├── CURLOPT_DOH_URL.3 │ │ │ │ │ ├── CURLOPT_EGDSOCKET.3 │ │ │ │ │ ├── CURLOPT_ERRORBUFFER.3 │ │ │ │ │ ├── CURLOPT_EXPECT_100_TIMEOUT_MS.3 │ │ │ │ │ ├── CURLOPT_FAILONERROR.3 │ │ │ │ │ ├── CURLOPT_FILETIME.3 │ │ │ │ │ ├── CURLOPT_FNMATCH_DATA.3 │ │ │ │ │ ├── CURLOPT_FNMATCH_FUNCTION.3 │ │ │ │ │ ├── CURLOPT_FOLLOWLOCATION.3 │ │ │ │ │ ├── CURLOPT_FORBID_REUSE.3 │ │ │ │ │ ├── CURLOPT_FRESH_CONNECT.3 │ │ │ │ │ ├── CURLOPT_FTPPORT.3 │ │ │ │ │ ├── CURLOPT_FTPSSLAUTH.3 │ │ │ │ │ ├── CURLOPT_FTP_ACCOUNT.3 │ │ │ │ │ ├── CURLOPT_FTP_ALTERNATIVE_TO_USER.3 │ │ │ │ │ ├── CURLOPT_FTP_CREATE_MISSING_DIRS.3 │ │ │ │ │ ├── CURLOPT_FTP_FILEMETHOD.3 │ │ │ │ │ ├── CURLOPT_FTP_RESPONSE_TIMEOUT.3 │ │ │ │ │ ├── CURLOPT_FTP_SKIP_PASV_IP.3 │ │ │ │ │ ├── CURLOPT_FTP_SSL_CCC.3 │ │ │ │ │ ├── CURLOPT_FTP_USE_EPRT.3 │ │ │ │ │ ├── CURLOPT_FTP_USE_EPSV.3 │ │ │ │ │ ├── CURLOPT_FTP_USE_PRET.3 │ │ │ │ │ ├── CURLOPT_GSSAPI_DELEGATION.3 │ │ │ │ │ ├── CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3 │ │ │ │ │ ├── CURLOPT_HAPROXYPROTOCOL.3 │ │ │ │ │ ├── CURLOPT_HEADER.3 │ │ │ │ │ ├── CURLOPT_HEADERDATA.3 │ │ │ │ │ ├── CURLOPT_HEADERFUNCTION.3 │ │ │ │ │ ├── CURLOPT_HEADEROPT.3 │ │ │ │ │ ├── CURLOPT_HSTS.3 │ │ │ │ │ ├── CURLOPT_HSTSREADDATA.3 │ │ │ │ │ ├── CURLOPT_HSTSREADFUNCTION.3 │ │ │ │ │ ├── CURLOPT_HSTSWRITEDATA.3 │ │ │ │ │ ├── CURLOPT_HSTSWRITEFUNCTION.3 │ │ │ │ │ ├── CURLOPT_HSTS_CTRL.3 │ │ │ │ │ ├── CURLOPT_HTTP09_ALLOWED.3 │ │ │ │ │ ├── CURLOPT_HTTP200ALIASES.3 │ │ │ │ │ ├── CURLOPT_HTTPAUTH.3 │ │ │ │ │ ├── CURLOPT_HTTPGET.3 │ │ │ │ │ ├── CURLOPT_HTTPHEADER.3 │ │ │ │ │ ├── CURLOPT_HTTPPOST.3 │ │ │ │ │ ├── CURLOPT_HTTPPROXYTUNNEL.3 │ │ │ │ │ ├── CURLOPT_HTTP_CONTENT_DECODING.3 │ │ │ │ │ ├── CURLOPT_HTTP_TRANSFER_DECODING.3 │ │ │ │ │ ├── CURLOPT_HTTP_VERSION.3 │ │ │ │ │ ├── CURLOPT_IGNORE_CONTENT_LENGTH.3 │ │ │ │ │ ├── CURLOPT_INFILESIZE.3 │ │ │ │ │ ├── CURLOPT_INFILESIZE_LARGE.3 │ │ │ │ │ ├── CURLOPT_INTERFACE.3 │ │ │ │ │ ├── CURLOPT_INTERLEAVEDATA.3 │ │ │ │ │ ├── CURLOPT_INTERLEAVEFUNCTION.3 │ │ │ │ │ ├── CURLOPT_IOCTLDATA.3 │ │ │ │ │ ├── CURLOPT_IOCTLFUNCTION.3 │ │ │ │ │ ├── CURLOPT_IPRESOLVE.3 │ │ │ │ │ ├── CURLOPT_ISSUERCERT.3 │ │ │ │ │ ├── CURLOPT_ISSUERCERT_BLOB.3 │ │ │ │ │ ├── CURLOPT_KEEP_SENDING_ON_ERROR.3 │ │ │ │ │ ├── CURLOPT_KEYPASSWD.3 │ │ │ │ │ ├── CURLOPT_KRBLEVEL.3 │ │ │ │ │ ├── CURLOPT_LOCALPORT.3 │ │ │ │ │ ├── CURLOPT_LOCALPORTRANGE.3 │ │ │ │ │ ├── CURLOPT_LOGIN_OPTIONS.3 │ │ │ │ │ ├── CURLOPT_LOW_SPEED_LIMIT.3 │ │ │ │ │ ├── CURLOPT_LOW_SPEED_TIME.3 │ │ │ │ │ ├── CURLOPT_MAIL_AUTH.3 │ │ │ │ │ ├── CURLOPT_MAIL_FROM.3 │ │ │ │ │ ├── CURLOPT_MAIL_RCPT.3 │ │ │ │ │ ├── CURLOPT_MAIL_RCPT_ALLLOWFAILS.3 │ │ │ │ │ ├── CURLOPT_MAXAGE_CONN.3 │ │ │ │ │ ├── CURLOPT_MAXCONNECTS.3 │ │ │ │ │ ├── CURLOPT_MAXFILESIZE.3 │ │ │ │ │ ├── CURLOPT_MAXFILESIZE_LARGE.3 │ │ │ │ │ ├── CURLOPT_MAXREDIRS.3 │ │ │ │ │ ├── CURLOPT_MAX_RECV_SPEED_LARGE.3 │ │ │ │ │ ├── CURLOPT_MAX_SEND_SPEED_LARGE.3 │ │ │ │ │ ├── CURLOPT_MIMEPOST.3 │ │ │ │ │ ├── CURLOPT_NETRC.3 │ │ │ │ │ ├── CURLOPT_NETRC_FILE.3 │ │ │ │ │ ├── CURLOPT_NEW_DIRECTORY_PERMS.3 │ │ │ │ │ ├── CURLOPT_NEW_FILE_PERMS.3 │ │ │ │ │ ├── CURLOPT_NOBODY.3 │ │ │ │ │ ├── CURLOPT_NOPROGRESS.3 │ │ │ │ │ ├── CURLOPT_NOPROXY.3 │ │ │ │ │ ├── CURLOPT_NOSIGNAL.3 │ │ │ │ │ ├── CURLOPT_OPENSOCKETDATA.3 │ │ │ │ │ ├── CURLOPT_OPENSOCKETFUNCTION.3 │ │ │ │ │ ├── CURLOPT_PASSWORD.3 │ │ │ │ │ ├── CURLOPT_PATH_AS_IS.3 │ │ │ │ │ ├── CURLOPT_PINNEDPUBLICKEY.3 │ │ │ │ │ ├── CURLOPT_PIPEWAIT.3 │ │ │ │ │ ├── CURLOPT_PORT.3 │ │ │ │ │ ├── CURLOPT_POST.3 │ │ │ │ │ ├── CURLOPT_POSTFIELDS.3 │ │ │ │ │ ├── CURLOPT_POSTFIELDSIZE.3 │ │ │ │ │ ├── CURLOPT_POSTFIELDSIZE_LARGE.3 │ │ │ │ │ ├── CURLOPT_POSTQUOTE.3 │ │ │ │ │ ├── CURLOPT_POSTREDIR.3 │ │ │ │ │ ├── CURLOPT_PREQUOTE.3 │ │ │ │ │ ├── CURLOPT_PRE_PROXY.3 │ │ │ │ │ ├── CURLOPT_PRIVATE.3 │ │ │ │ │ ├── CURLOPT_PROGRESSDATA.3 │ │ │ │ │ ├── CURLOPT_PROGRESSFUNCTION.3 │ │ │ │ │ ├── CURLOPT_PROTOCOLS.3 │ │ │ │ │ ├── CURLOPT_PROXY.3 │ │ │ │ │ ├── CURLOPT_PROXYAUTH.3 │ │ │ │ │ ├── CURLOPT_PROXYHEADER.3 │ │ │ │ │ ├── CURLOPT_PROXYPASSWORD.3 │ │ │ │ │ ├── CURLOPT_PROXYPORT.3 │ │ │ │ │ ├── CURLOPT_PROXYTYPE.3 │ │ │ │ │ ├── CURLOPT_PROXYUSERNAME.3 │ │ │ │ │ ├── CURLOPT_PROXYUSERPWD.3 │ │ │ │ │ ├── CURLOPT_PROXY_CAINFO.3 │ │ │ │ │ ├── CURLOPT_PROXY_CAINFO_BLOB.3 │ │ │ │ │ ├── CURLOPT_PROXY_CAPATH.3 │ │ │ │ │ ├── CURLOPT_PROXY_CRLFILE.3 │ │ │ │ │ ├── CURLOPT_PROXY_ISSUERCERT.3 │ │ │ │ │ ├── CURLOPT_PROXY_ISSUERCERT_BLOB.3 │ │ │ │ │ ├── CURLOPT_PROXY_KEYPASSWD.3 │ │ │ │ │ ├── CURLOPT_PROXY_PINNEDPUBLICKEY.3 │ │ │ │ │ ├── CURLOPT_PROXY_SERVICE_NAME.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSLCERT.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSLCERTTYPE.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSLCERT_BLOB.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSLKEY.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSLKEYTYPE.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSLKEY_BLOB.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSLVERSION.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSL_CIPHER_LIST.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSL_OPTIONS.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSL_VERIFYHOST.3 │ │ │ │ │ ├── CURLOPT_PROXY_SSL_VERIFYPEER.3 │ │ │ │ │ ├── CURLOPT_PROXY_TLS13_CIPHERS.3 │ │ │ │ │ ├── CURLOPT_PROXY_TLSAUTH_PASSWORD.3 │ │ │ │ │ ├── CURLOPT_PROXY_TLSAUTH_TYPE.3 │ │ │ │ │ ├── CURLOPT_PROXY_TLSAUTH_USERNAME.3 │ │ │ │ │ ├── CURLOPT_PROXY_TRANSFER_MODE.3 │ │ │ │ │ ├── CURLOPT_PUT.3 │ │ │ │ │ ├── CURLOPT_QUOTE.3 │ │ │ │ │ ├── CURLOPT_RANDOM_FILE.3 │ │ │ │ │ ├── CURLOPT_RANGE.3 │ │ │ │ │ ├── CURLOPT_READDATA.3 │ │ │ │ │ ├── CURLOPT_READFUNCTION.3 │ │ │ │ │ ├── CURLOPT_REDIR_PROTOCOLS.3 │ │ │ │ │ ├── CURLOPT_REFERER.3 │ │ │ │ │ ├── CURLOPT_REQUEST_TARGET.3 │ │ │ │ │ ├── CURLOPT_RESOLVE.3 │ │ │ │ │ ├── CURLOPT_RESOLVER_START_DATA.3 │ │ │ │ │ ├── CURLOPT_RESOLVER_START_FUNCTION.3 │ │ │ │ │ ├── CURLOPT_RESUME_FROM.3 │ │ │ │ │ ├── CURLOPT_RESUME_FROM_LARGE.3 │ │ │ │ │ ├── CURLOPT_RTSP_CLIENT_CSEQ.3 │ │ │ │ │ ├── CURLOPT_RTSP_REQUEST.3 │ │ │ │ │ ├── CURLOPT_RTSP_SERVER_CSEQ.3 │ │ │ │ │ ├── CURLOPT_RTSP_SESSION_ID.3 │ │ │ │ │ ├── CURLOPT_RTSP_STREAM_URI.3 │ │ │ │ │ ├── CURLOPT_RTSP_TRANSPORT.3 │ │ │ │ │ ├── CURLOPT_SASL_AUTHZID.3 │ │ │ │ │ ├── CURLOPT_SASL_IR.3 │ │ │ │ │ ├── CURLOPT_SEEKDATA.3 │ │ │ │ │ ├── CURLOPT_SEEKFUNCTION.3 │ │ │ │ │ ├── CURLOPT_SERVICE_NAME.3 │ │ │ │ │ ├── CURLOPT_SHARE.3 │ │ │ │ │ ├── CURLOPT_SOCKOPTDATA.3 │ │ │ │ │ ├── CURLOPT_SOCKOPTFUNCTION.3 │ │ │ │ │ ├── CURLOPT_SOCKS5_AUTH.3 │ │ │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_NEC.3 │ │ │ │ │ ├── CURLOPT_SOCKS5_GSSAPI_SERVICE.3 │ │ │ │ │ ├── CURLOPT_SSH_AUTH_TYPES.3 │ │ │ │ │ ├── CURLOPT_SSH_COMPRESSION.3 │ │ │ │ │ ├── CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 │ │ │ │ │ ├── CURLOPT_SSH_KEYDATA.3 │ │ │ │ │ ├── CURLOPT_SSH_KEYFUNCTION.3 │ │ │ │ │ ├── CURLOPT_SSH_KNOWNHOSTS.3 │ │ │ │ │ ├── CURLOPT_SSH_PRIVATE_KEYFILE.3 │ │ │ │ │ ├── CURLOPT_SSH_PUBLIC_KEYFILE.3 │ │ │ │ │ ├── CURLOPT_SSLCERT.3 │ │ │ │ │ ├── CURLOPT_SSLCERTTYPE.3 │ │ │ │ │ ├── CURLOPT_SSLCERT_BLOB.3 │ │ │ │ │ ├── CURLOPT_SSLENGINE.3 │ │ │ │ │ ├── CURLOPT_SSLENGINE_DEFAULT.3 │ │ │ │ │ ├── CURLOPT_SSLKEY.3 │ │ │ │ │ ├── CURLOPT_SSLKEYTYPE.3 │ │ │ │ │ ├── CURLOPT_SSLKEY_BLOB.3 │ │ │ │ │ ├── CURLOPT_SSLVERSION.3 │ │ │ │ │ ├── CURLOPT_SSL_CIPHER_LIST.3 │ │ │ │ │ ├── CURLOPT_SSL_CTX_DATA.3 │ │ │ │ │ ├── CURLOPT_SSL_CTX_FUNCTION.3 │ │ │ │ │ ├── CURLOPT_SSL_EC_CURVES.3 │ │ │ │ │ ├── CURLOPT_SSL_ENABLE_ALPN.3 │ │ │ │ │ ├── CURLOPT_SSL_ENABLE_NPN.3 │ │ │ │ │ ├── CURLOPT_SSL_FALSESTART.3 │ │ │ │ │ ├── CURLOPT_SSL_OPTIONS.3 │ │ │ │ │ ├── CURLOPT_SSL_SESSIONID_CACHE.3 │ │ │ │ │ ├── CURLOPT_SSL_VERIFYHOST.3 │ │ │ │ │ ├── CURLOPT_SSL_VERIFYPEER.3 │ │ │ │ │ ├── CURLOPT_SSL_VERIFYSTATUS.3 │ │ │ │ │ ├── CURLOPT_STDERR.3 │ │ │ │ │ ├── CURLOPT_STREAM_DEPENDS.3 │ │ │ │ │ ├── CURLOPT_STREAM_DEPENDS_E.3 │ │ │ │ │ ├── CURLOPT_STREAM_WEIGHT.3 │ │ │ │ │ ├── CURLOPT_SUPPRESS_CONNECT_HEADERS.3 │ │ │ │ │ ├── CURLOPT_TCP_FASTOPEN.3 │ │ │ │ │ ├── CURLOPT_TCP_KEEPALIVE.3 │ │ │ │ │ ├── CURLOPT_TCP_KEEPIDLE.3 │ │ │ │ │ ├── CURLOPT_TCP_KEEPINTVL.3 │ │ │ │ │ ├── CURLOPT_TCP_NODELAY.3 │ │ │ │ │ ├── CURLOPT_TELNETOPTIONS.3 │ │ │ │ │ ├── CURLOPT_TFTP_BLKSIZE.3 │ │ │ │ │ ├── CURLOPT_TFTP_NO_OPTIONS.3 │ │ │ │ │ ├── CURLOPT_TIMECONDITION.3 │ │ │ │ │ ├── CURLOPT_TIMEOUT.3 │ │ │ │ │ ├── CURLOPT_TIMEOUT_MS.3 │ │ │ │ │ ├── CURLOPT_TIMEVALUE.3 │ │ │ │ │ ├── CURLOPT_TIMEVALUE_LARGE.3 │ │ │ │ │ ├── CURLOPT_TLS13_CIPHERS.3 │ │ │ │ │ ├── CURLOPT_TLSAUTH_PASSWORD.3 │ │ │ │ │ ├── CURLOPT_TLSAUTH_TYPE.3 │ │ │ │ │ ├── CURLOPT_TLSAUTH_USERNAME.3 │ │ │ │ │ ├── CURLOPT_TRAILERDATA.3 │ │ │ │ │ ├── CURLOPT_TRAILERFUNCTION.3 │ │ │ │ │ ├── CURLOPT_TRANSFERTEXT.3 │ │ │ │ │ ├── CURLOPT_TRANSFER_ENCODING.3 │ │ │ │ │ ├── CURLOPT_UNIX_SOCKET_PATH.3 │ │ │ │ │ ├── CURLOPT_UNRESTRICTED_AUTH.3 │ │ │ │ │ ├── CURLOPT_UPKEEP_INTERVAL_MS.3 │ │ │ │ │ ├── CURLOPT_UPLOAD.3 │ │ │ │ │ ├── CURLOPT_UPLOAD_BUFFERSIZE.3 │ │ │ │ │ ├── CURLOPT_URL.3 │ │ │ │ │ ├── CURLOPT_USERAGENT.3 │ │ │ │ │ ├── CURLOPT_USERNAME.3 │ │ │ │ │ ├── CURLOPT_USERPWD.3 │ │ │ │ │ ├── CURLOPT_USE_SSL.3 │ │ │ │ │ ├── CURLOPT_VERBOSE.3 │ │ │ │ │ ├── CURLOPT_WILDCARDMATCH.3 │ │ │ │ │ ├── CURLOPT_WRITEDATA.3 │ │ │ │ │ ├── CURLOPT_WRITEFUNCTION.3 │ │ │ │ │ ├── CURLOPT_XFERINFODATA.3 │ │ │ │ │ ├── CURLOPT_XFERINFOFUNCTION.3 │ │ │ │ │ ├── CURLOPT_XOAUTH2_BEARER.3 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── Makefile.inc │ │ │ │ ├── symbols-in-versions │ │ │ │ └── symbols.pl │ │ │ ├── mk-ca-bundle.1 │ │ │ └── options-in-versions │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.md │ │ │ └── curl │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── curl.h │ │ │ │ ├── curlver.h │ │ │ │ ├── easy.h │ │ │ │ ├── mprintf.h │ │ │ │ ├── multi.h │ │ │ │ ├── options.h │ │ │ │ ├── stdcheaders.h │ │ │ │ ├── system.h │ │ │ │ ├── typecheck-gcc.h │ │ │ │ └── urlapi.h │ │ ├── install-sh │ │ ├── lib │ │ │ ├── .checksrc │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── Makefile.m32 │ │ │ ├── Makefile.netware │ │ │ ├── Makefile.vxworks │ │ │ ├── altsvc.c │ │ │ ├── altsvc.h │ │ │ ├── amigaos.c │ │ │ ├── amigaos.h │ │ │ ├── arpa_telnet.h │ │ │ ├── asyn-ares.c │ │ │ ├── asyn-thread.c │ │ │ ├── asyn.h │ │ │ ├── base64.c │ │ │ ├── bufref.c │ │ │ ├── bufref.h │ │ │ ├── c-hyper.c │ │ │ ├── c-hyper.h │ │ │ ├── checksrc.pl │ │ │ ├── config-amigaos.h │ │ │ ├── config-dos.h │ │ │ ├── config-mac.h │ │ │ ├── config-os400.h │ │ │ ├── config-plan9.h │ │ │ ├── config-riscos.h │ │ │ ├── config-tpf.h │ │ │ ├── config-vxworks.h │ │ │ ├── config-win32.h │ │ │ ├── config-win32ce.h │ │ │ ├── conncache.c │ │ │ ├── conncache.h │ │ │ ├── connect.c │ │ │ ├── connect.h │ │ │ ├── content_encoding.c │ │ │ ├── content_encoding.h │ │ │ ├── cookie.c │ │ │ ├── cookie.h │ │ │ ├── curl_addrinfo.c │ │ │ ├── curl_addrinfo.h │ │ │ ├── curl_base64.h │ │ │ ├── curl_config.h.cmake │ │ │ ├── curl_config.h.in │ │ │ ├── curl_ctype.c │ │ │ ├── curl_ctype.h │ │ │ ├── curl_des.c │ │ │ ├── curl_des.h │ │ │ ├── curl_endian.c │ │ │ ├── curl_endian.h │ │ │ ├── curl_fnmatch.c │ │ │ ├── curl_fnmatch.h │ │ │ ├── curl_get_line.c │ │ │ ├── curl_get_line.h │ │ │ ├── curl_gethostname.c │ │ │ ├── curl_gethostname.h │ │ │ ├── curl_gssapi.c │ │ │ ├── curl_gssapi.h │ │ │ ├── curl_hmac.h │ │ │ ├── curl_krb5.h │ │ │ ├── curl_ldap.h │ │ │ ├── curl_md4.h │ │ │ ├── curl_md5.h │ │ │ ├── curl_memory.h │ │ │ ├── curl_memrchr.c │ │ │ ├── curl_memrchr.h │ │ │ ├── curl_multibyte.c │ │ │ ├── curl_multibyte.h │ │ │ ├── curl_ntlm_core.c │ │ │ ├── curl_ntlm_core.h │ │ │ ├── curl_ntlm_wb.c │ │ │ ├── curl_ntlm_wb.h │ │ │ ├── curl_path.c │ │ │ ├── curl_path.h │ │ │ ├── curl_printf.h │ │ │ ├── curl_range.c │ │ │ ├── curl_range.h │ │ │ ├── curl_rtmp.c │ │ │ ├── curl_rtmp.h │ │ │ ├── curl_sasl.c │ │ │ ├── curl_sasl.h │ │ │ ├── curl_setup.h │ │ │ ├── curl_setup_once.h │ │ │ ├── curl_sha256.h │ │ │ ├── curl_sspi.c │ │ │ ├── curl_sspi.h │ │ │ ├── curl_threads.c │ │ │ ├── curl_threads.h │ │ │ ├── curlx.h │ │ │ ├── dict.c │ │ │ ├── dict.h │ │ │ ├── doh.c │ │ │ ├── doh.h │ │ │ ├── dotdot.c │ │ │ ├── dotdot.h │ │ │ ├── dynbuf.c │ │ │ ├── dynbuf.h │ │ │ ├── easy.c │ │ │ ├── easygetopt.c │ │ │ ├── easyif.h │ │ │ ├── easyoptions.c │ │ │ ├── easyoptions.h │ │ │ ├── escape.c │ │ │ ├── escape.h │ │ │ ├── file.c │ │ │ ├── file.h │ │ │ ├── fileinfo.c │ │ │ ├── fileinfo.h │ │ │ ├── firefox-db2pem.sh │ │ │ ├── formdata.c │ │ │ ├── formdata.h │ │ │ ├── ftp.c │ │ │ ├── ftp.h │ │ │ ├── ftplistparser.c │ │ │ ├── ftplistparser.h │ │ │ ├── getenv.c │ │ │ ├── getinfo.c │ │ │ ├── getinfo.h │ │ │ ├── gopher.c │ │ │ ├── gopher.h │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── hmac.c │ │ │ ├── hostasyn.c │ │ │ ├── hostcheck.c │ │ │ ├── hostcheck.h │ │ │ ├── hostip.c │ │ │ ├── hostip.h │ │ │ ├── hostip4.c │ │ │ ├── hostip6.c │ │ │ ├── hostsyn.c │ │ │ ├── hsts.c │ │ │ ├── hsts.h │ │ │ ├── http.c │ │ │ ├── http.h │ │ │ ├── http2.c │ │ │ ├── http2.h │ │ │ ├── http_aws_sigv4.c │ │ │ ├── http_aws_sigv4.h │ │ │ ├── http_chunks.c │ │ │ ├── http_chunks.h │ │ │ ├── http_digest.c │ │ │ ├── http_digest.h │ │ │ ├── http_negotiate.c │ │ │ ├── http_negotiate.h │ │ │ ├── http_ntlm.c │ │ │ ├── http_ntlm.h │ │ │ ├── http_proxy.c │ │ │ ├── http_proxy.h │ │ │ ├── idn_win32.c │ │ │ ├── if2ip.c │ │ │ ├── if2ip.h │ │ │ ├── imap.c │ │ │ ├── imap.h │ │ │ ├── inet_ntop.c │ │ │ ├── inet_ntop.h │ │ │ ├── inet_pton.c │ │ │ ├── inet_pton.h │ │ │ ├── krb5.c │ │ │ ├── ldap.c │ │ │ ├── libcurl.plist │ │ │ ├── libcurl.rc │ │ │ ├── libcurl.vers.in │ │ │ ├── llist.c │ │ │ ├── llist.h │ │ │ ├── makefile.amiga │ │ │ ├── makefile.dj │ │ │ ├── md4.c │ │ │ ├── md5.c │ │ │ ├── memdebug.c │ │ │ ├── memdebug.h │ │ │ ├── mime.c │ │ │ ├── mime.h │ │ │ ├── mk-ca-bundle.pl │ │ │ ├── mk-ca-bundle.vbs │ │ │ ├── mprintf.c │ │ │ ├── mqtt.c │ │ │ ├── mqtt.h │ │ │ ├── multi.c │ │ │ ├── multihandle.h │ │ │ ├── multiif.h │ │ │ ├── netrc.c │ │ │ ├── netrc.h │ │ │ ├── non-ascii.c │ │ │ ├── non-ascii.h │ │ │ ├── nonblock.c │ │ │ ├── nonblock.h │ │ │ ├── nwlib.c │ │ │ ├── nwos.c │ │ │ ├── openldap.c │ │ │ ├── parsedate.c │ │ │ ├── parsedate.h │ │ │ ├── pingpong.c │ │ │ ├── pingpong.h │ │ │ ├── pop3.c │ │ │ ├── pop3.h │ │ │ ├── progress.c │ │ │ ├── progress.h │ │ │ ├── psl.c │ │ │ ├── psl.h │ │ │ ├── quic.h │ │ │ ├── rand.c │ │ │ ├── rand.h │ │ │ ├── rename.c │ │ │ ├── rename.h │ │ │ ├── rtsp.c │ │ │ ├── rtsp.h │ │ │ ├── select.c │ │ │ ├── select.h │ │ │ ├── sendf.c │ │ │ ├── sendf.h │ │ │ ├── setopt.c │ │ │ ├── setopt.h │ │ │ ├── setup-os400.h │ │ │ ├── setup-vms.h │ │ │ ├── setup-win32.h │ │ │ ├── sha256.c │ │ │ ├── share.c │ │ │ ├── share.h │ │ │ ├── sigpipe.h │ │ │ ├── slist.c │ │ │ ├── slist.h │ │ │ ├── smb.c │ │ │ ├── smb.h │ │ │ ├── smtp.c │ │ │ ├── smtp.h │ │ │ ├── sockaddr.h │ │ │ ├── socketpair.c │ │ │ ├── socketpair.h │ │ │ ├── socks.c │ │ │ ├── socks.h │ │ │ ├── socks_gssapi.c │ │ │ ├── socks_sspi.c │ │ │ ├── speedcheck.c │ │ │ ├── speedcheck.h │ │ │ ├── splay.c │ │ │ ├── splay.h │ │ │ ├── strcase.c │ │ │ ├── strcase.h │ │ │ ├── strdup.c │ │ │ ├── strdup.h │ │ │ ├── strerror.c │ │ │ ├── strerror.h │ │ │ ├── strtok.c │ │ │ ├── strtok.h │ │ │ ├── strtoofft.c │ │ │ ├── strtoofft.h │ │ │ ├── system_win32.c │ │ │ ├── system_win32.h │ │ │ ├── telnet.c │ │ │ ├── telnet.h │ │ │ ├── tftp.c │ │ │ ├── tftp.h │ │ │ ├── timeval.c │ │ │ ├── timeval.h │ │ │ ├── transfer.c │ │ │ ├── transfer.h │ │ │ ├── url.c │ │ │ ├── url.h │ │ │ ├── urlapi-int.h │ │ │ ├── urlapi.c │ │ │ ├── urldata.h │ │ │ ├── vauth │ │ │ │ ├── cleartext.c │ │ │ │ ├── cram.c │ │ │ │ ├── digest.c │ │ │ │ ├── digest.h │ │ │ │ ├── digest_sspi.c │ │ │ │ ├── gsasl.c │ │ │ │ ├── krb5_gssapi.c │ │ │ │ ├── krb5_sspi.c │ │ │ │ ├── ntlm.c │ │ │ │ ├── ntlm.h │ │ │ │ ├── ntlm_sspi.c │ │ │ │ ├── oauth2.c │ │ │ │ ├── spnego_gssapi.c │ │ │ │ ├── spnego_sspi.c │ │ │ │ ├── vauth.c │ │ │ │ └── vauth.h │ │ │ ├── version.c │ │ │ ├── version_win32.c │ │ │ ├── version_win32.h │ │ │ ├── vquic │ │ │ │ ├── ngtcp2.c │ │ │ │ ├── ngtcp2.h │ │ │ │ ├── quiche.c │ │ │ │ ├── quiche.h │ │ │ │ ├── vquic.c │ │ │ │ └── vquic.h │ │ │ ├── vssh │ │ │ │ ├── libssh.c │ │ │ │ ├── libssh2.c │ │ │ │ ├── ssh.h │ │ │ │ └── wolfssh.c │ │ │ ├── vtls │ │ │ │ ├── bearssl.c │ │ │ │ ├── bearssl.h │ │ │ │ ├── gskit.c │ │ │ │ ├── gskit.h │ │ │ │ ├── gtls.c │ │ │ │ ├── gtls.h │ │ │ │ ├── keylog.c │ │ │ │ ├── keylog.h │ │ │ │ ├── mbedtls.c │ │ │ │ ├── mbedtls.h │ │ │ │ ├── mbedtls_threadlock.c │ │ │ │ ├── mbedtls_threadlock.h │ │ │ │ ├── mesalink.c │ │ │ │ ├── mesalink.h │ │ │ │ ├── nss.c │ │ │ │ ├── nssg.h │ │ │ │ ├── openssl.c │ │ │ │ ├── openssl.h │ │ │ │ ├── rustls.c │ │ │ │ ├── rustls.h │ │ │ │ ├── schannel.c │ │ │ │ ├── schannel.h │ │ │ │ ├── schannel_verify.c │ │ │ │ ├── sectransp.c │ │ │ │ ├── sectransp.h │ │ │ │ ├── vtls.c │ │ │ │ ├── vtls.h │ │ │ │ ├── wolfssl.c │ │ │ │ └── wolfssl.h │ │ │ ├── warnless.c │ │ │ ├── warnless.h │ │ │ ├── wildcard.c │ │ │ ├── wildcard.h │ │ │ ├── x509asn1.c │ │ │ └── x509asn1.h │ │ ├── libcurl.pc.in │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── ax_compile_check_sizeof.m4 │ │ │ ├── curl-amissl.m4 │ │ │ ├── curl-bearssl.m4 │ │ │ ├── curl-compilers.m4 │ │ │ ├── curl-confopts.m4 │ │ │ ├── curl-functions.m4 │ │ │ ├── curl-gnutls.m4 │ │ │ ├── curl-mbedtls.m4 │ │ │ ├── curl-mesalink.m4 │ │ │ ├── curl-nss.m4 │ │ │ ├── curl-openssl.m4 │ │ │ ├── curl-override.m4 │ │ │ ├── curl-reentrant.m4 │ │ │ ├── curl-rustls.m4 │ │ │ ├── curl-schannel.m4 │ │ │ ├── curl-sectransp.m4 │ │ │ ├── curl-sysconfig.m4 │ │ │ ├── curl-wolfssl.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── xc-am-iface.m4 │ │ │ ├── xc-cc-check.m4 │ │ │ ├── xc-lt-iface.m4 │ │ │ ├── xc-translit.m4 │ │ │ ├── xc-val-flgs.m4 │ │ │ ├── zz40-xc-ovr.m4 │ │ │ ├── zz50-xc-ovr.m4 │ │ │ └── zz60-xc-ovr.m4 │ │ ├── maketgz │ │ ├── missing │ │ ├── packages │ │ │ ├── Android │ │ │ │ └── Android.mk │ │ │ ├── DOS │ │ │ │ ├── README │ │ │ │ └── common.dj │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── OS400 │ │ │ │ ├── README.OS400 │ │ │ │ ├── ccsidcurl.c │ │ │ │ ├── ccsidcurl.h │ │ │ │ ├── chkstrings.c │ │ │ │ ├── curl.inc.in │ │ │ │ ├── initscript.sh │ │ │ │ ├── make-include.sh │ │ │ │ ├── make-lib.sh │ │ │ │ ├── make-src.sh │ │ │ │ ├── make-tests.sh │ │ │ │ ├── makefile.sh │ │ │ │ ├── os400sys.c │ │ │ │ └── os400sys.h │ │ │ ├── README │ │ │ ├── TPF │ │ │ │ ├── curl.mak │ │ │ │ ├── maketpf.env_curl │ │ │ │ └── maketpf.env_curllib │ │ │ └── vms │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── backup_gnv_curl_src.com │ │ │ │ ├── build_curl-config_script.com │ │ │ │ ├── build_gnv_curl.com │ │ │ │ ├── build_gnv_curl_pcsi_desc.com │ │ │ │ ├── build_gnv_curl_pcsi_text.com │ │ │ │ ├── build_gnv_curl_release_notes.com │ │ │ │ ├── build_libcurl_pc.com │ │ │ │ ├── build_vms.com │ │ │ │ ├── clean_gnv_curl.com │ │ │ │ ├── compare_curl_source.com │ │ │ │ ├── config_h.com │ │ │ │ ├── curl_crtl_init.c │ │ │ │ ├── curl_gnv_build_steps.txt │ │ │ │ ├── curl_release_note_start.txt │ │ │ │ ├── curl_startup.com │ │ │ │ ├── curlmsg.h │ │ │ │ ├── curlmsg.msg │ │ │ │ ├── curlmsg.sdl │ │ │ │ ├── curlmsg_vms.h │ │ │ │ ├── generate_config_vms_h_curl.com │ │ │ │ ├── generate_vax_transfer.com │ │ │ │ ├── gnv_conftest.c_first │ │ │ │ ├── gnv_curl_configure.sh │ │ │ │ ├── gnv_libcurl_symbols.opt │ │ │ │ ├── gnv_link_curl.com │ │ │ │ ├── macro32_exactcase.patch │ │ │ │ ├── make_gnv_curl_install.sh │ │ │ │ ├── make_pcsi_curl_kit_name.com │ │ │ │ ├── pcsi_gnv_curl_file_list.txt │ │ │ │ ├── pcsi_product_gnv_curl.com │ │ │ │ ├── readme │ │ │ │ ├── report_openssl_version.c │ │ │ │ ├── setup_gnv_curl_build.com │ │ │ │ ├── stage_curl_install.com │ │ │ │ └── vms_eco_level.h │ │ ├── plan9 │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── mkfile │ │ │ ├── lib │ │ │ │ ├── mkfile │ │ │ │ └── mkfile.inc │ │ │ ├── mkfile │ │ │ ├── mkfile.proto │ │ │ └── src │ │ │ │ ├── mkfile │ │ │ │ └── mkfile.inc │ │ ├── scripts │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── completion.pl │ │ │ ├── coverage.sh │ │ │ └── updatemanpages.pl │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.inc │ │ │ ├── Makefile.m32 │ │ │ ├── Makefile.netware │ │ │ ├── curl.rc │ │ │ ├── macos │ │ │ │ ├── MACINSTALL.TXT │ │ │ │ ├── curl.mcp.xml.sit.hqx │ │ │ │ └── src │ │ │ │ │ ├── curl_GUSIConfig.cpp │ │ │ │ │ └── macos_main.cpp │ │ │ ├── makefile.amiga │ │ │ ├── makefile.dj │ │ │ ├── mkhelp.pl │ │ │ ├── slist_wc.c │ │ │ ├── slist_wc.h │ │ │ ├── tool_binmode.c │ │ │ ├── tool_binmode.h │ │ │ ├── tool_bname.c │ │ │ ├── tool_bname.h │ │ │ ├── tool_cb_dbg.c │ │ │ ├── tool_cb_dbg.h │ │ │ ├── tool_cb_hdr.c │ │ │ ├── tool_cb_hdr.h │ │ │ ├── tool_cb_prg.c │ │ │ ├── tool_cb_prg.h │ │ │ ├── tool_cb_rea.c │ │ │ ├── tool_cb_rea.h │ │ │ ├── tool_cb_see.c │ │ │ ├── tool_cb_see.h │ │ │ ├── tool_cb_wrt.c │ │ │ ├── tool_cb_wrt.h │ │ │ ├── tool_cfgable.c │ │ │ ├── tool_cfgable.h │ │ │ ├── tool_convert.c │ │ │ ├── tool_convert.h │ │ │ ├── tool_dirhie.c │ │ │ ├── tool_dirhie.h │ │ │ ├── tool_doswin.c │ │ │ ├── tool_doswin.h │ │ │ ├── tool_easysrc.c │ │ │ ├── tool_easysrc.h │ │ │ ├── tool_filetime.c │ │ │ ├── tool_filetime.h │ │ │ ├── tool_formparse.c │ │ │ ├── tool_formparse.h │ │ │ ├── tool_getparam.c │ │ │ ├── tool_getparam.h │ │ │ ├── tool_getpass.c │ │ │ ├── tool_getpass.h │ │ │ ├── tool_help.c │ │ │ ├── tool_help.h │ │ │ ├── tool_helpers.c │ │ │ ├── tool_helpers.h │ │ │ ├── tool_homedir.c │ │ │ ├── tool_homedir.h │ │ │ ├── tool_hugehelp.c │ │ │ ├── tool_hugehelp.h │ │ │ ├── tool_libinfo.c │ │ │ ├── tool_libinfo.h │ │ │ ├── tool_main.c │ │ │ ├── tool_main.h │ │ │ ├── tool_msgs.c │ │ │ ├── tool_msgs.h │ │ │ ├── tool_operate.c │ │ │ ├── tool_operate.h │ │ │ ├── tool_operhlp.c │ │ │ ├── tool_operhlp.h │ │ │ ├── tool_panykey.c │ │ │ ├── tool_panykey.h │ │ │ ├── tool_paramhlp.c │ │ │ ├── tool_paramhlp.h │ │ │ ├── tool_parsecfg.c │ │ │ ├── tool_parsecfg.h │ │ │ ├── tool_progress.c │ │ │ ├── tool_progress.h │ │ │ ├── tool_sdecls.h │ │ │ ├── tool_setopt.c │ │ │ ├── tool_setopt.h │ │ │ ├── tool_setup.h │ │ │ ├── tool_sleep.c │ │ │ ├── tool_sleep.h │ │ │ ├── tool_strdup.c │ │ │ ├── tool_strdup.h │ │ │ ├── tool_urlglob.c │ │ │ ├── tool_urlglob.h │ │ │ ├── tool_util.c │ │ │ ├── tool_util.h │ │ │ ├── tool_version.h │ │ │ ├── tool_vms.c │ │ │ ├── tool_vms.h │ │ │ ├── tool_writeout.c │ │ │ ├── tool_writeout.h │ │ │ ├── tool_writeout_json.c │ │ │ ├── tool_writeout_json.h │ │ │ ├── tool_xattr.c │ │ │ └── tool_xattr.h │ │ ├── test-driver │ │ └── winbuild │ │ │ ├── Makefile.vc │ │ │ ├── MakefileBuild.vc │ │ │ ├── README.md │ │ │ └── gen_resp_file.bat │ └── libcurl.gyp ├── libexpat.sh ├── libexpat │ ├── arch │ │ ├── unix │ │ │ └── expat_config.h │ │ └── win │ │ │ └── expat_config.h │ ├── expat │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── expat_config.h │ │ └── lib │ │ │ ├── ascii.h │ │ │ ├── asciitab.h │ │ │ ├── expat.h │ │ │ ├── expat_external.h │ │ │ ├── iasciitab.h │ │ │ ├── internal.h │ │ │ ├── latin1tab.h │ │ │ ├── nametab.h │ │ │ ├── siphash.h │ │ │ ├── utf8tab.h │ │ │ ├── winconfig.h │ │ │ ├── xmlparse.c │ │ │ ├── xmlrole.c │ │ │ ├── xmlrole.h │ │ │ ├── xmltok.c │ │ │ ├── xmltok.h │ │ │ ├── xmltok_impl.c │ │ │ ├── xmltok_impl.h │ │ │ └── xmltok_ns.c │ └── libexpat.gyp ├── libgdal.sh ├── libgdal │ ├── arch │ │ ├── bsd │ │ │ └── cpl_config.h │ │ ├── unix │ │ │ └── cpl_config.h │ │ └── win │ │ │ └── cpl_config.h │ ├── common.gypi │ ├── gdal │ │ ├── .clang-format │ │ ├── .editorconfig │ │ ├── .flake8 │ │ ├── .git-blame-ignore-revs │ │ ├── .gitattributes │ │ ├── .isort.cfg │ │ ├── .pre-commit-config.yaml │ │ ├── .readthedocs.yaml │ │ ├── .travis.yml │ │ ├── BUILDING.md │ │ ├── CITATION │ │ ├── CITATION.cff │ │ ├── CMakeLists.txt │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE.TXT │ │ ├── NEWS.template │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── alg │ │ │ ├── CMakeLists.txt │ │ │ ├── armadillo_headers.h │ │ │ ├── contour.cpp │ │ │ ├── delaunay.c │ │ │ ├── gdal_alg.h │ │ │ ├── gdal_alg_priv.h │ │ │ ├── gdal_crs.cpp │ │ │ ├── gdal_homography.cpp │ │ │ ├── gdal_interpolateatpoint.cpp │ │ │ ├── gdal_interpolateatpoint.h │ │ │ ├── gdal_octave.cpp │ │ │ ├── gdal_rpc.cpp │ │ │ ├── gdal_simplesurf.cpp │ │ │ ├── gdal_simplesurf.h │ │ │ ├── gdal_tps.cpp │ │ │ ├── gdalapplyverticalshiftgrid.cpp │ │ │ ├── gdalchecksum.cpp │ │ │ ├── gdalcutline.cpp │ │ │ ├── gdaldither.cpp │ │ │ ├── gdalgenericinverse.cpp │ │ │ ├── gdalgenericinverse.h │ │ │ ├── gdalgeoloc.cpp │ │ │ ├── gdalgeoloc.h │ │ │ ├── gdalgeoloc_carray_accessor.h │ │ │ ├── gdalgeoloc_dataset_accessor.h │ │ │ ├── gdalgeolocquadtree.cpp │ │ │ ├── gdalgeolocquadtree.h │ │ │ ├── gdalgrid.cpp │ │ │ ├── gdalgrid.h │ │ │ ├── gdalgrid_priv.h │ │ │ ├── gdalgridavx.cpp │ │ │ ├── gdalgridsse.cpp │ │ │ ├── gdallinearsystem.cpp │ │ │ ├── gdallinearsystem.h │ │ │ ├── gdalmatching.cpp │ │ │ ├── gdalmediancut.cpp │ │ │ ├── gdalpansharpen.cpp │ │ │ ├── gdalpansharpen.h │ │ │ ├── gdalproximity.cpp │ │ │ ├── gdalrasterize.cpp │ │ │ ├── gdalrasterpolygonenumerator.cpp │ │ │ ├── gdalresamplingkernels.h │ │ │ ├── gdalsievefilter.cpp │ │ │ ├── gdalsimplewarp.cpp │ │ │ ├── gdaltransformer.cpp │ │ │ ├── gdaltransformgeolocs.cpp │ │ │ ├── gdalwarper.cpp │ │ │ ├── gdalwarper.h │ │ │ ├── gdalwarpkernel.cpp │ │ │ ├── gdalwarpoperation.cpp │ │ │ ├── gvgcpfit.h │ │ │ ├── internal_libqhull │ │ │ │ ├── COPYING.txt │ │ │ │ ├── geom2_r.c │ │ │ │ ├── geom_r.c │ │ │ │ ├── geom_r.h │ │ │ │ ├── global_r.c │ │ │ │ ├── io_r.c │ │ │ │ ├── io_r.h │ │ │ │ ├── libqhull_r.c │ │ │ │ ├── libqhull_r.h │ │ │ │ ├── mem_r.c │ │ │ │ ├── mem_r.h │ │ │ │ ├── merge_r.c │ │ │ │ ├── merge_r.h │ │ │ │ ├── poly2_r.c │ │ │ │ ├── poly_r.c │ │ │ │ ├── poly_r.h │ │ │ │ ├── qhull_ra.h │ │ │ │ ├── qset_r.c │ │ │ │ ├── qset_r.h │ │ │ │ ├── random_r.c │ │ │ │ ├── random_r.h │ │ │ │ ├── rboxlib_r.c │ │ │ │ ├── stat_r.c │ │ │ │ ├── stat_r.h │ │ │ │ ├── user_r.c │ │ │ │ ├── user_r.h │ │ │ │ ├── usermem_r.c │ │ │ │ ├── userprintf_r.c │ │ │ │ └── userprintf_rbox_r.c │ │ │ ├── internal_qhull_headers.h │ │ │ ├── llrasterize.cpp │ │ │ ├── los.cpp │ │ │ ├── marching_squares │ │ │ │ ├── contour_generator.h │ │ │ │ ├── level_generator.h │ │ │ │ ├── point.h │ │ │ │ ├── polygon_ring_appender.h │ │ │ │ ├── segment_merger.h │ │ │ │ ├── square.h │ │ │ │ └── utility.h │ │ │ ├── polygonize.cpp │ │ │ ├── polygonize_polygonizer.cpp │ │ │ ├── polygonize_polygonizer.h │ │ │ ├── polygonize_polygonizer_impl.cpp │ │ │ ├── raster_stats.h │ │ │ ├── rasterfill.cpp │ │ │ ├── thinplatespline.cpp │ │ │ ├── thinplatespline.h │ │ │ ├── viewshed │ │ │ │ ├── combiner.cpp │ │ │ │ ├── combiner.h │ │ │ │ ├── cumulative.cpp │ │ │ │ ├── cumulative.h │ │ │ │ ├── notifyqueue.h │ │ │ │ ├── progress.cpp │ │ │ │ ├── progress.h │ │ │ │ ├── util.cpp │ │ │ │ ├── util.h │ │ │ │ ├── viewshed.cpp │ │ │ │ ├── viewshed.h │ │ │ │ ├── viewshed_executor.cpp │ │ │ │ ├── viewshed_executor.h │ │ │ │ └── viewshed_types.h │ │ │ └── zonal.cpp │ │ ├── apps │ │ │ ├── CMakeLists.txt │ │ │ ├── argparse │ │ │ │ ├── .clang-format │ │ │ │ └── argparse.hpp │ │ │ ├── commonutils.cpp │ │ │ ├── commonutils.h │ │ │ ├── data │ │ │ │ ├── gdal_algorithm.schema.json │ │ │ │ ├── gdalinfo_output.schema.json │ │ │ │ ├── gdalmdiminfo_output.schema.json │ │ │ │ └── ogrinfo_output.schema.json │ │ │ ├── dumpoverviews.cpp │ │ │ ├── gdal.cpp │ │ │ ├── gdal2ogr.c │ │ │ ├── gdal_contour_bin.cpp │ │ │ ├── gdal_contour_lib.cpp │ │ │ ├── gdal_create.cpp │ │ │ ├── gdal_footprint_bin.cpp │ │ │ ├── gdal_footprint_lib.cpp │ │ │ ├── gdal_grid_bin.cpp │ │ │ ├── gdal_grid_lib.cpp │ │ │ ├── gdal_rasterize_bin.cpp │ │ │ ├── gdal_rasterize_lib.cpp │ │ │ ├── gdal_translate_bin.cpp │ │ │ ├── gdal_translate_lib.cpp │ │ │ ├── gdal_utils.h │ │ │ ├── gdal_utils_priv.h │ │ │ ├── gdal_viewshed.cpp │ │ │ ├── gdaladdo.cpp │ │ │ ├── gdalalg_abstract_pipeline.cpp │ │ │ ├── gdalalg_abstract_pipeline.h │ │ │ ├── gdalalg_clip_common.cpp │ │ │ ├── gdalalg_clip_common.h │ │ │ ├── gdalalg_convert.cpp │ │ │ ├── gdalalg_dataset.cpp │ │ │ ├── gdalalg_dataset_copy.cpp │ │ │ ├── gdalalg_dataset_copy.h │ │ │ ├── gdalalg_dataset_delete.cpp │ │ │ ├── gdalalg_dataset_delete.h │ │ │ ├── gdalalg_dataset_identify.cpp │ │ │ ├── gdalalg_dataset_identify.h │ │ │ ├── gdalalg_dataset_rename.cpp │ │ │ ├── gdalalg_dataset_rename.h │ │ │ ├── gdalalg_dispatcher.h │ │ │ ├── gdalalg_info.cpp │ │ │ ├── gdalalg_main.cpp │ │ │ ├── gdalalg_main.h │ │ │ ├── gdalalg_materialize.cpp │ │ │ ├── gdalalg_materialize.h │ │ │ ├── gdalalg_mdim.cpp │ │ │ ├── gdalalg_mdim_convert.cpp │ │ │ ├── gdalalg_mdim_convert.h │ │ │ ├── gdalalg_mdim_info.cpp │ │ │ ├── gdalalg_mdim_info.h │ │ │ ├── gdalalg_mdim_mosaic.cpp │ │ │ ├── gdalalg_mdim_mosaic.h │ │ │ ├── gdalalg_pipeline.cpp │ │ │ ├── gdalalg_raster.cpp │ │ │ ├── gdalalg_raster_as_features.cpp │ │ │ ├── gdalalg_raster_as_features.h │ │ │ ├── gdalalg_raster_aspect.cpp │ │ │ ├── gdalalg_raster_aspect.h │ │ │ ├── gdalalg_raster_blend.cpp │ │ │ ├── gdalalg_raster_blend.h │ │ │ ├── gdalalg_raster_calc.cpp │ │ │ ├── gdalalg_raster_calc.h │ │ │ ├── gdalalg_raster_clean_collar.cpp │ │ │ ├── gdalalg_raster_clean_collar.h │ │ │ ├── gdalalg_raster_clip.cpp │ │ │ ├── gdalalg_raster_clip.h │ │ │ ├── gdalalg_raster_color_map.cpp │ │ │ ├── gdalalg_raster_color_map.h │ │ │ ├── gdalalg_raster_compare.cpp │ │ │ ├── gdalalg_raster_compare.h │ │ │ ├── gdalalg_raster_contour.cpp │ │ │ ├── gdalalg_raster_contour.h │ │ │ ├── gdalalg_raster_convert.cpp │ │ │ ├── gdalalg_raster_convert.h │ │ │ ├── gdalalg_raster_create.cpp │ │ │ ├── gdalalg_raster_create.h │ │ │ ├── gdalalg_raster_edit.cpp │ │ │ ├── gdalalg_raster_edit.h │ │ │ ├── gdalalg_raster_fill_nodata.cpp │ │ │ ├── gdalalg_raster_fill_nodata.h │ │ │ ├── gdalalg_raster_footprint.cpp │ │ │ ├── gdalalg_raster_footprint.h │ │ │ ├── gdalalg_raster_hillshade.cpp │ │ │ ├── gdalalg_raster_hillshade.h │ │ │ ├── gdalalg_raster_index.cpp │ │ │ ├── gdalalg_raster_index.h │ │ │ ├── gdalalg_raster_info.cpp │ │ │ ├── gdalalg_raster_info.h │ │ │ ├── gdalalg_raster_mosaic.cpp │ │ │ ├── gdalalg_raster_mosaic.h │ │ │ ├── gdalalg_raster_mosaic_stack_common.cpp │ │ │ ├── gdalalg_raster_mosaic_stack_common.h │ │ │ ├── gdalalg_raster_neighbors.cpp │ │ │ ├── gdalalg_raster_neighbors.h │ │ │ ├── gdalalg_raster_nodata_to_alpha.cpp │ │ │ ├── gdalalg_raster_nodata_to_alpha.h │ │ │ ├── gdalalg_raster_overview.h │ │ │ ├── gdalalg_raster_overview_add.cpp │ │ │ ├── gdalalg_raster_overview_add.h │ │ │ ├── gdalalg_raster_overview_delete.cpp │ │ │ ├── gdalalg_raster_overview_delete.h │ │ │ ├── gdalalg_raster_overview_refresh.cpp │ │ │ ├── gdalalg_raster_overview_refresh.h │ │ │ ├── gdalalg_raster_pansharpen.cpp │ │ │ ├── gdalalg_raster_pansharpen.h │ │ │ ├── gdalalg_raster_pipeline.cpp │ │ │ ├── gdalalg_raster_pipeline.h │ │ │ ├── gdalalg_raster_pixel_info.cpp │ │ │ ├── gdalalg_raster_pixel_info.h │ │ │ ├── gdalalg_raster_polygonize.cpp │ │ │ ├── gdalalg_raster_polygonize.h │ │ │ ├── gdalalg_raster_proximity.cpp │ │ │ ├── gdalalg_raster_proximity.h │ │ │ ├── gdalalg_raster_read.cpp │ │ │ ├── gdalalg_raster_read.h │ │ │ ├── gdalalg_raster_reclassify.cpp │ │ │ ├── gdalalg_raster_reclassify.h │ │ │ ├── gdalalg_raster_reproject.cpp │ │ │ ├── gdalalg_raster_reproject.h │ │ │ ├── gdalalg_raster_resize.cpp │ │ │ ├── gdalalg_raster_resize.h │ │ │ ├── gdalalg_raster_rgb_to_palette.cpp │ │ │ ├── gdalalg_raster_rgb_to_palette.h │ │ │ ├── gdalalg_raster_roughness.cpp │ │ │ ├── gdalalg_raster_roughness.h │ │ │ ├── gdalalg_raster_scale.cpp │ │ │ ├── gdalalg_raster_scale.h │ │ │ ├── gdalalg_raster_select.cpp │ │ │ ├── gdalalg_raster_select.h │ │ │ ├── gdalalg_raster_set_type.cpp │ │ │ ├── gdalalg_raster_set_type.h │ │ │ ├── gdalalg_raster_sieve.cpp │ │ │ ├── gdalalg_raster_sieve.h │ │ │ ├── gdalalg_raster_slope.cpp │ │ │ ├── gdalalg_raster_slope.h │ │ │ ├── gdalalg_raster_stack.cpp │ │ │ ├── gdalalg_raster_stack.h │ │ │ ├── gdalalg_raster_tile.cpp │ │ │ ├── gdalalg_raster_tile.h │ │ │ ├── gdalalg_raster_tpi.cpp │ │ │ ├── gdalalg_raster_tpi.h │ │ │ ├── gdalalg_raster_tri.cpp │ │ │ ├── gdalalg_raster_tri.h │ │ │ ├── gdalalg_raster_unscale.cpp │ │ │ ├── gdalalg_raster_unscale.h │ │ │ ├── gdalalg_raster_update.cpp │ │ │ ├── gdalalg_raster_update.h │ │ │ ├── gdalalg_raster_viewshed.cpp │ │ │ ├── gdalalg_raster_viewshed.h │ │ │ ├── gdalalg_raster_write.cpp │ │ │ ├── gdalalg_raster_write.h │ │ │ ├── gdalalg_raster_zonal_stats.cpp │ │ │ ├── gdalalg_raster_zonal_stats.h │ │ │ ├── gdalalg_tee.cpp │ │ │ ├── gdalalg_tee.h │ │ │ ├── gdalalg_vector.cpp │ │ │ ├── gdalalg_vector_buffer.cpp │ │ │ ├── gdalalg_vector_buffer.h │ │ │ ├── gdalalg_vector_check_coverage.cpp │ │ │ ├── gdalalg_vector_check_coverage.h │ │ │ ├── gdalalg_vector_check_geometry.cpp │ │ │ ├── gdalalg_vector_check_geometry.h │ │ │ ├── gdalalg_vector_clean_coverage.cpp │ │ │ ├── gdalalg_vector_clean_coverage.h │ │ │ ├── gdalalg_vector_clip.cpp │ │ │ ├── gdalalg_vector_clip.h │ │ │ ├── gdalalg_vector_concat.cpp │ │ │ ├── gdalalg_vector_concat.h │ │ │ ├── gdalalg_vector_convert.cpp │ │ │ ├── gdalalg_vector_convert.h │ │ │ ├── gdalalg_vector_edit.cpp │ │ │ ├── gdalalg_vector_edit.h │ │ │ ├── gdalalg_vector_explode_collections.cpp │ │ │ ├── gdalalg_vector_explode_collections.h │ │ │ ├── gdalalg_vector_filter.cpp │ │ │ ├── gdalalg_vector_filter.h │ │ │ ├── gdalalg_vector_geom.cpp │ │ │ ├── gdalalg_vector_geom.h │ │ │ ├── gdalalg_vector_grid.cpp │ │ │ ├── gdalalg_vector_grid.h │ │ │ ├── gdalalg_vector_grid_average.cpp │ │ │ ├── gdalalg_vector_grid_average.h │ │ │ ├── gdalalg_vector_grid_data_metrics.cpp │ │ │ ├── gdalalg_vector_grid_data_metrics.h │ │ │ ├── gdalalg_vector_grid_invdist.cpp │ │ │ ├── gdalalg_vector_grid_invdist.h │ │ │ ├── gdalalg_vector_grid_invdistnn.cpp │ │ │ ├── gdalalg_vector_grid_invdistnn.h │ │ │ ├── gdalalg_vector_grid_linear.cpp │ │ │ ├── gdalalg_vector_grid_linear.h │ │ │ ├── gdalalg_vector_grid_nearest.cpp │ │ │ ├── gdalalg_vector_grid_nearest.h │ │ │ ├── gdalalg_vector_index.cpp │ │ │ ├── gdalalg_vector_index.h │ │ │ ├── gdalalg_vector_info.cpp │ │ │ ├── gdalalg_vector_info.h │ │ │ ├── gdalalg_vector_layer_algebra.cpp │ │ │ ├── gdalalg_vector_layer_algebra.h │ │ │ ├── gdalalg_vector_limit.cpp │ │ │ ├── gdalalg_vector_limit.h │ │ │ ├── gdalalg_vector_make_point.cpp │ │ │ ├── gdalalg_vector_make_point.h │ │ │ ├── gdalalg_vector_make_valid.cpp │ │ │ ├── gdalalg_vector_make_valid.h │ │ │ ├── gdalalg_vector_output_abstract.cpp │ │ │ ├── gdalalg_vector_output_abstract.h │ │ │ ├── gdalalg_vector_partition.cpp │ │ │ ├── gdalalg_vector_partition.h │ │ │ ├── gdalalg_vector_pipeline.cpp │ │ │ ├── gdalalg_vector_pipeline.h │ │ │ ├── gdalalg_vector_rasterize.cpp │ │ │ ├── gdalalg_vector_rasterize.h │ │ │ ├── gdalalg_vector_read.cpp │ │ │ ├── gdalalg_vector_read.h │ │ │ ├── gdalalg_vector_reproject.cpp │ │ │ ├── gdalalg_vector_reproject.h │ │ │ ├── gdalalg_vector_segmentize.cpp │ │ │ ├── gdalalg_vector_segmentize.h │ │ │ ├── gdalalg_vector_select.cpp │ │ │ ├── gdalalg_vector_select.h │ │ │ ├── gdalalg_vector_set_field_type.cpp │ │ │ ├── gdalalg_vector_set_field_type.h │ │ │ ├── gdalalg_vector_set_geom_type.cpp │ │ │ ├── gdalalg_vector_set_geom_type.h │ │ │ ├── gdalalg_vector_simplify.cpp │ │ │ ├── gdalalg_vector_simplify.h │ │ │ ├── gdalalg_vector_simplify_coverage.cpp │ │ │ ├── gdalalg_vector_simplify_coverage.h │ │ │ ├── gdalalg_vector_sql.cpp │ │ │ ├── gdalalg_vector_sql.h │ │ │ ├── gdalalg_vector_swap_xy.cpp │ │ │ ├── gdalalg_vector_swap_xy.h │ │ │ ├── gdalalg_vector_write.cpp │ │ │ ├── gdalalg_vector_write.h │ │ │ ├── gdalalg_vsi.cpp │ │ │ ├── gdalalg_vsi_copy.cpp │ │ │ ├── gdalalg_vsi_copy.h │ │ │ ├── gdalalg_vsi_delete.cpp │ │ │ ├── gdalalg_vsi_delete.h │ │ │ ├── gdalalg_vsi_list.cpp │ │ │ ├── gdalalg_vsi_list.h │ │ │ ├── gdalalg_vsi_move.cpp │ │ │ ├── gdalalg_vsi_move.h │ │ │ ├── gdalalg_vsi_sozip.cpp │ │ │ ├── gdalalg_vsi_sozip.h │ │ │ ├── gdalalg_vsi_sync.cpp │ │ │ ├── gdalalg_vsi_sync.h │ │ │ ├── gdalargumentparser.cpp │ │ │ ├── gdalargumentparser.h │ │ │ ├── gdalasyncread.cpp │ │ │ ├── gdalbuildvrt_bin.cpp │ │ │ ├── gdalbuildvrt_lib.cpp │ │ │ ├── gdaldem_bin.cpp │ │ │ ├── gdaldem_lib.cpp │ │ │ ├── gdalenhance.cpp │ │ │ ├── gdalflattenmask.c │ │ │ ├── gdalgetgdalpath.cpp │ │ │ ├── gdalgetgdalpath.h │ │ │ ├── gdalinfo_bin.cpp │ │ │ ├── gdalinfo_lib.cpp │ │ │ ├── gdallocationinfo.cpp │ │ │ ├── gdalmanage.cpp │ │ │ ├── gdalmdiminfo_bin.cpp │ │ │ ├── gdalmdiminfo_lib.cpp │ │ │ ├── gdalmdimtranslate_bin.cpp │ │ │ ├── gdalmdimtranslate_lib.cpp │ │ │ ├── gdalsrsinfo.cpp │ │ │ ├── gdaltindex_bin.cpp │ │ │ ├── gdaltindex_lib.cpp │ │ │ ├── gdaltorture.cpp │ │ │ ├── gdaltransform.cpp │ │ │ ├── gdalwarp_bin.cpp │ │ │ ├── gdalwarp_lib.cpp │ │ │ ├── gnmanalyse.cpp │ │ │ ├── gnmmanage.cpp │ │ │ ├── longpathaware.manifest │ │ │ ├── multireadtest.cpp │ │ │ ├── nearblack_bin.cpp │ │ │ ├── nearblack_lib.cpp │ │ │ ├── nearblack_lib.h │ │ │ ├── nearblack_lib_floodfill.cpp │ │ │ ├── ogr2ogr_bin.cpp │ │ │ ├── ogr2ogr_lib.cpp │ │ │ ├── ogrinfo_bin.cpp │ │ │ ├── ogrinfo_lib.cpp │ │ │ ├── ogrlineref.cpp │ │ │ ├── ogrtindex.cpp │ │ │ ├── sozip.cpp │ │ │ ├── test_ogrsf.cpp │ │ │ └── testreprojmulti.cpp │ │ ├── cmake │ │ │ ├── helpers │ │ │ │ ├── CheckCompilerMachineOption.cmake │ │ │ │ ├── CheckCompilerSIMDFeature.cmake │ │ │ │ ├── CheckDependentLibraries.cmake │ │ │ │ ├── CheckDependentLibrariesAVIF.cmake │ │ │ │ ├── CheckDependentLibrariesArrowParquet.cmake │ │ │ │ ├── CheckDependentLibrariesCommon.cmake │ │ │ │ ├── CheckDependentLibrariesECW.cmake │ │ │ │ ├── CheckDependentLibrariesGeoTIFF.cmake │ │ │ │ ├── CheckDependentLibrariesJpeg.cmake │ │ │ │ ├── CheckDependentLibrariesKakadu.cmake │ │ │ │ ├── CheckDependentLibrariesMrSID.cmake │ │ │ │ ├── CheckDependentLibrariesOpenJPEG.cmake │ │ │ │ ├── CheckDependentLibrariesOracle.cmake │ │ │ │ ├── CheckDependentLibrariesTileDB.cmake │ │ │ │ ├── CheckDependentLibrariesZLIB.cmake │ │ │ │ ├── GdalCAndCXXStandards.cmake │ │ │ │ ├── GdalCMakeMinimumRequired.cmake │ │ │ │ ├── GdalCompilationFlags.cmake │ │ │ │ ├── GdalDriverHelper.cmake │ │ │ │ ├── GdalGenerateConfig.cmake │ │ │ │ ├── GdalSetRuntimeEnv.cmake │ │ │ │ ├── GdalStandardIncludes.cmake │ │ │ │ ├── GdalSwigBindings.cmake │ │ │ │ ├── GdalTestTarget.cmake │ │ │ │ ├── GdalVersion.cmake │ │ │ │ ├── SetupStandalonePlugin.cmake │ │ │ │ ├── TargetPublicHeader.cmake │ │ │ │ ├── check_md5sum.cmake │ │ │ │ ├── configure.cmake │ │ │ │ └── generate_gdal_version_h.cmake │ │ │ └── modules │ │ │ │ ├── 3.20 │ │ │ │ ├── FindLibLZMA.cmake │ │ │ │ └── FindPostgreSQL.cmake │ │ │ │ ├── CMakeCheckCompilerFlagCommonPatterns.cmake │ │ │ │ ├── Ccache.cmake │ │ │ │ ├── CheckCCompilerFlag.cmake │ │ │ │ ├── CheckCXXCompilerFlag.cmake │ │ │ │ ├── CheckLinkerFlag.cmake │ │ │ │ ├── Copyright.txt │ │ │ │ ├── DefineFindPackage2.cmake │ │ │ │ ├── GdalFindModulePath.cmake │ │ │ │ ├── init.cmake │ │ │ │ ├── packages │ │ │ │ ├── FindBRUNSLI.cmake │ │ │ │ ├── FindBlosc.cmake │ │ │ │ ├── FindCURL.cmake │ │ │ │ ├── FindCryptoPP.cmake │ │ │ │ ├── FindDeflate.cmake │ │ │ │ ├── FindECW.cmake │ │ │ │ ├── FindEXPAT.cmake │ │ │ │ ├── FindExprTk.cmake │ │ │ │ ├── FindFYBA.cmake │ │ │ │ ├── FindFileGDB.cmake │ │ │ │ ├── FindFreeXL.cmake │ │ │ │ ├── FindGEOS.cmake │ │ │ │ ├── FindGIF.cmake │ │ │ │ ├── FindGeoTIFF.cmake │ │ │ │ ├── FindHDF4.cmake │ │ │ │ ├── FindHDFS.cmake │ │ │ │ ├── FindIDB.cmake │ │ │ │ ├── FindIconv.cmake │ │ │ │ ├── FindJSONC.cmake │ │ │ │ ├── FindKDU.cmake │ │ │ │ ├── FindLERC.cmake │ │ │ │ ├── FindLZ4.cmake │ │ │ │ ├── FindLibKML.cmake │ │ │ │ ├── FindMONGOCXX.cmake │ │ │ │ ├── FindMRSID.cmake │ │ │ │ ├── FindMSSQL_NCLI.cmake │ │ │ │ ├── FindMSSQL_ODBC.cmake │ │ │ │ ├── FindMySQL.cmake │ │ │ │ ├── FindNetCDF.cmake │ │ │ │ ├── FindODBC.cmake │ │ │ │ ├── FindODBCCPP.cmake │ │ │ │ ├── FindOpenCAD.cmake │ │ │ │ ├── FindOpenEXR.cmake │ │ │ │ ├── FindOpenJPEG.cmake │ │ │ │ ├── FindOracle.cmake │ │ │ │ ├── FindPCRE.cmake │ │ │ │ ├── FindPCRE2.cmake │ │ │ │ ├── FindPROJ.cmake │ │ │ │ ├── FindPodofo.cmake │ │ │ │ ├── FindPoppler.cmake │ │ │ │ ├── FindQHULL.cmake │ │ │ │ ├── FindRASTERLITE2.cmake │ │ │ │ ├── FindSFCGAL.cmake │ │ │ │ ├── FindSPATIALITE.cmake │ │ │ │ ├── FindSQLite3.cmake │ │ │ │ ├── FindShapelib.cmake │ │ │ │ ├── FindSpatialindex.cmake │ │ │ │ ├── FindTEIGHA.cmake │ │ │ │ ├── FindWebP.cmake │ │ │ │ ├── FindZSTD.cmake │ │ │ │ └── Findmuparser.cmake │ │ │ │ └── thirdparty │ │ │ │ ├── FindCSharp.cmake │ │ │ │ ├── FindDotnet.cmake │ │ │ │ ├── FindInt128.cmake │ │ │ │ ├── FindMono.cmake │ │ │ │ ├── GetGitHeadDate.cmake │ │ │ │ ├── GetGitRevisionDescription.cmake │ │ │ │ ├── OSXInstallDirs.cmake │ │ │ │ └── SystemSummary.cmake │ │ ├── data │ │ │ ├── GDALLogoBW.svg │ │ │ ├── GDALLogoColor.svg │ │ │ ├── GDALLogoGS.svg │ │ │ └── gdalicon.png │ │ ├── doxygen_index.md │ │ ├── frmts │ │ │ ├── CMakeLists.txt │ │ │ ├── aaigrid │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aaigriddataset.cpp │ │ │ │ └── aaigriddataset.h │ │ │ ├── adrg │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── adrgdataset.cpp │ │ │ │ └── srpdataset.cpp │ │ │ ├── aigrid │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aigccitt.c │ │ │ │ ├── aigdataset.cpp │ │ │ │ ├── aigopen.c │ │ │ │ ├── aigrid.h │ │ │ │ ├── aitest.c │ │ │ │ └── gridlib.c │ │ │ ├── airsar │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── airsardataset.cpp │ │ │ ├── avif │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── avifdataset.cpp │ │ │ │ ├── avifdrivercore.cpp │ │ │ │ ├── avifdrivercore.h │ │ │ │ └── driver_declaration.cmake │ │ │ ├── basisu_ktx2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── basisudataset.cpp │ │ │ │ ├── basisudrivercore.cpp │ │ │ │ ├── basisudrivercore.h │ │ │ │ ├── common.cpp │ │ │ │ ├── common.h │ │ │ │ ├── commoncore.cpp │ │ │ │ ├── commoncore.h │ │ │ │ ├── include_basisu_sdk.h │ │ │ │ ├── ktx2dataset.cpp │ │ │ │ ├── ktx2drivercore.cpp │ │ │ │ └── ktx2drivercore.h │ │ │ ├── bmp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── bmpdataset.cpp │ │ │ ├── bsb │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bsb2raw.c │ │ │ │ ├── bsb_read.c │ │ │ │ ├── bsb_read.h │ │ │ │ └── bsbdataset.cpp │ │ │ ├── cals │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── calsdataset.cpp │ │ │ ├── ceos │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ceosdataset.cpp │ │ │ │ ├── ceosopen.c │ │ │ │ ├── ceosopen.h │ │ │ │ └── ceostest.c │ │ │ ├── ceos2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ceos.c │ │ │ │ ├── ceos.h │ │ │ │ ├── ceosrecipe.c │ │ │ │ ├── ceossar.c │ │ │ │ ├── link.c │ │ │ │ └── sar_ceosdataset.cpp │ │ │ ├── coasp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── coasp_dataset.cpp │ │ │ ├── cosar │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── cosar_dataset.cpp │ │ │ ├── ctg │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ctgdataset.cpp │ │ │ ├── daas │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── daasdataset.cpp │ │ │ ├── dds │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crunch_headers.h │ │ │ │ ├── ddsdataset.cpp │ │ │ │ ├── ddsdrivercore.cpp │ │ │ │ └── ddsdrivercore.h │ │ │ ├── derived │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── deriveddataset.cpp │ │ │ │ ├── derivedlist.c │ │ │ │ └── derivedlist.h │ │ │ ├── dimap │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── dimapdataset.cpp │ │ │ ├── drivers.ini │ │ │ ├── dted │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dted_api.c │ │ │ │ ├── dted_api.h │ │ │ │ ├── dted_create.c │ │ │ │ ├── dted_ptstream.c │ │ │ │ ├── dted_test.c │ │ │ │ └── dteddataset.cpp │ │ │ ├── ecw │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── driver_declaration.cmake │ │ │ │ ├── ecwasyncreader.cpp │ │ │ │ ├── ecwcreatecopy.cpp │ │ │ │ ├── ecwdataset.cpp │ │ │ │ ├── ecwdrivercore.cpp │ │ │ │ ├── ecwdrivercore.h │ │ │ │ ├── ecwsdk_headers.h │ │ │ │ ├── gdal_ecw.h │ │ │ │ ├── jp2userbox.cpp │ │ │ │ └── lookup.py │ │ │ ├── eeda │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ └── eedaconf.json │ │ │ │ ├── eeda.h │ │ │ │ ├── eedacommon.cpp │ │ │ │ ├── eedadataset.cpp │ │ │ │ └── eedaidataset.cpp │ │ │ ├── envisat │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EnvisatFile.c │ │ │ │ ├── EnvisatFile.h │ │ │ │ ├── adsrange.cpp │ │ │ │ ├── adsrange.hpp │ │ │ │ ├── dumpgeo.c │ │ │ │ ├── envisat_dump.c │ │ │ │ ├── envisatdataset.cpp │ │ │ │ ├── records.c │ │ │ │ ├── records.h │ │ │ │ ├── timedelta.hpp │ │ │ │ └── unwrapgcps.cpp │ │ │ ├── ers │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ersdataset.cpp │ │ │ │ ├── ershdrnode.cpp │ │ │ │ └── ershdrnode.h │ │ │ ├── esric │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── esric_dataset.cpp │ │ │ ├── exr │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── exrdataset.cpp │ │ │ │ ├── exrdrivercore.cpp │ │ │ │ ├── exrdrivercore.h │ │ │ │ └── openexr_headers.h │ │ │ ├── fits │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── fitsdataset.cpp │ │ │ │ ├── fitsdrivercore.cpp │ │ │ │ └── fitsdrivercore.h │ │ │ ├── gdalallregister.cpp │ │ │ ├── gdalg │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ └── gdalg.schema.json │ │ │ │ └── gdalgdriver.cpp │ │ │ ├── georaster │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cpl_vsil_ocilob.cpp │ │ │ │ ├── driver_declaration.cmake │ │ │ │ ├── georaster_dataset.cpp │ │ │ │ ├── georaster_jpeg_vsidataio.cpp │ │ │ │ ├── georaster_jpeg_vsidataio.h │ │ │ │ ├── georaster_priv.h │ │ │ │ ├── georaster_rasterband.cpp │ │ │ │ ├── georaster_wrapper.cpp │ │ │ │ ├── georasterdriver.cpp │ │ │ │ ├── georasterdrivercore.cpp │ │ │ │ ├── georasterdrivercore.h │ │ │ │ ├── oci_wrapper.cpp │ │ │ │ └── oci_wrapper.h │ │ │ ├── gff │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── gff_dataset.cpp │ │ │ ├── gif │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── biggifdataset.cpp │ │ │ │ ├── gifabstractdataset.cpp │ │ │ │ ├── gifabstractdataset.h │ │ │ │ ├── gifdataset.cpp │ │ │ │ ├── gifdrivercore.cpp │ │ │ │ ├── gifdrivercore.h │ │ │ │ └── giflib │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── dgif_lib.c │ │ │ │ │ ├── egif_lib.c │ │ │ │ │ ├── gdal_giflib_symbol_rename.h │ │ │ │ │ ├── gif_err.c │ │ │ │ │ ├── gif_hash.c │ │ │ │ │ ├── gif_hash.h │ │ │ │ │ ├── gif_lib.h │ │ │ │ │ ├── gif_lib_private.h │ │ │ │ │ └── gifalloc.c │ │ │ ├── grib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── grib2_center.csv │ │ │ │ │ ├── grib2_process.csv │ │ │ │ │ ├── grib2_subcenter.csv │ │ │ │ │ ├── grib2_table_4_2_0_0.csv │ │ │ │ │ ├── grib2_table_4_2_0_1.csv │ │ │ │ │ ├── grib2_table_4_2_0_13.csv │ │ │ │ │ ├── grib2_table_4_2_0_14.csv │ │ │ │ │ ├── grib2_table_4_2_0_15.csv │ │ │ │ │ ├── grib2_table_4_2_0_16.csv │ │ │ │ │ ├── grib2_table_4_2_0_17.csv │ │ │ │ │ ├── grib2_table_4_2_0_18.csv │ │ │ │ │ ├── grib2_table_4_2_0_19.csv │ │ │ │ │ ├── grib2_table_4_2_0_190.csv │ │ │ │ │ ├── grib2_table_4_2_0_191.csv │ │ │ │ │ ├── grib2_table_4_2_0_2.csv │ │ │ │ │ ├── grib2_table_4_2_0_20.csv │ │ │ │ │ ├── grib2_table_4_2_0_21.csv │ │ │ │ │ ├── grib2_table_4_2_0_22.csv │ │ │ │ │ ├── grib2_table_4_2_0_3.csv │ │ │ │ │ ├── grib2_table_4_2_0_4.csv │ │ │ │ │ ├── grib2_table_4_2_0_5.csv │ │ │ │ │ ├── grib2_table_4_2_0_6.csv │ │ │ │ │ ├── grib2_table_4_2_0_7.csv │ │ │ │ │ ├── grib2_table_4_2_10_0.csv │ │ │ │ │ ├── grib2_table_4_2_10_1.csv │ │ │ │ │ ├── grib2_table_4_2_10_191.csv │ │ │ │ │ ├── grib2_table_4_2_10_2.csv │ │ │ │ │ ├── grib2_table_4_2_10_3.csv │ │ │ │ │ ├── grib2_table_4_2_10_4.csv │ │ │ │ │ ├── grib2_table_4_2_1_0.csv │ │ │ │ │ ├── grib2_table_4_2_1_1.csv │ │ │ │ │ ├── grib2_table_4_2_1_2.csv │ │ │ │ │ ├── grib2_table_4_2_20_0.csv │ │ │ │ │ ├── grib2_table_4_2_20_1.csv │ │ │ │ │ ├── grib2_table_4_2_20_2.csv │ │ │ │ │ ├── grib2_table_4_2_20_3.csv │ │ │ │ │ ├── grib2_table_4_2_2_0.csv │ │ │ │ │ ├── grib2_table_4_2_2_3.csv │ │ │ │ │ ├── grib2_table_4_2_2_4.csv │ │ │ │ │ ├── grib2_table_4_2_2_5.csv │ │ │ │ │ ├── grib2_table_4_2_2_6.csv │ │ │ │ │ ├── grib2_table_4_2_2_7.csv │ │ │ │ │ ├── grib2_table_4_2_3_0.csv │ │ │ │ │ ├── grib2_table_4_2_3_1.csv │ │ │ │ │ ├── grib2_table_4_2_3_2.csv │ │ │ │ │ ├── grib2_table_4_2_3_3.csv │ │ │ │ │ ├── grib2_table_4_2_3_4.csv │ │ │ │ │ ├── grib2_table_4_2_3_5.csv │ │ │ │ │ ├── grib2_table_4_2_3_6.csv │ │ │ │ │ ├── grib2_table_4_2_4_0.csv │ │ │ │ │ ├── grib2_table_4_2_4_1.csv │ │ │ │ │ ├── grib2_table_4_2_4_10.csv │ │ │ │ │ ├── grib2_table_4_2_4_2.csv │ │ │ │ │ ├── grib2_table_4_2_4_3.csv │ │ │ │ │ ├── grib2_table_4_2_4_4.csv │ │ │ │ │ ├── grib2_table_4_2_4_5.csv │ │ │ │ │ ├── grib2_table_4_2_4_6.csv │ │ │ │ │ ├── grib2_table_4_2_4_7.csv │ │ │ │ │ ├── grib2_table_4_2_4_8.csv │ │ │ │ │ ├── grib2_table_4_2_4_9.csv │ │ │ │ │ ├── grib2_table_4_2_local_Canada.csv │ │ │ │ │ ├── grib2_table_4_2_local_HPC.csv │ │ │ │ │ ├── grib2_table_4_2_local_MRMS.csv │ │ │ │ │ ├── grib2_table_4_2_local_NCEP.csv │ │ │ │ │ ├── grib2_table_4_2_local_NDFD.csv │ │ │ │ │ ├── grib2_table_4_2_local_index.csv │ │ │ │ │ ├── grib2_table_4_5.csv │ │ │ │ │ └── grib2_table_versions.csv │ │ │ │ ├── degrib │ │ │ │ │ ├── LICENSE.TXT │ │ │ │ │ ├── data │ │ │ │ │ │ ├── grib2_table_4_2_0_0.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_1.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_13.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_14.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_15.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_16.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_17.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_18.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_19.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_190.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_191.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_2.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_20.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_253.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_3.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_4.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_5.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_6.csv │ │ │ │ │ │ ├── grib2_table_4_2_0_7.csv │ │ │ │ │ │ ├── grib2_table_4_2_10_0.csv │ │ │ │ │ │ ├── grib2_table_4_2_10_1.csv │ │ │ │ │ │ ├── grib2_table_4_2_10_191.csv │ │ │ │ │ │ ├── grib2_table_4_2_10_2.csv │ │ │ │ │ │ ├── grib2_table_4_2_10_3.csv │ │ │ │ │ │ ├── grib2_table_4_2_10_4.csv │ │ │ │ │ │ ├── grib2_table_4_2_1_0.csv │ │ │ │ │ │ ├── grib2_table_4_2_1_1.csv │ │ │ │ │ │ ├── grib2_table_4_2_2_0.csv │ │ │ │ │ │ ├── grib2_table_4_2_2_3.csv │ │ │ │ │ │ ├── grib2_table_4_2_3_0.csv │ │ │ │ │ │ ├── grib2_table_4_2_3_1.csv │ │ │ │ │ │ └── grib2_table_4_5.csv │ │ │ │ │ ├── degrib │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── clock.h │ │ │ │ │ │ ├── degrib1.cpp │ │ │ │ │ │ ├── degrib1.h │ │ │ │ │ │ ├── degrib2.cpp │ │ │ │ │ │ ├── degrib2.h │ │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ │ ├── embedded_resources_gen1.c │ │ │ │ │ │ ├── embedded_resources_gen2.c │ │ │ │ │ │ ├── engribapi.c │ │ │ │ │ │ ├── engribapi.h │ │ │ │ │ │ ├── gdal_degrib_symbol_rename.h │ │ │ │ │ │ ├── grib1tab.cpp │ │ │ │ │ │ ├── grib2api.c │ │ │ │ │ │ ├── grib2api.h │ │ │ │ │ │ ├── hazard.c │ │ │ │ │ │ ├── hazard.h │ │ │ │ │ │ ├── inventory.cpp │ │ │ │ │ │ ├── inventory.h │ │ │ │ │ │ ├── meta.h │ │ │ │ │ │ ├── metaname.cpp │ │ │ │ │ │ ├── metaname.h │ │ │ │ │ │ ├── metaparse.cpp │ │ │ │ │ │ ├── metaprint.cpp │ │ │ │ │ │ ├── myassert.c │ │ │ │ │ │ ├── myassert.h │ │ │ │ │ │ ├── myerror.cpp │ │ │ │ │ │ ├── myerror.h │ │ │ │ │ │ ├── myutil.c │ │ │ │ │ │ ├── myutil.h │ │ │ │ │ │ ├── scan.c │ │ │ │ │ │ ├── scan.h │ │ │ │ │ │ ├── tdlpack.cpp │ │ │ │ │ │ ├── tdlpack.h │ │ │ │ │ │ ├── tendian.cpp │ │ │ │ │ │ ├── tendian.h │ │ │ │ │ │ ├── type.h │ │ │ │ │ │ ├── weather.c │ │ │ │ │ │ └── weather.h │ │ │ │ │ └── g2clib │ │ │ │ │ │ ├── aecunpack.c │ │ │ │ │ │ ├── cmplxpack.c │ │ │ │ │ │ ├── compack.c │ │ │ │ │ │ ├── comunpack.c │ │ │ │ │ │ ├── dec_jpeg2000.cpp │ │ │ │ │ │ ├── dec_png.c │ │ │ │ │ │ ├── drstemplates.c │ │ │ │ │ │ ├── drstemplates.h │ │ │ │ │ │ ├── enc_jpeg2000.c │ │ │ │ │ │ ├── enc_png.c │ │ │ │ │ │ ├── g2_addfield.c │ │ │ │ │ │ ├── g2_addgrid.c │ │ │ │ │ │ ├── g2_addlocal.c │ │ │ │ │ │ ├── g2_create.c │ │ │ │ │ │ ├── g2_free.c │ │ │ │ │ │ ├── g2_getfld.c │ │ │ │ │ │ ├── g2_gribend.c │ │ │ │ │ │ ├── g2_info.c │ │ │ │ │ │ ├── g2_miss.c │ │ │ │ │ │ ├── g2_unpack1.c │ │ │ │ │ │ ├── g2_unpack2.c │ │ │ │ │ │ ├── g2_unpack3.c │ │ │ │ │ │ ├── g2_unpack4.c │ │ │ │ │ │ ├── g2_unpack5.c │ │ │ │ │ │ ├── g2_unpack6.c │ │ │ │ │ │ ├── g2_unpack7.c │ │ │ │ │ │ ├── gbits.c │ │ │ │ │ │ ├── gdal_g2clib_symbol_rename.h │ │ │ │ │ │ ├── getdim.c │ │ │ │ │ │ ├── getpoly.c │ │ │ │ │ │ ├── grib2.h │ │ │ │ │ │ ├── grib2c.doc │ │ │ │ │ │ ├── gridtemplates.c │ │ │ │ │ │ ├── gridtemplates.h │ │ │ │ │ │ ├── int_power.c │ │ │ │ │ │ ├── jpcpack.c │ │ │ │ │ │ ├── jpcunpack.c │ │ │ │ │ │ ├── misspack.c │ │ │ │ │ │ ├── mkieee.c │ │ │ │ │ │ ├── pack_gp.c │ │ │ │ │ │ ├── pdstemplates.c │ │ │ │ │ │ ├── pdstemplates.h │ │ │ │ │ │ ├── pngpack.c │ │ │ │ │ │ ├── pngunpack.c │ │ │ │ │ │ ├── rdieee.c │ │ │ │ │ │ ├── reduce.c │ │ │ │ │ │ ├── seekgb.c │ │ │ │ │ │ ├── simpack.c │ │ │ │ │ │ ├── simunpack.c │ │ │ │ │ │ ├── specpack.c │ │ │ │ │ │ └── specunpack.c │ │ │ │ ├── gribcreatecopy.cpp │ │ │ │ ├── gribdataset.cpp │ │ │ │ ├── gribdataset.h │ │ │ │ ├── gribdrivercore.cpp │ │ │ │ └── gribdrivercore.h │ │ │ ├── gsg │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gs7bgdataset.cpp │ │ │ │ ├── gsagdataset.cpp │ │ │ │ └── gsbgdataset.cpp │ │ │ ├── gta │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gta_headers.h │ │ │ │ ├── gtadataset.cpp │ │ │ │ ├── gtadrivercore.cpp │ │ │ │ └── gtadrivercore.h │ │ │ ├── gti │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ └── gdaltileindex.xsd │ │ │ │ └── gdaltileindexdataset.cpp │ │ │ ├── gtiff │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cogdriver.cpp │ │ │ │ ├── cogdriver.h │ │ │ │ ├── fetchbufferdirectio.h │ │ │ │ ├── generate_quant_table_md5sum.cpp │ │ │ │ ├── geotiff.cpp │ │ │ │ ├── gt_citation.cpp │ │ │ │ ├── gt_citation.h │ │ │ │ ├── gt_jpeg_copy.cpp │ │ │ │ ├── gt_jpeg_copy.h │ │ │ │ ├── gt_overview.cpp │ │ │ │ ├── gt_overview.h │ │ │ │ ├── gt_wkt_srs.cpp │ │ │ │ ├── gt_wkt_srs.h │ │ │ │ ├── gt_wkt_srs_for_gdal.h │ │ │ │ ├── gt_wkt_srs_priv.h │ │ │ │ ├── gtiff.h │ │ │ │ ├── gtiffbitmapband.cpp │ │ │ │ ├── gtiffbitmapband.h │ │ │ │ ├── gtiffdataset.cpp │ │ │ │ ├── gtiffdataset.h │ │ │ │ ├── gtiffdataset_read.cpp │ │ │ │ ├── gtiffdataset_write.cpp │ │ │ │ ├── gtiffjpegoverviewds.cpp │ │ │ │ ├── gtiffjpegoverviewds.h │ │ │ │ ├── gtiffoddbitsband.cpp │ │ │ │ ├── gtiffoddbitsband.h │ │ │ │ ├── gtiffrasterband.cpp │ │ │ │ ├── gtiffrasterband.h │ │ │ │ ├── gtiffrasterband_read.cpp │ │ │ │ ├── gtiffrasterband_write.cpp │ │ │ │ ├── gtiffrgbaband.cpp │ │ │ │ ├── gtiffrgbaband.h │ │ │ │ ├── gtiffsplitband.cpp │ │ │ │ ├── gtiffsplitband.h │ │ │ │ ├── gtiffsplitbitmapband.cpp │ │ │ │ ├── gtiffsplitbitmapband.h │ │ │ │ ├── libgeotiff │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── cpl_serv.h │ │ │ │ │ ├── dump_symbols.sh │ │ │ │ │ ├── epsg_datum.inc │ │ │ │ │ ├── epsg_ellipse.inc │ │ │ │ │ ├── epsg_gcs.inc │ │ │ │ │ ├── epsg_pcs.inc │ │ │ │ │ ├── epsg_pm.inc │ │ │ │ │ ├── epsg_proj.inc │ │ │ │ │ ├── epsg_units.inc │ │ │ │ │ ├── epsg_vertcs.inc │ │ │ │ │ ├── gdal_libgeotiff_symbol_rename.h │ │ │ │ │ ├── geo_config.h │ │ │ │ │ ├── geo_ctrans.inc │ │ │ │ │ ├── geo_extra.c │ │ │ │ │ ├── geo_free.c │ │ │ │ │ ├── geo_get.c │ │ │ │ │ ├── geo_keyp.h │ │ │ │ │ ├── geo_names.c │ │ │ │ │ ├── geo_new.c │ │ │ │ │ ├── geo_normalize.c │ │ │ │ │ ├── geo_normalize.h │ │ │ │ │ ├── geo_print.c │ │ │ │ │ ├── geo_set.c │ │ │ │ │ ├── geo_simpletags.c │ │ │ │ │ ├── geo_simpletags.h │ │ │ │ │ ├── geo_tiffp.c │ │ │ │ │ ├── geo_tiffp.h │ │ │ │ │ ├── geo_trans.c │ │ │ │ │ ├── geo_write.c │ │ │ │ │ ├── geokeys.h │ │ │ │ │ ├── geokeys.inc │ │ │ │ │ ├── geokeys_v1_1.inc │ │ │ │ │ ├── geonames.h │ │ │ │ │ ├── geotiff.h │ │ │ │ │ ├── geotiff_proj4.c │ │ │ │ │ ├── geotiffio.h │ │ │ │ │ ├── geovalues.h │ │ │ │ │ ├── xtiff.c │ │ │ │ │ └── xtiffio.h │ │ │ │ ├── libtiff │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── dump_symbols.sh │ │ │ │ │ ├── gdal_libtiff_symbol_rename.h │ │ │ │ │ ├── t4.h │ │ │ │ │ ├── tif_aux.c │ │ │ │ │ ├── tif_close.c │ │ │ │ │ ├── tif_codec.c │ │ │ │ │ ├── tif_color.c │ │ │ │ │ ├── tif_compress.c │ │ │ │ │ ├── tif_config.h │ │ │ │ │ ├── tif_dir.c │ │ │ │ │ ├── tif_dir.h │ │ │ │ │ ├── tif_dirinfo.c │ │ │ │ │ ├── tif_dirread.c │ │ │ │ │ ├── tif_dirwrite.c │ │ │ │ │ ├── tif_dumpmode.c │ │ │ │ │ ├── tif_error.c │ │ │ │ │ ├── tif_extension.c │ │ │ │ │ ├── tif_fax3.c │ │ │ │ │ ├── tif_fax3.h │ │ │ │ │ ├── tif_fax3sm.c │ │ │ │ │ ├── tif_flush.c │ │ │ │ │ ├── tif_getimage.c │ │ │ │ │ ├── tif_hash_set.c │ │ │ │ │ ├── tif_hash_set.h │ │ │ │ │ ├── tif_jpeg.c │ │ │ │ │ ├── tif_jpeg_12.c │ │ │ │ │ ├── tif_lerc.c │ │ │ │ │ ├── tif_luv.c │ │ │ │ │ ├── tif_lzma.c │ │ │ │ │ ├── tif_lzw.c │ │ │ │ │ ├── tif_next.c │ │ │ │ │ ├── tif_ojpeg.c │ │ │ │ │ ├── tif_open.c │ │ │ │ │ ├── tif_packbits.c │ │ │ │ │ ├── tif_pixarlog.c │ │ │ │ │ ├── tif_predict.c │ │ │ │ │ ├── tif_predict.h │ │ │ │ │ ├── tif_print.c │ │ │ │ │ ├── tif_read.c │ │ │ │ │ ├── tif_strip.c │ │ │ │ │ ├── tif_swab.c │ │ │ │ │ ├── tif_thunder.c │ │ │ │ │ ├── tif_tile.c │ │ │ │ │ ├── tif_version.c │ │ │ │ │ ├── tif_vsi.c │ │ │ │ │ ├── tif_warning.c │ │ │ │ │ ├── tif_webp.c │ │ │ │ │ ├── tif_write.c │ │ │ │ │ ├── tif_zip.c │ │ │ │ │ ├── tif_zstd.c │ │ │ │ │ ├── tiff.h │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ ├── tiffio.h │ │ │ │ │ ├── tiffiop.h │ │ │ │ │ ├── tiffvers.h │ │ │ │ │ └── uvcode.h │ │ │ │ ├── quant_table_md5sum.h │ │ │ │ ├── quant_table_md5sum_jpeg9e.h │ │ │ │ ├── tif_jxl.c │ │ │ │ ├── tif_jxl.h │ │ │ │ ├── tifvsi.cpp │ │ │ │ └── tifvsi.h │ │ │ ├── gxf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── configure.in │ │ │ │ ├── gxf.dox │ │ │ │ ├── gxf_ogcwkt.c │ │ │ │ ├── gxf_proj4.c │ │ │ │ ├── gxfdataset.cpp │ │ │ │ ├── gxfopen.c │ │ │ │ └── gxfopen.h │ │ │ ├── hdf4 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── hdf-eos │ │ │ │ │ ├── EHapi.c │ │ │ │ │ ├── GDapi.c │ │ │ │ │ ├── HDFEOSVersion.h │ │ │ │ │ ├── HdfEosDef.h │ │ │ │ │ ├── SWapi.c │ │ │ │ │ ├── ease.h │ │ │ │ │ └── gctp_wrap.c │ │ │ │ ├── hdf4compat.h │ │ │ │ ├── hdf4dataset.cpp │ │ │ │ ├── hdf4dataset.h │ │ │ │ ├── hdf4drivercore.cpp │ │ │ │ ├── hdf4drivercore.h │ │ │ │ ├── hdf4imagedataset.cpp │ │ │ │ └── hdf4multidim.cpp │ │ │ ├── hdf5 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bagdataset.cpp │ │ │ │ ├── data │ │ │ │ │ └── bag_template.xml │ │ │ │ ├── embedded_resources.c │ │ │ │ ├── embedded_resources.h │ │ │ │ ├── gh5_convenience.cpp │ │ │ │ ├── gh5_convenience.h │ │ │ │ ├── hdf5_api.h │ │ │ │ ├── hdf5dataset.cpp │ │ │ │ ├── hdf5dataset.h │ │ │ │ ├── hdf5drivercore.cpp │ │ │ │ ├── hdf5drivercore.h │ │ │ │ ├── hdf5eosparser.cpp │ │ │ │ ├── hdf5eosparser.h │ │ │ │ ├── hdf5imagedataset.cpp │ │ │ │ ├── hdf5multidim.cpp │ │ │ │ ├── hdf5vfl.h │ │ │ │ ├── iso19115_srs.cpp │ │ │ │ ├── iso19115_srs.h │ │ │ │ ├── rat.cpp │ │ │ │ ├── rat.h │ │ │ │ ├── s100.cpp │ │ │ │ ├── s100.h │ │ │ │ ├── s102dataset.cpp │ │ │ │ ├── s104dataset.cpp │ │ │ │ └── s111dataset.cpp │ │ │ ├── heif │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── heifdataset.cpp │ │ │ │ ├── heifdataset.h │ │ │ │ ├── heifdatasetcreatecopy.cpp │ │ │ │ ├── heifdrivercore.cpp │ │ │ │ ├── heifdrivercore.h │ │ │ │ └── include_libheif.h │ │ │ ├── hf2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── hf2dataset.cpp │ │ │ ├── hfa │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TODO_Projections.txt │ │ │ │ ├── hfa.h │ │ │ │ ├── hfa_overviews.cpp │ │ │ │ ├── hfa_p.h │ │ │ │ ├── hfaband.cpp │ │ │ │ ├── hfacompress.cpp │ │ │ │ ├── hfadataset.cpp │ │ │ │ ├── hfadataset.h │ │ │ │ ├── hfadictionary.cpp │ │ │ │ ├── hfaentry.cpp │ │ │ │ ├── hfafield.cpp │ │ │ │ ├── hfaopen.cpp │ │ │ │ ├── hfatest.cpp │ │ │ │ └── hfatype.cpp │ │ │ ├── http │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── httpdriver.cpp │ │ │ ├── idrisi │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── IdrisiDataset.cpp │ │ │ │ ├── idrisi.h │ │ │ │ ├── rdc.txt │ │ │ │ └── rst.txt │ │ │ ├── ilwis │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ilwiscoordinatesystem.cpp │ │ │ │ ├── ilwisdataset.cpp │ │ │ │ └── ilwisdataset.h │ │ │ ├── iris │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── irisdataset.cpp │ │ │ ├── iso8211 │ │ │ │ ├── 8211createfromxml.cpp │ │ │ │ ├── 8211dump.cpp │ │ │ │ ├── 8211view.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── configure.in │ │ │ │ ├── ddffield.cpp │ │ │ │ ├── ddffielddefn.cpp │ │ │ │ ├── ddfmodule.cpp │ │ │ │ ├── ddfrecord.cpp │ │ │ │ ├── ddfsubfielddefn.cpp │ │ │ │ ├── ddfutils.cpp │ │ │ │ ├── intro.dox │ │ │ │ ├── iso8211.h │ │ │ │ ├── mkcatalog.cpp │ │ │ │ ├── teststream.out │ │ │ │ ├── teststream.sh │ │ │ │ └── timetest.cpp │ │ │ ├── jaxapalsar │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── jaxapalsardataset.cpp │ │ │ ├── jdem │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── jdemdataset.cpp │ │ │ ├── jp2kak │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── driver_declaration.cmake │ │ │ │ ├── jp2kak.lst │ │ │ │ ├── jp2kak_headers.h │ │ │ │ ├── jp2kakdataset.cpp │ │ │ │ ├── jp2kakdataset.h │ │ │ │ ├── jp2kakdrivercore.cpp │ │ │ │ ├── jp2kakdrivercore.h │ │ │ │ ├── subfile_source.h │ │ │ │ └── vsil_target.h │ │ │ ├── jpeg │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── jpegdrivercore.cpp │ │ │ │ ├── jpegdrivercore.h │ │ │ │ ├── jpgdataset.cpp │ │ │ │ ├── jpgdataset.h │ │ │ │ ├── jpgdataset_12.cpp │ │ │ │ ├── libjpeg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── jcapimin.c │ │ │ │ │ ├── jcapistd.c │ │ │ │ │ ├── jccoefct.c │ │ │ │ │ ├── jccolor.c │ │ │ │ │ ├── jcdctmgr.c │ │ │ │ │ ├── jchuff.c │ │ │ │ │ ├── jchuff.h │ │ │ │ │ ├── jcinit.c │ │ │ │ │ ├── jcmainct.c │ │ │ │ │ ├── jcmarker.c │ │ │ │ │ ├── jcmaster.c │ │ │ │ │ ├── jcomapi.c │ │ │ │ │ ├── jconfig.h │ │ │ │ │ ├── jcparam.c │ │ │ │ │ ├── jcphuff.c │ │ │ │ │ ├── jcprepct.c │ │ │ │ │ ├── jcsample.c │ │ │ │ │ ├── jctrans.c │ │ │ │ │ ├── jdapimin.c │ │ │ │ │ ├── jdapistd.c │ │ │ │ │ ├── jdatadst.c │ │ │ │ │ ├── jdatasrc.c │ │ │ │ │ ├── jdcoefct.c │ │ │ │ │ ├── jdcolor.c │ │ │ │ │ ├── jdct.h │ │ │ │ │ ├── jddctmgr.c │ │ │ │ │ ├── jdhuff.c │ │ │ │ │ ├── jdhuff.h │ │ │ │ │ ├── jdinput.c │ │ │ │ │ ├── jdmainct.c │ │ │ │ │ ├── jdmarker.c │ │ │ │ │ ├── jdmaster.c │ │ │ │ │ ├── jdmerge.c │ │ │ │ │ ├── jdphuff.c │ │ │ │ │ ├── jdpostct.c │ │ │ │ │ ├── jdsample.c │ │ │ │ │ ├── jdtrans.c │ │ │ │ │ ├── jerror.c │ │ │ │ │ ├── jerror.h │ │ │ │ │ ├── jfdctflt.c │ │ │ │ │ ├── jfdctfst.c │ │ │ │ │ ├── jfdctint.c │ │ │ │ │ ├── jidctflt.c │ │ │ │ │ ├── jidctfst.c │ │ │ │ │ ├── jidctint.c │ │ │ │ │ ├── jidctred.c │ │ │ │ │ ├── jinclude.h │ │ │ │ │ ├── jmemmgr.c │ │ │ │ │ ├── jmemnobs.c │ │ │ │ │ ├── jmemsys.h │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ ├── jpegint.h │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ ├── jquant1.c │ │ │ │ │ ├── jquant2.c │ │ │ │ │ ├── jstdhuff.c │ │ │ │ │ ├── jutils.c │ │ │ │ │ └── jversion.h │ │ │ │ ├── libjpeg12 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── jmorecfg.h.12 │ │ │ │ ├── vsidataio.cpp │ │ │ │ ├── vsidataio.h │ │ │ │ └── vsidataio_12.cpp │ │ │ ├── jpegxl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── jpegxl.cpp │ │ │ │ ├── jpegxldrivercore.cpp │ │ │ │ ├── jpegxldrivercore.h │ │ │ │ └── jxl_headers.h │ │ │ ├── jpipkak │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── components.PNG │ │ │ │ ├── gdalsequence.PNG │ │ │ │ ├── jpipkak_headers.h │ │ │ │ ├── jpipkakdataset.cpp │ │ │ │ ├── jpipkakdataset.h │ │ │ │ ├── jpipkakdrivercore.cpp │ │ │ │ ├── jpipkakdrivercore.h │ │ │ │ └── jpipsequence.PNG │ │ │ ├── kea │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── keaband.cpp │ │ │ │ ├── keaband.h │ │ │ │ ├── keacopy.cpp │ │ │ │ ├── keacopy.h │ │ │ │ ├── keadataset.cpp │ │ │ │ ├── keadataset.h │ │ │ │ ├── keadriver.cpp │ │ │ │ ├── keadrivercore.cpp │ │ │ │ ├── keadrivercore.h │ │ │ │ ├── keamaskband.cpp │ │ │ │ ├── keamaskband.h │ │ │ │ ├── keaoverview.cpp │ │ │ │ ├── keaoverview.h │ │ │ │ ├── kearat.cpp │ │ │ │ ├── kearat.h │ │ │ │ └── libkea_headers.h │ │ │ ├── kmlsuperoverlay │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── kmlsuperoverlaydataset.cpp │ │ │ │ └── kmlsuperoverlaydataset.h │ │ │ ├── l1b │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── l1bdataset.cpp │ │ │ ├── leveller │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── levellerdataset.cpp │ │ │ ├── libertiff │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── libertiffdataset.cpp │ │ │ │ └── libtiff_codecs.h │ │ │ ├── map │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── mapdataset.cpp │ │ │ ├── mbtiles │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── mbtilesdataset.cpp │ │ │ ├── mem │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── memdataset.cpp │ │ │ │ ├── memdataset.h │ │ │ │ ├── memmultidim.h │ │ │ │ └── ogrmemlayer.cpp │ │ │ ├── miramon │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── miramon_band.cpp │ │ │ │ ├── miramon_band.h │ │ │ │ ├── miramon_dataset.cpp │ │ │ │ ├── miramon_dataset.h │ │ │ │ ├── miramon_palettes.cpp │ │ │ │ ├── miramon_palettes.h │ │ │ │ ├── miramon_rasterband.cpp │ │ │ │ ├── miramon_rasterband.h │ │ │ │ ├── miramon_rel.cpp │ │ │ │ └── miramon_rel.h │ │ │ ├── miramon_common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── mm_constants.h │ │ │ │ ├── mm_gdal_constants.h │ │ │ │ ├── mm_gdal_driver_structs.h │ │ │ │ ├── mm_gdal_functions.c │ │ │ │ ├── mm_gdal_functions.h │ │ │ │ └── mm_gdal_structures.h │ │ │ ├── mrf │ │ │ │ ├── BitMask2D.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JPEG12_band.cpp │ │ │ │ ├── JPEG_band.cpp │ │ │ │ ├── JPNG_band.cpp │ │ │ │ ├── LERCV1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE.TXT │ │ │ │ │ ├── Lerc1Image.cpp │ │ │ │ │ ├── Lerc1Image.h │ │ │ │ │ └── NOTICE │ │ │ │ ├── LERC_band.cpp │ │ │ │ ├── PNG_band.cpp │ │ │ │ ├── Packer.h │ │ │ │ ├── Packer_RLE.cpp │ │ │ │ ├── Packer_RLE.h │ │ │ │ ├── QB3_band.cpp │ │ │ │ ├── Tif_band.cpp │ │ │ │ ├── marfa.h │ │ │ │ ├── marfa_dataset.cpp │ │ │ │ ├── mrf_band.cpp │ │ │ │ ├── mrf_overview.cpp │ │ │ │ ├── mrf_util.cpp │ │ │ │ ├── mrfdrivercore.cpp │ │ │ │ └── mrfdrivercore.h │ │ │ ├── mrsid │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── driver_declaration.cmake │ │ │ │ ├── mrsiddataset.cpp │ │ │ │ ├── mrsiddataset_headers_include.h │ │ │ │ ├── mrsiddrivercore.cpp │ │ │ │ ├── mrsiddrivercore.h │ │ │ │ ├── mrsidstream.cpp │ │ │ │ ├── mrsidstream.h │ │ │ │ └── mrsidstream_headers_include.h │ │ │ ├── msg │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PublicDecompWT_all.cpp │ │ │ │ ├── PublicDecompWT_headers.h │ │ │ │ ├── generate_PublicDecompWT_all.h.cmake │ │ │ │ ├── msgcommand.cpp │ │ │ │ ├── msgcommand.h │ │ │ │ ├── msgdataset.cpp │ │ │ │ ├── msgdataset.h │ │ │ │ ├── msgdrivercore.cpp │ │ │ │ ├── msgdrivercore.h │ │ │ │ ├── prologue.cpp │ │ │ │ ├── prologue.h │ │ │ │ ├── reflectancecalculator.cpp │ │ │ │ ├── reflectancecalculator.h │ │ │ │ ├── xritheaderparser.cpp │ │ │ │ └── xritheaderparser.h │ │ │ ├── msgn │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── msg_basic_types.cpp │ │ │ │ ├── msg_basic_types.h │ │ │ │ ├── msg_reader_core.cpp │ │ │ │ ├── msg_reader_core.h │ │ │ │ └── msgndataset.cpp │ │ │ ├── netcdf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ └── netcdf_config.xsd │ │ │ │ ├── netcdf_cf_constants.h │ │ │ │ ├── netcdf_sentinel3_sral_mwr.cpp │ │ │ │ ├── netcdfdataset.cpp │ │ │ │ ├── netcdfdataset.h │ │ │ │ ├── netcdfdrivercore.cpp │ │ │ │ ├── netcdfdrivercore.h │ │ │ │ ├── netcdfformatenum.h │ │ │ │ ├── netcdflayer.cpp │ │ │ │ ├── netcdflayersg.cpp │ │ │ │ ├── netcdflayersg.h │ │ │ │ ├── netcdfmultidim.cpp │ │ │ │ ├── netcdfsg.cpp │ │ │ │ ├── netcdfsg.h │ │ │ │ ├── netcdfsgwriterutil.cpp │ │ │ │ ├── netcdfsgwriterutil.h │ │ │ │ ├── netcdfuffd.h │ │ │ │ ├── netcdfvirtual.cpp │ │ │ │ ├── netcdfvirtual.h │ │ │ │ └── netcdfwriterconfig.cpp │ │ │ ├── ngsgeoid │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ngsgeoiddataset.cpp │ │ │ ├── nitf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── gt_datum.csv │ │ │ │ │ ├── gt_ellips.csv │ │ │ │ │ ├── nitf_spec.xml │ │ │ │ │ └── nitf_spec.xsd │ │ │ │ ├── ecrgtocdataset.cpp │ │ │ │ ├── embedded_resources.c │ │ │ │ ├── embedded_resources.h │ │ │ │ ├── mgrs.c │ │ │ │ ├── mgrs.h │ │ │ │ ├── nitf_gcprpc.cpp │ │ │ │ ├── nitfaridpcm.cpp │ │ │ │ ├── nitfbilevel.cpp │ │ │ │ ├── nitfdataset.cpp │ │ │ │ ├── nitfdataset.h │ │ │ │ ├── nitfdes.c │ │ │ │ ├── nitfdrivercore.cpp │ │ │ │ ├── nitfdrivercore.h │ │ │ │ ├── nitfdump.c │ │ │ │ ├── nitffile.cpp │ │ │ │ ├── nitfimage.c │ │ │ │ ├── nitflib.h │ │ │ │ ├── nitfrasterband.cpp │ │ │ │ ├── nitfwritejpeg.cpp │ │ │ │ ├── nitfwritejpeg_12.cpp │ │ │ │ ├── readme.md │ │ │ │ ├── rpftocdataset.cpp │ │ │ │ ├── rpftocfile.cpp │ │ │ │ └── rpftoclib.h │ │ │ ├── northwood │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── grcdataset.cpp │ │ │ │ ├── grddataset.cpp │ │ │ │ ├── northwood.cpp │ │ │ │ └── northwood.h │ │ │ ├── null │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── nulldataset.cpp │ │ │ ├── ogcapi │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── gdalogcapidataset.cpp │ │ │ ├── openjpeg │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── driver_declaration.cmake │ │ │ │ ├── eoptemplate_pleiades.xml │ │ │ │ ├── eoptemplate_worldviewgeoeye.xml │ │ │ │ ├── openjpegdataset.cpp │ │ │ │ ├── openjpegdrivercore.cpp │ │ │ │ ├── openjpegdrivercore.h │ │ │ │ └── opjdatasetbase.h │ │ │ ├── opjlike │ │ │ │ ├── jp2opjlikedataset.cpp │ │ │ │ └── jp2opjlikedataset.h │ │ │ ├── pcidsk │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gdal_edb.cpp │ │ │ │ ├── notes.txt │ │ │ │ ├── ogrpcidsklayer.cpp │ │ │ │ ├── pcidskdataset2.cpp │ │ │ │ ├── pcidskdataset2.h │ │ │ │ ├── pcidskdrivercore.cpp │ │ │ │ ├── pcidskdrivercore.h │ │ │ │ ├── sdk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── blockdir │ │ │ │ │ │ ├── asciitiledir.cpp │ │ │ │ │ │ ├── asciitiledir.h │ │ │ │ │ │ ├── asciitilelayer.cpp │ │ │ │ │ │ ├── asciitilelayer.h │ │ │ │ │ │ ├── binarytiledir.cpp │ │ │ │ │ │ ├── binarytiledir.h │ │ │ │ │ │ ├── binarytilelayer.cpp │ │ │ │ │ │ ├── binarytilelayer.h │ │ │ │ │ │ ├── blockdir.cpp │ │ │ │ │ │ ├── blockdir.h │ │ │ │ │ │ ├── blockfile.cpp │ │ │ │ │ │ ├── blockfile.h │ │ │ │ │ │ ├── blocklayer.cpp │ │ │ │ │ │ ├── blocklayer.h │ │ │ │ │ │ ├── blocktiledir.cpp │ │ │ │ │ │ ├── blocktiledir.h │ │ │ │ │ │ ├── blocktilelayer.cpp │ │ │ │ │ │ └── blocktilelayer.h │ │ │ │ │ ├── channel │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cbandinterleavedchannel.cpp │ │ │ │ │ │ ├── cbandinterleavedchannel.h │ │ │ │ │ │ ├── cexternalchannel.cpp │ │ │ │ │ │ ├── cexternalchannel.h │ │ │ │ │ │ ├── cpcidskchannel.cpp │ │ │ │ │ │ ├── cpcidskchannel.h │ │ │ │ │ │ ├── cpixelinterleavedchannel.cpp │ │ │ │ │ │ ├── cpixelinterleavedchannel.h │ │ │ │ │ │ ├── ctiledchannel.cpp │ │ │ │ │ │ └── ctiledchannel.h │ │ │ │ │ ├── core │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clinksegment.cpp │ │ │ │ │ │ ├── clinksegment.h │ │ │ │ │ │ ├── cpcidskblockfile.cpp │ │ │ │ │ │ ├── cpcidskblockfile.h │ │ │ │ │ │ ├── cpcidskfile.cpp │ │ │ │ │ │ ├── cpcidskfile.h │ │ │ │ │ │ ├── edb_pcidsk.cpp │ │ │ │ │ │ ├── libjpeg_io.cpp │ │ │ │ │ │ ├── metadataset.h │ │ │ │ │ │ ├── metadataset_p.cpp │ │ │ │ │ │ ├── mutexholder.h │ │ │ │ │ │ ├── pcidsk_mutex.cpp │ │ │ │ │ │ ├── pcidsk_pubutils.cpp │ │ │ │ │ │ ├── pcidsk_raster.cpp │ │ │ │ │ │ ├── pcidsk_raster.h │ │ │ │ │ │ ├── pcidsk_scanint.cpp │ │ │ │ │ │ ├── pcidsk_scanint.h │ │ │ │ │ │ ├── pcidsk_utils.cpp │ │ │ │ │ │ ├── pcidsk_utils.h │ │ │ │ │ │ ├── pcidskbuffer.cpp │ │ │ │ │ │ ├── pcidskcreate.cpp │ │ │ │ │ │ ├── pcidskexception.cpp │ │ │ │ │ │ ├── pcidskinterfaces.cpp │ │ │ │ │ │ ├── pcidskopen.cpp │ │ │ │ │ │ └── protectedfile.h │ │ │ │ │ ├── pcidsk.h │ │ │ │ │ ├── pcidsk_array.h │ │ │ │ │ ├── pcidsk_binary.h │ │ │ │ │ ├── pcidsk_blut.h │ │ │ │ │ ├── pcidsk_bpct.h │ │ │ │ │ ├── pcidsk_buffer.h │ │ │ │ │ ├── pcidsk_channel.h │ │ │ │ │ ├── pcidsk_config.h │ │ │ │ │ ├── pcidsk_edb.h │ │ │ │ │ ├── pcidsk_ephemeris.h │ │ │ │ │ ├── pcidsk_exception.h │ │ │ │ │ ├── pcidsk_file.h │ │ │ │ │ ├── pcidsk_gcp.h │ │ │ │ │ ├── pcidsk_gcpsegment.h │ │ │ │ │ ├── pcidsk_georef.h │ │ │ │ │ ├── pcidsk_interfaces.h │ │ │ │ │ ├── pcidsk_io.h │ │ │ │ │ ├── pcidsk_lut.h │ │ │ │ │ ├── pcidsk_mutex.h │ │ │ │ │ ├── pcidsk_pct.h │ │ │ │ │ ├── pcidsk_poly.h │ │ │ │ │ ├── pcidsk_rpc.h │ │ │ │ │ ├── pcidsk_segment.h │ │ │ │ │ ├── pcidsk_shape.h │ │ │ │ │ ├── pcidsk_tex.h │ │ │ │ │ ├── pcidsk_toutin.h │ │ │ │ │ ├── pcidsk_types.h │ │ │ │ │ ├── pcidsk_vectorsegment.h │ │ │ │ │ ├── port │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── io_stdio.cpp │ │ │ │ │ │ ├── io_win32.cpp │ │ │ │ │ │ ├── pthread_mutex.cpp │ │ │ │ │ │ └── win32_mutex.cpp │ │ │ │ │ ├── raster │ │ │ │ │ │ ├── rasterconfig.h │ │ │ │ │ │ └── rastertypes.hh │ │ │ │ │ └── segment │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cpcidsk_array.cpp │ │ │ │ │ │ ├── cpcidsk_array.h │ │ │ │ │ │ ├── cpcidsk_tex.cpp │ │ │ │ │ │ ├── cpcidsk_tex.h │ │ │ │ │ │ ├── cpcidskbinarysegment.cpp │ │ │ │ │ │ ├── cpcidskbinarysegment.h │ │ │ │ │ │ ├── cpcidskbitmap.cpp │ │ │ │ │ │ ├── cpcidskbitmap.h │ │ │ │ │ │ ├── cpcidskblut.cpp │ │ │ │ │ │ ├── cpcidskblut.h │ │ │ │ │ │ ├── cpcidskbpct.cpp │ │ │ │ │ │ ├── cpcidskbpct.h │ │ │ │ │ │ ├── cpcidskephemerissegment.cpp │ │ │ │ │ │ ├── cpcidskephemerissegment.h │ │ │ │ │ │ ├── cpcidskgcp2segment.cpp │ │ │ │ │ │ ├── cpcidskgcp2segment.h │ │ │ │ │ │ ├── cpcidskgeoref.cpp │ │ │ │ │ │ ├── cpcidskgeoref.h │ │ │ │ │ │ ├── cpcidsklut.cpp │ │ │ │ │ │ ├── cpcidsklut.h │ │ │ │ │ │ ├── cpcidskpct.cpp │ │ │ │ │ │ ├── cpcidskpct.h │ │ │ │ │ │ ├── cpcidskpolymodel.cpp │ │ │ │ │ │ ├── cpcidskpolymodel.h │ │ │ │ │ │ ├── cpcidskrpcmodel.cpp │ │ │ │ │ │ ├── cpcidskrpcmodel.h │ │ │ │ │ │ ├── cpcidsksegment.cpp │ │ │ │ │ │ ├── cpcidsksegment.h │ │ │ │ │ │ ├── cpcidsktoutinmodel.cpp │ │ │ │ │ │ ├── cpcidsktoutinmodel.h │ │ │ │ │ │ ├── cpcidskvectorsegment.cpp │ │ │ │ │ │ ├── cpcidskvectorsegment.h │ │ │ │ │ │ ├── cpcidskvectorsegment_consistencycheck.cpp │ │ │ │ │ │ ├── metadatasegment.h │ │ │ │ │ │ ├── metadatasegment_p.cpp │ │ │ │ │ │ ├── orbitstructures.h │ │ │ │ │ │ ├── pcidsksegmentbuilder.h │ │ │ │ │ │ ├── systiledir.cpp │ │ │ │ │ │ ├── systiledir.h │ │ │ │ │ │ ├── toutinstructures.h │ │ │ │ │ │ ├── vecsegdataindex.cpp │ │ │ │ │ │ ├── vecsegdataindex.h │ │ │ │ │ │ ├── vecsegheader.cpp │ │ │ │ │ │ └── vecsegheader.h │ │ │ │ └── vsi_pcidsk_io.cpp │ │ │ ├── pcraster │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── doxygen.cfg │ │ │ │ ├── libcsf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── _getcell.c │ │ │ │ │ ├── _getrow.c │ │ │ │ │ ├── _gsomece.c │ │ │ │ │ ├── _putcell.c │ │ │ │ │ ├── _rputrow.c │ │ │ │ │ ├── angle.c │ │ │ │ │ ├── attravai.c │ │ │ │ │ ├── attrsize.c │ │ │ │ │ ├── cellsize.c │ │ │ │ │ ├── create2.c │ │ │ │ │ ├── csf.h │ │ │ │ │ ├── csfattr.h │ │ │ │ │ ├── csfglob.c │ │ │ │ │ ├── csfimpl.h │ │ │ │ │ ├── csfsup.c │ │ │ │ │ ├── csftypes.h │ │ │ │ │ ├── delattr.c │ │ │ │ │ ├── dumconv.c │ │ │ │ │ ├── endian.c │ │ │ │ │ ├── file.c │ │ │ │ │ ├── filename.c │ │ │ │ │ ├── gattrblk.c │ │ │ │ │ ├── gattridx.c │ │ │ │ │ ├── gcellrep.c │ │ │ │ │ ├── gdattype.c │ │ │ │ │ ├── getattr.c │ │ │ │ │ ├── getx0.c │ │ │ │ │ ├── gety0.c │ │ │ │ │ ├── ggisfid.c │ │ │ │ │ ├── gmaxval.c │ │ │ │ │ ├── gminval.c │ │ │ │ │ ├── gnrcols.c │ │ │ │ │ ├── gnrrows.c │ │ │ │ │ ├── gproj.c │ │ │ │ │ ├── gputproj.c │ │ │ │ │ ├── gvalscal.c │ │ │ │ │ ├── gvartype.c │ │ │ │ │ ├── gversion.c │ │ │ │ │ ├── ismv.c │ │ │ │ │ ├── kernlcsf.c │ │ │ │ │ ├── legend.c │ │ │ │ │ ├── mclose.c │ │ │ │ │ ├── mopen.c │ │ │ │ │ ├── moreattr.c │ │ │ │ │ ├── mperror.c │ │ │ │ │ ├── pcrtypes.h │ │ │ │ │ ├── pgisfid.c │ │ │ │ │ ├── pmaxval.c │ │ │ │ │ ├── pminval.c │ │ │ │ │ ├── putallmv.c │ │ │ │ │ ├── putattr.c │ │ │ │ │ ├── putsomec.c │ │ │ │ │ ├── putx0.c │ │ │ │ │ ├── puty0.c │ │ │ │ │ ├── pvalscal.c │ │ │ │ │ ├── rattrblk.c │ │ │ │ │ ├── rcomp.c │ │ │ │ │ ├── rcoords.c │ │ │ │ │ ├── rdup2.c │ │ │ │ │ ├── reseterr.c │ │ │ │ │ ├── rextend.c │ │ │ │ │ ├── rmalloc.c │ │ │ │ │ ├── rrowcol.c │ │ │ │ │ ├── ruseas.c │ │ │ │ │ ├── setangle.c │ │ │ │ │ ├── setmv.c │ │ │ │ │ ├── setvtmv.c │ │ │ │ │ ├── strconst.c │ │ │ │ │ ├── strpad.c │ │ │ │ │ ├── swapio.c │ │ │ │ │ ├── trackmm.c │ │ │ │ │ ├── vs2.c │ │ │ │ │ ├── vsdef.c │ │ │ │ │ ├── vsis.c │ │ │ │ │ ├── vsvers.c │ │ │ │ │ └── wattrblk.c │ │ │ │ ├── pcrasterdataset.cpp │ │ │ │ ├── pcrasterdataset.h │ │ │ │ ├── pcrasterdrivercore.cpp │ │ │ │ ├── pcrasterdrivercore.h │ │ │ │ ├── pcrastermisc.cpp │ │ │ │ ├── pcrasterrasterband.cpp │ │ │ │ ├── pcrasterrasterband.h │ │ │ │ ├── pcrasterutil.cpp │ │ │ │ └── pcrasterutil.h │ │ │ ├── pdf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ └── pdfcomposition.xsd │ │ │ │ ├── embedded_resources.c │ │ │ │ ├── embedded_resources.h │ │ │ │ ├── gdal_pdf.h │ │ │ │ ├── ogrpdflayer.cpp │ │ │ │ ├── pdfcreatecopy.cpp │ │ │ │ ├── pdfcreatecopy.h │ │ │ │ ├── pdfcreatefromcomposition.cpp │ │ │ │ ├── pdfcreatefromcomposition.h │ │ │ │ ├── pdfdataset.cpp │ │ │ │ ├── pdfdrivercore.cpp │ │ │ │ ├── pdfdrivercore.h │ │ │ │ ├── pdfio.cpp │ │ │ │ ├── pdfio.h │ │ │ │ ├── pdfobject.cpp │ │ │ │ ├── pdfobject.h │ │ │ │ ├── pdfreadvectors.cpp │ │ │ │ ├── pdfsdk_headers_all.h │ │ │ │ ├── pdfsdk_headers_pdfium.h │ │ │ │ ├── pdfsdk_headers_podofo.h │ │ │ │ ├── pdfsdk_headers_poppler.h │ │ │ │ └── pdfwritabledataset.cpp │ │ │ ├── pds │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── pds4_template.xml │ │ │ │ │ └── vicar.json │ │ │ │ ├── embedded_resources.c │ │ │ │ ├── embedded_resources.h │ │ │ │ ├── isis2dataset.cpp │ │ │ │ ├── isis3dataset.cpp │ │ │ │ ├── json_utils.h │ │ │ │ ├── pds4dataset.cpp │ │ │ │ ├── pds4dataset.h │ │ │ │ ├── pds4vector.cpp │ │ │ │ ├── pdsdataset.cpp │ │ │ │ ├── pdsdrivercore.cpp │ │ │ │ ├── pdsdrivercore.h │ │ │ │ ├── vicardataset.cpp │ │ │ │ ├── vicardataset.h │ │ │ │ ├── vicarkeywordhandler.cpp │ │ │ │ └── vicarkeywordhandler.h │ │ │ ├── plmosaic │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── plmosaicdataset.cpp │ │ │ ├── png │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── filter_sse2_intrinsics.c │ │ │ │ ├── libpng │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── gdal_libpng_symbol_rename.h │ │ │ │ │ ├── libpng_gdal.patch │ │ │ │ │ ├── png.c │ │ │ │ │ ├── png.h │ │ │ │ │ ├── png_handle_eXIf_memleak_fix.patch │ │ │ │ │ ├── pngconf.h │ │ │ │ │ ├── pngdebug.h │ │ │ │ │ ├── pngerror.c │ │ │ │ │ ├── pngget.c │ │ │ │ │ ├── pnginfo.h │ │ │ │ │ ├── pnglibconf.h │ │ │ │ │ ├── pnglibconf.h.patch │ │ │ │ │ ├── pngmem.c │ │ │ │ │ ├── pngpread.c │ │ │ │ │ ├── pngpriv.h │ │ │ │ │ ├── pngread.c │ │ │ │ │ ├── pngrio.c │ │ │ │ │ ├── pngrtran.c │ │ │ │ │ ├── pngrutil.c │ │ │ │ │ ├── pngset.c │ │ │ │ │ ├── pngstruct.h │ │ │ │ │ ├── pngtrans.c │ │ │ │ │ ├── pngwio.c │ │ │ │ │ ├── pngwrite.c │ │ │ │ │ ├── pngwtran.c │ │ │ │ │ └── pngwutil.c │ │ │ │ ├── pngdataset.cpp │ │ │ │ ├── pngdataset.h │ │ │ │ ├── pngdrivercore.cpp │ │ │ │ └── pngdrivercore.h │ │ │ ├── postgisraster │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── postgisraster.h │ │ │ │ ├── postgisrasterdataset.cpp │ │ │ │ ├── postgisrasterdriver.cpp │ │ │ │ ├── postgisrasterdrivercore.cpp │ │ │ │ ├── postgisrasterdrivercore.h │ │ │ │ ├── postgisrasterrasterband.cpp │ │ │ │ ├── postgisrastertiledataset.cpp │ │ │ │ ├── postgisrastertilerasterband.cpp │ │ │ │ ├── postgisrastertools.cpp │ │ │ │ ├── readme │ │ │ │ └── todo │ │ │ ├── prf │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── phprfdataset.cpp │ │ │ ├── raw │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ace2dataset.cpp │ │ │ │ ├── atlsci_spheroid.cpp │ │ │ │ ├── atlsci_spheroid.h │ │ │ │ ├── btdataset.cpp │ │ │ │ ├── byndataset.cpp │ │ │ │ ├── byndataset.h │ │ │ │ ├── cpgdataset.cpp │ │ │ │ ├── doq1dataset.cpp │ │ │ │ ├── doq2dataset.cpp │ │ │ │ ├── ehdrdataset.cpp │ │ │ │ ├── ehdrdataset.h │ │ │ │ ├── eirdataset.cpp │ │ │ │ ├── envidataset.cpp │ │ │ │ ├── envidataset.h │ │ │ │ ├── fastdataset.cpp │ │ │ │ ├── genbindataset.cpp │ │ │ │ ├── gscdataset.cpp │ │ │ │ ├── gtxdataset.cpp │ │ │ │ ├── hkvdataset.cpp │ │ │ │ ├── iscedataset.cpp │ │ │ │ ├── krodataset.cpp │ │ │ │ ├── landataset.cpp │ │ │ │ ├── lcpdataset.cpp │ │ │ │ ├── loslasdataset.cpp │ │ │ │ ├── mffdataset.cpp │ │ │ │ ├── ndfdataset.cpp │ │ │ │ ├── noaabdataset.cpp │ │ │ │ ├── nsidcbindataset.cpp │ │ │ │ ├── ntv2dataset.cpp │ │ │ │ ├── pauxdataset.cpp │ │ │ │ ├── pnmdataset.cpp │ │ │ │ ├── rawdrivers.cpp │ │ │ │ ├── roipacdataset.cpp │ │ │ │ ├── rrasterdataset.cpp │ │ │ │ ├── snodasdataset.cpp │ │ │ │ └── usgs_esri_zones.h │ │ │ ├── rcm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── rcmdataset.cpp │ │ │ │ ├── rcmdataset.h │ │ │ │ ├── rcmdrivercore.cpp │ │ │ │ └── rcmdrivercore.h │ │ │ ├── rik │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── rikdataset.cpp │ │ │ ├── rmf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── rmfdataset.cpp │ │ │ │ ├── rmfdataset.h │ │ │ │ ├── rmfdem.cpp │ │ │ │ ├── rmfjpeg.cpp │ │ │ │ └── rmflzw.cpp │ │ │ ├── rs2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── rs2dataset.cpp │ │ │ ├── safe │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── safedataset.cpp │ │ │ │ └── safedataset.h │ │ │ ├── saga │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sagadataset.cpp │ │ │ ├── sentinel2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── sentinel2dataset.cpp │ │ │ ├── sigdem │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── sigdemdataset.cpp │ │ │ │ └── sigdemdataset.h │ │ │ ├── snap_tiff │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── snaptiffdriver.cpp │ │ │ ├── srtmhgt │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── srtmhgtdataset.cpp │ │ │ ├── stacit │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── stacitdataset.cpp │ │ │ ├── stacta │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── stactadataset.cpp │ │ │ │ └── stactadataset.h │ │ │ ├── terragen │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── readme.txt │ │ │ │ └── terragendataset.cpp │ │ │ ├── tga │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── tgadataset.cpp │ │ │ ├── til │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── tildataset.cpp │ │ │ ├── tiledb │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── driver_declaration.cmake │ │ │ │ ├── include_tiledb.h │ │ │ │ ├── overview_model.rst │ │ │ │ ├── tiledbcommon.cpp │ │ │ │ ├── tiledbdense.cpp │ │ │ │ ├── tiledbdrivercore.cpp │ │ │ │ ├── tiledbdrivercore.h │ │ │ │ ├── tiledbheaders.h │ │ │ │ ├── tiledbmultidim.cpp │ │ │ │ ├── tiledbmultidim.h │ │ │ │ ├── tiledbmultidimarray.cpp │ │ │ │ ├── tiledbmultidimattribute.cpp │ │ │ │ ├── tiledbmultidimattributeholder.cpp │ │ │ │ ├── tiledbmultidimgroup.cpp │ │ │ │ └── tiledbsparse.cpp │ │ │ ├── tsx │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── tsxdataset.cpp │ │ │ ├── usgsdem │ │ │ │ ├── CDED.notes │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── usgsdemdataset.cpp │ │ │ ├── vrt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ └── gdalvrt.xsd │ │ │ │ ├── gdal_vrt.h │ │ │ │ ├── muparser_header.h │ │ │ │ ├── pixelfunctions.cpp │ │ │ │ ├── vrt_priv.h │ │ │ │ ├── vrtdataset.cpp │ │ │ │ ├── vrtdataset.h │ │ │ │ ├── vrtderivedrasterband.cpp │ │ │ │ ├── vrtdriver.cpp │ │ │ │ ├── vrtexpression.h │ │ │ │ ├── vrtexpression_exprtk.cpp │ │ │ │ ├── vrtexpression_muparser.cpp │ │ │ │ ├── vrtfilters.cpp │ │ │ │ ├── vrtmultidim.cpp │ │ │ │ ├── vrtpansharpened.cpp │ │ │ │ ├── vrtprocesseddataset.cpp │ │ │ │ ├── vrtprocesseddatasetfunctions.cpp │ │ │ │ ├── vrtrasterband.cpp │ │ │ │ ├── vrtrawrasterband.cpp │ │ │ │ ├── vrtreclassifier.cpp │ │ │ │ ├── vrtreclassifier.h │ │ │ │ ├── vrtsourcedrasterband.cpp │ │ │ │ ├── vrtsources.cpp │ │ │ │ └── vrtwarped.cpp │ │ │ ├── wcs │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gmlcoverage.cpp │ │ │ │ ├── gmlcoverage.h │ │ │ │ ├── wcsdataset.cpp │ │ │ │ ├── wcsdataset.h │ │ │ │ ├── wcsdataset100.cpp │ │ │ │ ├── wcsdataset110.cpp │ │ │ │ ├── wcsdataset201.cpp │ │ │ │ ├── wcsdrivercore.cpp │ │ │ │ ├── wcsdrivercore.h │ │ │ │ ├── wcsrasterband.cpp │ │ │ │ ├── wcsrasterband.h │ │ │ │ ├── wcsutils.cpp │ │ │ │ └── wcsutils.h │ │ │ ├── webp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── webp_headers.h │ │ │ │ ├── webpdataset.cpp │ │ │ │ ├── webpdrivercore.cpp │ │ │ │ └── webpdrivercore.h │ │ │ ├── wms │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── WMSServerList.txt │ │ │ │ ├── frmt_ags_arcgisonline.xml │ │ │ │ ├── frmt_twms_Clementine.xml │ │ │ │ ├── frmt_twms_Moon.xml │ │ │ │ ├── frmt_twms_daily.xml │ │ │ │ ├── frmt_twms_srtm.xml │ │ │ │ ├── frmt_wms_arcgis_mapserver_tms.xml │ │ │ │ ├── frmt_wms_arcgis_terrain_tms_lerc.xml │ │ │ │ ├── frmt_wms_bluemarble_s3_tms.xml │ │ │ │ ├── frmt_wms_googlemaps_tms.xml │ │ │ │ ├── frmt_wms_iiif.xml │ │ │ │ ├── frmt_wms_iip.xml │ │ │ │ ├── frmt_wms_metacarta_tms.xml │ │ │ │ ├── frmt_wms_metacarta_wmsc.xml │ │ │ │ ├── frmt_wms_onearth_global_mosaic.xml │ │ │ │ ├── frmt_wms_openstreetmap_tms.xml │ │ │ │ ├── frmt_wms_tileservice_bmng.xml │ │ │ │ ├── frmt_wms_tileservice_nysdop2004.xml │ │ │ │ ├── frmt_wms_virtualearth.xml │ │ │ │ ├── gdalhttp.cpp │ │ │ │ ├── gdalhttp.h │ │ │ │ ├── gdalwmscache.cpp │ │ │ │ ├── gdalwmsdataset.cpp │ │ │ │ ├── gdalwmsrasterband.cpp │ │ │ │ ├── minidriver.cpp │ │ │ │ ├── minidriver_arcgis_server.cpp │ │ │ │ ├── minidriver_arcgis_server.h │ │ │ │ ├── minidriver_iiifimage.cpp │ │ │ │ ├── minidriver_iiifimage.h │ │ │ │ ├── minidriver_iip.cpp │ │ │ │ ├── minidriver_iip.h │ │ │ │ ├── minidriver_mrf.cpp │ │ │ │ ├── minidriver_mrf.h │ │ │ │ ├── minidriver_ogcapicoverage.cpp │ │ │ │ ├── minidriver_ogcapicoverage.h │ │ │ │ ├── minidriver_ogcapimaps.cpp │ │ │ │ ├── minidriver_ogcapimaps.h │ │ │ │ ├── minidriver_tiled_wms.cpp │ │ │ │ ├── minidriver_tiled_wms.h │ │ │ │ ├── minidriver_tileservice.cpp │ │ │ │ ├── minidriver_tileservice.h │ │ │ │ ├── minidriver_tms.cpp │ │ │ │ ├── minidriver_tms.h │ │ │ │ ├── minidriver_virtualearth.cpp │ │ │ │ ├── minidriver_virtualearth.h │ │ │ │ ├── minidriver_wms.cpp │ │ │ │ ├── minidriver_wms.h │ │ │ │ ├── minidriver_worldwind.cpp │ │ │ │ ├── minidriver_worldwind.h │ │ │ │ ├── wmsdriver.cpp │ │ │ │ ├── wmsdriver.h │ │ │ │ ├── wmsdrivercore.cpp │ │ │ │ ├── wmsdrivercore.h │ │ │ │ ├── wmsmetadataset.cpp │ │ │ │ ├── wmsmetadataset.h │ │ │ │ └── wmsutils.cpp │ │ │ ├── wmts │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── wmtsdataset.cpp │ │ │ │ ├── wmtsdrivercore.cpp │ │ │ │ └── wmtsdrivercore.h │ │ │ ├── xyz │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── xyzdataset.cpp │ │ │ ├── zarr │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ucs4_utf8.hpp │ │ │ │ ├── vsikerchunk.cpp │ │ │ │ ├── vsikerchunk.h │ │ │ │ ├── vsikerchunk_inline.hpp │ │ │ │ ├── vsikerchunk_json_ref.cpp │ │ │ │ ├── vsikerchunk_parquet_ref.cpp │ │ │ │ ├── zarr.h │ │ │ │ ├── zarr_array.cpp │ │ │ │ ├── zarr_attribute.cpp │ │ │ │ ├── zarr_compressors.cpp │ │ │ │ ├── zarr_dimension.cpp │ │ │ │ ├── zarr_filters.cpp │ │ │ │ ├── zarr_group.cpp │ │ │ │ ├── zarr_sharedresource.cpp │ │ │ │ ├── zarr_v2_array.cpp │ │ │ │ ├── zarr_v2_group.cpp │ │ │ │ ├── zarr_v3_array.cpp │ │ │ │ ├── zarr_v3_codec.cpp │ │ │ │ ├── zarr_v3_group.cpp │ │ │ │ ├── zarrdriver.cpp │ │ │ │ ├── zarrdrivercore.cpp │ │ │ │ └── zarrdrivercore.h │ │ │ ├── zlib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── contrib │ │ │ │ │ └── infback9 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── infback9.c │ │ │ │ │ │ ├── infback9.h │ │ │ │ │ │ ├── inffix9.h │ │ │ │ │ │ ├── inflate9.h │ │ │ │ │ │ ├── inftree9.c │ │ │ │ │ │ ├── inftree9.h │ │ │ │ │ │ ├── minified_zutil.c │ │ │ │ │ │ └── minified_zutil.h │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gdal.patch │ │ │ │ ├── gdal_zlib_symbol_rename.h │ │ │ │ ├── gzguts.h │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ └── zmap │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── zmapdataset.cpp │ │ ├── gcore │ │ │ ├── CMakeLists.txt │ │ │ ├── Version.rc │ │ │ ├── data │ │ │ │ ├── template_tiles.mapml │ │ │ │ ├── tms_LINZAntarticaMapTileGrid.json │ │ │ │ ├── tms_MapML_APSTILE.json │ │ │ │ ├── tms_MapML_CBMTILE.json │ │ │ │ └── tms_NZTM2000.json │ │ │ ├── embedded_resources.c │ │ │ ├── embedded_resources.h │ │ │ ├── gdal.h │ │ │ ├── gdal_abstractbandblockcache.h │ │ │ ├── gdal_adbc.cpp │ │ │ ├── gdal_adbc.h │ │ │ ├── gdal_asyncreader.h │ │ │ ├── gdal_avx2_emulation.hpp │ │ │ ├── gdal_colortable.h │ │ │ ├── gdal_computedrasterband.h │ │ │ ├── gdal_cpp_functions.h │ │ │ ├── gdal_dataset.h │ │ │ ├── gdal_defaultoverviews.h │ │ │ ├── gdal_driver.h │ │ │ ├── gdal_drivermanager.h │ │ │ ├── gdal_frmts.h │ │ │ ├── gdal_fwd.h │ │ │ ├── gdal_gcp.h │ │ │ ├── gdal_geotransform.h │ │ │ ├── gdal_known_connection_prefixes.h │ │ │ ├── gdal_majorobject.h │ │ │ ├── gdal_maskbands.h │ │ │ ├── gdal_mdreader.cpp │ │ │ ├── gdal_mdreader.h │ │ │ ├── gdal_minmax_element.hpp │ │ │ ├── gdal_misc.cpp │ │ │ ├── gdal_multidim.h │ │ │ ├── gdal_multidim_cpp.h │ │ │ ├── gdal_multidomainmetadata.h │ │ │ ├── gdal_openinfo.h │ │ │ ├── gdal_pam.h │ │ │ ├── gdal_pam_multidim.h │ │ │ ├── gdal_priv.h │ │ │ ├── gdal_priv_templates.hpp │ │ │ ├── gdal_proxy.h │ │ │ ├── gdal_raster_cpp.h │ │ │ ├── gdal_rasterband.h │ │ │ ├── gdal_rasterblock.h │ │ │ ├── gdal_rat.cpp │ │ │ ├── gdal_rat.h │ │ │ ├── gdal_rat_vat_dbf.cpp │ │ │ ├── gdal_relationship.h │ │ │ ├── gdal_thread_pool.cpp │ │ │ ├── gdal_thread_pool.h │ │ │ ├── gdal_typetraits.h │ │ │ ├── gdal_vector_cpp.h │ │ │ ├── gdal_vectorx.h │ │ │ ├── gdal_version.h │ │ │ ├── gdal_version_full │ │ │ │ └── gdal_version.h │ │ │ ├── gdalabstractbandblockcache.cpp │ │ │ ├── gdalalgorithm.cpp │ │ │ ├── gdalalgorithm.h │ │ │ ├── gdalalgorithm_c.h │ │ │ ├── gdalalgorithm_cpp.h │ │ │ ├── gdalalgorithmregistry.cpp │ │ │ ├── gdalallvalidmaskband.cpp │ │ │ ├── gdalantirecursion.h │ │ │ ├── gdalarraybandblockcache.cpp │ │ │ ├── gdalcachedpixelaccessor.h │ │ │ ├── gdalcolortable.cpp │ │ │ ├── gdalcomputedrasterband.cpp │ │ │ ├── gdaldataset.cpp │ │ │ ├── gdaldefaultasync.cpp │ │ │ ├── gdaldefaultoverviews.cpp │ │ │ ├── gdaldllmain.cpp │ │ │ ├── gdaldriver.cpp │ │ │ ├── gdaldrivermanager.cpp │ │ │ ├── gdalexif.cpp │ │ │ ├── gdalexif.h │ │ │ ├── gdalgeorefpamdataset.cpp │ │ │ ├── gdalgeorefpamdataset.h │ │ │ ├── gdalhashsetbandblockcache.cpp │ │ │ ├── gdaljp2abstractdataset.cpp │ │ │ ├── gdaljp2abstractdataset.h │ │ │ ├── gdaljp2box.cpp │ │ │ ├── gdaljp2metadata.cpp │ │ │ ├── gdaljp2metadata.h │ │ │ ├── gdaljp2metadatagenerator.cpp │ │ │ ├── gdaljp2metadatagenerator.h │ │ │ ├── gdaljp2structure.cpp │ │ │ ├── gdalmajorobject.cpp │ │ │ ├── gdalmultidim.cpp │ │ │ ├── gdalmultidim_gltorthorectification.cpp │ │ │ ├── gdalmultidim_gridded.cpp │ │ │ ├── gdalmultidim_meshgrid.cpp │ │ │ ├── gdalmultidim_priv.h │ │ │ ├── gdalmultidim_rat.cpp │ │ │ ├── gdalmultidim_subsetdimension.cpp │ │ │ ├── gdalmultidomainmetadata.cpp │ │ │ ├── gdalnodatamaskband.cpp │ │ │ ├── gdalnodatavaluesmaskband.cpp │ │ │ ├── gdalopeninfo.cpp │ │ │ ├── gdalorienteddataset.cpp │ │ │ ├── gdalorienteddataset.h │ │ │ ├── gdaloverviewdataset.cpp │ │ │ ├── gdalpamdataset.cpp │ │ │ ├── gdalpamproxydb.cpp │ │ │ ├── gdalpamrasterband.cpp │ │ │ ├── gdalplugindriverproxy.h │ │ │ ├── gdalproxydataset.cpp │ │ │ ├── gdalproxypool.cpp │ │ │ ├── gdalpython.cpp │ │ │ ├── gdalpython.h │ │ │ ├── gdalpythondriverloader.cpp │ │ │ ├── gdalrasterband.cpp │ │ │ ├── gdalrasterblock.cpp │ │ │ ├── gdalrelationship.cpp │ │ │ ├── gdalrescaledalphaband.cpp │ │ │ ├── gdalsse_priv.h │ │ │ ├── gdalsubdatasetinfo.cpp │ │ │ ├── gdalsubdatasetinfo.h │ │ │ ├── gdalthreadsafedataset.cpp │ │ │ ├── gdalvirtualmem.cpp │ │ │ ├── geoheif.cpp │ │ │ ├── geoheif.h │ │ │ ├── include_sse2neon.h │ │ │ ├── mdreader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── reader_alos.cpp │ │ │ │ ├── reader_alos.h │ │ │ │ ├── reader_digital_globe.cpp │ │ │ │ ├── reader_digital_globe.h │ │ │ │ ├── reader_eros.cpp │ │ │ │ ├── reader_eros.h │ │ │ │ ├── reader_geo_eye.cpp │ │ │ │ ├── reader_geo_eye.h │ │ │ │ ├── reader_kompsat.cpp │ │ │ │ ├── reader_kompsat.h │ │ │ │ ├── reader_landsat.cpp │ │ │ │ ├── reader_landsat.h │ │ │ │ ├── reader_orb_view.cpp │ │ │ │ ├── reader_orb_view.h │ │ │ │ ├── reader_pleiades.cpp │ │ │ │ ├── reader_pleiades.h │ │ │ │ ├── reader_rapid_eye.cpp │ │ │ │ ├── reader_rapid_eye.h │ │ │ │ ├── reader_rdk1.cpp │ │ │ │ ├── reader_rdk1.h │ │ │ │ ├── reader_spot.cpp │ │ │ │ └── reader_spot.h │ │ │ ├── nasakeywordhandler.cpp │ │ │ ├── nasakeywordhandler.h │ │ │ ├── overview.cpp │ │ │ ├── rasterio.cpp │ │ │ ├── rasterio_ssse3.cpp │ │ │ ├── rasterio_ssse3.h │ │ │ ├── rawdataset.cpp │ │ │ ├── rawdataset.h │ │ │ ├── sse2neon.h │ │ │ ├── statistics.txt │ │ │ ├── tiff_common.cpp │ │ │ ├── tiff_common.h │ │ │ ├── tilematrixset.cpp │ │ │ └── tilematrixset.hpp │ │ ├── gdal.cmake │ │ ├── gnm │ │ │ ├── CMakeLists.txt │ │ │ ├── gnm.h │ │ │ ├── gnm_api.h │ │ │ ├── gnm_frmts │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── db │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gnmdb.h │ │ │ │ │ ├── gnmdbdriver.cpp │ │ │ │ │ └── gnmdbnetwork.cpp │ │ │ │ ├── file │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gnmfile.h │ │ │ │ │ ├── gnmfiledriver.cpp │ │ │ │ │ └── gnmfilenetwork.cpp │ │ │ │ ├── gnm_frmts.h │ │ │ │ └── gnmregisterall.cpp │ │ │ ├── gnm_priv.h │ │ │ ├── gnmgenericnetwork.cpp │ │ │ ├── gnmgraph.cpp │ │ │ ├── gnmgraph.h │ │ │ ├── gnmlayer.cpp │ │ │ ├── gnmnetwork.cpp │ │ │ ├── gnmresultlayer.cpp │ │ │ └── gnmrule.cpp │ │ ├── ogr │ │ │ ├── CMakeLists.txt │ │ │ ├── data │ │ │ │ ├── cubewerx_extra.wkt │ │ │ │ ├── ecw_cs.wkt │ │ │ │ ├── epsg.wkt │ │ │ │ ├── esri_StatePlane_extra.wkt │ │ │ │ ├── ogr_fields_override.schema.json │ │ │ │ ├── ozi_datum.csv │ │ │ │ ├── ozi_ellips.csv │ │ │ │ ├── pci_datum.txt │ │ │ │ ├── pci_ellips.txt │ │ │ │ └── stateplane.csv │ │ │ ├── file.lst │ │ │ ├── generate_encoding_table.c │ │ │ ├── generate_swq_parser.cmake │ │ │ ├── gml2ogrgeometry.cpp │ │ │ ├── mitab_bounds.cpp │ │ │ ├── ogr2gmlgeometry.cpp │ │ │ ├── ogr2kmlgeometry.cpp │ │ │ ├── ogr_api.cpp │ │ │ ├── ogr_api.h │ │ │ ├── ogr_core.h │ │ │ ├── ogr_expat.cpp │ │ │ ├── ogr_expat.h │ │ │ ├── ogr_feature.h │ │ │ ├── ogr_featurestyle.h │ │ │ ├── ogr_fromepsg.cpp │ │ │ ├── ogr_geo_utils.cpp │ │ │ ├── ogr_geo_utils.h │ │ │ ├── ogr_geocoding.cpp │ │ │ ├── ogr_geocoding.h │ │ │ ├── ogr_geomcoordinateprecision.h │ │ │ ├── ogr_geometry.h │ │ │ ├── ogr_geos.h │ │ │ ├── ogr_libs.h │ │ │ ├── ogr_p.h │ │ │ ├── ogr_proj_p.cpp │ │ │ ├── ogr_proj_p.h │ │ │ ├── ogr_recordbatch.h │ │ │ ├── ogr_schema_override.cpp │ │ │ ├── ogr_schema_override.h │ │ │ ├── ogr_sfcgal.h │ │ │ ├── ogr_spatialref.h │ │ │ ├── ogr_srs_api.h │ │ │ ├── ogr_srs_cf1.cpp │ │ │ ├── ogr_srs_cf1.h │ │ │ ├── ogr_srs_dict.cpp │ │ │ ├── ogr_srs_erm.cpp │ │ │ ├── ogr_srs_esri.cpp │ │ │ ├── ogr_srs_esri_names.h │ │ │ ├── ogr_srs_ozi.cpp │ │ │ ├── ogr_srs_panorama.cpp │ │ │ ├── ogr_srs_pci.cpp │ │ │ ├── ogr_srs_usgs.cpp │ │ │ ├── ogr_srs_xml.cpp │ │ │ ├── ogr_srsnode.cpp │ │ │ ├── ogr_swq.h │ │ │ ├── ogr_wkb.cpp │ │ │ ├── ogr_wkb.h │ │ │ ├── ogr_xerces.cpp │ │ │ ├── ogr_xerces.h │ │ │ ├── ogr_xerces_headers.h │ │ │ ├── ograpispy.cpp │ │ │ ├── ograpispy.h │ │ │ ├── ograssemblepolygon.cpp │ │ │ ├── ogrcircularstring.cpp │ │ │ ├── ogrcompoundcurve.cpp │ │ │ ├── ogrct.cpp │ │ │ ├── ogrct_priv.h │ │ │ ├── ogrcurve.cpp │ │ │ ├── ogrcurvecollection.cpp │ │ │ ├── ogrcurvepolygon.cpp │ │ │ ├── ogresrijsongeometry.cpp │ │ │ ├── ogresrijsongeometry.h │ │ │ ├── ogrfeature.cpp │ │ │ ├── ogrfeaturedefn.cpp │ │ │ ├── ogrfeaturequery.cpp │ │ │ ├── ogrfeaturestyle.cpp │ │ │ ├── ogrfielddefn.cpp │ │ │ ├── ogrgeojsongeometry.cpp │ │ │ ├── ogrgeojsongeometry.h │ │ │ ├── ogrgeojsonwriter.cpp │ │ │ ├── ogrgeojsonwriter.h │ │ │ ├── ogrgeomcoordinateprecision.cpp │ │ │ ├── ogrgeometry.cpp │ │ │ ├── ogrgeometrycollection.cpp │ │ │ ├── ogrgeometryfactory.cpp │ │ │ ├── ogrgeomfielddefn.cpp │ │ │ ├── ogrlibjsonutils.cpp │ │ │ ├── ogrlibjsonutils.h │ │ │ ├── ogrlinearring.cpp │ │ │ ├── ogrlinestring.cpp │ │ │ ├── ogrmitabspatialref.cpp │ │ │ ├── ogrmitabspatialref.h │ │ │ ├── ogrmulticurve.cpp │ │ │ ├── ogrmultilinestring.cpp │ │ │ ├── ogrmultipoint.cpp │ │ │ ├── ogrmultipolygon.cpp │ │ │ ├── ogrmultisurface.cpp │ │ │ ├── ogrpgeogeometry.cpp │ │ │ ├── ogrpgeogeometry.h │ │ │ ├── ogrpoint.cpp │ │ │ ├── ogrpolygon.cpp │ │ │ ├── ogrpolyhedralsurface.cpp │ │ │ ├── ogrsf_frmts │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── adbc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_adbc.h │ │ │ │ │ ├── ogr_adbc_internal.h │ │ │ │ │ ├── ogradbcbigquerylayer.cpp │ │ │ │ │ ├── ogradbcdataset.cpp │ │ │ │ │ ├── ogradbcdriver.cpp │ │ │ │ │ ├── ogradbcdrivercore.cpp │ │ │ │ │ ├── ogradbcdrivercore.h │ │ │ │ │ └── ogradbclayer.cpp │ │ │ │ ├── aivector │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── ograivectordriver.cpp │ │ │ │ ├── amigocloud │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_amigocloud.h │ │ │ │ │ ├── ogramigoclouddatasource.cpp │ │ │ │ │ ├── ogramigoclouddriver.cpp │ │ │ │ │ ├── ogramigocloudlayer.cpp │ │ │ │ │ ├── ogramigocloudresultlayer.cpp │ │ │ │ │ ├── ogramigocloudtablelayer.cpp │ │ │ │ │ └── pkg │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── configure │ │ │ │ │ │ └── configure.in │ │ │ │ ├── arrow │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── driver_declaration.cmake │ │ │ │ │ ├── ogr_feather.h │ │ │ │ │ ├── ogrfeatherdataset.cpp │ │ │ │ │ ├── ogrfeatherdriver.cpp │ │ │ │ │ ├── ogrfeatherdrivercore.cpp │ │ │ │ │ ├── ogrfeatherdrivercore.h │ │ │ │ │ ├── ogrfeatherlayer.cpp │ │ │ │ │ ├── ogrfeatherwriterdataset.cpp │ │ │ │ │ ├── ogrfeatherwriterlayer.cpp │ │ │ │ │ └── vsifilesystemregistrar.cpp │ │ │ │ ├── arrow_common │ │ │ │ │ ├── ogr_arrow.h │ │ │ │ │ ├── ogr_include_arrow.h │ │ │ │ │ ├── ograrrowdataset.hpp │ │ │ │ │ ├── ograrrowlayer.hpp │ │ │ │ │ ├── ograrrowrandomaccessfile.h │ │ │ │ │ ├── ograrrowwritablefile.h │ │ │ │ │ ├── ograrrowwriterlayer.hpp │ │ │ │ │ └── vsiarrowfilesystem.hpp │ │ │ │ ├── avc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── HISTORY.TXT │ │ │ │ │ ├── avc.h │ │ │ │ │ ├── avc_bin.cpp │ │ │ │ │ ├── avc_binwr.cpp │ │ │ │ │ ├── avc_e00gen.cpp │ │ │ │ │ ├── avc_e00parse.cpp │ │ │ │ │ ├── avc_e00read.cpp │ │ │ │ │ ├── avc_e00write.cpp │ │ │ │ │ ├── avc_mbyte.cpp │ │ │ │ │ ├── avc_mbyte.h │ │ │ │ │ ├── avc_misc.cpp │ │ │ │ │ ├── avc_rawbin.cpp │ │ │ │ │ ├── ogr_avc.h │ │ │ │ │ ├── ogravcbindatasource.cpp │ │ │ │ │ ├── ogravcbindriver.cpp │ │ │ │ │ ├── ogravcbinlayer.cpp │ │ │ │ │ ├── ogravcdatasource.cpp │ │ │ │ │ ├── ogravce00datasource.cpp │ │ │ │ │ ├── ogravce00driver.cpp │ │ │ │ │ ├── ogravce00layer.cpp │ │ │ │ │ └── ogravclayer.cpp │ │ │ │ ├── cad │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gdalcaddataset.cpp │ │ │ │ │ ├── libopencad │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── cadclasses.cpp │ │ │ │ │ │ ├── cadclasses.h │ │ │ │ │ │ ├── cadcolors.cpp │ │ │ │ │ │ ├── cadcolors.h │ │ │ │ │ │ ├── caddictionary.cpp │ │ │ │ │ │ ├── caddictionary.h │ │ │ │ │ │ ├── cadfile.cpp │ │ │ │ │ │ ├── cadfile.h │ │ │ │ │ │ ├── cadfileio.cpp │ │ │ │ │ │ ├── cadfileio.h │ │ │ │ │ │ ├── cadfilestreamio.cpp │ │ │ │ │ │ ├── cadfilestreamio.h │ │ │ │ │ │ ├── cadgeometry.cpp │ │ │ │ │ │ ├── cadgeometry.h │ │ │ │ │ │ ├── cadheader.cpp │ │ │ │ │ │ ├── cadheader.h │ │ │ │ │ │ ├── cadlayer.cpp │ │ │ │ │ │ ├── cadlayer.h │ │ │ │ │ │ ├── cadobjects.cpp │ │ │ │ │ │ ├── cadobjects.h │ │ │ │ │ │ ├── cadtables.cpp │ │ │ │ │ │ ├── cadtables.h │ │ │ │ │ │ ├── dwg │ │ │ │ │ │ │ ├── io.cpp │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── r2000.cpp │ │ │ │ │ │ │ └── r2000.h │ │ │ │ │ │ ├── opencad.cpp │ │ │ │ │ │ ├── opencad.h │ │ │ │ │ │ └── opencad_api.h │ │ │ │ │ ├── ogr_cad.h │ │ │ │ │ ├── ogrcaddriver.cpp │ │ │ │ │ ├── ogrcaddrivercore.cpp │ │ │ │ │ ├── ogrcaddrivercore.h │ │ │ │ │ ├── ogrcadlayer.cpp │ │ │ │ │ ├── vsilfileio.cpp │ │ │ │ │ └── vsilfileio.h │ │ │ │ ├── carto │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_carto.h │ │ │ │ │ ├── ogrcartodatasource.cpp │ │ │ │ │ ├── ogrcartodriver.cpp │ │ │ │ │ ├── ogrcartodrivercore.cpp │ │ │ │ │ ├── ogrcartodrivercore.h │ │ │ │ │ ├── ogrcartolayer.cpp │ │ │ │ │ ├── ogrcartoresultlayer.cpp │ │ │ │ │ └── ogrcartotablelayer.cpp │ │ │ │ ├── csv │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_csv.h │ │ │ │ │ ├── ogrcsvdatasource.cpp │ │ │ │ │ ├── ogrcsvdriver.cpp │ │ │ │ │ └── ogrcsvlayer.cpp │ │ │ │ ├── csw │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── ogrcswdataset.cpp │ │ │ │ ├── dgn │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ │ ├── seed_2d.dgn │ │ │ │ │ │ └── seed_3d.dgn │ │ │ │ │ ├── dgndump.cpp │ │ │ │ │ ├── dgnhelp.cpp │ │ │ │ │ ├── dgnlib.h │ │ │ │ │ ├── dgnlibp.h │ │ │ │ │ ├── dgnopen.cpp │ │ │ │ │ ├── dgnread.cpp │ │ │ │ │ ├── dgnstroke.cpp │ │ │ │ │ ├── dgnwrite.cpp │ │ │ │ │ ├── dgnwritetest.cpp │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ ├── ogr_dgn.h │ │ │ │ │ ├── ogrdgndatasource.cpp │ │ │ │ │ ├── ogrdgndriver.cpp │ │ │ │ │ ├── ogrdgnlayer.cpp │ │ │ │ │ └── web │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── representation.html │ │ │ │ ├── dwg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── createdgnv8testfile.cpp │ │ │ │ │ ├── createdgnv8testfile_headers.h │ │ │ │ │ ├── dgnv8_headers.h │ │ │ │ │ ├── dwg_headers.h │ │ │ │ │ ├── ogr_dgnv8.h │ │ │ │ │ ├── ogr_dwg.h │ │ │ │ │ ├── ogrdgnv8datasource.cpp │ │ │ │ │ ├── ogrdgnv8driver.cpp │ │ │ │ │ ├── ogrdgnv8drivercore.cpp │ │ │ │ │ ├── ogrdgnv8drivercore.h │ │ │ │ │ ├── ogrdgnv8layer.cpp │ │ │ │ │ ├── ogrdwg_blockmap.cpp │ │ │ │ │ ├── ogrdwg_dimension.cpp │ │ │ │ │ ├── ogrdwg_hatch.cpp │ │ │ │ │ ├── ogrdwgblockslayer.cpp │ │ │ │ │ ├── ogrdwgdatasource.cpp │ │ │ │ │ ├── ogrdwgdriver.cpp │ │ │ │ │ ├── ogrdwgdrivercore.cpp │ │ │ │ │ ├── ogrdwgdrivercore.h │ │ │ │ │ ├── ogrdwglayer.cpp │ │ │ │ │ ├── ogrteigha.cpp │ │ │ │ │ └── ogrteigha.h │ │ │ │ ├── dxf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── KNOWN_ISSUES.md │ │ │ │ │ ├── data │ │ │ │ │ │ ├── header.dxf │ │ │ │ │ │ └── trailer.dxf │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ ├── intronurbs.cpp │ │ │ │ │ ├── ogr_autocad_services.cpp │ │ │ │ │ ├── ogr_autocad_services.h │ │ │ │ │ ├── ogr_dxf.h │ │ │ │ │ ├── ogrdxf_blockmap.cpp │ │ │ │ │ ├── ogrdxf_dimension.cpp │ │ │ │ │ ├── ogrdxf_feature.cpp │ │ │ │ │ ├── ogrdxf_hatch.cpp │ │ │ │ │ ├── ogrdxf_leader.cpp │ │ │ │ │ ├── ogrdxf_ocstransformer.cpp │ │ │ │ │ ├── ogrdxf_polyline_smooth.cpp │ │ │ │ │ ├── ogrdxf_polyline_smooth.h │ │ │ │ │ ├── ogrdxfblockslayer.cpp │ │ │ │ │ ├── ogrdxfblockswriterlayer.cpp │ │ │ │ │ ├── ogrdxfdatasource.cpp │ │ │ │ │ ├── ogrdxfdriver.cpp │ │ │ │ │ ├── ogrdxflayer.cpp │ │ │ │ │ ├── ogrdxfreader.cpp │ │ │ │ │ ├── ogrdxfwriterds.cpp │ │ │ │ │ └── ogrdxfwriterlayer.cpp │ │ │ │ ├── edigeo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_edigeo.h │ │ │ │ │ ├── ogredigeodatasource.cpp │ │ │ │ │ ├── ogredigeodriver.cpp │ │ │ │ │ └── ogredigeolayer.cpp │ │ │ │ ├── elastic │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_elastic.h │ │ │ │ │ ├── ogrelasticaggregationlayer.cpp │ │ │ │ │ ├── ogrelasticdatasource.cpp │ │ │ │ │ ├── ogrelasticdriver.cpp │ │ │ │ │ ├── ogrelasticdrivercore.cpp │ │ │ │ │ ├── ogrelasticdrivercore.h │ │ │ │ │ └── ogrelasticlayer.cpp │ │ │ │ ├── filegdb │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FGdbDatasource.cpp │ │ │ │ │ ├── FGdbDriver.cpp │ │ │ │ │ ├── FGdbDriverCore.cpp │ │ │ │ │ ├── FGdbDriverCore.h │ │ │ │ │ ├── FGdbLayer.cpp │ │ │ │ │ ├── FGdbResultLayer.cpp │ │ │ │ │ ├── FGdbUtils.cpp │ │ │ │ │ ├── FGdbUtils.h │ │ │ │ │ ├── filegdbsdk_headers.h │ │ │ │ │ └── ogr_fgdb.h │ │ │ │ ├── flatgeobuf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── cplerrors.h │ │ │ │ │ ├── feature_generated.h │ │ │ │ │ ├── flatbuffers │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── allocator.h │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── bfbs_generator.h │ │ │ │ │ │ ├── buffer.h │ │ │ │ │ │ ├── buffer_ref.h │ │ │ │ │ │ ├── code_generators.h │ │ │ │ │ │ ├── default_allocator.h │ │ │ │ │ │ ├── detached_buffer.h │ │ │ │ │ │ ├── flatbuffer_builder.h │ │ │ │ │ │ ├── flatbuffers.h │ │ │ │ │ │ ├── flatc.h │ │ │ │ │ │ ├── flex_flat_util.h │ │ │ │ │ │ ├── flexbuffers.h │ │ │ │ │ │ ├── grpc.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── idl.h │ │ │ │ │ │ ├── minireflect.h │ │ │ │ │ │ ├── pch │ │ │ │ │ │ │ ├── flatc_pch.h │ │ │ │ │ │ │ └── pch.h │ │ │ │ │ │ ├── reflection.h │ │ │ │ │ │ ├── reflection_generated.h │ │ │ │ │ │ ├── registry.h │ │ │ │ │ │ ├── stl_emulation.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── struct.h │ │ │ │ │ │ ├── table.h │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ ├── vector.h │ │ │ │ │ │ ├── vector_downward.h │ │ │ │ │ │ └── verifier.h │ │ │ │ │ ├── geometryreader.cpp │ │ │ │ │ ├── geometryreader.h │ │ │ │ │ ├── geometrywriter.cpp │ │ │ │ │ ├── geometrywriter.h │ │ │ │ │ ├── header_generated.h │ │ │ │ │ ├── ogr_flatgeobuf.h │ │ │ │ │ ├── ogrflatgeobufdataset.cpp │ │ │ │ │ ├── ogrflatgeobufeditablelayer.cpp │ │ │ │ │ ├── ogrflatgeobuflayer.cpp │ │ │ │ │ ├── packedrtree.cpp │ │ │ │ │ └── packedrtree.h │ │ │ │ ├── generic │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_attrind.cpp │ │ │ │ │ ├── ogr_gensql.cpp │ │ │ │ │ ├── ogr_gensql.h │ │ │ │ │ ├── ogr_miattrind.cpp │ │ │ │ │ ├── ograrrowarrayhelper.cpp │ │ │ │ │ ├── ograrrowarrayhelper.h │ │ │ │ │ ├── ogrdatasource.cpp │ │ │ │ │ ├── ogreditablelayer.cpp │ │ │ │ │ ├── ogreditablelayer.h │ │ │ │ │ ├── ogrlayer.cpp │ │ │ │ │ ├── ogrlayer_private.h │ │ │ │ │ ├── ogrlayerarrow.cpp │ │ │ │ │ ├── ogrlayerarrow.h │ │ │ │ │ ├── ogrlayerdecorator.cpp │ │ │ │ │ ├── ogrlayerdecorator.h │ │ │ │ │ ├── ogrlayerpool.cpp │ │ │ │ │ ├── ogrlayerpool.h │ │ │ │ │ ├── ogrlayerwithtranslatefeature.cpp │ │ │ │ │ ├── ogrlayerwithtranslatefeature.h │ │ │ │ │ ├── ogrmutexeddatasource.cpp │ │ │ │ │ ├── ogrmutexeddatasource.h │ │ │ │ │ ├── ogrmutexedlayer.cpp │ │ │ │ │ ├── ogrmutexedlayer.h │ │ │ │ │ ├── ogrregisterall.cpp │ │ │ │ │ ├── ogrsfdriver.cpp │ │ │ │ │ ├── ogrsfdriverregistrar.cpp │ │ │ │ │ ├── ogrunionlayer.cpp │ │ │ │ │ ├── ogrunionlayer.h │ │ │ │ │ ├── ogrwarpedlayer.cpp │ │ │ │ │ └── ogrwarpedlayer.h │ │ │ │ ├── geojson │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── directedacyclicgraph.hpp │ │ │ │ │ ├── libjson │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── ChangeLog │ │ │ │ │ │ ├── GDAL_README.txt │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── README.html │ │ │ │ │ │ ├── arraylist.c │ │ │ │ │ │ ├── arraylist.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── debug.c │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── dump_symbols.sh │ │ │ │ │ │ ├── json.h │ │ │ │ │ │ ├── json_c_version.c │ │ │ │ │ │ ├── json_c_version.h │ │ │ │ │ │ ├── json_config.h │ │ │ │ │ │ ├── json_inttypes.h │ │ │ │ │ │ ├── json_object.c │ │ │ │ │ │ ├── json_object.h │ │ │ │ │ │ ├── json_object_iterator.c │ │ │ │ │ │ ├── json_object_iterator.h │ │ │ │ │ │ ├── json_object_private.h │ │ │ │ │ │ ├── json_pointer.h │ │ │ │ │ │ ├── json_tokener.c │ │ │ │ │ │ ├── json_tokener.h │ │ │ │ │ │ ├── json_types.h │ │ │ │ │ │ ├── json_util.c │ │ │ │ │ │ ├── json_util.h │ │ │ │ │ │ ├── linkhash.c │ │ │ │ │ │ ├── linkhash.h │ │ │ │ │ │ ├── math_compat.h │ │ │ │ │ │ ├── printbuf.c │ │ │ │ │ │ ├── printbuf.h │ │ │ │ │ │ ├── random_seed.c │ │ │ │ │ │ ├── random_seed.h │ │ │ │ │ │ ├── snprintf_compat.h │ │ │ │ │ │ ├── strdup_compat.h │ │ │ │ │ │ ├── strerror_override.c │ │ │ │ │ │ ├── strerror_override.h │ │ │ │ │ │ ├── strerror_override_private.h │ │ │ │ │ │ ├── symbol_renames.h │ │ │ │ │ │ └── vasprintf_compat.h │ │ │ │ │ ├── ogr_geojson.h │ │ │ │ │ ├── ogresrijsondriver.cpp │ │ │ │ │ ├── ogresrijsonreader.cpp │ │ │ │ │ ├── ogrgeojsondatasource.cpp │ │ │ │ │ ├── ogrgeojsondriver.cpp │ │ │ │ │ ├── ogrgeojsonlayer.cpp │ │ │ │ │ ├── ogrgeojsonreader.cpp │ │ │ │ │ ├── ogrgeojsonreader.h │ │ │ │ │ ├── ogrgeojsonseqdriver.cpp │ │ │ │ │ ├── ogrgeojsonutils.cpp │ │ │ │ │ ├── ogrgeojsonutils.h │ │ │ │ │ ├── ogrgeojsonwritelayer.cpp │ │ │ │ │ ├── ogrjsoncollectionstreamingparser.cpp │ │ │ │ │ ├── ogrjsoncollectionstreamingparser.h │ │ │ │ │ ├── ogrtopojsondriver.cpp │ │ │ │ │ └── ogrtopojsonreader.cpp │ │ │ │ ├── georss │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_georss.h │ │ │ │ │ ├── ogrgeorssdatasource.cpp │ │ │ │ │ ├── ogrgeorssdriver.cpp │ │ │ │ │ └── ogrgeorsslayer.cpp │ │ │ │ ├── gml │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ │ ├── gfs.xsd │ │ │ │ │ │ ├── gml_registry.xml │ │ │ │ │ │ ├── gml_registry.xsd │ │ │ │ │ │ ├── inspire_cp_BasicPropertyUnit.gfs │ │ │ │ │ │ ├── inspire_cp_CadastralBoundary.gfs │ │ │ │ │ │ ├── inspire_cp_CadastralParcel.gfs │ │ │ │ │ │ ├── inspire_cp_CadastralZoning.gfs │ │ │ │ │ │ ├── jpfgdgml_AdmArea.gfs │ │ │ │ │ │ ├── jpfgdgml_AdmBdry.gfs │ │ │ │ │ │ ├── jpfgdgml_AdmPt.gfs │ │ │ │ │ │ ├── jpfgdgml_BldA.gfs │ │ │ │ │ │ ├── jpfgdgml_BldL.gfs │ │ │ │ │ │ ├── jpfgdgml_Cntr.gfs │ │ │ │ │ │ ├── jpfgdgml_CommBdry.gfs │ │ │ │ │ │ ├── jpfgdgml_CommPt.gfs │ │ │ │ │ │ ├── jpfgdgml_Cstline.gfs │ │ │ │ │ │ ├── jpfgdgml_ElevPt.gfs │ │ │ │ │ │ ├── jpfgdgml_GCP.gfs │ │ │ │ │ │ ├── jpfgdgml_LeveeEdge.gfs │ │ │ │ │ │ ├── jpfgdgml_RailCL.gfs │ │ │ │ │ │ ├── jpfgdgml_RdASL.gfs │ │ │ │ │ │ ├── jpfgdgml_RdArea.gfs │ │ │ │ │ │ ├── jpfgdgml_RdCompt.gfs │ │ │ │ │ │ ├── jpfgdgml_RdEdg.gfs │ │ │ │ │ │ ├── jpfgdgml_RdMgtBdry.gfs │ │ │ │ │ │ ├── jpfgdgml_RdSgmtA.gfs │ │ │ │ │ │ ├── jpfgdgml_RvrMgtBdry.gfs │ │ │ │ │ │ ├── jpfgdgml_SBAPt.gfs │ │ │ │ │ │ ├── jpfgdgml_SBArea.gfs │ │ │ │ │ │ ├── jpfgdgml_SBBdry.gfs │ │ │ │ │ │ ├── jpfgdgml_WA.gfs │ │ │ │ │ │ ├── jpfgdgml_WL.gfs │ │ │ │ │ │ ├── jpfgdgml_WStrA.gfs │ │ │ │ │ │ ├── jpfgdgml_WStrL.gfs │ │ │ │ │ │ ├── ruian_vf_ob_v1.gfs │ │ │ │ │ │ ├── ruian_vf_st_uvoh_v1.gfs │ │ │ │ │ │ ├── ruian_vf_st_v1.gfs │ │ │ │ │ │ └── ruian_vf_v1.gfs │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ ├── embedded_resources_gen1.c │ │ │ │ │ ├── embedded_resources_gen2.c │ │ │ │ │ ├── gfstemplate.cpp │ │ │ │ │ ├── gmlhandler.cpp │ │ │ │ │ ├── gmlreader.cpp │ │ │ │ │ ├── gmlreader.h │ │ │ │ │ ├── gmlreaderp.h │ │ │ │ │ ├── gmlreadstate.cpp │ │ │ │ │ ├── gmlregistry.cpp │ │ │ │ │ ├── gmlregistry.h │ │ │ │ │ ├── hugefileresolver.cpp │ │ │ │ │ ├── ogr_gml.h │ │ │ │ │ ├── ogrgmldatasource.cpp │ │ │ │ │ ├── ogrgmldriver.cpp │ │ │ │ │ ├── ogrgmllayer.cpp │ │ │ │ │ ├── resolvexlinks.cpp │ │ │ │ │ └── xercesc_headers.h │ │ │ │ ├── gmlas │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ │ ├── gmlasconf.xml │ │ │ │ │ │ └── gmlasconf.xsd │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ ├── ogr_gmlas.h │ │ │ │ │ ├── ogr_gmlas_consts.h │ │ │ │ │ ├── ogrgmlasconf.cpp │ │ │ │ │ ├── ogrgmlasdatasource.cpp │ │ │ │ │ ├── ogrgmlasdriver.cpp │ │ │ │ │ ├── ogrgmlasdrivercore.cpp │ │ │ │ │ ├── ogrgmlasdrivercore.h │ │ │ │ │ ├── ogrgmlasfeatureclass.cpp │ │ │ │ │ ├── ogrgmlaslayer.cpp │ │ │ │ │ ├── ogrgmlasreader.cpp │ │ │ │ │ ├── ogrgmlasschemaanalyzer.cpp │ │ │ │ │ ├── ogrgmlasutils.cpp │ │ │ │ │ ├── ogrgmlaswriter.cpp │ │ │ │ │ ├── ogrgmlasxlinkresolver.cpp │ │ │ │ │ ├── ogrgmlasxpatchmatcher.cpp │ │ │ │ │ ├── ogrgmlasxsdcache.cpp │ │ │ │ │ └── xercesc_headers.h │ │ │ │ ├── gmlutils │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gmlfeature.cpp │ │ │ │ │ ├── gmlfeature.h │ │ │ │ │ ├── gmlfeatureclass.cpp │ │ │ │ │ ├── gmlpropertydefn.cpp │ │ │ │ │ ├── gmlutils.cpp │ │ │ │ │ ├── gmlutils.h │ │ │ │ │ ├── ogrwfsfilter.cpp │ │ │ │ │ ├── ogrwfsfilter.h │ │ │ │ │ ├── parsexsd.cpp │ │ │ │ │ └── parsexsd.h │ │ │ │ ├── gmt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_gmt.h │ │ │ │ │ ├── ogrgmtdatasource.cpp │ │ │ │ │ ├── ogrgmtdriver.cpp │ │ │ │ │ └── ogrgmtlayer.cpp │ │ │ │ ├── gpkg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gdalgeopackagerasterband.cpp │ │ │ │ │ ├── gpkgmbtilescommon.h │ │ │ │ │ ├── ogr_geopackage.h │ │ │ │ │ ├── ogrgeopackagedatasource.cpp │ │ │ │ │ ├── ogrgeopackagedriver.cpp │ │ │ │ │ ├── ogrgeopackagelayer.cpp │ │ │ │ │ ├── ogrgeopackageselectlayer.cpp │ │ │ │ │ ├── ogrgeopackagetablelayer.cpp │ │ │ │ │ ├── ogrgeopackageutility.cpp │ │ │ │ │ └── ogrgeopackageutility.h │ │ │ │ ├── gpsbabel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_gpsbabel.h │ │ │ │ │ ├── ogrgpsbabeldatasource.cpp │ │ │ │ │ ├── ogrgpsbabeldriver.cpp │ │ │ │ │ └── ogrgpsbabelwritedatasource.cpp │ │ │ │ ├── gpx │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_gpx.h │ │ │ │ │ ├── ogrgpxdatasource.cpp │ │ │ │ │ ├── ogrgpxdriver.cpp │ │ │ │ │ └── ogrgpxlayer.cpp │ │ │ │ ├── gtfs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── ogrgtfsdriver.cpp │ │ │ │ ├── hana │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_hana.h │ │ │ │ │ ├── ogrhanadatasource.cpp │ │ │ │ │ ├── ogrhanadriver.cpp │ │ │ │ │ ├── ogrhanadrivercore.cpp │ │ │ │ │ ├── ogrhanadrivercore.h │ │ │ │ │ ├── ogrhanafeaturereader.cpp │ │ │ │ │ ├── ogrhanafeaturereader.h │ │ │ │ │ ├── ogrhanafeaturewriter.cpp │ │ │ │ │ ├── ogrhanafeaturewriter.h │ │ │ │ │ ├── ogrhanalayer.cpp │ │ │ │ │ ├── ogrhanaresultlayer.cpp │ │ │ │ │ ├── ogrhanatablelayer.cpp │ │ │ │ │ ├── ogrhanautils.cpp │ │ │ │ │ └── ogrhanautils.h │ │ │ │ ├── idb │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── idb_headers.h │ │ │ │ │ ├── ogr_idb.h │ │ │ │ │ ├── ogridbdatasource.cpp │ │ │ │ │ ├── ogridbdriver.cpp │ │ │ │ │ ├── ogridbdrivercore.cpp │ │ │ │ │ ├── ogridbdrivercore.h │ │ │ │ │ ├── ogridblayer.cpp │ │ │ │ │ ├── ogridbselectlayer.cpp │ │ │ │ │ └── ogridbtablelayer.cpp │ │ │ │ ├── idrisi │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── generate_test_files.c │ │ │ │ │ ├── ogr_idrisi.h │ │ │ │ │ ├── ogridrisidatasource.cpp │ │ │ │ │ ├── ogridrisidriver.cpp │ │ │ │ │ └── ogridrisilayer.cpp │ │ │ │ ├── ili │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ili1reader.cpp │ │ │ │ │ ├── ili1reader.h │ │ │ │ │ ├── ili1readerp.h │ │ │ │ │ ├── ili2handler.cpp │ │ │ │ │ ├── ili2reader.cpp │ │ │ │ │ ├── ili2reader.h │ │ │ │ │ ├── ili2readerp.h │ │ │ │ │ ├── imdreader.cpp │ │ │ │ │ ├── imdreader.h │ │ │ │ │ ├── ogr_ili1.h │ │ │ │ │ ├── ogr_ili2.h │ │ │ │ │ ├── ogrili1datasource.cpp │ │ │ │ │ ├── ogrili1driver.cpp │ │ │ │ │ ├── ogrili1layer.cpp │ │ │ │ │ ├── ogrili2datasource.cpp │ │ │ │ │ ├── ogrili2driver.cpp │ │ │ │ │ ├── ogrili2layer.cpp │ │ │ │ │ └── xercesc_headers.h │ │ │ │ ├── jml │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_jml.h │ │ │ │ │ ├── ogrjmldataset.cpp │ │ │ │ │ ├── ogrjmllayer.cpp │ │ │ │ │ └── ogrjmlwriterlayer.cpp │ │ │ │ ├── jsonfg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_jsonfg.h │ │ │ │ │ ├── ogrjsonfgdataset.cpp │ │ │ │ │ ├── ogrjsonfgdriver.cpp │ │ │ │ │ ├── ogrjsonfgmemlayer.cpp │ │ │ │ │ ├── ogrjsonfgreader.cpp │ │ │ │ │ ├── ogrjsonfgstreamedlayer.cpp │ │ │ │ │ ├── ogrjsonfgstreamingparser.cpp │ │ │ │ │ └── ogrjsonfgwritelayer.cpp │ │ │ │ ├── kml │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── kml.cpp │ │ │ │ │ ├── kml.h │ │ │ │ │ ├── kmlnode.cpp │ │ │ │ │ ├── kmlnode.h │ │ │ │ │ ├── kmlutility.h │ │ │ │ │ ├── kmlvector.cpp │ │ │ │ │ ├── kmlvector.h │ │ │ │ │ ├── ogr_kml.h │ │ │ │ │ ├── ogrkmldatasource.cpp │ │ │ │ │ ├── ogrkmldriver.cpp │ │ │ │ │ └── ogrkmllayer.cpp │ │ │ │ ├── libkml │ │ │ │ │ ├── .indent.pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fieldconfig.h │ │ │ │ │ ├── libkml_headers.h │ │ │ │ │ ├── ogr_libkml.h │ │ │ │ │ ├── ogrlibkmldatasource.cpp │ │ │ │ │ ├── ogrlibkmldriver.cpp │ │ │ │ │ ├── ogrlibkmldrivercore.cpp │ │ │ │ │ ├── ogrlibkmldrivercore.h │ │ │ │ │ ├── ogrlibkmlfeature.cpp │ │ │ │ │ ├── ogrlibkmlfeature.h │ │ │ │ │ ├── ogrlibkmlfeaturestyle.cpp │ │ │ │ │ ├── ogrlibkmlfeaturestyle.h │ │ │ │ │ ├── ogrlibkmlfield.cpp │ │ │ │ │ ├── ogrlibkmlfield.h │ │ │ │ │ ├── ogrlibkmlgeometry.cpp │ │ │ │ │ ├── ogrlibkmlgeometry.h │ │ │ │ │ ├── ogrlibkmllayer.cpp │ │ │ │ │ ├── ogrlibkmlstyle.cpp │ │ │ │ │ └── ogrlibkmlstyle.h │ │ │ │ ├── lvbag │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_lvbag.h │ │ │ │ │ ├── ogrlvbagdatasource.cpp │ │ │ │ │ ├── ogrlvbagdriver.cpp │ │ │ │ │ └── ogrlvbaglayer.cpp │ │ │ │ ├── mapml │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── ogrmapmldataset.cpp │ │ │ │ ├── miramon │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ │ └── MM_m_idofic.csv │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ ├── mm_rdlayr.c │ │ │ │ │ ├── mm_rdlayr.h │ │ │ │ │ ├── mm_wrlayr.c │ │ │ │ │ ├── mm_wrlayr.h │ │ │ │ │ ├── ogrmiramon.h │ │ │ │ │ ├── ogrmiramondatasource.cpp │ │ │ │ │ ├── ogrmiramondriver.cpp │ │ │ │ │ └── ogrmiramonlayer.cpp │ │ │ │ ├── mitab │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── HISTORY.TXT │ │ │ │ │ ├── TODO.TXT │ │ │ │ │ ├── mitab.h │ │ │ │ │ ├── mitab_datfile.cpp │ │ │ │ │ ├── mitab_feature.cpp │ │ │ │ │ ├── mitab_feature_mif.cpp │ │ │ │ │ ├── mitab_geometry.cpp │ │ │ │ │ ├── mitab_geometry.h │ │ │ │ │ ├── mitab_idfile.cpp │ │ │ │ │ ├── mitab_imapinfofile.cpp │ │ │ │ │ ├── mitab_indfile.cpp │ │ │ │ │ ├── mitab_mapcoordblock.cpp │ │ │ │ │ ├── mitab_mapfile.cpp │ │ │ │ │ ├── mitab_mapheaderblock.cpp │ │ │ │ │ ├── mitab_mapindexblock.cpp │ │ │ │ │ ├── mitab_mapobjectblock.cpp │ │ │ │ │ ├── mitab_maptoolblock.cpp │ │ │ │ │ ├── mitab_middatafile.cpp │ │ │ │ │ ├── mitab_miffile.cpp │ │ │ │ │ ├── mitab_ogr_datasource.cpp │ │ │ │ │ ├── mitab_ogr_driver.cpp │ │ │ │ │ ├── mitab_ogr_driver.h │ │ │ │ │ ├── mitab_priv.h │ │ │ │ │ ├── mitab_rawbinblock.cpp │ │ │ │ │ ├── mitab_tabfile.cpp │ │ │ │ │ ├── mitab_tabseamless.cpp │ │ │ │ │ ├── mitab_tabview.cpp │ │ │ │ │ ├── mitab_tooldef.cpp │ │ │ │ │ ├── mitab_utils.cpp │ │ │ │ │ └── mitab_utils.h │ │ │ │ ├── mongodbv3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── mongocxxv3_headers.h │ │ │ │ │ ├── ogrmongodbv3driver.cpp │ │ │ │ │ ├── ogrmongodbv3drivercore.cpp │ │ │ │ │ └── ogrmongodbv3drivercore.h │ │ │ │ ├── mssqlspatial │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── include_msodbcsql.h │ │ │ │ │ ├── ogr_mssqlspatial.h │ │ │ │ │ ├── ogrmssqlgeometryparser.cpp │ │ │ │ │ ├── ogrmssqlgeometryvalidator.cpp │ │ │ │ │ ├── ogrmssqlgeometrywriter.cpp │ │ │ │ │ ├── ogrmssqlspatialdatasource.cpp │ │ │ │ │ ├── ogrmssqlspatialdriver.cpp │ │ │ │ │ ├── ogrmssqlspatialdrivercore.cpp │ │ │ │ │ ├── ogrmssqlspatialdrivercore.h │ │ │ │ │ ├── ogrmssqlspatiallayer.cpp │ │ │ │ │ ├── ogrmssqlspatialselectlayer.cpp │ │ │ │ │ └── ogrmssqlspatialtablelayer.cpp │ │ │ │ ├── mvt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── mvt_tile.cpp │ │ │ │ │ ├── mvt_tile.h │ │ │ │ │ ├── mvt_tile_test.cpp │ │ │ │ │ ├── mvtutils.cpp │ │ │ │ │ ├── mvtutils.h │ │ │ │ │ └── ogrmvtdataset.cpp │ │ │ │ ├── mysql │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_mysql.h │ │ │ │ │ ├── ogrmysqldatasource.cpp │ │ │ │ │ ├── ogrmysqldriver.cpp │ │ │ │ │ ├── ogrmysqldrivercore.cpp │ │ │ │ │ ├── ogrmysqldrivercore.h │ │ │ │ │ ├── ogrmysqllayer.cpp │ │ │ │ │ ├── ogrmysqlresultlayer.cpp │ │ │ │ │ └── ogrmysqltablelayer.cpp │ │ │ │ ├── nas │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── nashandler.cpp │ │ │ │ │ ├── nasreader.cpp │ │ │ │ │ ├── nasreaderp.h │ │ │ │ │ ├── ogr_nas.h │ │ │ │ │ ├── ogrnasdatasource.cpp │ │ │ │ │ ├── ogrnasdriver.cpp │ │ │ │ │ └── ogrnaslayer.cpp │ │ │ │ ├── ngw │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gdalngwdataset.cpp │ │ │ │ │ ├── ngw_api.cpp │ │ │ │ │ ├── ogr_ngw.h │ │ │ │ │ ├── ogrngwdriver.cpp │ │ │ │ │ ├── ogrngwfielddomain.cpp │ │ │ │ │ └── ogrngwlayer.cpp │ │ │ │ ├── oapif │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── ogroapifdriver.cpp │ │ │ │ ├── oci │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── driver_declaration.cmake │ │ │ │ │ ├── fastload.cpp │ │ │ │ │ ├── oci_utils.cpp │ │ │ │ │ ├── ocitest.cpp │ │ │ │ │ ├── ogr_oci.h │ │ │ │ │ ├── ogrocidatasource.cpp │ │ │ │ │ ├── ogrocidriver.cpp │ │ │ │ │ ├── ogrocidrivercore.cpp │ │ │ │ │ ├── ogrocidrivercore.h │ │ │ │ │ ├── ogrocilayer.cpp │ │ │ │ │ ├── ogrociloaderlayer.cpp │ │ │ │ │ ├── ogrociselectlayer.cpp │ │ │ │ │ ├── ogrocisession.cpp │ │ │ │ │ ├── ogrocistatement.cpp │ │ │ │ │ ├── ogrocistringbuf.cpp │ │ │ │ │ ├── ogrocistroke.cpp │ │ │ │ │ ├── ogrocitablelayer.cpp │ │ │ │ │ └── ogrociwritablelayer.cpp │ │ │ │ ├── odbc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_odbc.h │ │ │ │ │ ├── ogrodbcdatasource.cpp │ │ │ │ │ ├── ogrodbcdriver.cpp │ │ │ │ │ ├── ogrodbcdrivercore.cpp │ │ │ │ │ ├── ogrodbcdrivercore.h │ │ │ │ │ ├── ogrodbclayer.cpp │ │ │ │ │ ├── ogrodbcselectlayer.cpp │ │ │ │ │ └── ogrodbctablelayer.cpp │ │ │ │ ├── ods │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── generate_ods_formula_parser.cmake │ │ │ │ │ ├── ods_formula.cpp │ │ │ │ │ ├── ods_formula.h │ │ │ │ │ ├── ods_formula_node.cpp │ │ │ │ │ ├── ods_formula_parser.cpp │ │ │ │ │ ├── ods_formula_parser.hpp │ │ │ │ │ ├── ods_formula_parser.y │ │ │ │ │ ├── ogr_ods.h │ │ │ │ │ ├── ogrodsdatasource.cpp │ │ │ │ │ ├── ogrodsdriver.cpp │ │ │ │ │ └── testparser.cpp │ │ │ │ ├── ogr_attrind.h │ │ │ │ ├── ogrsf_frmts.h │ │ │ │ ├── openfilegdb │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── filegdb_coordprec_read.h │ │ │ │ │ ├── filegdb_coordprec_write.h │ │ │ │ │ ├── filegdb_fielddomain.h │ │ │ │ │ ├── filegdb_gdbtoogrfieldtype.h │ │ │ │ │ ├── filegdb_relationship.h │ │ │ │ │ ├── filegdb_reserved_keywords.h │ │ │ │ │ ├── filegdbindex.cpp │ │ │ │ │ ├── filegdbindex_write.cpp │ │ │ │ │ ├── filegdbtable.cpp │ │ │ │ │ ├── filegdbtable.h │ │ │ │ │ ├── filegdbtable_freelist.cpp │ │ │ │ │ ├── filegdbtable_priv.h │ │ │ │ │ ├── filegdbtable_write.cpp │ │ │ │ │ ├── filegdbtable_write_fields.cpp │ │ │ │ │ ├── gdalopenfilegdbrasterband.cpp │ │ │ │ │ ├── ogr_openfilegdb.h │ │ │ │ │ ├── ogropenfilegdb_generate_uuid.cpp │ │ │ │ │ ├── ogropenfilegdbdatasource.cpp │ │ │ │ │ ├── ogropenfilegdbdatasource_write.cpp │ │ │ │ │ ├── ogropenfilegdbdriver.cpp │ │ │ │ │ ├── ogropenfilegdbdrivercore.cpp │ │ │ │ │ ├── ogropenfilegdbdrivercore.h │ │ │ │ │ ├── ogropenfilegdblayer.cpp │ │ │ │ │ ├── ogropenfilegdblayer_write.cpp │ │ │ │ │ └── test_ofgdb_write.cpp │ │ │ │ ├── osm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ │ └── osmconf.ini │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ ├── gpb.h │ │ │ │ │ ├── ogr_osm.h │ │ │ │ │ ├── ogrosmdatasource.cpp │ │ │ │ │ ├── ogrosmdriver.cpp │ │ │ │ │ ├── ogrosmlayer.cpp │ │ │ │ │ ├── osm2osm.cpp │ │ │ │ │ ├── osm_parser.cpp │ │ │ │ │ └── osm_parser.h │ │ │ │ ├── parquet │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── driver_declaration.cmake │ │ │ │ │ ├── ogr_include_parquet.h │ │ │ │ │ ├── ogr_parquet.h │ │ │ │ │ ├── ogrparquetdataset.cpp │ │ │ │ │ ├── ogrparquetdatasetlayer.cpp │ │ │ │ │ ├── ogrparquetdriver.cpp │ │ │ │ │ ├── ogrparquetdrivercore.cpp │ │ │ │ │ ├── ogrparquetdrivercore.h │ │ │ │ │ ├── ogrparquetlayer.cpp │ │ │ │ │ ├── ogrparquetwriterdataset.cpp │ │ │ │ │ └── ogrparquetwriterlayer.cpp │ │ │ │ ├── pds │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_pds.h │ │ │ │ │ ├── ogrpdsdatasource.cpp │ │ │ │ │ ├── ogrpdsdriver.cpp │ │ │ │ │ └── ogrpdslayer.cpp │ │ │ │ ├── pg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_pg.h │ │ │ │ │ ├── ogrpgdatasource.cpp │ │ │ │ │ ├── ogrpgdriver.cpp │ │ │ │ │ ├── ogrpgdrivercore.cpp │ │ │ │ │ ├── ogrpgdrivercore.h │ │ │ │ │ ├── ogrpglayer.cpp │ │ │ │ │ ├── ogrpgresultlayer.cpp │ │ │ │ │ ├── ogrpgtablelayer.cpp │ │ │ │ │ ├── ogrpgutility.cpp │ │ │ │ │ └── ogrpgutility.h │ │ │ │ ├── pgdump │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_pgdump.h │ │ │ │ │ ├── ogrpgdumpdatasource.cpp │ │ │ │ │ ├── ogrpgdumpdriver.cpp │ │ │ │ │ └── ogrpgdumplayer.cpp │ │ │ │ ├── pgeo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_pgeo.h │ │ │ │ │ ├── ogrpgeodatasource.cpp │ │ │ │ │ ├── ogrpgeodriver.cpp │ │ │ │ │ ├── ogrpgeolayer.cpp │ │ │ │ │ ├── ogrpgeoselectlayer.cpp │ │ │ │ │ └── ogrpgeotablelayer.cpp │ │ │ │ ├── plscenes │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ │ └── plscenesconf.json │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ ├── ogr_plscenes.h │ │ │ │ │ ├── ogrplscenesdatav1dataset.cpp │ │ │ │ │ ├── ogrplscenesdatav1layer.cpp │ │ │ │ │ ├── ogrplscenesdriver.cpp │ │ │ │ │ ├── ogrplscenesdrivercore.cpp │ │ │ │ │ └── ogrplscenesdrivercore.h │ │ │ │ ├── pmtiles │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── include_pmtiles.h │ │ │ │ │ ├── ogr_pmtiles.h │ │ │ │ │ ├── ogrpmtilesdataset.cpp │ │ │ │ │ ├── ogrpmtilesdriver.cpp │ │ │ │ │ ├── ogrpmtilesfrommbtiles.cpp │ │ │ │ │ ├── ogrpmtilesfrommbtiles.h │ │ │ │ │ ├── ogrpmtilestileiterator.cpp │ │ │ │ │ ├── ogrpmtilesvectorlayer.cpp │ │ │ │ │ ├── ogrpmtileswriterdataset.cpp │ │ │ │ │ ├── pmtiles │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── pmtiles.hpp │ │ │ │ │ ├── vsipmtiles.cpp │ │ │ │ │ └── vsipmtiles.h │ │ │ │ ├── s57 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ │ ├── s57agencies.csv │ │ │ │ │ │ ├── s57attributes.csv │ │ │ │ │ │ ├── s57expectedinput.csv │ │ │ │ │ │ └── s57objectclasses.csv │ │ │ │ │ ├── ddfrecordindex.cpp │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ ├── ogr_s57.h │ │ │ │ │ ├── ogrs57datasource.cpp │ │ │ │ │ ├── ogrs57driver.cpp │ │ │ │ │ ├── ogrs57layer.cpp │ │ │ │ │ ├── s57.h │ │ │ │ │ ├── s57classregistrar.cpp │ │ │ │ │ ├── s57dump.cpp │ │ │ │ │ ├── s57featuredefns.cpp │ │ │ │ │ ├── s57filecollector.cpp │ │ │ │ │ ├── s57reader.cpp │ │ │ │ │ └── s57writer.cpp │ │ │ │ ├── selafin │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── io_selafin.cpp │ │ │ │ │ ├── io_selafin.h │ │ │ │ │ ├── ogr_selafin.h │ │ │ │ │ ├── ogrselafindatasource.cpp │ │ │ │ │ ├── ogrselafindriver.cpp │ │ │ │ │ └── ogrselafinlayer.cpp │ │ │ │ ├── shape │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── dbfopen_wrapper.cpp │ │ │ │ │ ├── gdal_shapelib_symbol_rename.h │ │ │ │ │ ├── ogrshape.h │ │ │ │ │ ├── ogrshapedatasource.cpp │ │ │ │ │ ├── ogrshapedriver.cpp │ │ │ │ │ ├── ogrshapelayer.cpp │ │ │ │ │ ├── sbnsearch_wrapper.cpp │ │ │ │ │ ├── shape2ogr.cpp │ │ │ │ │ ├── shapelib │ │ │ │ │ │ ├── dbfopen.c │ │ │ │ │ │ ├── sbnsearch.c │ │ │ │ │ │ ├── shapefil.h │ │ │ │ │ │ ├── shapefil_private.h │ │ │ │ │ │ ├── shpopen.c │ │ │ │ │ │ └── shptree.c │ │ │ │ │ ├── shp_vsi.cpp │ │ │ │ │ ├── shp_vsi.h │ │ │ │ │ ├── shpopen_wrapper.cpp │ │ │ │ │ └── shptree_wrapper.cpp │ │ │ │ ├── sosi │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fyba_melding.cpp │ │ │ │ │ ├── ogr_sosi.h │ │ │ │ │ ├── ogrsosidatasource.cpp │ │ │ │ │ ├── ogrsosidatatypes.cpp │ │ │ │ │ ├── ogrsosidatatypes.h │ │ │ │ │ ├── ogrsosidriver.cpp │ │ │ │ │ ├── ogrsosidrivercore.cpp │ │ │ │ │ ├── ogrsosidrivercore.h │ │ │ │ │ ├── ogrsosilayer.cpp │ │ │ │ │ └── tools │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── basicelements.xslt │ │ │ │ │ │ ├── convert.sh │ │ │ │ │ │ ├── groupelements.xslt │ │ │ │ │ │ └── unnorsk.xslt │ │ │ │ ├── sqlite │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── my_test_sqlite3_ext.c │ │ │ │ │ ├── ogr_sqlite.h │ │ │ │ │ ├── ogrsqliteapiroutines.c │ │ │ │ │ ├── ogrsqlitebase.h │ │ │ │ │ ├── ogrsqlitedatasource.cpp │ │ │ │ │ ├── ogrsqlitedriver.cpp │ │ │ │ │ ├── ogrsqliteexecutesql.cpp │ │ │ │ │ ├── ogrsqliteexecutesql.h │ │ │ │ │ ├── ogrsqlitelayer.cpp │ │ │ │ │ ├── ogrsqliteregexp.cpp │ │ │ │ │ ├── ogrsqliteregexp.h │ │ │ │ │ ├── ogrsqliteselectlayer.cpp │ │ │ │ │ ├── ogrsqlitesinglefeaturelayer.cpp │ │ │ │ │ ├── ogrsqlitesqlfunctions.cpp │ │ │ │ │ ├── ogrsqlitesqlfunctions.h │ │ │ │ │ ├── ogrsqlitesqlfunctionscommon.cpp │ │ │ │ │ ├── ogrsqlitetablelayer.cpp │ │ │ │ │ ├── ogrsqliteutility.cpp │ │ │ │ │ ├── ogrsqliteutility.h │ │ │ │ │ ├── ogrsqlitevfs.cpp │ │ │ │ │ ├── ogrsqlitevfs.h │ │ │ │ │ ├── ogrsqliteviewlayer.cpp │ │ │ │ │ ├── ogrsqlitevirtualogr.cpp │ │ │ │ │ ├── ogrsqlitevirtualogr.h │ │ │ │ │ ├── rasterlite2.cpp │ │ │ │ │ ├── rasterlite2_header.h │ │ │ │ │ ├── sqlite_rtree_bulk_load │ │ │ │ │ │ ├── sqlite_rtree_bulk_load.c │ │ │ │ │ │ ├── sqlite_rtree_bulk_load.h │ │ │ │ │ │ ├── wrapper.cpp │ │ │ │ │ │ └── wrapper.h │ │ │ │ │ └── test_load_virtual_ogr.c │ │ │ │ ├── sxf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ │ └── default.rsc │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ ├── ogr_sxf.h │ │ │ │ │ ├── ogrsxfdatasource.cpp │ │ │ │ │ ├── ogrsxfdriver.cpp │ │ │ │ │ ├── ogrsxflayer.cpp │ │ │ │ │ └── org_sxf_defs.h │ │ │ │ ├── vdv │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ │ ├── vdv452.xml │ │ │ │ │ │ └── vdv452.xsd │ │ │ │ │ ├── embedded_resources.c │ │ │ │ │ ├── embedded_resources.h │ │ │ │ │ ├── ogr_vdv.h │ │ │ │ │ └── ogrvdvdatasource.cpp │ │ │ │ ├── vfk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_vfk.h │ │ │ │ │ ├── ogrvfkdatasource.cpp │ │ │ │ │ ├── ogrvfkdriver.cpp │ │ │ │ │ ├── ogrvfkdrivercore.cpp │ │ │ │ │ ├── ogrvfkdrivercore.h │ │ │ │ │ ├── ogrvfklayer.cpp │ │ │ │ │ ├── vfkdatablock.cpp │ │ │ │ │ ├── vfkdatablocksqlite.cpp │ │ │ │ │ ├── vfkfeature.cpp │ │ │ │ │ ├── vfkfeaturesqlite.cpp │ │ │ │ │ ├── vfkproperty.cpp │ │ │ │ │ ├── vfkpropertydefn.cpp │ │ │ │ │ ├── vfkreader.cpp │ │ │ │ │ ├── vfkreader.h │ │ │ │ │ ├── vfkreaderp.h │ │ │ │ │ └── vfkreadersqlite.cpp │ │ │ │ ├── vrt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── data │ │ │ │ │ │ └── ogrvrt.xsd │ │ │ │ │ ├── ogr_vrt.h │ │ │ │ │ ├── ogrvrtdatasource.cpp │ │ │ │ │ ├── ogrvrtdriver.cpp │ │ │ │ │ └── ogrvrtlayer.cpp │ │ │ │ ├── wasp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogrwasp.h │ │ │ │ │ ├── ogrwaspdatasource.cpp │ │ │ │ │ ├── ogrwaspdriver.cpp │ │ │ │ │ └── ogrwasplayer.cpp │ │ │ │ ├── wfs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── WFSServersList.txt │ │ │ │ │ ├── ogr_wfs.h │ │ │ │ │ ├── ogrwfsdatasource.cpp │ │ │ │ │ ├── ogrwfsdriver.cpp │ │ │ │ │ ├── ogrwfsjoinlayer.cpp │ │ │ │ │ └── ogrwfslayer.cpp │ │ │ │ ├── xls │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── include_freexl.h │ │ │ │ │ ├── ogr_xls.h │ │ │ │ │ ├── ogrxlsdatasource.cpp │ │ │ │ │ ├── ogrxlsdriver.cpp │ │ │ │ │ ├── ogrxlsdrivercore.cpp │ │ │ │ │ ├── ogrxlsdrivercore.h │ │ │ │ │ └── ogrxlslayer.cpp │ │ │ │ ├── xlsx │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_xlsx.h │ │ │ │ │ ├── ogrxlsxdatasource.cpp │ │ │ │ │ └── ogrxlsxdriver.cpp │ │ │ │ └── xodr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ogr_xodr.h │ │ │ │ │ ├── ogrxodrdatasource.cpp │ │ │ │ │ ├── ogrxodrdriver.cpp │ │ │ │ │ ├── ogrxodrdrivercore.cpp │ │ │ │ │ ├── ogrxodrdrivercore.h │ │ │ │ │ ├── ogrxodrlayer.cpp │ │ │ │ │ ├── ogrxodrlayerlane.cpp │ │ │ │ │ ├── ogrxodrlayerlaneborder.cpp │ │ │ │ │ ├── ogrxodrlayerreferenceline.cpp │ │ │ │ │ ├── ogrxodrlayerroadmark.cpp │ │ │ │ │ ├── ogrxodrlayerroadobject.cpp │ │ │ │ │ └── ogrxodrlayerroadsignal.cpp │ │ │ ├── ogrspatialreference.cpp │ │ │ ├── ogrsurface.cpp │ │ │ ├── ogrtriangle.cpp │ │ │ ├── ogrtriangulatedsurface.cpp │ │ │ ├── ogrutils.cpp │ │ │ ├── ogrvrtgeometrytypes.cpp │ │ │ ├── ogrvrtgeometrytypes.h │ │ │ ├── swq.cpp │ │ │ ├── swq_expr_node.cpp │ │ │ ├── swq_op_general.cpp │ │ │ ├── swq_op_registrar.cpp │ │ │ ├── swq_parser.cpp │ │ │ ├── swq_parser.hpp │ │ │ ├── swq_parser.y │ │ │ ├── swq_select.cpp │ │ │ └── test_geo_utils.cpp │ │ ├── port │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENCE_minizip │ │ │ ├── character_set_conv_table_generator.c │ │ │ ├── cpl_alibaba_oss.cpp │ │ │ ├── cpl_alibaba_oss.h │ │ │ ├── cpl_atomic_ops.cpp │ │ │ ├── cpl_atomic_ops.h │ │ │ ├── cpl_auto_close.h │ │ │ ├── cpl_aws.cpp │ │ │ ├── cpl_aws.h │ │ │ ├── cpl_aws_win32.cpp │ │ │ ├── cpl_azure.cpp │ │ │ ├── cpl_azure.h │ │ │ ├── cpl_base64.cpp │ │ │ ├── cpl_character_sets.c │ │ │ ├── cpl_character_sets.h │ │ │ ├── cpl_compressor.cpp │ │ │ ├── cpl_compressor.h │ │ │ ├── cpl_config_extras.h │ │ │ ├── cpl_conv.cpp │ │ │ ├── cpl_conv.h │ │ │ ├── cpl_cpu_features.cpp │ │ │ ├── cpl_cpu_features.h │ │ │ ├── cpl_csv.cpp │ │ │ ├── cpl_csv.h │ │ │ ├── cpl_curl_priv.h │ │ │ ├── cpl_error.cpp │ │ │ ├── cpl_error.h │ │ │ ├── cpl_error_internal.h │ │ │ ├── cpl_findfile.cpp │ │ │ ├── cpl_float.cpp │ │ │ ├── cpl_float.h │ │ │ ├── cpl_getexecpath.cpp │ │ │ ├── cpl_google_cloud.cpp │ │ │ ├── cpl_google_cloud.h │ │ │ ├── cpl_google_oauth2.cpp │ │ │ ├── cpl_hash_set.cpp │ │ │ ├── cpl_hash_set.h │ │ │ ├── cpl_http.cpp │ │ │ ├── cpl_http.h │ │ │ ├── cpl_json.cpp │ │ │ ├── cpl_json.h │ │ │ ├── cpl_json_header.h │ │ │ ├── cpl_json_streaming_parser.cpp │ │ │ ├── cpl_json_streaming_parser.h │ │ │ ├── cpl_json_streaming_writer.cpp │ │ │ ├── cpl_json_streaming_writer.h │ │ │ ├── cpl_known_config_options.h │ │ │ ├── cpl_levenshtein.cpp │ │ │ ├── cpl_levenshtein.h │ │ │ ├── cpl_list.cpp │ │ │ ├── cpl_list.h │ │ │ ├── cpl_mask.h │ │ │ ├── cpl_md5.cpp │ │ │ ├── cpl_md5.h │ │ │ ├── cpl_mem_cache.h │ │ │ ├── cpl_minixml.cpp │ │ │ ├── cpl_minixml.h │ │ │ ├── cpl_minizip_ioapi.cpp │ │ │ ├── cpl_minizip_ioapi.h │ │ │ ├── cpl_minizip_unzip.cpp │ │ │ ├── cpl_minizip_unzip.h │ │ │ ├── cpl_minizip_zip.cpp │ │ │ ├── cpl_minizip_zip.h │ │ │ ├── cpl_multiproc.cpp │ │ │ ├── cpl_multiproc.h │ │ │ ├── cpl_noncopyablevector.h │ │ │ ├── cpl_odbc.cpp │ │ │ ├── cpl_odbc.h │ │ │ ├── cpl_path.cpp │ │ │ ├── cpl_port.h │ │ │ ├── cpl_progress.cpp │ │ │ ├── cpl_progress.h │ │ │ ├── cpl_quad_tree.cpp │ │ │ ├── cpl_quad_tree.h │ │ │ ├── cpl_recode.cpp │ │ │ ├── cpl_recode_iconv.cpp │ │ │ ├── cpl_recode_stub.cpp │ │ │ ├── cpl_safemaths.hpp │ │ │ ├── cpl_sha1.cpp │ │ │ ├── cpl_sha1.h │ │ │ ├── cpl_sha256.cpp │ │ │ ├── cpl_sha256.h │ │ │ ├── cpl_spawn.cpp │ │ │ ├── cpl_spawn.h │ │ │ ├── cpl_string.cpp │ │ │ ├── cpl_string.h │ │ │ ├── cpl_strtod.cpp │ │ │ ├── cpl_swift.cpp │ │ │ ├── cpl_swift.h │ │ │ ├── cpl_threadsafe_queue.hpp │ │ │ ├── cpl_time.cpp │ │ │ ├── cpl_time.h │ │ │ ├── cpl_userfaultfd.cpp │ │ │ ├── cpl_userfaultfd.h │ │ │ ├── cpl_vax.cpp │ │ │ ├── cpl_vax.h │ │ │ ├── cpl_virtualmem.cpp │ │ │ ├── cpl_virtualmem.h │ │ │ ├── cpl_vsi.h │ │ │ ├── cpl_vsi_error.cpp │ │ │ ├── cpl_vsi_error.h │ │ │ ├── cpl_vsi_mem.cpp │ │ │ ├── cpl_vsi_virtual.h │ │ │ ├── cpl_vsil.cpp │ │ │ ├── cpl_vsil_abstract_archive.cpp │ │ │ ├── cpl_vsil_adls.cpp │ │ │ ├── cpl_vsil_az.cpp │ │ │ ├── cpl_vsil_buffered_reader.cpp │ │ │ ├── cpl_vsil_cache.cpp │ │ │ ├── cpl_vsil_chunked_write_handle.cpp │ │ │ ├── cpl_vsil_crypt.cpp │ │ │ ├── cpl_vsil_curl.cpp │ │ │ ├── cpl_vsil_curl_class.h │ │ │ ├── cpl_vsil_curl_priv.h │ │ │ ├── cpl_vsil_curl_streaming.cpp │ │ │ ├── cpl_vsil_gs.cpp │ │ │ ├── cpl_vsil_gzip.cpp │ │ │ ├── cpl_vsil_hdfs.cpp │ │ │ ├── cpl_vsil_libarchive.cpp │ │ │ ├── cpl_vsil_oss.cpp │ │ │ ├── cpl_vsil_plugin.cpp │ │ │ ├── cpl_vsil_plugin.h │ │ │ ├── cpl_vsil_s3.cpp │ │ │ ├── cpl_vsil_sparsefile.cpp │ │ │ ├── cpl_vsil_stdin.cpp │ │ │ ├── cpl_vsil_stdout.cpp │ │ │ ├── cpl_vsil_subfile.cpp │ │ │ ├── cpl_vsil_swift.cpp │ │ │ ├── cpl_vsil_tar.cpp │ │ │ ├── cpl_vsil_unix_stdio_64.cpp │ │ │ ├── cpl_vsil_uploadonclose.cpp │ │ │ ├── cpl_vsil_webhdfs.cpp │ │ │ ├── cpl_vsil_win32.cpp │ │ │ ├── cpl_vsisimple.cpp │ │ │ ├── cpl_worker_thread_pool.cpp │ │ │ ├── cpl_worker_thread_pool.h │ │ │ ├── cpl_xml_validate.cpp │ │ │ ├── cpl_zlib_header.h │ │ │ ├── cplgetcurrentthreadcount.cpp │ │ │ ├── cplgetsymbol.cpp │ │ │ ├── cplkeywordparser.cpp │ │ │ ├── cplkeywordparser.h │ │ │ ├── cplstring.cpp │ │ │ ├── cplstringlist.cpp │ │ │ ├── gdal_csv.h │ │ │ ├── include_fast_float.h │ │ │ ├── utf8.h │ │ │ └── vsipreload.cpp │ │ ├── resources │ │ │ └── gdal2tiles │ │ │ │ ├── none.png │ │ │ │ └── opacity-slider.png │ │ └── third_party │ │ │ ├── LercLib │ │ │ ├── BitMask.cpp │ │ │ ├── BitMask.h │ │ │ ├── BitStuffer2.cpp │ │ │ ├── BitStuffer2.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Defines.h │ │ │ ├── Huffman.cpp │ │ │ ├── Huffman.h │ │ │ ├── LICENSE │ │ │ ├── Lerc.cpp │ │ │ ├── Lerc.h │ │ │ ├── Lerc2.cpp │ │ │ ├── Lerc2.h │ │ │ ├── Lerc_c_api.h │ │ │ ├── Lerc_c_api_impl.cpp │ │ │ ├── Lerc_types.h │ │ │ ├── NOTICE │ │ │ ├── RLE.cpp │ │ │ └── RLE.h │ │ │ ├── fast_float │ │ │ ├── AUTHORS │ │ │ ├── LICENSE-MIT │ │ │ ├── PROVENANCE.TXT │ │ │ ├── ascii_number.h │ │ │ ├── bigint.h │ │ │ ├── constexpr_feature_detect.h │ │ │ ├── decimal_to_binary.h │ │ │ ├── digit_comparison.h │ │ │ ├── fast_float.h │ │ │ ├── fast_table.h │ │ │ ├── float_common.h │ │ │ └── parse_number.h │ │ │ ├── libdivide │ │ │ ├── LICENSE.txt │ │ │ └── libdivide.h │ │ │ └── libertiff │ │ │ └── libertiff.hpp │ ├── gyp-formats │ │ ├── aaigrid.gyp │ │ ├── adrg.gyp │ │ ├── aigrid.gyp │ │ ├── airsar.gyp │ │ ├── bmp.gyp │ │ ├── ceos.gyp │ │ ├── ceos2.gyp │ │ ├── coasp.gyp │ │ ├── cosar.gyp │ │ ├── ctg.gyp │ │ ├── dimap.gyp │ │ ├── dted.gyp │ │ ├── envisat.gyp │ │ ├── ers.gyp │ │ ├── gff.gyp │ │ ├── grib.gyp │ │ ├── gsg.gyp │ │ ├── gti.gyp │ │ ├── gtiff.gyp │ │ ├── hdf5.gyp │ │ ├── hf2.gyp │ │ ├── hfa.gyp │ │ ├── idrisi.gyp │ │ ├── ilwis.gyp │ │ ├── iris.gyp │ │ ├── iso8211.gyp │ │ ├── jaxapalsar.gyp │ │ ├── jdem.gyp │ │ ├── jpeg.gyp │ │ ├── kmlsuperoverlay.gyp │ │ ├── l1b.gyp │ │ ├── leveller.gyp │ │ ├── libertiff.gyp │ │ ├── map.gyp │ │ ├── mbtiles.gyp │ │ ├── mem.gyp │ │ ├── miramon.gyp │ │ ├── netcdf.gyp │ │ ├── ngsgeoid.gyp │ │ ├── nitf.gyp │ │ ├── northwood.gyp │ │ ├── ogr_avc.gyp │ │ ├── ogr_carto.gyp │ │ ├── ogr_csv.gyp │ │ ├── ogr_dgn.gyp │ │ ├── ogr_dxf.gyp │ │ ├── ogr_edigeo.gyp │ │ ├── ogr_flatgeobuf.gyp │ │ ├── ogr_geojson.gyp │ │ ├── ogr_georss.gyp │ │ ├── ogr_gml.gyp │ │ ├── ogr_gmlutils.gyp │ │ ├── ogr_gmt.gyp │ │ ├── ogr_gpkg.gyp │ │ ├── ogr_gpsbabel.gyp │ │ ├── ogr_gpx.gyp │ │ ├── ogr_idrisi.gyp │ │ ├── ogr_jsonfg.gyp │ │ ├── ogr_kml.gyp │ │ ├── ogr_mitab.gyp │ │ ├── ogr_mvt.gyp │ │ ├── ogr_openfilegdb.gyp │ │ ├── ogr_osm.gyp │ │ ├── ogr_pds.gyp │ │ ├── ogr_pgdump.gyp │ │ ├── ogr_pmtiles.gyp │ │ ├── ogr_s57.gyp │ │ ├── ogr_shape.gyp │ │ ├── ogr_sqlite.gyp │ │ ├── ogr_sxf.gyp │ │ ├── ogr_vrt.gyp │ │ ├── ogr_wasp.gyp │ │ ├── openjpeg.gyp │ │ ├── pcidsk.gyp │ │ ├── pds.gyp │ │ ├── png.gyp │ │ ├── raw.gyp │ │ ├── rmf.gyp │ │ ├── rs2.gyp │ │ ├── saga.gyp │ │ ├── srtmhgt.gyp │ │ ├── terragen.gyp │ │ ├── til.gyp │ │ ├── tsx.gyp │ │ ├── usgsdem.gyp │ │ ├── vrt.gyp │ │ ├── wcs.gyp │ │ ├── wms.gyp │ │ ├── wmts.gyp │ │ ├── xyz.gyp │ │ ├── zlib.gyp │ │ └── zmap.gyp │ ├── gyp-templates │ │ ├── libgdal_format.gyp │ │ └── libgdal_formats.gypi │ ├── libgdal.gyp │ ├── libgdal_formats.gypi │ └── patches │ │ └── libgdal_gdal_port_cpl_zlib_header.h.diff ├── libgeos.sh ├── libgeos │ ├── geos │ │ ├── AUTHORS │ │ ├── CODE_OF_CONDUCT.md │ │ ├── COPYING │ │ ├── DEVELOPER-NOTES.md │ │ ├── INSTALL.md │ │ ├── NEWS.md │ │ ├── README.md │ │ ├── Version.txt │ │ ├── capi │ │ │ ├── geos_c.cpp │ │ │ └── geos_ts_c.cpp │ │ ├── doxygen │ │ │ ├── README │ │ │ └── check_doxygen_errors.cmake │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── capi_indexed_predicate.c │ │ │ ├── capi_prepared.c │ │ │ ├── capi_read.c │ │ │ ├── capi_read_ts.c │ │ │ ├── capi_strtree.c │ │ │ ├── cpp_read.cpp │ │ │ └── cpp_strtree.cpp │ │ ├── include │ │ │ ├── geos.h │ │ │ └── geos │ │ │ │ ├── algorithm │ │ │ │ ├── Angle.h │ │ │ │ ├── Area.h │ │ │ │ ├── BoundaryNodeRule.h │ │ │ │ ├── CGAlgorithmsDD.h │ │ │ │ ├── CentralEndpointIntersector.h │ │ │ │ ├── Centroid.h │ │ │ │ ├── CircularArcs.h │ │ │ │ ├── ConvexHull.h │ │ │ │ ├── Distance.h │ │ │ │ ├── HCoordinate.h │ │ │ │ ├── InteriorPointArea.h │ │ │ │ ├── InteriorPointLine.h │ │ │ │ ├── InteriorPointPoint.h │ │ │ │ ├── Interpolate.h │ │ │ │ ├── Intersection.h │ │ │ │ ├── Length.h │ │ │ │ ├── LineIntersector.h │ │ │ │ ├── MinimumAreaRectangle.h │ │ │ │ ├── MinimumBoundingCircle.h │ │ │ │ ├── MinimumDiameter.h │ │ │ │ ├── NotRepresentableException.h │ │ │ │ ├── Orientation.h │ │ │ │ ├── PointInRing.h │ │ │ │ ├── PointLocation.h │ │ │ │ ├── PointLocator.h │ │ │ │ ├── PolygonNodeTopology.h │ │ │ │ ├── RayCrossingCounter.h │ │ │ │ ├── Rectangle.h │ │ │ │ ├── RobustDeterminant.h │ │ │ │ ├── SimplePointInRing.h │ │ │ │ ├── construct │ │ │ │ │ ├── IndexedDistanceToPoint.h │ │ │ │ │ ├── IndexedPointInPolygonsLocator.h │ │ │ │ │ ├── LargestEmptyCircle.h │ │ │ │ │ └── MaximumInscribedCircle.h │ │ │ │ ├── distance │ │ │ │ │ ├── DiscreteFrechetDistance.h │ │ │ │ │ ├── DiscreteHausdorffDistance.h │ │ │ │ │ ├── DistanceToPoint.h │ │ │ │ │ └── PointPairDistance.h │ │ │ │ ├── hull │ │ │ │ │ ├── ConcaveHull.h │ │ │ │ │ ├── ConcaveHullOfPolygons.h │ │ │ │ │ ├── HullTri.h │ │ │ │ │ └── HullTriangulation.h │ │ │ │ └── locate │ │ │ │ │ ├── IndexedPointInAreaLocator.h │ │ │ │ │ ├── PointOnGeometryLocator.h │ │ │ │ │ └── SimplePointInAreaLocator.h │ │ │ │ ├── constants.h │ │ │ │ ├── coverage │ │ │ │ ├── Corner.h │ │ │ │ ├── CoverageBoundarySegmentFinder.h │ │ │ │ ├── CoverageEdge.h │ │ │ │ ├── CoverageGapFinder.h │ │ │ │ ├── CoveragePolygon.h │ │ │ │ ├── CoveragePolygonValidator.h │ │ │ │ ├── CoverageRing.h │ │ │ │ ├── CoverageRingEdges.h │ │ │ │ ├── CoverageSimplifier.h │ │ │ │ ├── CoverageUnion.h │ │ │ │ ├── CoverageValidator.h │ │ │ │ ├── InvalidSegmentDetector.h │ │ │ │ ├── TPVWSimplifier.h │ │ │ │ └── VertexRingCounter.h │ │ │ │ ├── edgegraph │ │ │ │ ├── EdgeGraph.h │ │ │ │ ├── EdgeGraphBuilder.h │ │ │ │ ├── HalfEdge.h │ │ │ │ └── MarkHalfEdge.h │ │ │ │ ├── export.h │ │ │ │ ├── geom.h │ │ │ │ ├── geom │ │ │ │ ├── CircularArc.h │ │ │ │ ├── CircularString.h │ │ │ │ ├── CompoundCurve.h │ │ │ │ ├── Coordinate.h │ │ │ │ ├── CoordinateFilter.h │ │ │ │ ├── CoordinateList.h │ │ │ │ ├── CoordinateSequence.h │ │ │ │ ├── CoordinateSequenceFilter.h │ │ │ │ ├── CoordinateSequenceIterator.h │ │ │ │ ├── CoordinateSequences.h │ │ │ │ ├── Curve.h │ │ │ │ ├── CurvePolygon.h │ │ │ │ ├── Dimension.h │ │ │ │ ├── Envelope.h │ │ │ │ ├── Geometry.h │ │ │ │ ├── GeometryCollection.h │ │ │ │ ├── GeometryComponentFilter.h │ │ │ │ ├── GeometryFactory.h │ │ │ │ ├── GeometryFilter.h │ │ │ │ ├── GeometryTypeName.h │ │ │ │ ├── HeuristicOverlay.h │ │ │ │ ├── IntersectionMatrix.h │ │ │ │ ├── LineSegment.h │ │ │ │ ├── LineString.h │ │ │ │ ├── LinearRing.h │ │ │ │ ├── Location.h │ │ │ │ ├── MultiCurve.h │ │ │ │ ├── MultiLineString.h │ │ │ │ ├── MultiPoint.h │ │ │ │ ├── MultiPolygon.h │ │ │ │ ├── MultiSurface.h │ │ │ │ ├── Point.h │ │ │ │ ├── Polygon.h │ │ │ │ ├── Position.h │ │ │ │ ├── PrecisionModel.h │ │ │ │ ├── Quadrant.h │ │ │ │ ├── SimpleCurve.h │ │ │ │ ├── Surface.h │ │ │ │ ├── SurfaceImpl.h │ │ │ │ ├── Triangle.h │ │ │ │ ├── prep │ │ │ │ │ ├── AbstractPreparedPolygonContains.h │ │ │ │ │ ├── BasicPreparedGeometry.h │ │ │ │ │ ├── PreparedGeometry.h │ │ │ │ │ ├── PreparedGeometryFactory.h │ │ │ │ │ ├── PreparedLineString.h │ │ │ │ │ ├── PreparedLineStringDistance.h │ │ │ │ │ ├── PreparedLineStringIntersects.h │ │ │ │ │ ├── PreparedLineStringNearestPoints.h │ │ │ │ │ ├── PreparedPoint.h │ │ │ │ │ ├── PreparedPolygon.h │ │ │ │ │ ├── PreparedPolygonContains.h │ │ │ │ │ ├── PreparedPolygonContainsProperly.h │ │ │ │ │ ├── PreparedPolygonCovers.h │ │ │ │ │ ├── PreparedPolygonDistance.h │ │ │ │ │ ├── PreparedPolygonIntersects.h │ │ │ │ │ └── PreparedPolygonPredicate.h │ │ │ │ └── util │ │ │ │ │ ├── ComponentCoordinateExtracter.h │ │ │ │ │ ├── CoordinateOperation.h │ │ │ │ │ ├── Densifier.h │ │ │ │ │ ├── GeometryCombiner.h │ │ │ │ │ ├── GeometryEditor.h │ │ │ │ │ ├── GeometryEditorOperation.h │ │ │ │ │ ├── GeometryExtracter.h │ │ │ │ │ ├── GeometryFixer.h │ │ │ │ │ ├── GeometryLister.h │ │ │ │ │ ├── GeometryMapper.h │ │ │ │ │ ├── GeometryTransformer.h │ │ │ │ │ ├── LinearComponentExtracter.h │ │ │ │ │ ├── NoOpGeometryOperation.h │ │ │ │ │ ├── PointExtracter.h │ │ │ │ │ ├── PolygonExtracter.h │ │ │ │ │ ├── PolygonalExtracter.h │ │ │ │ │ ├── ShortCircuitedGeometryVisitor.h │ │ │ │ │ └── SineStarFactory.h │ │ │ │ ├── geomgraph │ │ │ │ ├── Depth.h │ │ │ │ ├── DirectedEdge.h │ │ │ │ ├── DirectedEdgeStar.h │ │ │ │ ├── Edge.h │ │ │ │ ├── EdgeEnd.h │ │ │ │ ├── EdgeEndStar.h │ │ │ │ ├── EdgeIntersection.h │ │ │ │ ├── EdgeIntersectionList.h │ │ │ │ ├── EdgeList.h │ │ │ │ ├── EdgeNodingValidator.h │ │ │ │ ├── EdgeRing.h │ │ │ │ ├── GeometryGraph.h │ │ │ │ ├── GraphComponent.h │ │ │ │ ├── Label.h │ │ │ │ ├── Node.h │ │ │ │ ├── NodeFactory.h │ │ │ │ ├── NodeMap.h │ │ │ │ ├── PlanarGraph.h │ │ │ │ ├── TopologyLocation.h │ │ │ │ └── index │ │ │ │ │ ├── EdgeSetIntersector.h │ │ │ │ │ ├── MonotoneChain.h │ │ │ │ │ ├── MonotoneChainEdge.h │ │ │ │ │ ├── MonotoneChainIndexer.h │ │ │ │ │ ├── SegmentIntersector.h │ │ │ │ │ ├── SimpleEdgeSetIntersector.h │ │ │ │ │ ├── SimpleMCSweepLineIntersector.h │ │ │ │ │ ├── SimpleSweepLineIntersector.h │ │ │ │ │ ├── SweepLineEvent.h │ │ │ │ │ ├── SweepLineEventObj.h │ │ │ │ │ └── SweepLineSegment.h │ │ │ │ ├── index │ │ │ │ ├── ItemVisitor.h │ │ │ │ ├── SpatialIndex.h │ │ │ │ ├── VertexSequencePackedRtree.h │ │ │ │ ├── bintree │ │ │ │ │ ├── Bintree.h │ │ │ │ │ ├── Interval.h │ │ │ │ │ ├── Key.h │ │ │ │ │ ├── Node.h │ │ │ │ │ ├── NodeBase.h │ │ │ │ │ └── Root.h │ │ │ │ ├── chain │ │ │ │ │ ├── MonotoneChain.h │ │ │ │ │ ├── MonotoneChainBuilder.h │ │ │ │ │ ├── MonotoneChainOverlapAction.h │ │ │ │ │ └── MonotoneChainSelectAction.h │ │ │ │ ├── intervalrtree │ │ │ │ │ ├── IntervalRTreeBranchNode.h │ │ │ │ │ ├── IntervalRTreeLeafNode.h │ │ │ │ │ ├── IntervalRTreeNode.h │ │ │ │ │ └── SortedPackedIntervalRTree.h │ │ │ │ ├── kdtree │ │ │ │ │ ├── KdNode.h │ │ │ │ │ ├── KdNodeVisitor.h │ │ │ │ │ └── KdTree.h │ │ │ │ ├── quadtree │ │ │ │ │ ├── IntervalSize.h │ │ │ │ │ ├── Key.h │ │ │ │ │ ├── Node.h │ │ │ │ │ ├── NodeBase.h │ │ │ │ │ ├── Quadtree.h │ │ │ │ │ └── Root.h │ │ │ │ ├── strtree │ │ │ │ │ ├── AbstractNode.h │ │ │ │ │ ├── AbstractSTRtree.h │ │ │ │ │ ├── Boundable.h │ │ │ │ │ ├── BoundablePair.h │ │ │ │ │ ├── EnvelopeUtil.h │ │ │ │ │ ├── GeometryItemDistance.h │ │ │ │ │ ├── Interval.h │ │ │ │ │ ├── ItemBoundable.h │ │ │ │ │ ├── ItemDistance.h │ │ │ │ │ ├── SIRtree.h │ │ │ │ │ ├── STRtree.h │ │ │ │ │ ├── SimpleSTRdistance.h │ │ │ │ │ ├── SimpleSTRnode.h │ │ │ │ │ ├── SimpleSTRtree.h │ │ │ │ │ ├── TemplateSTRNode.h │ │ │ │ │ ├── TemplateSTRNodePair.h │ │ │ │ │ ├── TemplateSTRtree.h │ │ │ │ │ └── TemplateSTRtreeDistance.h │ │ │ │ └── sweepline │ │ │ │ │ ├── SweepLineEvent.h │ │ │ │ │ ├── SweepLineIndex.h │ │ │ │ │ ├── SweepLineInterval.h │ │ │ │ │ └── SweepLineOverlapAction.h │ │ │ │ ├── io │ │ │ │ ├── ByteOrderDataInStream.h │ │ │ │ ├── ByteOrderValues.h │ │ │ │ ├── CLocalizer.h │ │ │ │ ├── CheckOrdinatesFilter.h │ │ │ │ ├── GeoJSON.h │ │ │ │ ├── GeoJSONReader.h │ │ │ │ ├── GeoJSONWriter.h │ │ │ │ ├── OrdinateSet.h │ │ │ │ ├── ParseException.h │ │ │ │ ├── StringTokenizer.h │ │ │ │ ├── WKBConstants.h │ │ │ │ ├── WKBReader.h │ │ │ │ ├── WKBStreamReader.h │ │ │ │ ├── WKBWriter.h │ │ │ │ ├── WKTFileReader.h │ │ │ │ ├── WKTReader.h │ │ │ │ ├── WKTStreamReader.h │ │ │ │ ├── WKTWriter.h │ │ │ │ └── Writer.h │ │ │ │ ├── linearref │ │ │ │ ├── ExtractLineByLocation.h │ │ │ │ ├── LengthIndexOfPoint.h │ │ │ │ ├── LengthIndexedLine.h │ │ │ │ ├── LengthLocationMap.h │ │ │ │ ├── LinearGeometryBuilder.h │ │ │ │ ├── LinearIterator.h │ │ │ │ ├── LinearLocation.h │ │ │ │ ├── LocationIndexOfLine.h │ │ │ │ ├── LocationIndexOfPoint.h │ │ │ │ └── LocationIndexedLine.h │ │ │ │ ├── math │ │ │ │ └── DD.h │ │ │ │ ├── namespaces.h │ │ │ │ ├── noding │ │ │ │ ├── BasicSegmentString.h │ │ │ │ ├── BoundaryChainNoder.h │ │ │ │ ├── FastNodingValidator.h │ │ │ │ ├── FastSegmentSetIntersectionFinder.h │ │ │ │ ├── GeometryNoder.h │ │ │ │ ├── IntersectionAdder.h │ │ │ │ ├── IntersectionFinderAdder.h │ │ │ │ ├── IteratedNoder.h │ │ │ │ ├── MCIndexNoder.h │ │ │ │ ├── MCIndexSegmentSetMutualIntersector.h │ │ │ │ ├── NodableSegmentString.h │ │ │ │ ├── NodedSegmentString.h │ │ │ │ ├── Noder.h │ │ │ │ ├── NodingIntersectionFinder.h │ │ │ │ ├── NodingValidator.h │ │ │ │ ├── Octant.h │ │ │ │ ├── OrientedCoordinateArray.h │ │ │ │ ├── ScaledNoder.h │ │ │ │ ├── SegmentExtractingNoder.h │ │ │ │ ├── SegmentIntersectionDetector.h │ │ │ │ ├── SegmentIntersector.h │ │ │ │ ├── SegmentNode.h │ │ │ │ ├── SegmentNodeList.h │ │ │ │ ├── SegmentPointComparator.h │ │ │ │ ├── SegmentSetMutualIntersector.h │ │ │ │ ├── SegmentString.h │ │ │ │ ├── SegmentStringUtil.h │ │ │ │ ├── SimpleNoder.h │ │ │ │ ├── SinglePassNoder.h │ │ │ │ ├── ValidatingNoder.h │ │ │ │ ├── snap │ │ │ │ │ ├── SnappingIntersectionAdder.h │ │ │ │ │ ├── SnappingNoder.h │ │ │ │ │ └── SnappingPointIndex.h │ │ │ │ └── snapround │ │ │ │ │ ├── HotPixel.h │ │ │ │ │ ├── HotPixelIndex.h │ │ │ │ │ ├── MCIndexPointSnapper.h │ │ │ │ │ ├── MCIndexSnapRounder.h │ │ │ │ │ ├── SnapRoundingIntersectionAdder.h │ │ │ │ │ └── SnapRoundingNoder.h │ │ │ │ ├── operation │ │ │ │ ├── BoundaryOp.h │ │ │ │ ├── GeometryGraphOperation.h │ │ │ │ ├── buffer │ │ │ │ │ ├── BufferBuilder.h │ │ │ │ │ ├── BufferCurveSetBuilder.h │ │ │ │ │ ├── BufferInputLineSimplifier.h │ │ │ │ │ ├── BufferOp.h │ │ │ │ │ ├── BufferParameters.h │ │ │ │ │ ├── BufferSubgraph.h │ │ │ │ │ ├── OffsetCurve.h │ │ │ │ │ ├── OffsetCurveBuilder.h │ │ │ │ │ ├── OffsetCurveSection.h │ │ │ │ │ ├── OffsetSegmentGenerator.h │ │ │ │ │ ├── OffsetSegmentString.h │ │ │ │ │ ├── RightmostEdgeFinder.h │ │ │ │ │ ├── SegmentMCIndex.h │ │ │ │ │ └── SubgraphDepthLocater.h │ │ │ │ ├── cluster │ │ │ │ │ ├── AbstractClusterFinder.h │ │ │ │ │ ├── Clusters.h │ │ │ │ │ ├── DBSCANClusterFinder.h │ │ │ │ │ ├── DisjointOperation.h │ │ │ │ │ ├── EnvelopeDistanceClusterFinder.h │ │ │ │ │ ├── EnvelopeIntersectsClusterFinder.h │ │ │ │ │ ├── GeometryDistanceClusterFinder.h │ │ │ │ │ ├── GeometryFlattener.h │ │ │ │ │ ├── GeometryIntersectsClusterFinder.h │ │ │ │ │ └── UnionFind.h │ │ │ │ ├── distance │ │ │ │ │ ├── ConnectedElementLocationFilter.h │ │ │ │ │ ├── ConnectedElementPointFilter.h │ │ │ │ │ ├── DistanceOp.h │ │ │ │ │ ├── FacetSequence.h │ │ │ │ │ ├── FacetSequenceTreeBuilder.h │ │ │ │ │ ├── GeometryLocation.h │ │ │ │ │ └── IndexedFacetDistance.h │ │ │ │ ├── intersection │ │ │ │ │ ├── Rectangle.h │ │ │ │ │ ├── RectangleIntersection.h │ │ │ │ │ └── RectangleIntersectionBuilder.h │ │ │ │ ├── linemerge │ │ │ │ │ ├── EdgeString.h │ │ │ │ │ ├── LineMergeDirectedEdge.h │ │ │ │ │ ├── LineMergeEdge.h │ │ │ │ │ ├── LineMergeGraph.h │ │ │ │ │ ├── LineMerger.h │ │ │ │ │ └── LineSequencer.h │ │ │ │ ├── overlay │ │ │ │ │ ├── MaximalEdgeRing.h │ │ │ │ │ ├── MinimalEdgeRing.h │ │ │ │ │ ├── OverlayNodeFactory.h │ │ │ │ │ ├── PolygonBuilder.h │ │ │ │ │ ├── snap │ │ │ │ │ │ ├── GeometrySnapper.h │ │ │ │ │ │ ├── LineStringSnapper.h │ │ │ │ │ │ └── SnapOverlayOp.h │ │ │ │ │ └── validate │ │ │ │ │ │ ├── FuzzyPointLocator.h │ │ │ │ │ │ ├── OffsetPointGenerator.h │ │ │ │ │ │ └── OverlayResultValidator.h │ │ │ │ ├── overlayng │ │ │ │ │ ├── CoverageUnion.h │ │ │ │ │ ├── Edge.h │ │ │ │ │ ├── EdgeKey.h │ │ │ │ │ ├── EdgeMerger.h │ │ │ │ │ ├── EdgeNodingBuilder.h │ │ │ │ │ ├── EdgeSourceInfo.h │ │ │ │ │ ├── ElevationModel.h │ │ │ │ │ ├── IndexedPointOnLineLocator.h │ │ │ │ │ ├── InputGeometry.h │ │ │ │ │ ├── IntersectionPointBuilder.h │ │ │ │ │ ├── LineBuilder.h │ │ │ │ │ ├── LineLimiter.h │ │ │ │ │ ├── MaximalEdgeRing.h │ │ │ │ │ ├── OverlayEdge.h │ │ │ │ │ ├── OverlayEdgeRing.h │ │ │ │ │ ├── OverlayGraph.h │ │ │ │ │ ├── OverlayLabel.h │ │ │ │ │ ├── OverlayLabeller.h │ │ │ │ │ ├── OverlayMixedPoints.h │ │ │ │ │ ├── OverlayNG.h │ │ │ │ │ ├── OverlayNGRobust.h │ │ │ │ │ ├── OverlayPoints.h │ │ │ │ │ ├── OverlayUtil.h │ │ │ │ │ ├── PolygonBuilder.h │ │ │ │ │ ├── PrecisionReducer.h │ │ │ │ │ ├── PrecisionUtil.h │ │ │ │ │ ├── RingClipper.h │ │ │ │ │ ├── RobustClipEnvelopeComputer.h │ │ │ │ │ └── UnaryUnionNG.h │ │ │ │ ├── polygonize │ │ │ │ │ ├── BuildArea.h │ │ │ │ │ ├── EdgeRing.h │ │ │ │ │ ├── HoleAssigner.h │ │ │ │ │ ├── PolygonizeDirectedEdge.h │ │ │ │ │ ├── PolygonizeEdge.h │ │ │ │ │ ├── PolygonizeGraph.h │ │ │ │ │ └── Polygonizer.h │ │ │ │ ├── predicate │ │ │ │ │ ├── RectangleContains.h │ │ │ │ │ ├── RectangleIntersects.h │ │ │ │ │ └── SegmentIntersectionTester.h │ │ │ │ ├── relate │ │ │ │ │ ├── EdgeEndBuilder.h │ │ │ │ │ ├── EdgeEndBundle.h │ │ │ │ │ ├── EdgeEndBundleStar.h │ │ │ │ │ ├── RelateComputer.h │ │ │ │ │ ├── RelateNode.h │ │ │ │ │ ├── RelateNodeFactory.h │ │ │ │ │ ├── RelateNodeGraph.h │ │ │ │ │ └── RelateOp.h │ │ │ │ ├── relateng │ │ │ │ │ ├── AdjacentEdgeLocator.h │ │ │ │ │ ├── BasicPredicate.h │ │ │ │ │ ├── DimensionLocation.h │ │ │ │ │ ├── EdgeSegmentIntersector.h │ │ │ │ │ ├── EdgeSegmentOverlapAction.h │ │ │ │ │ ├── EdgeSetIntersector.h │ │ │ │ │ ├── IMPatternMatcher.h │ │ │ │ │ ├── IMPredicate.h │ │ │ │ │ ├── IntersectionMatrixPattern.h │ │ │ │ │ ├── LineStringExtracter.h │ │ │ │ │ ├── LinearBoundary.h │ │ │ │ │ ├── NodeSection.h │ │ │ │ │ ├── NodeSections.h │ │ │ │ │ ├── PolygonNodeConverter.h │ │ │ │ │ ├── RelateEdge.h │ │ │ │ │ ├── RelateGeometry.h │ │ │ │ │ ├── RelateMatrixPredicate.h │ │ │ │ │ ├── RelateNG.h │ │ │ │ │ ├── RelateNode.h │ │ │ │ │ ├── RelatePointLocator.h │ │ │ │ │ ├── RelatePredicate.h │ │ │ │ │ ├── RelateSegmentString.h │ │ │ │ │ ├── TopologyComputer.h │ │ │ │ │ └── TopologyPredicate.h │ │ │ │ ├── sharedpaths │ │ │ │ │ └── SharedPathsOp.h │ │ │ │ ├── union │ │ │ │ │ ├── CascadedPolygonUnion.h │ │ │ │ │ ├── CoverageUnion.h │ │ │ │ │ ├── DisjointSubsetUnion.h │ │ │ │ │ ├── OverlapUnion.h │ │ │ │ │ ├── PointGeometryUnion.h │ │ │ │ │ ├── UnaryUnionOp.h │ │ │ │ │ └── UnionStrategy.h │ │ │ │ └── valid │ │ │ │ │ ├── ConsistentAreaTester.h │ │ │ │ │ ├── IndexedNestedHoleTester.h │ │ │ │ │ ├── IndexedNestedPolygonTester.h │ │ │ │ │ ├── IsSimpleOp.h │ │ │ │ │ ├── IsValidOp.h │ │ │ │ │ ├── MakeValid.h │ │ │ │ │ ├── PolygonIntersectionAnalyzer.h │ │ │ │ │ ├── PolygonRing.h │ │ │ │ │ ├── PolygonRingSelfNode.h │ │ │ │ │ ├── PolygonRingTouch.h │ │ │ │ │ ├── PolygonTopologyAnalyzer.h │ │ │ │ │ ├── RepeatedPointRemover.h │ │ │ │ │ ├── RepeatedPointTester.h │ │ │ │ │ └── TopologyValidationError.h │ │ │ │ ├── planargraph │ │ │ │ ├── DirectedEdge.h │ │ │ │ ├── DirectedEdgeStar.h │ │ │ │ ├── Edge.h │ │ │ │ ├── GraphComponent.h │ │ │ │ ├── Node.h │ │ │ │ ├── NodeMap.h │ │ │ │ ├── PlanarGraph.h │ │ │ │ ├── Subgraph.h │ │ │ │ └── algorithm │ │ │ │ │ └── ConnectedSubgraphFinder.h │ │ │ │ ├── precision │ │ │ │ ├── CommonBits.h │ │ │ │ ├── CommonBitsOp.h │ │ │ │ ├── CommonBitsRemover.h │ │ │ │ ├── EnhancedPrecisionOp.h │ │ │ │ ├── GeometryPrecisionReducer.h │ │ │ │ ├── MinimumClearance.h │ │ │ │ ├── PointwisePrecisionReducerTransformer.h │ │ │ │ ├── PrecisionReducerCoordinateOperation.h │ │ │ │ ├── PrecisionReducerTransformer.h │ │ │ │ └── SimpleGeometryPrecisionReducer.h │ │ │ │ ├── profiler.h │ │ │ │ ├── shape │ │ │ │ └── fractal │ │ │ │ │ ├── HilbertCode.h │ │ │ │ │ ├── HilbertEncoder.h │ │ │ │ │ └── MortonCode.h │ │ │ │ ├── simplify │ │ │ │ ├── ComponentJumpChecker.h │ │ │ │ ├── DouglasPeuckerLineSimplifier.h │ │ │ │ ├── DouglasPeuckerSimplifier.h │ │ │ │ ├── LineSegmentIndex.h │ │ │ │ ├── LinkedLine.h │ │ │ │ ├── LinkedRing.h │ │ │ │ ├── PolygonHullSimplifier.h │ │ │ │ ├── RingHull.h │ │ │ │ ├── RingHullIndex.h │ │ │ │ ├── TaggedLineSegment.h │ │ │ │ ├── TaggedLineString.h │ │ │ │ ├── TaggedLineStringSimplifier.h │ │ │ │ ├── TaggedLinesSimplifier.h │ │ │ │ └── TopologyPreservingSimplifier.h │ │ │ │ ├── triangulate │ │ │ │ ├── DelaunayTriangulationBuilder.h │ │ │ │ ├── IncrementalDelaunayTriangulator.h │ │ │ │ ├── VoronoiDiagramBuilder.h │ │ │ │ ├── polygon │ │ │ │ │ ├── ConstrainedDelaunayTriangulator.h │ │ │ │ │ ├── PolygonEarClipper.h │ │ │ │ │ ├── PolygonHoleJoiner.h │ │ │ │ │ ├── PolygonNoder.h │ │ │ │ │ ├── PolygonTriangulator.h │ │ │ │ │ └── TriDelaunayImprover.h │ │ │ │ ├── quadedge │ │ │ │ │ ├── LastFoundQuadEdgeLocator.h │ │ │ │ │ ├── LocateFailureException.h │ │ │ │ │ ├── QuadEdge.h │ │ │ │ │ ├── QuadEdgeLocator.h │ │ │ │ │ ├── QuadEdgeQuartet.h │ │ │ │ │ ├── QuadEdgeSubdivision.h │ │ │ │ │ ├── TrianglePredicate.h │ │ │ │ │ ├── TriangleVisitor.h │ │ │ │ │ └── Vertex.h │ │ │ │ └── tri │ │ │ │ │ ├── Tri.h │ │ │ │ │ ├── TriEdge.h │ │ │ │ │ ├── TriList.h │ │ │ │ │ └── TriangulationBuilder.h │ │ │ │ ├── unload.h │ │ │ │ ├── util.h │ │ │ │ ├── util │ │ │ │ ├── Assert.h │ │ │ │ ├── AssertionFailedException.h │ │ │ │ ├── CoordinateArrayFilter.h │ │ │ │ ├── GEOSException.h │ │ │ │ ├── GeometricShapeFactory.h │ │ │ │ ├── IllegalArgumentException.h │ │ │ │ ├── IllegalStateException.h │ │ │ │ ├── Interrupt.h │ │ │ │ ├── Machine.h │ │ │ │ ├── TopologyException.h │ │ │ │ ├── UniqueCoordinateArrayFilter.h │ │ │ │ ├── UnsupportedOperationException.h │ │ │ │ ├── math.h │ │ │ │ └── string.h │ │ │ │ ├── vend │ │ │ │ ├── include_nlohmann_json.hpp │ │ │ │ └── json.hpp │ │ │ │ └── version.h │ │ ├── release.md │ │ ├── src │ │ │ ├── algorithm │ │ │ │ ├── Angle.cpp │ │ │ │ ├── Area.cpp │ │ │ │ ├── BoundaryNodeRule.cpp │ │ │ │ ├── CGAlgorithmsDD.cpp │ │ │ │ ├── Centroid.cpp │ │ │ │ ├── CircularArcs.cpp │ │ │ │ ├── ConvexHull.cpp │ │ │ │ ├── Distance.cpp │ │ │ │ ├── HCoordinate.cpp │ │ │ │ ├── InteriorPointArea.cpp │ │ │ │ ├── InteriorPointLine.cpp │ │ │ │ ├── InteriorPointPoint.cpp │ │ │ │ ├── Intersection.cpp │ │ │ │ ├── Length.cpp │ │ │ │ ├── LineIntersector.cpp │ │ │ │ ├── MinimumAreaRectangle.cpp │ │ │ │ ├── MinimumBoundingCircle.cpp │ │ │ │ ├── MinimumDiameter.cpp │ │ │ │ ├── NotRepresentableException.cpp │ │ │ │ ├── Orientation.cpp │ │ │ │ ├── PointLocation.cpp │ │ │ │ ├── PointLocator.cpp │ │ │ │ ├── PolygonNodeTopology.cpp │ │ │ │ ├── RayCrossingCounter.cpp │ │ │ │ ├── Rectangle.cpp │ │ │ │ ├── RobustDeterminant.cpp │ │ │ │ ├── SimplePointInRing.cpp │ │ │ │ ├── construct │ │ │ │ │ ├── IndexedDistanceToPoint.cpp │ │ │ │ │ ├── IndexedPointInPolygonsLocator.cpp │ │ │ │ │ ├── LargestEmptyCircle.cpp │ │ │ │ │ └── MaximumInscribedCircle.cpp │ │ │ │ ├── distance │ │ │ │ │ ├── DiscreteFrechetDistance.cpp │ │ │ │ │ ├── DiscreteHausdorffDistance.cpp │ │ │ │ │ └── DistanceToPoint.cpp │ │ │ │ ├── hull │ │ │ │ │ ├── ConcaveHull.cpp │ │ │ │ │ ├── ConcaveHullOfPolygons.cpp │ │ │ │ │ ├── HullTri.cpp │ │ │ │ │ └── HullTriangulation.cpp │ │ │ │ └── locate │ │ │ │ │ ├── IndexedPointInAreaLocator.cpp │ │ │ │ │ ├── PointOnGeometryLocator.cpp │ │ │ │ │ └── SimplePointInAreaLocator.cpp │ │ │ ├── coverage │ │ │ │ ├── Corner.cpp │ │ │ │ ├── CoverageBoundarySegmentFinder.cpp │ │ │ │ ├── CoverageEdge.cpp │ │ │ │ ├── CoverageGapFinder.cpp │ │ │ │ ├── CoveragePolygon.cpp │ │ │ │ ├── CoveragePolygonValidator.cpp │ │ │ │ ├── CoverageRing.cpp │ │ │ │ ├── CoverageRingEdges.cpp │ │ │ │ ├── CoverageSimplifier.cpp │ │ │ │ ├── CoverageUnion.cpp │ │ │ │ ├── CoverageValidator.cpp │ │ │ │ ├── InvalidSegmentDetector.cpp │ │ │ │ ├── TPVWSimplifier.cpp │ │ │ │ └── VertexRingCounter.cpp │ │ │ ├── deps │ │ │ │ └── ryu │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── LICENSE-Apache2 │ │ │ │ │ ├── LICENSE-Boost │ │ │ │ │ ├── README.md │ │ │ │ │ ├── common.h │ │ │ │ │ ├── d2fixed_full_table.h │ │ │ │ │ ├── d2s.c │ │ │ │ │ ├── d2s_full_table.h │ │ │ │ │ ├── d2s_intrinsics.h │ │ │ │ │ ├── digit_table.h │ │ │ │ │ └── ryu.h │ │ │ ├── edgegraph │ │ │ │ ├── EdgeGraph.cpp │ │ │ │ ├── EdgeGraphBuilder.cpp │ │ │ │ ├── HalfEdge.cpp │ │ │ │ └── MarkHalfEdge.cpp │ │ │ ├── geom │ │ │ │ ├── CircularString.cpp │ │ │ │ ├── CompoundCurve.cpp │ │ │ │ ├── Coordinate.cpp │ │ │ │ ├── CoordinateSequence.cpp │ │ │ │ ├── Curve.cpp │ │ │ │ ├── CurvePolygon.cpp │ │ │ │ ├── Dimension.cpp │ │ │ │ ├── Envelope.cpp │ │ │ │ ├── Geometry.cpp │ │ │ │ ├── GeometryCollection.cpp │ │ │ │ ├── GeometryComponentFilter.cpp │ │ │ │ ├── GeometryFactory.cpp │ │ │ │ ├── HeuristicOverlay.cpp │ │ │ │ ├── IntersectionMatrix.cpp │ │ │ │ ├── LineSegment.cpp │ │ │ │ ├── LineString.cpp │ │ │ │ ├── LinearRing.cpp │ │ │ │ ├── Location.cpp │ │ │ │ ├── MultiCurve.cpp │ │ │ │ ├── MultiLineString.cpp │ │ │ │ ├── MultiPoint.cpp │ │ │ │ ├── MultiPolygon.cpp │ │ │ │ ├── MultiSurface.cpp │ │ │ │ ├── Point.cpp │ │ │ │ ├── Polygon.cpp │ │ │ │ ├── Position.cpp │ │ │ │ ├── PrecisionModel.cpp │ │ │ │ ├── Quadrant.cpp │ │ │ │ ├── SimpleCurve.cpp │ │ │ │ ├── Surface.cpp │ │ │ │ ├── Triangle.cpp │ │ │ │ ├── prep │ │ │ │ │ ├── AbstractPreparedPolygonContains.cpp │ │ │ │ │ ├── BasicPreparedGeometry.cpp │ │ │ │ │ ├── PreparedGeometry.cpp │ │ │ │ │ ├── PreparedGeometryFactory.cpp │ │ │ │ │ ├── PreparedLineString.cpp │ │ │ │ │ ├── PreparedLineStringDistance.cpp │ │ │ │ │ ├── PreparedLineStringIntersects.cpp │ │ │ │ │ ├── PreparedLineStringNearestPoints.cpp │ │ │ │ │ ├── PreparedPoint.cpp │ │ │ │ │ ├── PreparedPolygon.cpp │ │ │ │ │ ├── PreparedPolygonContains.cpp │ │ │ │ │ ├── PreparedPolygonContainsProperly.cpp │ │ │ │ │ ├── PreparedPolygonCovers.cpp │ │ │ │ │ ├── PreparedPolygonDistance.cpp │ │ │ │ │ ├── PreparedPolygonIntersects.cpp │ │ │ │ │ └── PreparedPolygonPredicate.cpp │ │ │ │ └── util │ │ │ │ │ ├── ComponentCoordinateExtracter.cpp │ │ │ │ │ ├── CoordinateOperation.cpp │ │ │ │ │ ├── Densifier.cpp │ │ │ │ │ ├── GeometryCombiner.cpp │ │ │ │ │ ├── GeometryEditor.cpp │ │ │ │ │ ├── GeometryFixer.cpp │ │ │ │ │ ├── GeometryMapper.cpp │ │ │ │ │ ├── GeometryTransformer.cpp │ │ │ │ │ ├── LinearComponentExtracter.cpp │ │ │ │ │ ├── NoOpGeometryOperation.cpp │ │ │ │ │ ├── PointExtracter.cpp │ │ │ │ │ ├── PolygonExtracter.cpp │ │ │ │ │ ├── PolygonalExtracter.cpp │ │ │ │ │ ├── ShortCircuitedGeometryVisitor.cpp │ │ │ │ │ └── SineStarFactory.cpp │ │ │ ├── geomgraph │ │ │ │ ├── Depth.cpp │ │ │ │ ├── DirectedEdgeStar_geomgraph.cpp │ │ │ │ ├── DirectedEdge_geomgraph.cpp │ │ │ │ ├── EdgeEnd.cpp │ │ │ │ ├── EdgeEndStar.cpp │ │ │ │ ├── EdgeIntersectionList.cpp │ │ │ │ ├── EdgeList.cpp │ │ │ │ ├── EdgeNodingValidator.cpp │ │ │ │ ├── EdgeRing_geomgraph.cpp │ │ │ │ ├── Edge_geomgraph.cpp │ │ │ │ ├── GeometryGraph.cpp │ │ │ │ ├── GraphComponent.cpp │ │ │ │ ├── Label.cpp │ │ │ │ ├── NodeFactory.cpp │ │ │ │ ├── NodeMap_geomgraph.cpp │ │ │ │ ├── Node_geomgraph.cpp │ │ │ │ ├── PlanarGraph_geomgraph.cpp │ │ │ │ ├── TopologyLocation.cpp │ │ │ │ └── index │ │ │ │ │ ├── MonotoneChainEdge.cpp │ │ │ │ │ ├── MonotoneChainIndexer.cpp │ │ │ │ │ ├── SegmentIntersector.cpp │ │ │ │ │ ├── SimpleEdgeSetIntersector.cpp │ │ │ │ │ ├── SimpleMCSweepLineIntersector.cpp │ │ │ │ │ ├── SimpleSweepLineIntersector.cpp │ │ │ │ │ ├── SweepLineEvent_geomgraph.cpp │ │ │ │ │ └── SweepLineSegment.cpp │ │ │ ├── index │ │ │ │ ├── VertexSequencePackedRtree.cpp │ │ │ │ ├── bintree │ │ │ │ │ ├── Bintree.cpp │ │ │ │ │ ├── Interval_bintree.cpp │ │ │ │ │ ├── Key_bintree.cpp │ │ │ │ │ ├── NodeBase_bintree.cpp │ │ │ │ │ ├── NodeBase_quadtree.cpp │ │ │ │ │ ├── Node_bintree.cpp │ │ │ │ │ └── Root_bintree.cpp │ │ │ │ ├── chain │ │ │ │ │ ├── MonotoneChain.cpp │ │ │ │ │ ├── MonotoneChainBuilder.cpp │ │ │ │ │ ├── MonotoneChainOverlapAction.cpp │ │ │ │ │ └── MonotoneChainSelectAction.cpp │ │ │ │ ├── intervalrtree │ │ │ │ │ ├── IntervalRTreeBranchNode.cpp │ │ │ │ │ ├── IntervalRTreeLeafNode.cpp │ │ │ │ │ └── SortedPackedIntervalRTree.cpp │ │ │ │ ├── kdtree │ │ │ │ │ ├── KdNode.cpp │ │ │ │ │ └── KdTree.cpp │ │ │ │ ├── quadtree │ │ │ │ │ ├── IntervalSize.cpp │ │ │ │ │ ├── Key_quadtree.cpp │ │ │ │ │ ├── Node_quadtree.cpp │ │ │ │ │ ├── Quadtree.cpp │ │ │ │ │ └── Root_quadtree.cpp │ │ │ │ ├── strtree │ │ │ │ │ ├── AbstractSTRtree.cpp │ │ │ │ │ ├── BoundablePair.cpp │ │ │ │ │ ├── EnvelopeUtil.cpp │ │ │ │ │ ├── GeometryItemDistance.cpp │ │ │ │ │ ├── Interval_strtree.cpp │ │ │ │ │ ├── SIRtree.cpp │ │ │ │ │ ├── STRtree.cpp │ │ │ │ │ ├── SimpleSTRdistance.cpp │ │ │ │ │ ├── SimpleSTRnode.cpp │ │ │ │ │ └── SimpleSTRtree.cpp │ │ │ │ └── sweepline │ │ │ │ │ ├── SweepLineEvent_index.cpp │ │ │ │ │ ├── SweepLineIndex.cpp │ │ │ │ │ └── SweepLineInterval.cpp │ │ │ ├── io │ │ │ │ ├── ByteOrderDataInStream.cpp │ │ │ │ ├── ByteOrderValues.cpp │ │ │ │ ├── CLocalizer.cpp │ │ │ │ ├── GeoJSON.cpp │ │ │ │ ├── GeoJSONReader.cpp │ │ │ │ ├── GeoJSONWriter.cpp │ │ │ │ ├── ParseException.cpp │ │ │ │ ├── StringTokenizer.cpp │ │ │ │ ├── Unload.cpp │ │ │ │ ├── WKBReader.cpp │ │ │ │ ├── WKBStreamReader.cpp │ │ │ │ ├── WKBWriter.cpp │ │ │ │ ├── WKTFileReader.cpp │ │ │ │ ├── WKTReader.cpp │ │ │ │ ├── WKTStreamReader.cpp │ │ │ │ ├── WKTWriter.cpp │ │ │ │ └── Writer.cpp │ │ │ ├── linearref │ │ │ │ ├── ExtractLineByLocation.cpp │ │ │ │ ├── LengthIndexOfPoint.cpp │ │ │ │ ├── LengthIndexedLine.cpp │ │ │ │ ├── LengthLocationMap.cpp │ │ │ │ ├── LinearGeometryBuilder.cpp │ │ │ │ ├── LinearIterator.cpp │ │ │ │ ├── LinearLocation.cpp │ │ │ │ ├── LocationIndexOfLine.cpp │ │ │ │ └── LocationIndexOfPoint.cpp │ │ │ ├── math │ │ │ │ └── DD.cpp │ │ │ ├── noding │ │ │ │ ├── BasicSegmentString.cpp │ │ │ │ ├── BoundaryChainNoder.cpp │ │ │ │ ├── FastNodingValidator.cpp │ │ │ │ ├── FastSegmentSetIntersectionFinder.cpp │ │ │ │ ├── GeometryNoder.cpp │ │ │ │ ├── IntersectionAdder.cpp │ │ │ │ ├── IntersectionFinderAdder.cpp │ │ │ │ ├── IteratedNoder.cpp │ │ │ │ ├── MCIndexNoder.cpp │ │ │ │ ├── MCIndexSegmentSetMutualIntersector.cpp │ │ │ │ ├── NodedSegmentString.cpp │ │ │ │ ├── NodingIntersectionFinder.cpp │ │ │ │ ├── NodingValidator.cpp │ │ │ │ ├── Octant.cpp │ │ │ │ ├── OrientedCoordinateArray.cpp │ │ │ │ ├── ScaledNoder.cpp │ │ │ │ ├── SegmentExtractingNoder.cpp │ │ │ │ ├── SegmentIntersectionDetector.cpp │ │ │ │ ├── SegmentNode.cpp │ │ │ │ ├── SegmentNodeList.cpp │ │ │ │ ├── SegmentString.cpp │ │ │ │ ├── SegmentStringUtil.cpp │ │ │ │ ├── SimpleNoder.cpp │ │ │ │ ├── ValidatingNoder.cpp │ │ │ │ ├── snap │ │ │ │ │ ├── SnappingIntersectionAdder.cpp │ │ │ │ │ ├── SnappingNoder.cpp │ │ │ │ │ └── SnappingPointIndex.cpp │ │ │ │ └── snapround │ │ │ │ │ ├── HotPixel.cpp │ │ │ │ │ ├── HotPixelIndex.cpp │ │ │ │ │ ├── MCIndexPointSnapper.cpp │ │ │ │ │ ├── MCIndexSnapRounder.cpp │ │ │ │ │ ├── SnapRoundingIntersectionAdder.cpp │ │ │ │ │ └── SnapRoundingNoder.cpp │ │ │ ├── operation │ │ │ │ ├── BoundaryOp.cpp │ │ │ │ ├── GeometryGraphOperation.cpp │ │ │ │ ├── buffer │ │ │ │ │ ├── BufferBuilder.cpp │ │ │ │ │ ├── BufferCurveSetBuilder.cpp │ │ │ │ │ ├── BufferInputLineSimplifier.cpp │ │ │ │ │ ├── BufferOp.cpp │ │ │ │ │ ├── BufferParameters.cpp │ │ │ │ │ ├── BufferSubgraph.cpp │ │ │ │ │ ├── OffsetCurve.cpp │ │ │ │ │ ├── OffsetCurveBuilder.cpp │ │ │ │ │ ├── OffsetCurveSection.cpp │ │ │ │ │ ├── OffsetSegmentGenerator.cpp │ │ │ │ │ ├── RightmostEdgeFinder.cpp │ │ │ │ │ ├── SegmentMCIndex.cpp │ │ │ │ │ └── SubgraphDepthLocater.cpp │ │ │ │ ├── cluster │ │ │ │ │ ├── AbstractClusterFinder.cpp │ │ │ │ │ ├── Clusters.cpp │ │ │ │ │ ├── DBSCANClusterFinder.cpp │ │ │ │ │ ├── GeometryFlattener.cpp │ │ │ │ │ └── UnionFind.cpp │ │ │ │ ├── distance │ │ │ │ │ ├── ConnectedElementLocationFilter.cpp │ │ │ │ │ ├── ConnectedElementPointFilter.cpp │ │ │ │ │ ├── DistanceOp.cpp │ │ │ │ │ ├── FacetSequence.cpp │ │ │ │ │ ├── FacetSequenceTreeBuilder.cpp │ │ │ │ │ ├── GeometryLocation.cpp │ │ │ │ │ └── IndexedFacetDistance.cpp │ │ │ │ ├── intersection │ │ │ │ │ ├── Rectangle.cpp │ │ │ │ │ ├── RectangleIntersection.cpp │ │ │ │ │ └── RectangleIntersectionBuilder.cpp │ │ │ │ ├── linemerge │ │ │ │ │ ├── EdgeString.cpp │ │ │ │ │ ├── LineMergeDirectedEdge.cpp │ │ │ │ │ ├── LineMergeEdge.cpp │ │ │ │ │ ├── LineMergeGraph.cpp │ │ │ │ │ ├── LineMerger.cpp │ │ │ │ │ └── LineSequencer.cpp │ │ │ │ ├── overlay │ │ │ │ │ ├── MaximalEdgeRing.cpp │ │ │ │ │ ├── MinimalEdgeRing.cpp │ │ │ │ │ ├── OverlayNodeFactory.cpp │ │ │ │ │ ├── PolygonBuilder.cpp │ │ │ │ │ ├── snap │ │ │ │ │ │ ├── GeometrySnapper.cpp │ │ │ │ │ │ ├── LineStringSnapper.cpp │ │ │ │ │ │ └── SnapOverlayOp.cpp │ │ │ │ │ └── validate │ │ │ │ │ │ ├── FuzzyPointLocator.cpp │ │ │ │ │ │ ├── OffsetPointGenerator.cpp │ │ │ │ │ │ └── OverlayResultValidator.cpp │ │ │ │ ├── overlayng │ │ │ │ │ ├── CoverageUnion.cpp │ │ │ │ │ ├── Edge.cpp │ │ │ │ │ ├── EdgeKey.cpp │ │ │ │ │ ├── EdgeMerger.cpp │ │ │ │ │ ├── EdgeNodingBuilder.cpp │ │ │ │ │ ├── EdgeSourceInfo.cpp │ │ │ │ │ ├── ElevationModel.cpp │ │ │ │ │ ├── IndexedPointOnLineLocator.cpp │ │ │ │ │ ├── InputGeometry.cpp │ │ │ │ │ ├── IntersectionPointBuilder.cpp │ │ │ │ │ ├── LineBuilder_ng.cpp │ │ │ │ │ ├── LineLimiter.cpp │ │ │ │ │ ├── MaximalEdgeRing_ng.cpp │ │ │ │ │ ├── OverlayEdge.cpp │ │ │ │ │ ├── OverlayEdgeRing.cpp │ │ │ │ │ ├── OverlayGraph.cpp │ │ │ │ │ ├── OverlayLabel.cpp │ │ │ │ │ ├── OverlayLabeller.cpp │ │ │ │ │ ├── OverlayMixedPoints.cpp │ │ │ │ │ ├── OverlayNG.cpp │ │ │ │ │ ├── OverlayNGRobust.cpp │ │ │ │ │ ├── OverlayPoints.cpp │ │ │ │ │ ├── OverlayUtil.cpp │ │ │ │ │ ├── PolygonBuilder_ng.cpp │ │ │ │ │ ├── PrecisionReducer.cpp │ │ │ │ │ ├── PrecisionUtil.cpp │ │ │ │ │ ├── RingClipper.cpp │ │ │ │ │ ├── RobustClipEnvelopeComputer.cpp │ │ │ │ │ └── UnaryUnionNG.cpp │ │ │ │ ├── polygonize │ │ │ │ │ ├── BuildArea.cpp │ │ │ │ │ ├── EdgeRing_polygonize.cpp │ │ │ │ │ ├── HoleAssigner.cpp │ │ │ │ │ ├── PolygonizeDirectedEdge.cpp │ │ │ │ │ ├── PolygonizeEdge.cpp │ │ │ │ │ ├── PolygonizeGraph.cpp │ │ │ │ │ └── Polygonizer.cpp │ │ │ │ ├── predicate │ │ │ │ │ ├── RectangleContains.cpp │ │ │ │ │ ├── RectangleIntersects.cpp │ │ │ │ │ └── SegmentIntersectionTester.cpp │ │ │ │ ├── relate │ │ │ │ │ ├── EdgeEndBuilder.cpp │ │ │ │ │ ├── EdgeEndBundle.cpp │ │ │ │ │ ├── EdgeEndBundleStar.cpp │ │ │ │ │ ├── RelateComputer.cpp │ │ │ │ │ ├── RelateNode.cpp │ │ │ │ │ ├── RelateNodeFactory.cpp │ │ │ │ │ ├── RelateNodeGraph.cpp │ │ │ │ │ └── RelateOp.cpp │ │ │ │ ├── relateng │ │ │ │ │ ├── AdjacentEdgeLocator.cpp │ │ │ │ │ ├── BasicPredicate.cpp │ │ │ │ │ ├── DimensionLocation.cpp │ │ │ │ │ ├── EdgeSegmentIntersector.cpp │ │ │ │ │ ├── EdgeSegmentOverlapAction.cpp │ │ │ │ │ ├── EdgeSetIntersector.cpp │ │ │ │ │ ├── IMPatternMatcher.cpp │ │ │ │ │ ├── IMPredicate.cpp │ │ │ │ │ ├── LineStringExtracter.cpp │ │ │ │ │ ├── LinearBoundary.cpp │ │ │ │ │ ├── NodeSection.cpp │ │ │ │ │ ├── NodeSections.cpp │ │ │ │ │ ├── PolygonNodeConverter.cpp │ │ │ │ │ ├── RelateEdge.cpp │ │ │ │ │ ├── RelateGeometry.cpp │ │ │ │ │ ├── RelateNG.cpp │ │ │ │ │ ├── RelateNode.cpp │ │ │ │ │ ├── RelatePointLocator.cpp │ │ │ │ │ ├── RelatePredicate.cpp │ │ │ │ │ ├── RelateSegmentString.cpp │ │ │ │ │ └── TopologyComputer.cpp │ │ │ │ ├── sharedpaths │ │ │ │ │ └── SharedPathsOp.cpp │ │ │ │ ├── union │ │ │ │ │ ├── CascadedPolygonUnion.cpp │ │ │ │ │ ├── CoverageUnion.cpp │ │ │ │ │ ├── OverlapUnion.cpp │ │ │ │ │ ├── PointGeometryUnion.cpp │ │ │ │ │ ├── UnaryUnionOp.cpp │ │ │ │ │ └── UnionStrategy.cpp │ │ │ │ └── valid │ │ │ │ │ ├── IndexedNestedHoleTester.cpp │ │ │ │ │ ├── IndexedNestedPolygonTester.cpp │ │ │ │ │ ├── IsSimpleOp.cpp │ │ │ │ │ ├── IsValidOp.cpp │ │ │ │ │ ├── MakeValid.cpp │ │ │ │ │ ├── PolygonIntersectionAnalyzer.cpp │ │ │ │ │ ├── PolygonRing.cpp │ │ │ │ │ ├── PolygonRingSelfNode.cpp │ │ │ │ │ ├── PolygonRingTouch.cpp │ │ │ │ │ ├── PolygonTopologyAnalyzer.cpp │ │ │ │ │ ├── RepeatedPointRemover.cpp │ │ │ │ │ ├── RepeatedPointTester.cpp │ │ │ │ │ └── TopologyValidationError.cpp │ │ │ ├── planargraph │ │ │ │ ├── DirectedEdgeStar_planargraph.cpp │ │ │ │ ├── DirectedEdge_planargraph.cpp │ │ │ │ ├── Edge_planargraph.cpp │ │ │ │ ├── NodeMap_planargraph.cpp │ │ │ │ ├── Node_planargraph.cpp │ │ │ │ ├── PlanarGraph_planargraph.cpp │ │ │ │ ├── Subgraph.cpp │ │ │ │ └── algorithm │ │ │ │ │ └── ConnectedSubgraphFinder.cpp │ │ │ ├── precision │ │ │ │ ├── CommonBits.cpp │ │ │ │ ├── CommonBitsOp.cpp │ │ │ │ ├── CommonBitsRemover.cpp │ │ │ │ ├── EnhancedPrecisionOp.cpp │ │ │ │ ├── GeometryPrecisionReducer.cpp │ │ │ │ ├── MinimumClearance.cpp │ │ │ │ ├── PointwisePrecisionReducerTransformer.cpp │ │ │ │ ├── PrecisionReducerCoordinateOperation.cpp │ │ │ │ ├── PrecisionReducerTransformer.cpp │ │ │ │ └── SimpleGeometryPrecisionReducer.cpp │ │ │ ├── shape │ │ │ │ └── fractal │ │ │ │ │ ├── HilbertCode.cpp │ │ │ │ │ ├── HilbertEncoder.cpp │ │ │ │ │ └── MortonCode.cpp │ │ │ ├── simplify │ │ │ │ ├── ComponentJumpChecker.cpp │ │ │ │ ├── DouglasPeuckerLineSimplifier.cpp │ │ │ │ ├── DouglasPeuckerSimplifier.cpp │ │ │ │ ├── LineSegmentIndex.cpp │ │ │ │ ├── LinkedLine.cpp │ │ │ │ ├── LinkedRing.cpp │ │ │ │ ├── PolygonHullSimplifier.cpp │ │ │ │ ├── RingHull.cpp │ │ │ │ ├── RingHullIndex.cpp │ │ │ │ ├── TaggedLineSegment.cpp │ │ │ │ ├── TaggedLineString.cpp │ │ │ │ ├── TaggedLineStringSimplifier.cpp │ │ │ │ ├── TaggedLinesSimplifier.cpp │ │ │ │ └── TopologyPreservingSimplifier.cpp │ │ │ ├── triangulate │ │ │ │ ├── DelaunayTriangulationBuilder.cpp │ │ │ │ ├── IncrementalDelaunayTriangulator.cpp │ │ │ │ ├── VoronoiDiagramBuilder.cpp │ │ │ │ ├── polygon │ │ │ │ │ ├── ConstrainedDelaunayTriangulator.cpp │ │ │ │ │ ├── PolygonEarClipper.cpp │ │ │ │ │ ├── PolygonHoleJoiner.cpp │ │ │ │ │ ├── PolygonNoder.cpp │ │ │ │ │ ├── PolygonTriangulator.cpp │ │ │ │ │ └── TriDelaunayImprover.cpp │ │ │ │ ├── quadedge │ │ │ │ │ ├── LastFoundQuadEdgeLocator.cpp │ │ │ │ │ ├── LocateFailureException.cpp │ │ │ │ │ ├── QuadEdge.cpp │ │ │ │ │ ├── QuadEdgeSubdivision.cpp │ │ │ │ │ ├── TrianglePredicate.cpp │ │ │ │ │ └── Vertex.cpp │ │ │ │ └── tri │ │ │ │ │ ├── Tri.cpp │ │ │ │ │ ├── TriEdge.cpp │ │ │ │ │ └── TriangulationBuilder.cpp │ │ │ └── util │ │ │ │ ├── Assert.cpp │ │ │ │ ├── GeometricShapeFactory.cpp │ │ │ │ ├── Interrupt.cpp │ │ │ │ ├── Profiler.cpp │ │ │ │ ├── math.cpp │ │ │ │ └── string.cpp │ │ └── util │ │ │ └── geosop │ │ │ ├── GeometryOp.cpp │ │ │ ├── GeometryOp.h │ │ │ ├── GeosOp.cpp │ │ │ ├── GeosOp.h │ │ │ ├── README.md │ │ │ └── cxxopts.hpp │ ├── include │ │ ├── geos_c.h │ │ └── version.h │ └── libgeos.gyp ├── libhdf5.sh ├── libhdf5 │ ├── H5pubconf.h │ ├── Windows.md │ ├── darwin-H5build_settings.c │ ├── darwin-H5pubconf.h │ ├── darwin-libhdf5.settings │ ├── hdf5 │ │ ├── .autom4te.cfg │ │ ├── .clang-format │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── CODEOWNERS │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ └── feature-request.md │ │ │ ├── PULL_REQUEST_TEMPLATE │ │ │ │ └── pull_request_template.md │ │ │ └── workflows │ │ │ │ ├── autotools.yml │ │ │ │ ├── clang-format-check.yml │ │ │ │ ├── clang-format-fix.yml │ │ │ │ ├── cmake-ctest.yml │ │ │ │ ├── cmake.yml │ │ │ │ ├── codespell.yml │ │ │ │ ├── cve.yml │ │ │ │ ├── daily-build.yml │ │ │ │ ├── hdfeos5.yml │ │ │ │ ├── intel-auto.yml │ │ │ │ ├── intel-cmake.yml │ │ │ │ ├── linux-auto-aocc-ompi.yml │ │ │ │ ├── main-auto-par.yml │ │ │ │ ├── main-auto-spc.yml │ │ │ │ ├── main-auto.yml │ │ │ │ ├── main-cmake.yml │ │ │ │ ├── main.yml │ │ │ │ ├── netcdf.yml │ │ │ │ ├── nvhpc-auto.yml │ │ │ │ ├── nvhpc-cmake.yml │ │ │ │ ├── release-files.yml │ │ │ │ ├── release.yml │ │ │ │ └── tarball.yml │ │ ├── .gitignore │ │ ├── .h5chkright.ini │ │ ├── ACKNOWLEDGMENTS │ │ ├── CMakeFilters.cmake │ │ ├── CMakeInstallation.cmake │ │ ├── CMakeLists.txt │ │ ├── CMakePlugins.cmake │ │ ├── CMakePresets.json │ │ ├── CMakeTests.cmake │ │ ├── CMakeVOL.cmake │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── COPYING │ │ ├── COPYING_LBNL_HDF5 │ │ ├── CTestConfig.cmake │ │ ├── CVE_list_1_14.md │ │ ├── Makefile.am │ │ ├── Makefile.dist │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── UserMacros.cmake │ │ ├── aclocal.m4 │ │ ├── acsite.m4 │ │ ├── autogen.sh │ │ ├── bin │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.md │ │ │ ├── batch │ │ │ │ ├── ctest.qsub.in.cmake │ │ │ │ ├── ctestP.lsf.in.cmake │ │ │ │ ├── ctestP.sl.in.cmake │ │ │ │ ├── ctestS.lsf.in.cmake │ │ │ │ ├── ctestS.sl.in.cmake │ │ │ │ ├── ctest_parallel.cmake.in │ │ │ │ ├── ctest_serial.cmake.in │ │ │ │ ├── knl_ctestP.sl.in.cmake │ │ │ │ ├── knl_ctestS.sl.in.cmake │ │ │ │ ├── ray_ctestP.lsf.in.cmake │ │ │ │ ├── ray_ctestS.lsf.in.cmake │ │ │ │ └── raybsub │ │ │ ├── buildhdf5 │ │ │ ├── checkapi │ │ │ ├── chkcopyright │ │ │ ├── cmakehdf5 │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── debug-ohdr │ │ │ ├── depcomp │ │ │ ├── format_source │ │ │ ├── genparser │ │ │ ├── h5cc.in │ │ │ ├── h5redeploy.in │ │ │ ├── h5vers │ │ │ ├── install-sh │ │ │ ├── iostats │ │ │ ├── ltmain.sh │ │ │ ├── make_err │ │ │ ├── make_overflow │ │ │ ├── make_vers │ │ │ ├── makehelp │ │ │ ├── missing │ │ │ ├── output_filter.sh │ │ │ ├── pkgscrpts │ │ │ │ ├── h5rmflags │ │ │ │ └── makeHDF5BinaryTarfiles.pl │ │ │ ├── release │ │ │ ├── restore.sh │ │ │ ├── runbkgprog │ │ │ ├── switch_maint_mode │ │ │ ├── test-driver │ │ │ ├── trace │ │ │ └── warnhist │ │ ├── c++ │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeTests.cmake │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── chunks.cpp │ │ │ │ ├── compound.cpp │ │ │ │ ├── create.cpp │ │ │ │ ├── expected.out │ │ │ │ ├── extend_ds.cpp │ │ │ │ ├── h5group.cpp │ │ │ │ ├── h5tutr_cmprss.cpp │ │ │ │ ├── h5tutr_crtatt.cpp │ │ │ │ ├── h5tutr_crtdat.cpp │ │ │ │ ├── h5tutr_crtgrp.cpp │ │ │ │ ├── h5tutr_crtgrpar.cpp │ │ │ │ ├── h5tutr_crtgrpd.cpp │ │ │ │ ├── h5tutr_extend.cpp │ │ │ │ ├── h5tutr_rdwt.cpp │ │ │ │ ├── h5tutr_subset.cpp │ │ │ │ ├── readdata.cpp │ │ │ │ ├── run-c++-ex.sh.in │ │ │ │ ├── testh5c++.sh.in │ │ │ │ └── writedata.cpp │ │ │ ├── src │ │ │ │ ├── C2Cppfunction_map.htm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── H5AbstractDs.cpp │ │ │ │ ├── H5AbstractDs.h │ │ │ │ ├── H5Alltypes.h │ │ │ │ ├── H5ArrayType.cpp │ │ │ │ ├── H5ArrayType.h │ │ │ │ ├── H5AtomType.cpp │ │ │ │ ├── H5AtomType.h │ │ │ │ ├── H5Attribute.cpp │ │ │ │ ├── H5Attribute.h │ │ │ │ ├── H5Classes.h │ │ │ │ ├── H5CommonFG.cpp │ │ │ │ ├── H5CommonFG.h │ │ │ │ ├── H5CompType.cpp │ │ │ │ ├── H5CompType.h │ │ │ │ ├── H5Cpp.h │ │ │ │ ├── H5CppDoc.h │ │ │ │ ├── H5DaccProp.cpp │ │ │ │ ├── H5DaccProp.h │ │ │ │ ├── H5DataSet.cpp │ │ │ │ ├── H5DataSet.h │ │ │ │ ├── H5DataSpace.cpp │ │ │ │ ├── H5DataSpace.h │ │ │ │ ├── H5DataType.cpp │ │ │ │ ├── H5DataType.h │ │ │ │ ├── H5DcreatProp.cpp │ │ │ │ ├── H5DcreatProp.h │ │ │ │ ├── H5DxferProp.cpp │ │ │ │ ├── H5DxferProp.h │ │ │ │ ├── H5EnumType.cpp │ │ │ │ ├── H5EnumType.h │ │ │ │ ├── H5Exception.cpp │ │ │ │ ├── H5Exception.h │ │ │ │ ├── H5FaccProp.cpp │ │ │ │ ├── H5FaccProp.h │ │ │ │ ├── H5FcreatProp.cpp │ │ │ │ ├── H5FcreatProp.h │ │ │ │ ├── H5File.cpp │ │ │ │ ├── H5File.h │ │ │ │ ├── H5FloatType.cpp │ │ │ │ ├── H5FloatType.h │ │ │ │ ├── H5Group.cpp │ │ │ │ ├── H5Group.h │ │ │ │ ├── H5IdComponent.cpp │ │ │ │ ├── H5IdComponent.h │ │ │ │ ├── H5Include.h │ │ │ │ ├── H5IntType.cpp │ │ │ │ ├── H5IntType.h │ │ │ │ ├── H5LaccProp.cpp │ │ │ │ ├── H5LaccProp.h │ │ │ │ ├── H5LcreatProp.cpp │ │ │ │ ├── H5LcreatProp.h │ │ │ │ ├── H5Library.cpp │ │ │ │ ├── H5Library.h │ │ │ │ ├── H5Location.cpp │ │ │ │ ├── H5Location.h │ │ │ │ ├── H5Object.cpp │ │ │ │ ├── H5Object.h │ │ │ │ ├── H5OcreatProp.cpp │ │ │ │ ├── H5OcreatProp.h │ │ │ │ ├── H5PredType.cpp │ │ │ │ ├── H5PredType.h │ │ │ │ ├── H5PropList.cpp │ │ │ │ ├── H5PropList.h │ │ │ │ ├── H5StrType.cpp │ │ │ │ ├── H5StrType.h │ │ │ │ ├── H5VarLenType.cpp │ │ │ │ ├── H5VarLenType.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── RM_stylesheet.css │ │ │ │ ├── cpp_doc_config │ │ │ │ ├── footer.html │ │ │ │ ├── h5c++.in │ │ │ │ ├── header.html │ │ │ │ └── header_files │ │ │ │ │ ├── filelist.xml │ │ │ │ │ ├── hdf_logo.jpg │ │ │ │ │ ├── help.jpg │ │ │ │ │ ├── image001.jpg │ │ │ │ │ └── image002.jpg │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeTests.cmake │ │ │ │ ├── CMakeVFDTests.cmake │ │ │ │ ├── H5srcdir_str.h.in │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── dsets.cpp │ │ │ │ ├── h5cpputil.cpp │ │ │ │ ├── h5cpputil.h │ │ │ │ ├── tarray.cpp │ │ │ │ ├── tattr.cpp │ │ │ │ ├── tcompound.cpp │ │ │ │ ├── tdspl.cpp │ │ │ │ ├── testhdf5.cpp │ │ │ │ ├── tfile.cpp │ │ │ │ ├── tfilter.cpp │ │ │ │ ├── th5s.cpp │ │ │ │ ├── th5s.h5 │ │ │ │ ├── titerate.cpp │ │ │ │ ├── tlinks.cpp │ │ │ │ ├── tobject.cpp │ │ │ │ ├── trefer.cpp │ │ │ │ ├── ttypes.cpp │ │ │ │ └── tvlstr.cpp │ │ ├── config │ │ │ ├── BlankForm │ │ │ ├── Makefile.am.blank │ │ │ ├── README.md │ │ │ ├── apple │ │ │ ├── cce-fflags │ │ │ ├── cce-flags │ │ │ ├── clang-cxxflags │ │ │ ├── clang-fflags │ │ │ ├── clang-flags │ │ │ ├── clang-warnings │ │ │ │ ├── developer-general │ │ │ │ ├── error-general │ │ │ │ ├── general │ │ │ │ └── no-developer-general │ │ │ ├── cmake-presets │ │ │ │ └── hidden-presets.json │ │ │ ├── cmake │ │ │ │ ├── CMakeFindJavaCommon.cmake │ │ │ │ ├── CPack.Info.plist.in │ │ │ │ ├── CTestCustom.cmake │ │ │ │ ├── ConfigureChecks.cmake │ │ │ │ ├── ConversionTests.c │ │ │ │ ├── FindCIRCLE.cmake │ │ │ │ ├── FindDTCMP.cmake │ │ │ │ ├── FindHDFS.cmake │ │ │ │ ├── FindMFU.cmake │ │ │ │ ├── GetTimeOfDayTest.cpp │ │ │ │ ├── H5pubconf.h.in │ │ │ │ ├── HDF5DeveloperBuild.cmake │ │ │ │ ├── HDF5Macros.cmake │ │ │ │ ├── HDF5PluginCache.cmake │ │ │ │ ├── HDF5PluginMacros.cmake │ │ │ │ ├── HDF5UseFortran.cmake │ │ │ │ ├── HDFCXXCompilerFlags.cmake │ │ │ │ ├── HDFCompilerFlags.cmake │ │ │ │ ├── HDFFortranCompilerFlags.cmake │ │ │ │ ├── HDFLibMacros.cmake │ │ │ │ ├── HDFMacros.cmake │ │ │ │ ├── HDFTests.c │ │ │ │ ├── HDFUseFortran.cmake │ │ │ │ ├── LIBAEC │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CPack.Info.plist.in │ │ │ │ │ ├── config.h.in │ │ │ │ │ ├── libaec-config-version.cmake.in │ │ │ │ │ └── libaec-config.cmake.in │ │ │ │ ├── NSIS.InstallOptions.ini.in │ │ │ │ ├── NSIS.template.in │ │ │ │ ├── PkgInfo.in │ │ │ │ ├── README.md.cmake.in │ │ │ │ ├── UseJava.cmake │ │ │ │ ├── UseJavaClassFilelist.cmake │ │ │ │ ├── UseJavaSymlinks.cmake │ │ │ │ ├── UserMacros │ │ │ │ │ └── Windows_MT.cmake │ │ │ │ ├── ZLIB │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CPack.Info.plist.in │ │ │ │ │ ├── zconf.h.in │ │ │ │ │ ├── zlib-config-version.cmake.in │ │ │ │ │ └── zlib-config.cmake.in │ │ │ │ ├── cacheinit.cmake │ │ │ │ ├── examples │ │ │ │ │ ├── CTestScript.cmake │ │ │ │ │ ├── HDF5_Examples.cmake.in │ │ │ │ │ └── HDF5_Examples_options.cmake │ │ │ │ ├── fileCompareTest.cmake │ │ │ │ ├── grepTest.cmake │ │ │ │ ├── hdf.bmp │ │ │ │ ├── hdf.icns │ │ │ │ ├── hdf.ico │ │ │ │ ├── hdf5-config-version.cmake.in │ │ │ │ ├── hdf5-config.cmake.in │ │ │ │ ├── javaTargets.cmake.in │ │ │ │ ├── jrunTest.cmake │ │ │ │ ├── libh5cc.in │ │ │ │ ├── libhdf5.settings.cmake.in │ │ │ │ ├── mccacheinit.cmake │ │ │ │ ├── patch.xml.in │ │ │ │ ├── runTest.cmake │ │ │ │ ├── scripts │ │ │ │ │ ├── CTestScript.cmake │ │ │ │ │ ├── HDF5config.cmake │ │ │ │ │ ├── HDF5options.cmake │ │ │ │ │ └── HPC │ │ │ │ │ │ ├── bsub-HDF5options.cmake │ │ │ │ │ │ ├── qsub-HDF5options.cmake │ │ │ │ │ │ ├── raybsub-HDF5options.cmake │ │ │ │ │ │ └── sbatch-HDF5options.cmake │ │ │ │ ├── userblockTest.cmake │ │ │ │ ├── version.plist.in │ │ │ │ ├── vfdTest.cmake │ │ │ │ ├── volTest.cmake │ │ │ │ └── wait_H5Tinit.cmake │ │ │ ├── commence.am │ │ │ ├── conclude.am │ │ │ ├── conclude_fc.am │ │ │ ├── cygwin │ │ │ ├── examples.am │ │ │ ├── freebsd │ │ │ ├── gnu-cxxflags │ │ │ ├── gnu-fflags │ │ │ ├── gnu-flags │ │ │ ├── gnu-warnings │ │ │ │ ├── 5 │ │ │ │ ├── 6 │ │ │ │ ├── 7 │ │ │ │ ├── 8 │ │ │ │ ├── 9 │ │ │ │ ├── 4.8 │ │ │ │ ├── 4.8-4.last │ │ │ │ ├── 4.9 │ │ │ │ ├── 9.3 │ │ │ │ ├── cxx-4.8 │ │ │ │ ├── cxx-4.9 │ │ │ │ ├── cxx-5 │ │ │ │ ├── cxx-9 │ │ │ │ ├── cxx-developer-4.8 │ │ │ │ ├── cxx-error-5 │ │ │ │ ├── cxx-error-general │ │ │ │ ├── cxx-general │ │ │ │ ├── developer-10 │ │ │ │ ├── developer-12 │ │ │ │ ├── developer-4.8 │ │ │ │ ├── developer-7 │ │ │ │ ├── developer-8 │ │ │ │ ├── developer-general │ │ │ │ ├── error-5 │ │ │ │ ├── error-7 │ │ │ │ ├── error-8 │ │ │ │ ├── error-general │ │ │ │ ├── general │ │ │ │ ├── gfort-4.8 │ │ │ │ ├── gfort-6 │ │ │ │ ├── gfort-8 │ │ │ │ ├── gfort-developer-4.8 │ │ │ │ ├── gfort-developer-5 │ │ │ │ ├── gfort-developer-general │ │ │ │ ├── gfort-general │ │ │ │ ├── gfort-no-developer-4.8 │ │ │ │ ├── gfort-no-developer-general │ │ │ │ ├── no-cxx-developer-4.8 │ │ │ │ ├── no-developer-4.8 │ │ │ │ ├── no-developer-8 │ │ │ │ └── no-developer-general │ │ │ ├── ibm-aix │ │ │ ├── ibm-flags │ │ │ ├── intel-cxxflags │ │ │ ├── intel-fflags │ │ │ ├── intel-flags │ │ │ ├── intel-warnings │ │ │ │ ├── classic │ │ │ │ │ ├── 15 │ │ │ │ │ ├── 18 │ │ │ │ │ ├── developer-general │ │ │ │ │ ├── general │ │ │ │ │ ├── ifort-general │ │ │ │ │ ├── win-developer-general │ │ │ │ │ ├── win-general │ │ │ │ │ └── win-ifort-general │ │ │ │ └── oneapi │ │ │ │ │ ├── developer-general │ │ │ │ │ ├── general │ │ │ │ │ ├── ifort-general │ │ │ │ │ ├── win-developer-general │ │ │ │ │ ├── win-general │ │ │ │ │ └── win-ifort-general │ │ │ ├── libhdf5.fpc.in │ │ │ ├── libhdf5.pc.in │ │ │ ├── linux-gnu │ │ │ ├── linux-gnuaout │ │ │ ├── linux-gnueabihf │ │ │ ├── linux-gnulibc1 │ │ │ ├── linux-gnulibc2 │ │ │ ├── lt_vers.am │ │ │ ├── netbsd │ │ │ ├── nvidia-cxxflags │ │ │ ├── nvidia-fflags │ │ │ ├── nvidia-flags │ │ │ ├── oneapi-cxxflags │ │ │ ├── oneapi-fflags │ │ │ ├── oneapi-flags │ │ │ ├── pgi-cxxflags │ │ │ ├── pgi-fflags │ │ │ ├── pgi-flags │ │ │ ├── sanitizer │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── code-coverage.cmake │ │ │ │ ├── formatting.cmake │ │ │ │ ├── sanitizers.cmake │ │ │ │ └── tools.cmake │ │ │ ├── site-specific │ │ │ │ └── BlankForm │ │ │ ├── solaris │ │ │ └── toolchain │ │ │ │ ├── aarch64.cmake │ │ │ │ ├── build32.cmake │ │ │ │ ├── clang.cmake │ │ │ │ ├── crayle.cmake │ │ │ │ ├── gcc.cmake │ │ │ │ ├── icc.cmake │ │ │ │ ├── intel.cmake │ │ │ │ ├── mingw64.cmake │ │ │ │ └── pgi.cmake │ │ ├── configure │ │ ├── configure.ac │ │ ├── doc │ │ │ ├── branches-explained.md │ │ │ └── code-conventions.md │ │ ├── doxygen │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile.in │ │ │ ├── aliases │ │ │ ├── dox │ │ │ │ ├── APIVersions.dox │ │ │ │ ├── About.dox │ │ │ │ ├── Cookbook.dox │ │ │ │ ├── DDLBNF110.dox │ │ │ │ ├── DDLBNF112.dox │ │ │ │ ├── ExamplesAPI.dox │ │ │ │ ├── FTS.dox │ │ │ │ ├── FileFormatSpec.dox │ │ │ │ ├── GettingStarted.dox │ │ │ │ ├── Glossary.dox │ │ │ │ ├── H5AC_cache_config_t.dox │ │ │ │ ├── IntroHDF5.dox │ │ │ │ ├── IntroParExamples.dox │ │ │ │ ├── IntroParHDF5.dox │ │ │ │ ├── LearnBasics.dox │ │ │ │ ├── LearnBasics1.dox │ │ │ │ ├── LearnBasics2.dox │ │ │ │ ├── LearnBasics3.dox │ │ │ │ ├── LearnHDFView.dox │ │ │ │ ├── MetadataCachingInHDF5.dox │ │ │ │ ├── Overview.dox │ │ │ │ ├── PredefinedDatatypeTables.dox │ │ │ │ ├── RFC.dox │ │ │ │ ├── ReferenceManual.dox │ │ │ │ ├── Specifications.dox │ │ │ │ ├── TechnicalNotes.dox │ │ │ │ ├── UsersGuide.dox │ │ │ │ ├── VOLConnGuide.dox │ │ │ │ ├── ViewTools.dox │ │ │ │ ├── ViewTools2.dox │ │ │ │ ├── ViewToolsJPSS.dox │ │ │ │ ├── api-compat-macros.dox │ │ │ │ ├── cookbook │ │ │ │ │ ├── Accessibility.c │ │ │ │ │ ├── Accessibility.dox │ │ │ │ │ ├── Attributes.c │ │ │ │ │ ├── Attributes.dox │ │ │ │ │ ├── Files.c │ │ │ │ │ ├── Files.dox │ │ │ │ │ └── Performance.dox │ │ │ │ ├── high_level │ │ │ │ │ └── extension.dox │ │ │ │ ├── maybe_metadata_reads.dox │ │ │ │ └── rm-template.dox │ │ │ ├── examples │ │ │ │ ├── DebuggingHDF5Applications.html │ │ │ │ ├── FF-IH_FileGroup.gif │ │ │ │ ├── FF-IH_FileObject.gif │ │ │ │ ├── FileFormat.html │ │ │ │ ├── FileFormatSpecChunkDiagram.jpg │ │ │ │ ├── Filters.html │ │ │ │ ├── H5.format.1.0.html │ │ │ │ ├── H5.format.1.1.html │ │ │ │ ├── H5.format.2.0.html │ │ │ │ ├── H5.format.html │ │ │ │ ├── H5A_examples.c │ │ │ │ ├── H5DO_examples.c │ │ │ │ ├── H5D_examples.c │ │ │ │ ├── H5E_examples.c │ │ │ │ ├── H5F_examples.c │ │ │ │ ├── H5Fclose.c │ │ │ │ ├── H5Fcreate.c │ │ │ │ ├── H5G_examples.c │ │ │ │ ├── H5I_examples.c │ │ │ │ ├── H5LDget_dset_elmts.c │ │ │ │ ├── H5LT_examples.c │ │ │ │ ├── H5L_examples.c │ │ │ │ ├── H5O_examples.c │ │ │ │ ├── H5PL_examples.c │ │ │ │ ├── H5P_examples.c │ │ │ │ ├── H5Pget_metadata_read_attempts.1.c │ │ │ │ ├── H5Pget_metadata_read_attempts.2.c │ │ │ │ ├── H5Pget_metadata_read_attempts.3.c │ │ │ │ ├── H5Pget_object_flush_cb.c │ │ │ │ ├── H5Pset_metadata_read_attempts.c │ │ │ │ ├── H5Pset_object_flush_cb.c │ │ │ │ ├── H5R_examples.c │ │ │ │ ├── H5S_examples.c │ │ │ │ ├── H5TBAget_fill.c │ │ │ │ ├── H5T_examples.c │ │ │ │ ├── H5Z_examples.c │ │ │ │ ├── H5_examples.c │ │ │ │ ├── IOFlow.html │ │ │ │ ├── ImageSpec.html │ │ │ │ ├── PaletteExample1.gif │ │ │ │ ├── Palettes.fm.anc.gif │ │ │ │ ├── TableSpec.html │ │ │ │ ├── ThreadSafeLibrary.html │ │ │ │ ├── VFL.html │ │ │ │ ├── hello_hdf5.c │ │ │ │ ├── menus │ │ │ │ │ ├── core_menu.md │ │ │ │ │ ├── fortran_menu.md │ │ │ │ │ ├── high_level_menu.md │ │ │ │ │ └── java_menu.md │ │ │ │ └── tables │ │ │ │ │ ├── fileDriverLists.dox │ │ │ │ │ ├── predefinedDatatypes.dox │ │ │ │ │ ├── propertyLists.dox │ │ │ │ │ └── volAPIs.dox │ │ │ ├── hdf5_footer.html │ │ │ ├── hdf5_header.html │ │ │ ├── hdf5_navtree_hacks.js │ │ │ ├── hdf5doxy.css │ │ │ ├── hdf5doxy_layout.xml │ │ │ └── img │ │ │ │ ├── DataGroup.png │ │ │ │ ├── Dmodel_fig1.gif │ │ │ │ ├── Dmodel_fig10.gif │ │ │ │ ├── Dmodel_fig11_b.gif │ │ │ │ ├── Dmodel_fig12_a.gif │ │ │ │ ├── Dmodel_fig12_b.gif │ │ │ │ ├── Dmodel_fig14_a.gif │ │ │ │ ├── Dmodel_fig14_b.gif │ │ │ │ ├── Dmodel_fig14_c.gif │ │ │ │ ├── Dmodel_fig14_d.gif │ │ │ │ ├── Dmodel_fig2.gif │ │ │ │ ├── Dmodel_fig3_a.gif │ │ │ │ ├── Dmodel_fig3_c.gif │ │ │ │ ├── Dmodel_fig4_a.gif │ │ │ │ ├── Dmodel_fig4_b.gif │ │ │ │ ├── Dmodel_fig5.gif │ │ │ │ ├── Dmodel_fig6.gif │ │ │ │ ├── Dmodel_fig7_b.gif │ │ │ │ ├── Dmodel_fig8.gif │ │ │ │ ├── Dmodel_fig9.gif │ │ │ │ ├── Dsets_NbitFloating1.gif │ │ │ │ ├── Dsets_NbitFloating2.gif │ │ │ │ ├── Dsets_NbitInteger1.gif │ │ │ │ ├── Dsets_NbitInteger2.gif │ │ │ │ ├── Dsets_fig1.gif │ │ │ │ ├── Dsets_fig10.gif │ │ │ │ ├── Dsets_fig11.gif │ │ │ │ ├── Dsets_fig12.gif │ │ │ │ ├── Dsets_fig2.gif │ │ │ │ ├── Dsets_fig3.gif │ │ │ │ ├── Dsets_fig4.gif │ │ │ │ ├── Dsets_fig5.gif │ │ │ │ ├── Dsets_fig6.gif │ │ │ │ ├── Dsets_fig7.gif │ │ │ │ ├── Dsets_fig8.gif │ │ │ │ ├── Dsets_fig9.gif │ │ │ │ ├── Dspace_CvsF1.gif │ │ │ │ ├── Dspace_CvsF2.gif │ │ │ │ ├── Dspace_CvsF3.gif │ │ │ │ ├── Dspace_CvsF4.gif │ │ │ │ ├── Dspace_combine.gif │ │ │ │ ├── Dspace_complex.gif │ │ │ │ ├── Dspace_features.gif │ │ │ │ ├── Dspace_features_cmpd.gif │ │ │ │ ├── Dspace_move.gif │ │ │ │ ├── Dspace_point.gif │ │ │ │ ├── Dspace_read.gif │ │ │ │ ├── Dspace_select.gif │ │ │ │ ├── Dspace_separate.gif │ │ │ │ ├── Dspace_simple.gif │ │ │ │ ├── Dspace_subset.gif │ │ │ │ ├── Dspace_three_datasets.gif │ │ │ │ ├── Dspace_transfer.gif │ │ │ │ ├── Dspace_write1to2.gif │ │ │ │ ├── Dtypes_fig1.gif │ │ │ │ ├── Dtypes_fig10.gif │ │ │ │ ├── Dtypes_fig11.gif │ │ │ │ ├── Dtypes_fig12.gif │ │ │ │ ├── Dtypes_fig13a.gif │ │ │ │ ├── Dtypes_fig13b.gif │ │ │ │ ├── Dtypes_fig13c.gif │ │ │ │ ├── Dtypes_fig13d.gif │ │ │ │ ├── Dtypes_fig14.gif │ │ │ │ ├── Dtypes_fig15.gif │ │ │ │ ├── Dtypes_fig16.gif │ │ │ │ ├── Dtypes_fig16a.gif │ │ │ │ ├── Dtypes_fig16b.gif │ │ │ │ ├── Dtypes_fig16c.gif │ │ │ │ ├── Dtypes_fig16d.gif │ │ │ │ ├── Dtypes_fig17a.gif │ │ │ │ ├── Dtypes_fig17b.gif │ │ │ │ ├── Dtypes_fig18.gif │ │ │ │ ├── Dtypes_fig19.gif │ │ │ │ ├── Dtypes_fig2.gif │ │ │ │ ├── Dtypes_fig20a.gif │ │ │ │ ├── Dtypes_fig20b.gif │ │ │ │ ├── Dtypes_fig20c.gif │ │ │ │ ├── Dtypes_fig20d.gif │ │ │ │ ├── Dtypes_fig21.gif │ │ │ │ ├── Dtypes_fig22.gif │ │ │ │ ├── Dtypes_fig23.gif │ │ │ │ ├── Dtypes_fig24.gif │ │ │ │ ├── Dtypes_fig25a.gif │ │ │ │ ├── Dtypes_fig25c.gif │ │ │ │ ├── Dtypes_fig26.gif │ │ │ │ ├── Dtypes_fig27.gif │ │ │ │ ├── Dtypes_fig28.gif │ │ │ │ ├── Dtypes_fig3.gif │ │ │ │ ├── Dtypes_fig4.gif │ │ │ │ ├── Dtypes_fig5.gif │ │ │ │ ├── Dtypes_fig6.gif │ │ │ │ ├── Dtypes_fig7.gif │ │ │ │ ├── Dtypes_fig8.gif │ │ │ │ ├── Dtypes_fig9.gif │ │ │ │ ├── FF-IH_FileGroup.gif │ │ │ │ ├── FF-IH_FileObject.gif │ │ │ │ ├── FileFormatSpecChunkDiagram.jpg │ │ │ │ ├── Files_fig3.gif │ │ │ │ ├── Files_fig4.gif │ │ │ │ ├── Groups_fig1.gif │ │ │ │ ├── Groups_fig10_a.gif │ │ │ │ ├── Groups_fig10_b.gif │ │ │ │ ├── Groups_fig10_c.gif │ │ │ │ ├── Groups_fig10_d.gif │ │ │ │ ├── Groups_fig11_a.gif │ │ │ │ ├── Groups_fig11_b.gif │ │ │ │ ├── Groups_fig11_c.gif │ │ │ │ ├── Groups_fig11_d.gif │ │ │ │ ├── Groups_fig2.gif │ │ │ │ ├── Groups_fig3.gif │ │ │ │ ├── Groups_fig4.gif │ │ │ │ ├── Groups_fig5.gif │ │ │ │ ├── Groups_fig6.gif │ │ │ │ ├── Groups_fig9_a.gif │ │ │ │ ├── Groups_fig9_aa.gif │ │ │ │ ├── Groups_fig9_b.gif │ │ │ │ ├── Groups_fig9_bb.gif │ │ │ │ ├── HDF5.png │ │ │ │ ├── HDFG-logo.png │ │ │ │ ├── IOFlow.gif │ │ │ │ ├── IOFlow2.gif │ │ │ │ ├── IOFlow3.gif │ │ │ │ ├── LBDsetSubRWProg.png │ │ │ │ ├── PaletteExample1.gif │ │ │ │ ├── Palettes.fm.anc.gif │ │ │ │ ├── Pmodel_fig2.gif │ │ │ │ ├── Pmodel_fig3.gif │ │ │ │ ├── Pmodel_fig5_a.gif │ │ │ │ ├── Pmodel_fig5_b.gif │ │ │ │ ├── Pmodel_fig5_c.gif │ │ │ │ ├── Pmodel_fig5_d.gif │ │ │ │ ├── Pmodel_fig5_e.gif │ │ │ │ ├── Pmodel_fig6.gif │ │ │ │ ├── PropListClassInheritance.gif │ │ │ │ ├── PropListEcosystem.gif │ │ │ │ ├── Shared_Attribute.jpg │ │ │ │ ├── StormDataset.png │ │ │ │ ├── UML_Attribute.jpg │ │ │ │ ├── UML_FileAndProps.gif │ │ │ │ ├── VFL_Drivers.gif │ │ │ │ ├── cmpnddtype.png │ │ │ │ ├── crtatt.png │ │ │ │ ├── crtdset.png │ │ │ │ ├── crtf-pic.png │ │ │ │ ├── crtgrp.png │ │ │ │ ├── dataset.png │ │ │ │ ├── datasetwdata.png │ │ │ │ ├── dataspace.png │ │ │ │ ├── dataspace1.png │ │ │ │ ├── datatype.png │ │ │ │ ├── dtypes_fig25b.gif │ │ │ │ ├── fileobj.png │ │ │ │ ├── ftv2node.png │ │ │ │ ├── ftv2pnode.png │ │ │ │ ├── group.png │ │ │ │ ├── hdfview-anthrstrm-img.png │ │ │ │ ├── hdfview-anthrstrm-sprdsht.png │ │ │ │ ├── hdfview-anthrstrm.png │ │ │ │ ├── hdfview-imgicon.png │ │ │ │ ├── hdfview-imgprop.png │ │ │ │ ├── hdfview-imgsubset.png │ │ │ │ ├── hdfview-newcmpd.png │ │ │ │ ├── hdfview-newimgsubset.png │ │ │ │ ├── hdfview-prop.png │ │ │ │ ├── hdfview-qf.png │ │ │ │ ├── hdfview-regref.png │ │ │ │ ├── hdfview-regref1.png │ │ │ │ ├── hdfview-regref2.png │ │ │ │ ├── hdfview-regrefval.png │ │ │ │ ├── hdfview-table.png │ │ │ │ ├── hdfview-tree.png │ │ │ │ ├── imgLBDsetCreate.gif │ │ │ │ ├── imgLBDsetSubRW11.png │ │ │ │ ├── imgLBDsetSubRW12.png │ │ │ │ ├── imgLBDsetSubRW31.png │ │ │ │ ├── imgLBDsetSubRW32.png │ │ │ │ ├── imgLBDsetSubRW33.png │ │ │ │ ├── imgLBFile.gif │ │ │ │ ├── imggrpcreate.gif │ │ │ │ ├── imggrpdsets.gif │ │ │ │ ├── imggrps.gif │ │ │ │ ├── newgroupimage.png │ │ │ │ ├── noattrs.png │ │ │ │ ├── pchunk_figa.gif │ │ │ │ ├── pchunk_figb.gif │ │ │ │ ├── pchunk_figc.gif │ │ │ │ ├── pchunk_figd.gif │ │ │ │ ├── pcont_hy_figa.gif │ │ │ │ ├── pcont_hy_figb.gif │ │ │ │ ├── pcont_hy_figc.gif │ │ │ │ ├── pcont_hy_figd.gif │ │ │ │ ├── ppatt_figa.gif │ │ │ │ ├── ppatt_figb.gif │ │ │ │ ├── ppatt_figc.gif │ │ │ │ ├── ppatt_figd.gif │ │ │ │ ├── preg_figa.gif │ │ │ │ ├── preg_figb.gif │ │ │ │ ├── preg_figc.gif │ │ │ │ ├── preg_figd.gif │ │ │ │ ├── properties.png │ │ │ │ ├── scarletletter.png │ │ │ │ ├── showasimage.png │ │ │ │ ├── storm.png │ │ │ │ ├── tutr-lochk.png │ │ │ │ ├── tutr-lochks.png │ │ │ │ ├── tutr-locons.png │ │ │ │ └── vol_architecture.png │ │ ├── examples │ │ │ ├── Attributes.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakeTests.cmake │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── h5_attribute.c │ │ │ ├── h5_chunk_read.c │ │ │ ├── h5_cmprss.c │ │ │ ├── h5_compound.c │ │ │ ├── h5_crtatt.c │ │ │ ├── h5_crtdat.c │ │ │ ├── h5_crtgrp.c │ │ │ ├── h5_crtgrpar.c │ │ │ ├── h5_crtgrpd.c │ │ │ ├── h5_debug_trace.c │ │ │ ├── h5_drivers.c │ │ │ ├── h5_dtransform.c │ │ │ ├── h5_elink_unix2win.c │ │ │ ├── h5_extend.c │ │ │ ├── h5_extend_write.c │ │ │ ├── h5_extlink.c │ │ │ ├── h5_group.c │ │ │ ├── h5_interm_group.c │ │ │ ├── h5_mount.c │ │ │ ├── h5_rdwt.c │ │ │ ├── h5_read.c │ │ │ ├── h5_ref2reg_deprec.c │ │ │ ├── h5_ref_compat.c │ │ │ ├── h5_ref_extern.c │ │ │ ├── h5_reference_deprec.c │ │ │ ├── h5_select.c │ │ │ ├── h5_shared_mesg.c │ │ │ ├── h5_subset.c │ │ │ ├── h5_vds-eiger.c │ │ │ ├── h5_vds-exc.c │ │ │ ├── h5_vds-exclim.c │ │ │ ├── h5_vds-percival-unlim-maxmin.c │ │ │ ├── h5_vds-percival-unlim.c │ │ │ ├── h5_vds-percival.c │ │ │ ├── h5_vds-simpleIO.c │ │ │ ├── h5_vds.c │ │ │ ├── h5_write.c │ │ │ ├── ph5_filtered_writes.c │ │ │ ├── ph5_filtered_writes_no_sel.c │ │ │ ├── ph5_subfiling.c │ │ │ ├── ph5example.c │ │ │ ├── run-all-ex.sh │ │ │ ├── run-c-ex.sh.in │ │ │ └── testh5cc.sh.in │ │ ├── fortran │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeTests.cmake │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── compound.f90 │ │ │ │ ├── compound_complex_fortran2003.f90 │ │ │ │ ├── compound_fortran2003.f90 │ │ │ │ ├── h5_cmprss.f90 │ │ │ │ ├── h5_crtatt.f90 │ │ │ │ ├── h5_crtdat.f90 │ │ │ │ ├── h5_crtgrp.f90 │ │ │ │ ├── h5_crtgrpar.f90 │ │ │ │ ├── h5_crtgrpd.f90 │ │ │ │ ├── h5_extend.f90 │ │ │ │ ├── h5_rdwt.f90 │ │ │ │ ├── h5_subset.f90 │ │ │ │ ├── hyperslab.f90 │ │ │ │ ├── mountexample.f90 │ │ │ │ ├── nested_derived_type.f90 │ │ │ │ ├── ph5example.f90 │ │ │ │ ├── refobjexample.f90 │ │ │ │ ├── refregexample.f90 │ │ │ │ ├── run-fortran-ex.sh.in │ │ │ │ ├── rwdset_fortran2003.f90 │ │ │ │ ├── selectele.f90 │ │ │ │ └── testh5fc.sh.in │ │ │ ├── robodoc.rc │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── H5Af.c │ │ │ │ ├── H5Aff.F90 │ │ │ │ ├── H5Df.c │ │ │ │ ├── H5Dff.F90 │ │ │ │ ├── H5ESff.F90 │ │ │ │ ├── H5Ef.c │ │ │ │ ├── H5Eff.F90 │ │ │ │ ├── H5Ff.c │ │ │ │ ├── H5Fff.F90 │ │ │ │ ├── H5Gf.c │ │ │ │ ├── H5Gff.F90 │ │ │ │ ├── H5If.c │ │ │ │ ├── H5Iff.F90 │ │ │ │ ├── H5Lf.c │ │ │ │ ├── H5Lff.F90 │ │ │ │ ├── H5Of.c │ │ │ │ ├── H5Off.F90 │ │ │ │ ├── H5Pf.c │ │ │ │ ├── H5Pff.F90 │ │ │ │ ├── H5Rf.c │ │ │ │ ├── H5Rff.F90 │ │ │ │ ├── H5Sf.c │ │ │ │ ├── H5Sff.F90 │ │ │ │ ├── H5Tf.c │ │ │ │ ├── H5Tff.F90 │ │ │ │ ├── H5VLff.F90 │ │ │ │ ├── H5Zf.c │ │ │ │ ├── H5Zff.F90 │ │ │ │ ├── H5_buildiface.F90 │ │ │ │ ├── H5_f.c │ │ │ │ ├── H5_ff.F90 │ │ │ │ ├── H5config_f.inc.cmake │ │ │ │ ├── H5config_f.inc.in │ │ │ │ ├── H5f90.h │ │ │ │ ├── H5f90global.F90 │ │ │ │ ├── H5f90i.h │ │ │ │ ├── H5f90kit.c │ │ │ │ ├── H5f90proto.h │ │ │ │ ├── H5fort_type_defines.h.cmake │ │ │ │ ├── H5fort_type_defines.h.in │ │ │ │ ├── H5fortkit.F90 │ │ │ │ ├── H5match_types.c │ │ │ │ ├── HDF5.F90 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── h5fc.in │ │ │ │ └── hdf5_fortrandll.def.in │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeTests.cmake │ │ │ │ ├── H5_test_buildiface.F90 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── fflush1.F90 │ │ │ │ ├── fflush2.F90 │ │ │ │ ├── fortranlib_test.F90 │ │ │ │ ├── fortranlib_test_1_8.F90 │ │ │ │ ├── fortranlib_test_F03.F90 │ │ │ │ ├── t.c │ │ │ │ ├── t.h │ │ │ │ ├── tH5A.F90 │ │ │ │ ├── tH5A_1_8.F90 │ │ │ │ ├── tH5D.F90 │ │ │ │ ├── tH5E.F90 │ │ │ │ ├── tH5E_F03.F90 │ │ │ │ ├── tH5F.F90 │ │ │ │ ├── tH5G.F90 │ │ │ │ ├── tH5G_1_8.F90 │ │ │ │ ├── tH5I.F90 │ │ │ │ ├── tH5L_F03.F90 │ │ │ │ ├── tH5MISC_1_8.F90 │ │ │ │ ├── tH5O.F90 │ │ │ │ ├── tH5O_F03.F90 │ │ │ │ ├── tH5P.F90 │ │ │ │ ├── tH5P_F03.F90 │ │ │ │ ├── tH5R.F90 │ │ │ │ ├── tH5S.F90 │ │ │ │ ├── tH5Sselect.F90 │ │ │ │ ├── tH5T.F90 │ │ │ │ ├── tH5T_F03.F90 │ │ │ │ ├── tH5VL.F90 │ │ │ │ ├── tH5Z.F90 │ │ │ │ ├── tHDF5.F90 │ │ │ │ ├── tHDF5_1_8.F90 │ │ │ │ ├── tHDF5_F03.F90 │ │ │ │ ├── tf.F90 │ │ │ │ └── vol_connector.F90 │ │ │ └── testpar │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeTests.cmake │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── async.F90 │ │ │ │ ├── hyper.F90 │ │ │ │ ├── mdset.F90 │ │ │ │ ├── multidsetrw.F90 │ │ │ │ ├── ptest.F90 │ │ │ │ └── subfiling.F90 │ │ ├── hl │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── c++ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── examples │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CMakeTests.cmake │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── ptExampleFL.cpp │ │ │ │ │ └── run-hlc++-ex.sh.in │ │ │ │ ├── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── H5PacketTable.cpp │ │ │ │ │ ├── H5PacketTable.h │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── Makefile.in │ │ │ │ └── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CMakeTests.cmake │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── ptableTest.cpp │ │ │ │ │ └── ptableTest.h │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeTests.cmake │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ex_ds1.c │ │ │ │ ├── ex_image1.c │ │ │ │ ├── ex_image2.c │ │ │ │ ├── ex_lite1.c │ │ │ │ ├── ex_lite2.c │ │ │ │ ├── ex_lite3.c │ │ │ │ ├── ex_table_01.c │ │ │ │ ├── ex_table_02.c │ │ │ │ ├── ex_table_03.c │ │ │ │ ├── ex_table_04.c │ │ │ │ ├── ex_table_05.c │ │ │ │ ├── ex_table_06.c │ │ │ │ ├── ex_table_07.c │ │ │ │ ├── ex_table_08.c │ │ │ │ ├── ex_table_09.c │ │ │ │ ├── ex_table_10.c │ │ │ │ ├── ex_table_11.c │ │ │ │ ├── ex_table_12.c │ │ │ │ ├── image24pixel.txt │ │ │ │ ├── image8.txt │ │ │ │ ├── pal_rgb.h │ │ │ │ ├── ptExampleFL.c │ │ │ │ ├── run-hl-ex.sh │ │ │ │ └── run-hlc-ex.sh.in │ │ │ ├── fortran │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── examples │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CMakeTests.cmake │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── ex_ds1.f90 │ │ │ │ │ ├── exlite.f90 │ │ │ │ │ └── run-hlfortran-ex.sh.in │ │ │ │ ├── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── H5DOff.F90 │ │ │ │ │ ├── H5DSfc.c │ │ │ │ │ ├── H5DSff.F90 │ │ │ │ │ ├── H5HL_buildiface.F90 │ │ │ │ │ ├── H5IMcc.c │ │ │ │ │ ├── H5IMcc.h │ │ │ │ │ ├── H5IMfc.c │ │ │ │ │ ├── H5IMff.F90 │ │ │ │ │ ├── H5LTf90proto.h │ │ │ │ │ ├── H5LTfc.c │ │ │ │ │ ├── H5LTff.F90 │ │ │ │ │ ├── H5TBfc.c │ │ │ │ │ ├── H5TBff.F90 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── hdf5_hl_fortrandll.def.in │ │ │ │ └── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CMakeTests.cmake │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── tstds.F90 │ │ │ │ │ ├── tstimage.F90 │ │ │ │ │ ├── tstlite.F90 │ │ │ │ │ └── tsttable.F90 │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── H5DO.c │ │ │ │ ├── H5DOpublic.h │ │ │ │ ├── H5DS.c │ │ │ │ ├── H5DSprivate.h │ │ │ │ ├── H5DSpublic.h │ │ │ │ ├── H5HLprivate2.h │ │ │ │ ├── H5IM.c │ │ │ │ ├── H5IMprivate.h │ │ │ │ ├── H5IMpublic.h │ │ │ │ ├── H5LD.c │ │ │ │ ├── H5LDprivate.h │ │ │ │ ├── H5LDpublic.h │ │ │ │ ├── H5LT.c │ │ │ │ ├── H5LTanalyze.c │ │ │ │ ├── H5LTparse.c │ │ │ │ ├── H5LTparse.h │ │ │ │ ├── H5LTprivate.h │ │ │ │ ├── H5LTpublic.h │ │ │ │ ├── H5PT.c │ │ │ │ ├── H5PTprivate.h │ │ │ │ ├── H5PTpublic.h │ │ │ │ ├── H5TB.c │ │ │ │ ├── H5TBprivate.h │ │ │ │ ├── H5TBpublic.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── hdf5_hl.h │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeTests.cmake │ │ │ │ ├── H5srcdir_str.h.in │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── gen_test_ds.c │ │ │ │ ├── gen_test_ld.c │ │ │ │ ├── h5hltest.h │ │ │ │ ├── pal_rgb.h │ │ │ │ ├── test_ds.c │ │ │ │ ├── test_dset_append.c │ │ │ │ ├── test_file_image.c │ │ │ │ ├── test_h5do_compat.c │ │ │ │ ├── test_image.c │ │ │ │ ├── test_ld.c │ │ │ │ ├── test_lite.c │ │ │ │ ├── test_packet.c │ │ │ │ ├── test_packet_vlen.c │ │ │ │ ├── test_table.c │ │ │ │ └── testfiles │ │ │ │ │ ├── dsdata.txt │ │ │ │ │ ├── dslat.txt │ │ │ │ │ ├── dslon.txt │ │ │ │ │ ├── dtype_file.txt │ │ │ │ │ ├── dtype_file_readable.txt │ │ │ │ │ ├── earth.pal │ │ │ │ │ ├── image24pixel.txt │ │ │ │ │ ├── image24plane.txt │ │ │ │ │ ├── image8.txt │ │ │ │ │ ├── sepia.pal │ │ │ │ │ ├── test_ds_be.h5 │ │ │ │ │ ├── test_ds_be_new_ref-32bit.h5 │ │ │ │ │ ├── test_ds_be_new_ref.h5 │ │ │ │ │ ├── test_ds_le.h5 │ │ │ │ │ ├── test_ds_le_new_ref.h5 │ │ │ │ │ ├── test_ld.h5 │ │ │ │ │ ├── test_table_be.h5 │ │ │ │ │ ├── test_table_cray.h5 │ │ │ │ │ ├── test_table_le.h5 │ │ │ │ │ └── usa.wri │ │ │ └── tools │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── gif2h5 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeTests.cmake │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── decompress.c │ │ │ │ ├── gif.h │ │ │ │ ├── gif2hdf.c │ │ │ │ ├── gif2mem.c │ │ │ │ ├── gifread.c │ │ │ │ ├── h52gifgentst.c │ │ │ │ ├── h52giftest.sh.in │ │ │ │ ├── hdf2gif.c │ │ │ │ ├── hdfgifwr.c │ │ │ │ ├── testfiles │ │ │ │ │ ├── README │ │ │ │ │ ├── ex_image2.h5 │ │ │ │ │ ├── h52giftst.h5 │ │ │ │ │ └── image1.gif │ │ │ │ └── writehdf.c │ │ │ │ └── h5watch │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeTests.cmake │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── extend_dset.c │ │ │ │ ├── h5watch.c │ │ │ │ ├── h5watchgentest.c │ │ │ │ ├── testfiles │ │ │ │ ├── w-err-cmpd1.err │ │ │ │ ├── w-err-cmpd2.err │ │ │ │ ├── w-err-cmpd3.err │ │ │ │ ├── w-err-cmpd4.err │ │ │ │ ├── w-err-cmpd5.err │ │ │ │ ├── w-err-dset-nomax.err │ │ │ │ ├── w-err-dset-none.err │ │ │ │ ├── w-err-dset1.err │ │ │ │ ├── w-err-dset2.err │ │ │ │ ├── w-err-file.err │ │ │ │ ├── w-err-poll.ddl │ │ │ │ ├── w-err-poll0.ddl │ │ │ │ ├── w-err-std.ddl │ │ │ │ ├── w-err-width.ddl │ │ │ │ ├── w-ext-cmpd-esc-f1.ddl │ │ │ │ ├── w-ext-cmpd-esc-f3.ddl │ │ │ │ ├── w-ext-cmpd-esc-ff2.ddl │ │ │ │ ├── w-ext-cmpd-esc.ddl │ │ │ │ ├── w-ext-cmpd-f1.ddl │ │ │ │ ├── w-ext-cmpd-f2.ddl │ │ │ │ ├── w-ext-cmpd-ff3.ddl │ │ │ │ ├── w-ext-cmpd-label.ddl │ │ │ │ ├── w-ext-cmpd-two-f1.ddl │ │ │ │ ├── w-ext-cmpd-two-f3.ddl │ │ │ │ ├── w-ext-cmpd-two-ff2.ddl │ │ │ │ ├── w-ext-cmpd-two.ddl │ │ │ │ ├── w-ext-cmpd.ddl │ │ │ │ ├── w-ext-early.ddl │ │ │ │ ├── w-ext-late.ddl │ │ │ │ ├── w-ext-one-d.ddl │ │ │ │ ├── w-ext-one-simple.ddl │ │ │ │ ├── w-ext-one.ddl │ │ │ │ ├── w-ext-two-d.ddl │ │ │ │ ├── w-ext-two-width.ddl │ │ │ │ ├── w-ext-two.ddl │ │ │ │ └── w-help1.ddl │ │ │ │ └── testh5watch.sh.in │ │ ├── java │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── datasets │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── H5Ex_D_Alloc.java │ │ │ │ │ ├── H5Ex_D_Checksum.java │ │ │ │ │ ├── H5Ex_D_Chunk.java │ │ │ │ │ ├── H5Ex_D_Compact.java │ │ │ │ │ ├── H5Ex_D_External.java │ │ │ │ │ ├── H5Ex_D_FillValue.java │ │ │ │ │ ├── H5Ex_D_Gzip.java │ │ │ │ │ ├── H5Ex_D_Hyperslab.java │ │ │ │ │ ├── H5Ex_D_Nbit.java │ │ │ │ │ ├── H5Ex_D_ReadWrite.java │ │ │ │ │ ├── H5Ex_D_Shuffle.java │ │ │ │ │ ├── H5Ex_D_Sofloat.java │ │ │ │ │ ├── H5Ex_D_Soint.java │ │ │ │ │ ├── H5Ex_D_Szip.java │ │ │ │ │ ├── H5Ex_D_Transform.java │ │ │ │ │ ├── H5Ex_D_UnlimitedAdd.java │ │ │ │ │ ├── H5Ex_D_UnlimitedGzip.java │ │ │ │ │ ├── H5Ex_D_UnlimitedMod.java │ │ │ │ │ ├── JavaDatasetExample.sh.in │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── Makefile.in │ │ │ │ ├── datatypes │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── H5Ex_T_Array.java │ │ │ │ │ ├── H5Ex_T_ArrayAttribute.java │ │ │ │ │ ├── H5Ex_T_Bit.java │ │ │ │ │ ├── H5Ex_T_BitAttribute.java │ │ │ │ │ ├── H5Ex_T_Commit.java │ │ │ │ │ ├── H5Ex_T_Compound.java │ │ │ │ │ ├── H5Ex_T_CompoundAttribute.java │ │ │ │ │ ├── H5Ex_T_Float.java │ │ │ │ │ ├── H5Ex_T_FloatAttribute.java │ │ │ │ │ ├── H5Ex_T_Integer.java │ │ │ │ │ ├── H5Ex_T_IntegerAttribute.java │ │ │ │ │ ├── H5Ex_T_ObjectReference.java │ │ │ │ │ ├── H5Ex_T_ObjectReferenceAttribute.java │ │ │ │ │ ├── H5Ex_T_Opaque.java │ │ │ │ │ ├── H5Ex_T_OpaqueAttribute.java │ │ │ │ │ ├── H5Ex_T_String.java │ │ │ │ │ ├── H5Ex_T_StringAttribute.java │ │ │ │ │ ├── H5Ex_T_VLString.java │ │ │ │ │ ├── JavaDatatypeExample.sh.in │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── Makefile.in │ │ │ │ ├── groups │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── H5Ex_G_Compact.java │ │ │ │ │ ├── H5Ex_G_Corder.java │ │ │ │ │ ├── H5Ex_G_Create.java │ │ │ │ │ ├── H5Ex_G_Intermediate.java │ │ │ │ │ ├── H5Ex_G_Iterate.java │ │ │ │ │ ├── H5Ex_G_Phase.java │ │ │ │ │ ├── H5Ex_G_Traverse.java │ │ │ │ │ ├── H5Ex_G_Visit.java │ │ │ │ │ ├── JavaGroupExample.sh.in │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── h5ex_g_iterate.h5 │ │ │ │ │ └── h5ex_g_visit.h5 │ │ │ │ ├── intro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── H5_CreateAttribute.java │ │ │ │ │ ├── H5_CreateDataset.java │ │ │ │ │ ├── H5_CreateFile.java │ │ │ │ │ ├── H5_CreateGroup.java │ │ │ │ │ ├── H5_CreateGroupAbsoluteRelative.java │ │ │ │ │ ├── H5_CreateGroupDataset.java │ │ │ │ │ ├── H5_ReadWrite.java │ │ │ │ │ ├── JavaIntroExample.sh.in │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── Makefile.in │ │ │ │ └── testfiles │ │ │ │ │ ├── examples.datasets.H5Ex_D_Alloc.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Checksum.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Chunk.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Compact.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_External.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_FillValue.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Gzip.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Hyperslab.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Nbit.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_ReadWrite.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Shuffle.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Sofloat.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Soint.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Szip.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_Transform.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_UnlimitedAdd.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_UnlimitedGzip.txt │ │ │ │ │ ├── examples.datasets.H5Ex_D_UnlimitedMod.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_Array.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_ArrayAttribute.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_Bit.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_BitAttribute.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_Commit.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_Compound.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_CompoundAttribute.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_Float.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_FloatAttribute.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_Integer.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_IntegerAttribute.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_ObjectReference.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_ObjectReferenceAttribute.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_Opaque.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_OpaqueAttribute.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_String.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_StringAttribute.txt │ │ │ │ │ ├── examples.datatypes.H5Ex_T_VLString.txt │ │ │ │ │ ├── examples.groups.H5Ex_G_Compact.txt │ │ │ │ │ ├── examples.groups.H5Ex_G_Corder.txt │ │ │ │ │ ├── examples.groups.H5Ex_G_Create.txt │ │ │ │ │ ├── examples.groups.H5Ex_G_Intermediate.txt │ │ │ │ │ ├── examples.groups.H5Ex_G_Iterate.txt │ │ │ │ │ ├── examples.groups.H5Ex_G_Phase.txt │ │ │ │ │ ├── examples.groups.H5Ex_G_Visit.txt │ │ │ │ │ ├── examples.intro.H5_CreateAttribute.txt │ │ │ │ │ ├── examples.intro.H5_CreateDataset.txt │ │ │ │ │ ├── examples.intro.H5_CreateFile.txt │ │ │ │ │ ├── examples.intro.H5_CreateGroup.txt │ │ │ │ │ ├── examples.intro.H5_CreateGroupAbsoluteRelative.txt │ │ │ │ │ ├── examples.intro.H5_CreateGroupDataset.txt │ │ │ │ │ └── examples.intro.H5_ReadWrite.txt │ │ │ ├── lib │ │ │ │ ├── ext │ │ │ │ │ ├── slf4j-nop-2.0.6.jar │ │ │ │ │ └── slf4j-simple-2.0.6.jar │ │ │ │ ├── hamcrest-core.jar │ │ │ │ ├── junit.jar │ │ │ │ ├── simplelogger.properties │ │ │ │ └── slf4j-api-2.0.6.jar │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── hdf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── hdf5lib │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── H5.java │ │ │ │ │ │ ├── HDF5Constants.java │ │ │ │ │ │ ├── HDFArray.java │ │ │ │ │ │ ├── HDFNativeData.java │ │ │ │ │ │ ├── callbacks │ │ │ │ │ │ │ ├── Callbacks.java │ │ │ │ │ │ │ ├── H5A_iterate_cb.java │ │ │ │ │ │ │ ├── H5A_iterate_t.java │ │ │ │ │ │ │ ├── H5D_append_cb.java │ │ │ │ │ │ │ ├── H5D_append_t.java │ │ │ │ │ │ │ ├── H5D_iterate_cb.java │ │ │ │ │ │ │ ├── H5D_iterate_t.java │ │ │ │ │ │ │ ├── H5E_walk_cb.java │ │ │ │ │ │ │ ├── H5E_walk_t.java │ │ │ │ │ │ │ ├── H5L_iterate_opdata_t.java │ │ │ │ │ │ │ ├── H5L_iterate_t.java │ │ │ │ │ │ │ ├── H5O_iterate_opdata_t.java │ │ │ │ │ │ │ ├── H5O_iterate_t.java │ │ │ │ │ │ │ ├── H5P_cls_close_func_cb.java │ │ │ │ │ │ │ ├── H5P_cls_close_func_t.java │ │ │ │ │ │ │ ├── H5P_cls_copy_func_cb.java │ │ │ │ │ │ │ ├── H5P_cls_copy_func_t.java │ │ │ │ │ │ │ ├── H5P_cls_create_func_cb.java │ │ │ │ │ │ │ ├── H5P_cls_create_func_t.java │ │ │ │ │ │ │ ├── H5P_iterate_cb.java │ │ │ │ │ │ │ ├── H5P_iterate_t.java │ │ │ │ │ │ │ ├── H5P_prp_close_func_cb.java │ │ │ │ │ │ │ ├── H5P_prp_compare_func_cb.java │ │ │ │ │ │ │ ├── H5P_prp_copy_func_cb.java │ │ │ │ │ │ │ ├── H5P_prp_create_func_cb.java │ │ │ │ │ │ │ ├── H5P_prp_delete_func_cb.java │ │ │ │ │ │ │ ├── H5P_prp_get_func_cb.java │ │ │ │ │ │ │ ├── H5P_prp_set_func_cb.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── exceptions │ │ │ │ │ │ │ ├── HDF5AttributeException.java │ │ │ │ │ │ │ ├── HDF5BtreeException.java │ │ │ │ │ │ │ ├── HDF5DataFiltersException.java │ │ │ │ │ │ │ ├── HDF5DataStorageException.java │ │ │ │ │ │ │ ├── HDF5DatasetInterfaceException.java │ │ │ │ │ │ │ ├── HDF5DataspaceInterfaceException.java │ │ │ │ │ │ │ ├── HDF5DatatypeInterfaceException.java │ │ │ │ │ │ │ ├── HDF5Exception.java │ │ │ │ │ │ │ ├── HDF5ExternalFileListException.java │ │ │ │ │ │ │ ├── HDF5FileInterfaceException.java │ │ │ │ │ │ │ ├── HDF5FunctionArgumentException.java │ │ │ │ │ │ │ ├── HDF5FunctionEntryExitException.java │ │ │ │ │ │ │ ├── HDF5HeapException.java │ │ │ │ │ │ │ ├── HDF5IdException.java │ │ │ │ │ │ │ ├── HDF5InternalErrorException.java │ │ │ │ │ │ │ ├── HDF5JavaException.java │ │ │ │ │ │ │ ├── HDF5LibraryException.java │ │ │ │ │ │ │ ├── HDF5LowLevelIOException.java │ │ │ │ │ │ │ ├── HDF5MetaDataCacheException.java │ │ │ │ │ │ │ ├── HDF5ObjectHeaderException.java │ │ │ │ │ │ │ ├── HDF5PropertyListInterfaceException.java │ │ │ │ │ │ │ ├── HDF5ReferenceException.java │ │ │ │ │ │ │ ├── HDF5ResourceUnavailableException.java │ │ │ │ │ │ │ ├── HDF5SymbolTableException.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── structs │ │ │ │ │ │ │ ├── H5AC_cache_config_t.java │ │ │ │ │ │ │ ├── H5A_info_t.java │ │ │ │ │ │ │ ├── H5E_error2_t.java │ │ │ │ │ │ │ ├── H5FD_hdfs_fapl_t.java │ │ │ │ │ │ │ ├── H5FD_ros3_fapl_t.java │ │ │ │ │ │ │ ├── H5F_info2_t.java │ │ │ │ │ │ │ ├── H5G_info_t.java │ │ │ │ │ │ │ ├── H5L_info_t.java │ │ │ │ │ │ │ ├── H5O_hdr_info_t.java │ │ │ │ │ │ │ ├── H5O_info_t.java │ │ │ │ │ │ │ ├── H5O_native_info_t.java │ │ │ │ │ │ │ ├── H5O_token_t.java │ │ │ │ │ │ │ ├── H5_ih_info_t.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── overview.html │ │ │ │ └── jni │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── exceptionImp.c │ │ │ │ │ ├── exceptionImp.h │ │ │ │ │ ├── h5Constants.c │ │ │ │ │ ├── h5Imp.c │ │ │ │ │ ├── h5Imp.h │ │ │ │ │ ├── h5aImp.c │ │ │ │ │ ├── h5aImp.h │ │ │ │ │ ├── h5dImp.c │ │ │ │ │ ├── h5dImp.h │ │ │ │ │ ├── h5eImp.c │ │ │ │ │ ├── h5eImp.h │ │ │ │ │ ├── h5fImp.c │ │ │ │ │ ├── h5fImp.h │ │ │ │ │ ├── h5gImp.c │ │ │ │ │ ├── h5gImp.h │ │ │ │ │ ├── h5iImp.c │ │ │ │ │ ├── h5iImp.h │ │ │ │ │ ├── h5jni.h │ │ │ │ │ ├── h5lImp.c │ │ │ │ │ ├── h5lImp.h │ │ │ │ │ ├── h5oImp.c │ │ │ │ │ ├── h5oImp.h │ │ │ │ │ ├── h5pACPLImp.c │ │ │ │ │ ├── h5pACPLImp.h │ │ │ │ │ ├── h5pDAPLImp.c │ │ │ │ │ ├── h5pDAPLImp.h │ │ │ │ │ ├── h5pDCPLImp.c │ │ │ │ │ ├── h5pDCPLImp.h │ │ │ │ │ ├── h5pDXPLImp.c │ │ │ │ │ ├── h5pDXPLImp.h │ │ │ │ │ ├── h5pFAPLImp.c │ │ │ │ │ ├── h5pFAPLImp.h │ │ │ │ │ ├── h5pFCPLImp.c │ │ │ │ │ ├── h5pFCPLImp.h │ │ │ │ │ ├── h5pGAPLImp.c │ │ │ │ │ ├── h5pGAPLImp.h │ │ │ │ │ ├── h5pGCPLImp.c │ │ │ │ │ ├── h5pGCPLImp.h │ │ │ │ │ ├── h5pImp.c │ │ │ │ │ ├── h5pImp.h │ │ │ │ │ ├── h5pLAPLImp.c │ │ │ │ │ ├── h5pLAPLImp.h │ │ │ │ │ ├── h5pLCPLImp.c │ │ │ │ │ ├── h5pLCPLImp.h │ │ │ │ │ ├── h5pOCPLImp.c │ │ │ │ │ ├── h5pOCPLImp.h │ │ │ │ │ ├── h5pOCpyPLImp.c │ │ │ │ │ ├── h5pOCpyPLImp.h │ │ │ │ │ ├── h5pStrCPLImp.c │ │ │ │ │ ├── h5pStrCPLImp.h │ │ │ │ │ ├── h5plImp.c │ │ │ │ │ ├── h5plImp.h │ │ │ │ │ ├── h5rImp.c │ │ │ │ │ ├── h5rImp.h │ │ │ │ │ ├── h5sImp.c │ │ │ │ │ ├── h5sImp.h │ │ │ │ │ ├── h5tImp.c │ │ │ │ │ ├── h5tImp.h │ │ │ │ │ ├── h5util.c │ │ │ │ │ ├── h5util.h │ │ │ │ │ ├── h5vlImp.c │ │ │ │ │ ├── h5vlImp.h │ │ │ │ │ ├── h5zImp.c │ │ │ │ │ ├── h5zImp.h │ │ │ │ │ ├── nativeData.c │ │ │ │ │ └── nativeData.h │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── TestAll.java │ │ │ │ ├── TestH5.java │ │ │ │ ├── TestH5A.java │ │ │ │ ├── TestH5Arw.java │ │ │ │ ├── TestH5D.java │ │ │ │ ├── TestH5Dparams.java │ │ │ │ ├── TestH5Dplist.java │ │ │ │ ├── TestH5Drw.java │ │ │ │ ├── TestH5E.java │ │ │ │ ├── TestH5Edefault.java │ │ │ │ ├── TestH5Eparams.java │ │ │ │ ├── TestH5Eregister.java │ │ │ │ ├── TestH5F.java │ │ │ │ ├── TestH5Fbasic.java │ │ │ │ ├── TestH5Fparams.java │ │ │ │ ├── TestH5Fswmr.java │ │ │ │ ├── TestH5G.java │ │ │ │ ├── TestH5Gbasic.java │ │ │ │ ├── TestH5Giterate.java │ │ │ │ ├── TestH5Lbasic.java │ │ │ │ ├── TestH5Lcreate.java │ │ │ │ ├── TestH5Lparams.java │ │ │ │ ├── TestH5Obasic.java │ │ │ │ ├── TestH5Ocopy.java │ │ │ │ ├── TestH5OcopyOld.java │ │ │ │ ├── TestH5Ocreate.java │ │ │ │ ├── TestH5Oparams.java │ │ │ │ ├── TestH5P.java │ │ │ │ ├── TestH5PData.java │ │ │ │ ├── TestH5PL.java │ │ │ │ ├── TestH5Pfapl.java │ │ │ │ ├── TestH5Pfaplhdfs.java │ │ │ │ ├── TestH5Pfapls3.java │ │ │ │ ├── TestH5Plist.java │ │ │ │ ├── TestH5Pvirtual.java │ │ │ │ ├── TestH5R.java │ │ │ │ ├── TestH5Rref.java │ │ │ │ ├── TestH5S.java │ │ │ │ ├── TestH5Sbasic.java │ │ │ │ ├── TestH5T.java │ │ │ │ ├── TestH5Tbasic.java │ │ │ │ ├── TestH5Tparams.java │ │ │ │ ├── TestH5VL.java │ │ │ │ ├── TestH5Z.java │ │ │ │ ├── junit.sh.in │ │ │ │ └── testfiles │ │ │ │ ├── JUnit-TestH5.txt │ │ │ │ ├── JUnit-TestH5A.txt │ │ │ │ ├── JUnit-TestH5Arw.txt │ │ │ │ ├── JUnit-TestH5D.txt │ │ │ │ ├── JUnit-TestH5Dparams.txt │ │ │ │ ├── JUnit-TestH5Dplist.txt │ │ │ │ ├── JUnit-TestH5Drw.txt │ │ │ │ ├── JUnit-TestH5E.txt │ │ │ │ ├── JUnit-TestH5Edefault.txt │ │ │ │ ├── JUnit-TestH5Eparams.txt │ │ │ │ ├── JUnit-TestH5Eregister.txt │ │ │ │ ├── JUnit-TestH5F.txt │ │ │ │ ├── JUnit-TestH5Fbasic.txt │ │ │ │ ├── JUnit-TestH5Fparams.txt │ │ │ │ ├── JUnit-TestH5Fswmr.txt │ │ │ │ ├── JUnit-TestH5G.txt │ │ │ │ ├── JUnit-TestH5Gbasic.txt │ │ │ │ ├── JUnit-TestH5Giterate.txt │ │ │ │ ├── JUnit-TestH5Lbasic.txt │ │ │ │ ├── JUnit-TestH5Lcreate.txt │ │ │ │ ├── JUnit-TestH5Lparams.txt │ │ │ │ ├── JUnit-TestH5Obasic.txt │ │ │ │ ├── JUnit-TestH5Ocopy.txt │ │ │ │ ├── JUnit-TestH5OcopyOld.txt │ │ │ │ ├── JUnit-TestH5Ocreate.txt │ │ │ │ ├── JUnit-TestH5Oparams.txt │ │ │ │ ├── JUnit-TestH5P.txt │ │ │ │ ├── JUnit-TestH5PData.txt │ │ │ │ ├── JUnit-TestH5PL.txt │ │ │ │ ├── JUnit-TestH5Pfapl.txt │ │ │ │ ├── JUnit-TestH5Pfaplhdfs.txt │ │ │ │ ├── JUnit-TestH5Pfapls3.txt │ │ │ │ ├── JUnit-TestH5Plist.txt │ │ │ │ ├── JUnit-TestH5Pvirtual.txt │ │ │ │ ├── JUnit-TestH5R.txt │ │ │ │ ├── JUnit-TestH5Rref.txt │ │ │ │ ├── JUnit-TestH5S.txt │ │ │ │ ├── JUnit-TestH5Sbasic.txt │ │ │ │ ├── JUnit-TestH5T.txt │ │ │ │ ├── JUnit-TestH5Tbasic.txt │ │ │ │ ├── JUnit-TestH5Tparams.txt │ │ │ │ ├── JUnit-TestH5VL.txt │ │ │ │ └── JUnit-TestH5Z.txt │ │ ├── m4 │ │ │ ├── aclocal_fc.f90 │ │ │ ├── aclocal_fc.m4 │ │ │ ├── ax_check_class.m4 │ │ │ ├── ax_check_classpath.m4 │ │ │ ├── ax_check_java_home.m4 │ │ │ ├── ax_check_junit.m4 │ │ │ ├── ax_check_rqrd_class.m4 │ │ │ ├── ax_java_check_class.m4 │ │ │ ├── ax_java_options.m4 │ │ │ ├── ax_jni_include_dir.m4 │ │ │ ├── ax_prog_doxygen.m4 │ │ │ ├── ax_prog_jar.m4 │ │ │ ├── ax_prog_java.m4 │ │ │ ├── ax_prog_java_cc.m4 │ │ │ ├── ax_prog_java_works.m4 │ │ │ ├── ax_prog_javac.m4 │ │ │ ├── ax_prog_javac_works.m4 │ │ │ ├── ax_prog_javadoc.m4 │ │ │ ├── ax_prog_javah.m4 │ │ │ ├── ax_try_compile_java.m4 │ │ │ ├── ax_try_run_java.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── release_docs │ │ │ ├── HISTORY-1_0-1_8_0.txt │ │ │ ├── HISTORY-1_10_0-1_12_0.txt │ │ │ ├── HISTORY-1_14.txt │ │ │ ├── HISTORY-1_8_0-1_10_0.txt │ │ │ ├── INSTALL │ │ │ ├── INSTALL_CMake.txt │ │ │ ├── INSTALL_Cygwin.txt │ │ │ ├── INSTALL_Warnings.txt │ │ │ ├── INSTALL_Windows.txt │ │ │ ├── INSTALL_parallel │ │ │ ├── NEWSLETTER.txt │ │ │ ├── README.md │ │ │ ├── README_HDF5_CMake │ │ │ ├── README_HPC │ │ │ ├── RELEASE.txt │ │ │ ├── USING_CMake_Examples.txt │ │ │ ├── USING_HDF5_CMake.txt │ │ │ └── USING_HDF5_VS.txt │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── H5.c │ │ │ ├── H5A.c │ │ │ ├── H5AC.c │ │ │ ├── H5ACdbg.c │ │ │ ├── H5ACmodule.h │ │ │ ├── H5ACmpio.c │ │ │ ├── H5ACpkg.h │ │ │ ├── H5ACprivate.h │ │ │ ├── H5ACproxy_entry.c │ │ │ ├── H5ACpublic.h │ │ │ ├── H5Abtree2.c │ │ │ ├── H5Adense.c │ │ │ ├── H5Adeprec.c │ │ │ ├── H5Aint.c │ │ │ ├── H5Amodule.h │ │ │ ├── H5Apkg.h │ │ │ ├── H5Aprivate.h │ │ │ ├── H5Apublic.h │ │ │ ├── H5Atest.c │ │ │ ├── H5B.c │ │ │ ├── H5B2.c │ │ │ ├── H5B2cache.c │ │ │ ├── H5B2dbg.c │ │ │ ├── H5B2hdr.c │ │ │ ├── H5B2int.c │ │ │ ├── H5B2internal.c │ │ │ ├── H5B2leaf.c │ │ │ ├── H5B2module.h │ │ │ ├── H5B2pkg.h │ │ │ ├── H5B2private.h │ │ │ ├── H5B2stat.c │ │ │ ├── H5B2test.c │ │ │ ├── H5Bcache.c │ │ │ ├── H5Bdbg.c │ │ │ ├── H5Bmodule.h │ │ │ ├── H5Bpkg.h │ │ │ ├── H5Bprivate.h │ │ │ ├── H5C.c │ │ │ ├── H5CS.c │ │ │ ├── H5CSprivate.h │ │ │ ├── H5CX.c │ │ │ ├── H5CXmodule.h │ │ │ ├── H5CXprivate.h │ │ │ ├── H5Cdbg.c │ │ │ ├── H5Centry.c │ │ │ ├── H5Cepoch.c │ │ │ ├── H5Cimage.c │ │ │ ├── H5Cint.c │ │ │ ├── H5Clog.c │ │ │ ├── H5Clog.h │ │ │ ├── H5Clog_json.c │ │ │ ├── H5Clog_trace.c │ │ │ ├── H5Cmodule.h │ │ │ ├── H5Cmpio.c │ │ │ ├── H5Cpkg.h │ │ │ ├── H5Cprefetched.c │ │ │ ├── H5Cprivate.h │ │ │ ├── H5Cpublic.h │ │ │ ├── H5Cquery.c │ │ │ ├── H5Ctag.c │ │ │ ├── H5Ctest.c │ │ │ ├── H5D.c │ │ │ ├── H5Dbtree.c │ │ │ ├── H5Dbtree2.c │ │ │ ├── H5Dchunk.c │ │ │ ├── H5Dcompact.c │ │ │ ├── H5Dcontig.c │ │ │ ├── H5Ddbg.c │ │ │ ├── H5Ddeprec.c │ │ │ ├── H5Dearray.c │ │ │ ├── H5Defl.c │ │ │ ├── H5Dfarray.c │ │ │ ├── H5Dfill.c │ │ │ ├── H5Dint.c │ │ │ ├── H5Dio.c │ │ │ ├── H5Dlayout.c │ │ │ ├── H5Dmodule.h │ │ │ ├── H5Dmpio.c │ │ │ ├── H5Dnone.c │ │ │ ├── H5Doh.c │ │ │ ├── H5Dpkg.h │ │ │ ├── H5Dprivate.h │ │ │ ├── H5Dpublic.h │ │ │ ├── H5Dscatgath.c │ │ │ ├── H5Dselect.c │ │ │ ├── H5Dsingle.c │ │ │ ├── H5Dtest.c │ │ │ ├── H5Dvirtual.c │ │ │ ├── H5E.c │ │ │ ├── H5EA.c │ │ │ ├── H5EAcache.c │ │ │ ├── H5EAdbg.c │ │ │ ├── H5EAdblkpage.c │ │ │ ├── H5EAdblock.c │ │ │ ├── H5EAhdr.c │ │ │ ├── H5EAiblock.c │ │ │ ├── H5EAint.c │ │ │ ├── H5EAmodule.h │ │ │ ├── H5EApkg.h │ │ │ ├── H5EAprivate.h │ │ │ ├── H5EAsblock.c │ │ │ ├── H5EAstat.c │ │ │ ├── H5EAtest.c │ │ │ ├── H5ES.c │ │ │ ├── H5ESdevelop.h │ │ │ ├── H5ESevent.c │ │ │ ├── H5ESint.c │ │ │ ├── H5ESlist.c │ │ │ ├── H5ESmodule.h │ │ │ ├── H5ESpkg.h │ │ │ ├── H5ESprivate.h │ │ │ ├── H5ESpublic.h │ │ │ ├── H5Edefin.h │ │ │ ├── H5Edeprec.c │ │ │ ├── H5Einit.h │ │ │ ├── H5Eint.c │ │ │ ├── H5Emodule.h │ │ │ ├── H5Epkg.h │ │ │ ├── H5Eprivate.h │ │ │ ├── H5Epubgen.h │ │ │ ├── H5Epublic.h │ │ │ ├── H5Eterm.h │ │ │ ├── H5F.c │ │ │ ├── H5FA.c │ │ │ ├── H5FAcache.c │ │ │ ├── H5FAdbg.c │ │ │ ├── H5FAdblkpage.c │ │ │ ├── H5FAdblock.c │ │ │ ├── H5FAhdr.c │ │ │ ├── H5FAint.c │ │ │ ├── H5FAmodule.h │ │ │ ├── H5FApkg.h │ │ │ ├── H5FAprivate.h │ │ │ ├── H5FAstat.c │ │ │ ├── H5FAtest.c │ │ │ ├── H5FD.c │ │ │ ├── H5FDcore.c │ │ │ ├── H5FDcore.h │ │ │ ├── H5FDdevelop.h │ │ │ ├── H5FDdirect.c │ │ │ ├── H5FDdirect.h │ │ │ ├── H5FDdrvr_module.h │ │ │ ├── H5FDfamily.c │ │ │ ├── H5FDfamily.h │ │ │ ├── H5FDhdfs.c │ │ │ ├── H5FDhdfs.h │ │ │ ├── H5FDint.c │ │ │ ├── H5FDlog.c │ │ │ ├── H5FDlog.h │ │ │ ├── H5FDmirror.c │ │ │ ├── H5FDmirror.h │ │ │ ├── H5FDmirror_priv.h │ │ │ ├── H5FDmodule.h │ │ │ ├── H5FDmpi.c │ │ │ ├── H5FDmpi.h │ │ │ ├── H5FDmpio.c │ │ │ ├── H5FDmpio.h │ │ │ ├── H5FDmulti.c │ │ │ ├── H5FDmulti.h │ │ │ ├── H5FDonion.c │ │ │ ├── H5FDonion.h │ │ │ ├── H5FDonion_header.c │ │ │ ├── H5FDonion_header.h │ │ │ ├── H5FDonion_history.c │ │ │ ├── H5FDonion_history.h │ │ │ ├── H5FDonion_index.c │ │ │ ├── H5FDonion_index.h │ │ │ ├── H5FDonion_priv.h │ │ │ ├── H5FDperform.c │ │ │ ├── H5FDpkg.h │ │ │ ├── H5FDprivate.h │ │ │ ├── H5FDpublic.h │ │ │ ├── H5FDros3.c │ │ │ ├── H5FDros3.h │ │ │ ├── H5FDs3comms.c │ │ │ ├── H5FDs3comms.h │ │ │ ├── H5FDsec2.c │ │ │ ├── H5FDsec2.h │ │ │ ├── H5FDspace.c │ │ │ ├── H5FDsplitter.c │ │ │ ├── H5FDsplitter.h │ │ │ ├── H5FDstdio.c │ │ │ ├── H5FDstdio.h │ │ │ ├── H5FDsubfiling │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── H5FDioc.c │ │ │ │ ├── H5FDioc.h │ │ │ │ ├── H5FDioc_int.c │ │ │ │ ├── H5FDioc_priv.h │ │ │ │ ├── H5FDioc_threads.c │ │ │ │ ├── H5FDsubfile_int.c │ │ │ │ ├── H5FDsubfiling.c │ │ │ │ ├── H5FDsubfiling.h │ │ │ │ ├── H5FDsubfiling_priv.h │ │ │ │ ├── H5subfiling_common.c │ │ │ │ ├── H5subfiling_common.h │ │ │ │ ├── H5subfiling_err.h │ │ │ │ └── mercury │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── src │ │ │ │ │ └── util │ │ │ │ │ ├── mercury_compiler_attributes.h │ │ │ │ │ ├── mercury_queue.h │ │ │ │ │ ├── mercury_thread.c │ │ │ │ │ ├── mercury_thread.h │ │ │ │ │ ├── mercury_thread_annotation.h │ │ │ │ │ ├── mercury_thread_condition.c │ │ │ │ │ ├── mercury_thread_condition.h │ │ │ │ │ ├── mercury_thread_mutex.c │ │ │ │ │ ├── mercury_thread_mutex.h │ │ │ │ │ ├── mercury_thread_pool.c │ │ │ │ │ ├── mercury_thread_pool.h │ │ │ │ │ ├── mercury_util_config.h │ │ │ │ │ └── mercury_util_error.h │ │ │ ├── H5FDtest.c │ │ │ ├── H5FDwindows.c │ │ │ ├── H5FDwindows.h │ │ │ ├── H5FL.c │ │ │ ├── H5FLmodule.h │ │ │ ├── H5FLprivate.h │ │ │ ├── H5FO.c │ │ │ ├── H5FOprivate.h │ │ │ ├── H5FS.c │ │ │ ├── H5FScache.c │ │ │ ├── H5FSdbg.c │ │ │ ├── H5FSint.c │ │ │ ├── H5FSmodule.h │ │ │ ├── H5FSpkg.h │ │ │ ├── H5FSprivate.h │ │ │ ├── H5FSsection.c │ │ │ ├── H5FSstat.c │ │ │ ├── H5FStest.c │ │ │ ├── H5Faccum.c │ │ │ ├── H5Fcwfs.c │ │ │ ├── H5Fdbg.c │ │ │ ├── H5Fdeprec.c │ │ │ ├── H5Fefc.c │ │ │ ├── H5Ffake.c │ │ │ ├── H5Fint.c │ │ │ ├── H5Fio.c │ │ │ ├── H5Fmodule.h │ │ │ ├── H5Fmount.c │ │ │ ├── H5Fmpi.c │ │ │ ├── H5Fpkg.h │ │ │ ├── H5Fprivate.h │ │ │ ├── H5Fpublic.h │ │ │ ├── H5Fquery.c │ │ │ ├── H5Fsfile.c │ │ │ ├── H5Fspace.c │ │ │ ├── H5Fsuper.c │ │ │ ├── H5Fsuper_cache.c │ │ │ ├── H5Ftest.c │ │ │ ├── H5G.c │ │ │ ├── H5Gbtree2.c │ │ │ ├── H5Gcache.c │ │ │ ├── H5Gcompact.c │ │ │ ├── H5Gdense.c │ │ │ ├── H5Gdeprec.c │ │ │ ├── H5Gent.c │ │ │ ├── H5Gint.c │ │ │ ├── H5Glink.c │ │ │ ├── H5Gloc.c │ │ │ ├── H5Gmodule.h │ │ │ ├── H5Gname.c │ │ │ ├── H5Gnode.c │ │ │ ├── H5Gobj.c │ │ │ ├── H5Goh.c │ │ │ ├── H5Gpkg.h │ │ │ ├── H5Gprivate.h │ │ │ ├── H5Gpublic.h │ │ │ ├── H5Groot.c │ │ │ ├── H5Gstab.c │ │ │ ├── H5Gtest.c │ │ │ ├── H5Gtraverse.c │ │ │ ├── H5HF.c │ │ │ ├── H5HFbtree2.c │ │ │ ├── H5HFcache.c │ │ │ ├── H5HFdbg.c │ │ │ ├── H5HFdblock.c │ │ │ ├── H5HFdtable.c │ │ │ ├── H5HFhdr.c │ │ │ ├── H5HFhuge.c │ │ │ ├── H5HFiblock.c │ │ │ ├── H5HFiter.c │ │ │ ├── H5HFman.c │ │ │ ├── H5HFmodule.h │ │ │ ├── H5HFpkg.h │ │ │ ├── H5HFprivate.h │ │ │ ├── H5HFsection.c │ │ │ ├── H5HFspace.c │ │ │ ├── H5HFstat.c │ │ │ ├── H5HFtest.c │ │ │ ├── H5HFtiny.c │ │ │ ├── H5HG.c │ │ │ ├── H5HGcache.c │ │ │ ├── H5HGdbg.c │ │ │ ├── H5HGmodule.h │ │ │ ├── H5HGpkg.h │ │ │ ├── H5HGprivate.h │ │ │ ├── H5HGquery.c │ │ │ ├── H5HL.c │ │ │ ├── H5HLcache.c │ │ │ ├── H5HLdbg.c │ │ │ ├── H5HLdblk.c │ │ │ ├── H5HLint.c │ │ │ ├── H5HLmodule.h │ │ │ ├── H5HLpkg.h │ │ │ ├── H5HLprfx.c │ │ │ ├── H5HLprivate.h │ │ │ ├── H5I.c │ │ │ ├── H5Idbg.c │ │ │ ├── H5Idevelop.h │ │ │ ├── H5Iint.c │ │ │ ├── H5Imodule.h │ │ │ ├── H5Ipkg.h │ │ │ ├── H5Iprivate.h │ │ │ ├── H5Ipublic.h │ │ │ ├── H5Itest.c │ │ │ ├── H5L.c │ │ │ ├── H5Ldeprec.c │ │ │ ├── H5Ldevelop.h │ │ │ ├── H5Lexternal.c │ │ │ ├── H5Lint.c │ │ │ ├── H5Lmodule.h │ │ │ ├── H5Lpkg.h │ │ │ ├── H5Lprivate.h │ │ │ ├── H5Lpublic.h │ │ │ ├── H5M.c │ │ │ ├── H5MF.c │ │ │ ├── H5MFaggr.c │ │ │ ├── H5MFdbg.c │ │ │ ├── H5MFmodule.h │ │ │ ├── H5MFpkg.h │ │ │ ├── H5MFprivate.h │ │ │ ├── H5MFsection.c │ │ │ ├── H5MM.c │ │ │ ├── H5MMprivate.h │ │ │ ├── H5MMpublic.h │ │ │ ├── H5Mmodule.h │ │ │ ├── H5Mpkg.h │ │ │ ├── H5Mprivate.h │ │ │ ├── H5Mpublic.h │ │ │ ├── H5O.c │ │ │ ├── H5Oainfo.c │ │ │ ├── H5Oalloc.c │ │ │ ├── H5Oattr.c │ │ │ ├── H5Oattribute.c │ │ │ ├── H5Obogus.c │ │ │ ├── H5Obtreek.c │ │ │ ├── H5Ocache.c │ │ │ ├── H5Ocache_image.c │ │ │ ├── H5Ochunk.c │ │ │ ├── H5Ocont.c │ │ │ ├── H5Ocopy.c │ │ │ ├── H5Ocopy_ref.c │ │ │ ├── H5Odbg.c │ │ │ ├── H5Odeprec.c │ │ │ ├── H5Odrvinfo.c │ │ │ ├── H5Odtype.c │ │ │ ├── H5Oefl.c │ │ │ ├── H5Ofill.c │ │ │ ├── H5Oflush.c │ │ │ ├── H5Ofsinfo.c │ │ │ ├── H5Oginfo.c │ │ │ ├── H5Oint.c │ │ │ ├── H5Olayout.c │ │ │ ├── H5Olinfo.c │ │ │ ├── H5Olink.c │ │ │ ├── H5Omessage.c │ │ │ ├── H5Omodule.h │ │ │ ├── H5Omtime.c │ │ │ ├── H5Oname.c │ │ │ ├── H5Onull.c │ │ │ ├── H5Opkg.h │ │ │ ├── H5Opline.c │ │ │ ├── H5Oprivate.h │ │ │ ├── H5Opublic.h │ │ │ ├── H5Orefcount.c │ │ │ ├── H5Osdspace.c │ │ │ ├── H5Oshared.c │ │ │ ├── H5Oshared.h │ │ │ ├── H5Oshmesg.c │ │ │ ├── H5Ostab.c │ │ │ ├── H5Otest.c │ │ │ ├── H5Ounknown.c │ │ │ ├── H5P.c │ │ │ ├── H5PB.c │ │ │ ├── H5PBmodule.h │ │ │ ├── H5PBpkg.h │ │ │ ├── H5PBprivate.h │ │ │ ├── H5PL.c │ │ │ ├── H5PLextern.h │ │ │ ├── H5PLint.c │ │ │ ├── H5PLmodule.h │ │ │ ├── H5PLpath.c │ │ │ ├── H5PLpkg.h │ │ │ ├── H5PLplugin_cache.c │ │ │ ├── H5PLprivate.h │ │ │ ├── H5PLpublic.h │ │ │ ├── H5Pacpl.c │ │ │ ├── H5Pdapl.c │ │ │ ├── H5Pdcpl.c │ │ │ ├── H5Pdeprec.c │ │ │ ├── H5Pdxpl.c │ │ │ ├── H5Pencdec.c │ │ │ ├── H5Pfapl.c │ │ │ ├── H5Pfcpl.c │ │ │ ├── H5Pfmpl.c │ │ │ ├── H5Pgcpl.c │ │ │ ├── H5Pint.c │ │ │ ├── H5Plapl.c │ │ │ ├── H5Plcpl.c │ │ │ ├── H5Pmapl.c │ │ │ ├── H5Pmcpl.c │ │ │ ├── H5Pmodule.h │ │ │ ├── H5Pocpl.c │ │ │ ├── H5Pocpypl.c │ │ │ ├── H5Ppkg.h │ │ │ ├── H5Pprivate.h │ │ │ ├── H5Ppublic.h │ │ │ ├── H5Pstrcpl.c │ │ │ ├── H5Ptest.c │ │ │ ├── H5R.c │ │ │ ├── H5RS.c │ │ │ ├── H5RSmodule.h │ │ │ ├── H5RSprivate.h │ │ │ ├── H5Rdeprec.c │ │ │ ├── H5Rint.c │ │ │ ├── H5Rmodule.h │ │ │ ├── H5Rpkg.h │ │ │ ├── H5Rprivate.h │ │ │ ├── H5Rpublic.h │ │ │ ├── H5S.c │ │ │ ├── H5SL.c │ │ │ ├── H5SLmodule.h │ │ │ ├── H5SLprivate.h │ │ │ ├── H5SM.c │ │ │ ├── H5SMbtree2.c │ │ │ ├── H5SMcache.c │ │ │ ├── H5SMmessage.c │ │ │ ├── H5SMmodule.h │ │ │ ├── H5SMpkg.h │ │ │ ├── H5SMprivate.h │ │ │ ├── H5SMtest.c │ │ │ ├── H5Sall.c │ │ │ ├── H5Sdbg.c │ │ │ ├── H5Sdeprec.c │ │ │ ├── H5Shyper.c │ │ │ ├── H5Smodule.h │ │ │ ├── H5Smpio.c │ │ │ ├── H5Snone.c │ │ │ ├── H5Spkg.h │ │ │ ├── H5Spoint.c │ │ │ ├── H5Sprivate.h │ │ │ ├── H5Spublic.h │ │ │ ├── H5Sselect.c │ │ │ ├── H5Stest.c │ │ │ ├── H5T.c │ │ │ ├── H5TS.c │ │ │ ├── H5TSdevelop.h │ │ │ ├── H5TSprivate.h │ │ │ ├── H5Tarray.c │ │ │ ├── H5Tbit.c │ │ │ ├── H5Tcommit.c │ │ │ ├── H5Tcompound.c │ │ │ ├── H5Tconv.c │ │ │ ├── H5Tcset.c │ │ │ ├── H5Tdbg.c │ │ │ ├── H5Tdeprec.c │ │ │ ├── H5Tdevelop.h │ │ │ ├── H5Tenum.c │ │ │ ├── H5Tfields.c │ │ │ ├── H5Tfixed.c │ │ │ ├── H5Tfloat.c │ │ │ ├── H5Tinit_float.c │ │ │ ├── H5Tmodule.h │ │ │ ├── H5Tnative.c │ │ │ ├── H5Toffset.c │ │ │ ├── H5Toh.c │ │ │ ├── H5Topaque.c │ │ │ ├── H5Torder.c │ │ │ ├── H5Tpad.c │ │ │ ├── H5Tpkg.h │ │ │ ├── H5Tprecis.c │ │ │ ├── H5Tprivate.h │ │ │ ├── H5Tpublic.h │ │ │ ├── H5Tref.c │ │ │ ├── H5Tstrpad.c │ │ │ ├── H5Tvisit.c │ │ │ ├── H5Tvlen.c │ │ │ ├── H5UC.c │ │ │ ├── H5UCprivate.h │ │ │ ├── H5VL.c │ │ │ ├── H5VLcallback.c │ │ │ ├── H5VLconnector.h │ │ │ ├── H5VLconnector_passthru.h │ │ │ ├── H5VLdyn_ops.c │ │ │ ├── H5VLint.c │ │ │ ├── H5VLmodule.h │ │ │ ├── H5VLnative.c │ │ │ ├── H5VLnative.h │ │ │ ├── H5VLnative_attr.c │ │ │ ├── H5VLnative_blob.c │ │ │ ├── H5VLnative_dataset.c │ │ │ ├── H5VLnative_datatype.c │ │ │ ├── H5VLnative_file.c │ │ │ ├── H5VLnative_group.c │ │ │ ├── H5VLnative_introspect.c │ │ │ ├── H5VLnative_link.c │ │ │ ├── H5VLnative_object.c │ │ │ ├── H5VLnative_private.h │ │ │ ├── H5VLnative_token.c │ │ │ ├── H5VLpassthru.c │ │ │ ├── H5VLpassthru.h │ │ │ ├── H5VLpkg.h │ │ │ ├── H5VLprivate.h │ │ │ ├── H5VLpublic.h │ │ │ ├── H5VLtest.c │ │ │ ├── H5VM.c │ │ │ ├── H5VMprivate.h │ │ │ ├── H5WB.c │ │ │ ├── H5WBprivate.h │ │ │ ├── H5Z.c │ │ │ ├── H5Zdeflate.c │ │ │ ├── H5Zdevelop.h │ │ │ ├── H5Zfletcher32.c │ │ │ ├── H5Zmodule.h │ │ │ ├── H5Znbit.c │ │ │ ├── H5Zpkg.h │ │ │ ├── H5Zprivate.h │ │ │ ├── H5Zpublic.h │ │ │ ├── H5Zscaleoffset.c │ │ │ ├── H5Zshuffle.c │ │ │ ├── H5Zszip.c │ │ │ ├── H5Ztrans.c │ │ │ ├── H5api_adpt.h │ │ │ ├── H5build_settings.autotools.c.in │ │ │ ├── H5build_settings.cmake.c.in │ │ │ ├── H5build_settings.off.c.in │ │ │ ├── H5checksum.c │ │ │ ├── H5config.h.in │ │ │ ├── H5dbg.c │ │ │ ├── H5encode.h │ │ │ ├── H5err.txt │ │ │ ├── H5module.h │ │ │ ├── H5mpi.c │ │ │ ├── H5overflow.h │ │ │ ├── H5overflow.txt │ │ │ ├── H5private.h │ │ │ ├── H5pubconf.h │ │ │ ├── H5public.h │ │ │ ├── H5system.c │ │ │ ├── H5timer.c │ │ │ ├── H5trace.c │ │ │ ├── H5vers.txt │ │ │ ├── H5version.h │ │ │ ├── H5win32defs.h │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── darwin-H5pubconf.h │ │ │ ├── hdf5.h │ │ │ ├── libhdf5.settings.in │ │ │ ├── linux-H5pubconf.h │ │ │ ├── uthash.h │ │ │ └── windows-H5pubconf.h │ │ └── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── mirror_vfd │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── mirror_remote.c │ │ │ ├── mirror_remote.h │ │ │ ├── mirror_server.c │ │ │ ├── mirror_server_stop.c │ │ │ └── mirror_writer.c │ │ │ ├── subfiling_vfd │ │ │ ├── CMakeLists.txt │ │ │ └── h5fuse.sh.in │ │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── swmr_check_compat_vfd.c │ │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── h5dwalk │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── h5dwalk.c │ │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── h5dwalk │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakeTests.cmake │ │ │ ├── Makefile.am │ │ │ ├── copy_demo_files.sh.in │ │ │ ├── help.h5dwalk │ │ │ └── testh5dwalk.sh.in │ ├── libhdf5.gyp │ ├── linux-H5build_settings.c │ ├── linux-H5pubconf.h │ ├── linux-libhdf5.settings │ ├── patches │ │ ├── libhdf5_hdf5_.gitignore.diff │ │ └── libhdf5_hdf5_src_H5trace.c.diff │ ├── windows-H5build_settings.c │ ├── windows-H5pubconf.h │ └── windows-libhdf5.settings ├── libnetcdf.sh ├── libnetcdf │ ├── config.h │ ├── libnetcdf.gyp │ └── netcdf │ │ ├── .github │ │ ├── CODEOWNERS │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE.md │ │ └── workflows │ │ │ ├── run_tests_osx.yml │ │ │ ├── run_tests_ubuntu.yml │ │ │ ├── run_tests_win_cygwin.yml │ │ │ └── run_tests_win_mingw.yml │ │ ├── .gitignore │ │ ├── CMakeInstallation.cmake │ │ ├── CMakeLists.txt │ │ ├── COMPILE.cmake.txt │ │ ├── COPYRIGHT │ │ ├── CTestConfig.cmake.in │ │ ├── CTestCustom.cmake │ │ ├── FixBundle.cmake.in │ │ ├── INSTALL.md │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NUG │ │ ├── .gitignore │ │ └── README.md │ │ ├── PostInstall.cmake │ │ ├── README.md │ │ ├── RELEASE_NOTES.md │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── appveyor.yml │ │ ├── bootstrap │ │ ├── cmake │ │ ├── ConfigUser.cmake │ │ └── modules │ │ │ ├── FindBlosc.cmake │ │ │ ├── FindBz2.cmake │ │ │ ├── FindBzip2.cmake │ │ │ ├── FindHDF4.cmake │ │ │ ├── FindMakeDist.cmake │ │ │ ├── FindSzip.cmake │ │ │ ├── FindXDR.cmake │ │ │ ├── FindZLIB.cmake │ │ │ ├── FindZip.cmake │ │ │ ├── FindZstd.cmake │ │ │ └── windows │ │ │ └── FindHDF5.cmake │ │ ├── cmake_uninstall.cmake.in │ │ ├── compile │ │ ├── conda.recipe │ │ ├── bld.bat │ │ └── meta.yaml │ │ ├── config.guess │ │ ├── config.h │ │ ├── config.h.cmake.in │ │ ├── config.h.cmake.in.old-works │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── ctest_scripts │ │ ├── README.md │ │ ├── ctest_mpicc.ctest │ │ ├── ctest_serial.ctest │ │ └── ctest_serial_dap.ctest │ │ ├── dap4_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── baseline │ │ │ ├── CMakeLists.txt │ │ │ ├── test_anon_dim.2.syn.d4d │ │ │ ├── test_anon_dim.2.syn.d4m │ │ │ ├── test_anon_dim.2.syn.d4p │ │ │ ├── test_anon_dim.syn.d4d │ │ │ ├── test_anon_dim.syn.d4m │ │ │ ├── test_anon_dim.syn.d4p │ │ │ ├── test_atomic_array.5.nc.d4d │ │ │ ├── test_atomic_array.5.nc.d4m │ │ │ ├── test_atomic_array.5.nc.d4p │ │ │ ├── test_atomic_array.8.nc.d4d │ │ │ ├── test_atomic_array.8.nc.d4m │ │ │ ├── test_atomic_array.8.nc.d4p │ │ │ ├── test_atomic_array.9.nc.d4d │ │ │ ├── test_atomic_array.9.nc.d4m │ │ │ ├── test_atomic_array.9.nc.d4p │ │ │ ├── test_atomic_array.nc.d4d │ │ │ ├── test_atomic_array.nc.d4m │ │ │ ├── test_atomic_array.nc.d4p │ │ │ ├── test_atomic_array.syn.d4d │ │ │ ├── test_atomic_array.syn.d4m │ │ │ ├── test_atomic_array.syn.d4p │ │ │ ├── test_atomic_types.nc.d4d │ │ │ ├── test_atomic_types.nc.d4m │ │ │ ├── test_atomic_types.nc.d4p │ │ │ ├── test_atomic_types.syn.d4d │ │ │ ├── test_atomic_types.syn.d4m │ │ │ ├── test_atomic_types.syn.d4p │ │ │ ├── test_enum.nc.d4d │ │ │ ├── test_enum.nc.d4m │ │ │ ├── test_enum.nc.d4p │ │ │ ├── test_enum_2.nc.d4d │ │ │ ├── test_enum_2.nc.d4m │ │ │ ├── test_enum_2.nc.d4p │ │ │ ├── test_enum_array.4.nc.d4d │ │ │ ├── test_enum_array.4.nc.d4m │ │ │ ├── test_enum_array.4.nc.d4p │ │ │ ├── test_enum_array.nc.d4d │ │ │ ├── test_enum_array.nc.d4m │ │ │ ├── test_enum_array.nc.d4p │ │ │ ├── test_fill.nc.d4d │ │ │ ├── test_fill.nc.d4m │ │ │ ├── test_fill.nc.d4p │ │ │ ├── test_groups1.nc.d4d │ │ │ ├── test_groups1.nc.d4m │ │ │ ├── test_groups1.nc.d4p │ │ │ ├── test_one_var.nc.d4d │ │ │ ├── test_one_var.nc.d4m │ │ │ ├── test_one_var.nc.d4p │ │ │ ├── test_one_vararray.1.nc.d4d │ │ │ ├── test_one_vararray.1.nc.d4m │ │ │ ├── test_one_vararray.1.nc.d4p │ │ │ ├── test_one_vararray.3.nc.d4d │ │ │ ├── test_one_vararray.3.nc.d4m │ │ │ ├── test_one_vararray.3.nc.d4p │ │ │ ├── test_one_vararray.nc.d4d │ │ │ ├── test_one_vararray.nc.d4m │ │ │ ├── test_one_vararray.nc.d4p │ │ │ ├── test_opaque.nc.d4d │ │ │ ├── test_opaque.nc.d4m │ │ │ ├── test_opaque.nc.d4p │ │ │ ├── test_opaque_array.7.nc.d4d │ │ │ ├── test_opaque_array.7.nc.d4m │ │ │ ├── test_opaque_array.7.nc.d4p │ │ │ ├── test_opaque_array.nc.d4d │ │ │ ├── test_opaque_array.nc.d4m │ │ │ ├── test_opaque_array.nc.d4p │ │ │ ├── test_sequence_1.syn.d4d │ │ │ ├── test_sequence_1.syn.d4m │ │ │ ├── test_sequence_1.syn.d4p │ │ │ ├── test_sequence_2.syn.d4d │ │ │ ├── test_sequence_2.syn.d4m │ │ │ ├── test_sequence_2.syn.d4p │ │ │ ├── test_struct1.nc.d4d │ │ │ ├── test_struct1.nc.d4m │ │ │ ├── test_struct1.nc.d4p │ │ │ ├── test_struct_array.6.nc.d4d │ │ │ ├── test_struct_array.6.nc.d4m │ │ │ ├── test_struct_array.6.nc.d4p │ │ │ ├── test_struct_array.nc.d4d │ │ │ ├── test_struct_array.nc.d4m │ │ │ ├── test_struct_array.nc.d4p │ │ │ ├── test_struct_array.syn.d4d │ │ │ ├── test_struct_array.syn.d4m │ │ │ ├── test_struct_array.syn.d4p │ │ │ ├── test_struct_nested.nc.d4d │ │ │ ├── test_struct_nested.nc.d4m │ │ │ ├── test_struct_nested.nc.d4p │ │ │ ├── test_struct_nested3.nc.d4d │ │ │ ├── test_struct_nested3.nc.d4m │ │ │ ├── test_struct_nested3.nc.d4p │ │ │ ├── test_struct_type.nc.d4d │ │ │ ├── test_struct_type.nc.d4m │ │ │ ├── test_struct_type.nc.d4p │ │ │ ├── test_unlim1.nc.d4d │ │ │ ├── test_unlim1.nc.d4m │ │ │ ├── test_unlim1.nc.d4p │ │ │ ├── test_utf8.nc.d4d │ │ │ ├── test_utf8.nc.d4m │ │ │ ├── test_utf8.nc.d4p │ │ │ ├── test_vlen1.nc.d4d │ │ │ ├── test_vlen1.nc.d4m │ │ │ ├── test_vlen1.nc.d4p │ │ │ ├── test_vlen2.nc.d4d │ │ │ ├── test_vlen2.nc.d4m │ │ │ ├── test_vlen2.nc.d4p │ │ │ ├── test_vlen3.nc.d4d │ │ │ ├── test_vlen3.nc.d4m │ │ │ ├── test_vlen3.nc.d4p │ │ │ ├── test_vlen4.nc.d4d │ │ │ ├── test_vlen4.nc.d4m │ │ │ ├── test_vlen4.nc.d4p │ │ │ ├── test_vlen5.nc.d4d │ │ │ ├── test_vlen5.nc.d4m │ │ │ ├── test_vlen5.nc.d4p │ │ │ ├── test_vlen6.nc.d4d │ │ │ ├── test_vlen6.nc.d4m │ │ │ ├── test_vlen6.nc.d4p │ │ │ ├── test_vlen7.nc.d4d │ │ │ ├── test_vlen7.nc.d4m │ │ │ ├── test_vlen7.nc.d4p │ │ │ ├── test_vlen8.nc.d4d │ │ │ ├── test_vlen8.nc.d4m │ │ │ └── test_vlen8.nc.d4p │ │ ├── baselinehyrax │ │ │ ├── CMakeLists.txt │ │ │ ├── amsre_20060131v5.dat.hyrax │ │ │ ├── nc4_nc_classic_comp.nc.hyrax │ │ │ ├── nc4_strings_comp.nc.hyrax │ │ │ ├── nc4_unsigned_types_comp.nc.hyrax │ │ │ └── ref_tst_compounds.nc.hyrax │ │ ├── baselineraw │ │ │ ├── CMakeLists.txt │ │ │ ├── test_anon_dim.2.syn.dmp │ │ │ ├── test_anon_dim.syn.dmp │ │ │ ├── test_atomic_array.5.nc.dmp │ │ │ ├── test_atomic_array.8.nc.dmp │ │ │ ├── test_atomic_array.9.nc.dmp │ │ │ ├── test_atomic_array.nc.dmp │ │ │ ├── test_atomic_array.syn.dmp │ │ │ ├── test_atomic_types.nc.dmp │ │ │ ├── test_atomic_types.syn.dmp │ │ │ ├── test_enum.nc.dmp │ │ │ ├── test_enum_2.nc.dmp │ │ │ ├── test_enum_array.4.nc.dmp │ │ │ ├── test_enum_array.nc.dmp │ │ │ ├── test_fill.nc.dmp │ │ │ ├── test_fillmismatch.nc.dmp │ │ │ ├── test_groups1.nc.dmp │ │ │ ├── test_one_var.nc.dmp │ │ │ ├── test_one_vararray.1.nc.dmp │ │ │ ├── test_one_vararray.3.nc.dmp │ │ │ ├── test_one_vararray.nc.dmp │ │ │ ├── test_opaque.nc.dmp │ │ │ ├── test_opaque_array.7.nc.dmp │ │ │ ├── test_opaque_array.nc.dmp │ │ │ ├── test_sequence_1.syn.dmp │ │ │ ├── test_sequence_2.syn.dmp │ │ │ ├── test_struct1.nc.dmp │ │ │ ├── test_struct_array.6.nc.dmp │ │ │ ├── test_struct_array.nc.dmp │ │ │ ├── test_struct_array.syn.dmp │ │ │ ├── test_struct_nested.nc.dmp │ │ │ ├── test_struct_nested3.nc.dmp │ │ │ ├── test_struct_type.nc.dmp │ │ │ ├── test_unlim1.nc.dmp │ │ │ ├── test_utf8.nc.dmp │ │ │ ├── test_vlen1.nc.dmp │ │ │ ├── test_vlen2.nc.dmp │ │ │ ├── test_vlen3.nc.dmp │ │ │ ├── test_vlen4.nc.dmp │ │ │ ├── test_vlen5.nc.dmp │ │ │ ├── test_vlen6.nc.dmp │ │ │ ├── test_vlen7.nc.dmp │ │ │ └── test_vlen8.nc.dmp │ │ ├── baselineremote │ │ │ ├── CMakeLists.txt │ │ │ ├── nc4_unsigned_types.nc.hyrax │ │ │ ├── test_anon_dim.syn.dmp │ │ │ ├── test_atomic_array.nc.dmp │ │ │ ├── test_atomic_array.syn.dmp │ │ │ ├── test_atomic_types.nc.dmp │ │ │ ├── test_atomic_types.syn.dmp │ │ │ ├── test_enum.nc.dmp │ │ │ ├── test_enum_2.nc.dmp │ │ │ ├── test_enum_array.nc.dmp │ │ │ ├── test_fill.nc.dmp │ │ │ ├── test_groups1.nc.dmp │ │ │ ├── test_misc1.nc.dmp │ │ │ ├── test_one_var.nc.dmp │ │ │ ├── test_one_vararray.nc.dmp │ │ │ ├── test_opaque.nc.dmp │ │ │ ├── test_opaque_array.nc.dmp │ │ │ ├── test_sequence_1.syn.dmp │ │ │ ├── test_sequence_2.syn.dmp │ │ │ ├── test_struct1.nc.dmp │ │ │ ├── test_struct_array.nc.dmp │ │ │ ├── test_struct_array.syn.dmp │ │ │ ├── test_struct_nested.hdf5.dmp │ │ │ ├── test_struct_nested.nc.dmp │ │ │ ├── test_struct_nested3.hdf5.dmp │ │ │ ├── test_struct_nested3.nc.dmp │ │ │ ├── test_struct_type.nc.dmp │ │ │ ├── test_utf8.nc.dmp │ │ │ ├── test_vlen1.nc.dmp │ │ │ ├── test_vlen10.nc.dmp │ │ │ ├── test_vlen11.nc.dmp │ │ │ ├── test_vlen2.nc.dmp │ │ │ ├── test_vlen3.hdf5.dmp │ │ │ ├── test_vlen3.nc.dmp │ │ │ ├── test_vlen4.hdf5.dmp │ │ │ ├── test_vlen4.nc.dmp │ │ │ ├── test_vlen5.hdf5.dmp │ │ │ ├── test_vlen5.nc.dmp │ │ │ ├── test_vlen6.nc.dmp │ │ │ ├── test_vlen7.nc.dmp │ │ │ ├── test_vlen8.nc.dmp │ │ │ ├── test_vlen9.nc.dmp │ │ │ └── tst_fills.nc.dmp │ │ ├── baselinethredds │ │ │ ├── CMakeLists.txt │ │ │ └── GOES16_TEST1.nc4.thredds │ │ ├── cdltestfiles │ │ │ ├── CMakeLists.txt │ │ │ ├── test_atomic_array.cdl │ │ │ ├── test_atomic_types.cdl │ │ │ ├── test_enum.cdl │ │ │ ├── test_enum_2.cdl │ │ │ ├── test_enum_array.cdl │ │ │ ├── test_fill.cdl │ │ │ ├── test_groups1.cdl │ │ │ ├── test_one_var.cdl │ │ │ ├── test_one_vararray.cdl │ │ │ ├── test_opaque.cdl │ │ │ ├── test_opaque_array.cdl │ │ │ ├── test_struct1.cdl │ │ │ ├── test_struct_array.cdl │ │ │ ├── test_struct_nested.cdl │ │ │ ├── test_struct_nested3.cdl │ │ │ ├── test_struct_type.cdl │ │ │ ├── test_unlim1.cdl │ │ │ ├── test_utf8.cdl │ │ │ ├── test_vlen1.cdl │ │ │ ├── test_vlen2.cdl │ │ │ ├── test_vlen3.cdl │ │ │ ├── test_vlen4.cdl │ │ │ ├── test_vlen5.cdl │ │ │ ├── test_vlen6.cdl │ │ │ ├── test_vlen7.cdl │ │ │ └── test_vlen8.cdl │ │ ├── d4test_common.sh │ │ ├── daptestfiles │ │ │ ├── CMakeLists.txt │ │ │ ├── test_anon_dim.2.syn.dap │ │ │ ├── test_anon_dim.syn.dap │ │ │ ├── test_atomic_array.5.nc.dap │ │ │ ├── test_atomic_array.8.nc.dap │ │ │ ├── test_atomic_array.9.nc.dap │ │ │ ├── test_atomic_array.nc.dap │ │ │ ├── test_atomic_array.syn.dap │ │ │ ├── test_atomic_types.nc.dap │ │ │ ├── test_atomic_types.syn.dap │ │ │ ├── test_enum.nc.dap │ │ │ ├── test_enum_2.nc.dap │ │ │ ├── test_enum_array.4.nc.dap │ │ │ ├── test_enum_array.nc.dap │ │ │ ├── test_fill.nc.dap │ │ │ ├── test_groups1.nc.dap │ │ │ ├── test_one_var.nc.dap │ │ │ ├── test_one_vararray.1.nc.dap │ │ │ ├── test_one_vararray.3.nc.dap │ │ │ ├── test_one_vararray.nc.dap │ │ │ ├── test_opaque.nc.dap │ │ │ ├── test_opaque_array.7.nc.dap │ │ │ ├── test_opaque_array.nc.dap │ │ │ ├── test_sequence_1.syn.dap │ │ │ ├── test_sequence_2.syn.dap │ │ │ ├── test_struct1.nc.dap │ │ │ ├── test_struct_array.6.nc.dap │ │ │ ├── test_struct_array.nc.dap │ │ │ ├── test_struct_array.syn.dap │ │ │ ├── test_struct_nested.nc.dap │ │ │ ├── test_struct_nested3.nc.dap │ │ │ ├── test_struct_type.nc.dap │ │ │ ├── test_unlim1.nc.dap │ │ │ ├── test_utf8.nc.dap │ │ │ ├── test_vlen1.nc.dap │ │ │ ├── test_vlen2.nc.dap │ │ │ ├── test_vlen3.nc.dap │ │ │ ├── test_vlen4.nc.dap │ │ │ ├── test_vlen5.nc.dap │ │ │ ├── test_vlen6.nc.dap │ │ │ ├── test_vlen7.nc.dap │ │ │ └── test_vlen8.nc.dap │ │ ├── dmrtestfiles │ │ │ ├── CMakeLists.txt │ │ │ ├── test_anon_dim.2.syn.dmr │ │ │ ├── test_anon_dim.syn.dmr │ │ │ ├── test_atomic_array.5.nc.dmr │ │ │ ├── test_atomic_array.8.nc.dmr │ │ │ ├── test_atomic_array.9.nc.dmr │ │ │ ├── test_atomic_array.nc.dmr │ │ │ ├── test_atomic_array.syn.dmr │ │ │ ├── test_atomic_types.nc.dmr │ │ │ ├── test_atomic_types.syn.dmr │ │ │ ├── test_enum.nc.dmr │ │ │ ├── test_enum_2.nc.dmr │ │ │ ├── test_enum_array.4.nc.dmr │ │ │ ├── test_enum_array.nc.dmr │ │ │ ├── test_fill.nc.dmr │ │ │ ├── test_groups1.nc.dmr │ │ │ ├── test_one_var.nc.dmr │ │ │ ├── test_one_vararray.1.nc.dmr │ │ │ ├── test_one_vararray.3.nc.dmr │ │ │ ├── test_one_vararray.nc.dmr │ │ │ ├── test_opaque.nc.dmr │ │ │ ├── test_opaque_array.7.nc.dmr │ │ │ ├── test_opaque_array.nc.dmr │ │ │ ├── test_sequence_1.syn.dmr │ │ │ ├── test_sequence_2.syn.dmr │ │ │ ├── test_struct1.nc.dmr │ │ │ ├── test_struct_array.6.nc.dmr │ │ │ ├── test_struct_array.nc.dmr │ │ │ ├── test_struct_array.syn.dmr │ │ │ ├── test_struct_nested.nc.dmr │ │ │ ├── test_struct_nested3.nc.dmr │ │ │ ├── test_struct_type.nc.dmr │ │ │ ├── test_unlim1.nc.dmr │ │ │ ├── test_utf8.nc.dmr │ │ │ ├── test_vlen1.nc.dmr │ │ │ ├── test_vlen2.nc.dmr │ │ │ ├── test_vlen3.nc.dmr │ │ │ ├── test_vlen4.nc.dmr │ │ │ ├── test_vlen5.nc.dmr │ │ │ ├── test_vlen6.nc.dmr │ │ │ ├── test_vlen7.nc.dmr │ │ │ └── test_vlen8.nc.dmr │ │ ├── dump.c │ │ ├── maketests.sh │ │ ├── misctestfiles │ │ │ ├── CMakeLists.txt │ │ │ ├── fnoc1.dap │ │ │ └── test_fillmismatch.nc.dap │ │ ├── nctestfiles │ │ │ ├── CMakeLists.txt │ │ │ ├── test_atomic_array.nc │ │ │ ├── test_atomic_types.nc │ │ │ ├── test_enum.nc │ │ │ ├── test_enum_2.nc │ │ │ ├── test_enum_array.nc │ │ │ ├── test_fill.nc │ │ │ ├── test_groups1.nc │ │ │ ├── test_one_var.nc │ │ │ ├── test_one_vararray.nc │ │ │ ├── test_opaque.nc │ │ │ ├── test_opaque_array.nc │ │ │ ├── test_struct1.nc │ │ │ ├── test_struct_array.nc │ │ │ ├── test_struct_nested.nc │ │ │ ├── test_struct_nested3.nc │ │ │ ├── test_struct_type.nc │ │ │ ├── test_unlim1.nc │ │ │ ├── test_utf8.nc │ │ │ ├── test_vlen1.nc │ │ │ ├── test_vlen2.nc │ │ │ ├── test_vlen3.nc │ │ │ ├── test_vlen4.nc │ │ │ ├── test_vlen5.nc │ │ │ ├── test_vlen6.nc │ │ │ ├── test_vlen7.nc │ │ │ └── test_vlen8.nc │ │ ├── test_common.h │ │ ├── test_data.c │ │ ├── test_data.sh │ │ ├── test_environment4.c │ │ ├── test_fillmismatch.sh │ │ ├── test_hyrax.sh │ │ ├── test_meta.c │ │ ├── test_meta.sh │ │ ├── test_parse.c │ │ ├── test_parse.sh │ │ ├── test_raw.sh │ │ ├── test_remote.sh │ │ ├── test_test.sh │ │ ├── test_thredds.sh │ │ ├── tst_curlopt.sh │ │ ├── tst_data.sh │ │ ├── tst_meta.sh │ │ ├── tst_parse.sh │ │ └── tst_raw.sh │ │ ├── depcomp │ │ ├── docs │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── COPYRIGHT.md │ │ ├── Doxyfile.developer │ │ ├── Doxyfile.in │ │ ├── Doxyfile.user │ │ ├── DoxygenLayout.xml │ │ ├── FAQ.md │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── all-error-codes.md │ │ ├── architecture.dox │ │ ├── attribute_conventions.md │ │ ├── auth.md │ │ ├── byterange.md │ │ ├── credits.md │ │ ├── dispatch.dox │ │ ├── dispatch.md │ │ ├── docmap.pdf │ │ ├── esg.md │ │ ├── file_format_specifications.md │ │ ├── filters.md │ │ ├── footer.html │ │ ├── groups.dox │ │ ├── header.html │ │ ├── images │ │ │ ├── InstallTreeWindows.png │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aqua.jpg │ │ │ ├── chunking2.png │ │ │ ├── compatibility3.png │ │ │ ├── compression.png │ │ │ ├── deptree.jpg │ │ │ ├── groups.png │ │ │ ├── nc-classic-uml.png │ │ │ ├── nc4-model.png │ │ │ ├── ncatts.png │ │ │ ├── nccoords.png │ │ │ ├── ncfile.png │ │ │ ├── netcdf_architecture.odg │ │ │ ├── netcdf_architecture.png │ │ │ ├── pnetcdf.png │ │ │ ├── quantize_performance.png │ │ │ ├── quantize_pi.png │ │ │ ├── terra.jpg │ │ │ └── uniLogo.png │ │ ├── indexing.dox │ │ ├── inmeminternal.dox │ │ ├── inmemory.md │ │ ├── install-fortran.md │ │ ├── internal.dox │ │ ├── internal.md │ │ ├── known_problems.md │ │ ├── mainpage.dox │ │ ├── nczarr.md │ │ ├── netcdf-50x50.png │ │ ├── netcdf.m4 │ │ ├── notes.md │ │ ├── obsolete │ │ │ └── fan_utils.html │ │ ├── old │ │ │ ├── defines.texi │ │ │ ├── netcdf-c.texi │ │ │ ├── netcdf-cxx.texi │ │ │ ├── netcdf-cxx4.texi │ │ │ ├── netcdf-f77.texi │ │ │ ├── netcdf-f90.texi │ │ │ ├── netcdf-install.texi │ │ │ ├── netcdf-internal.texi │ │ │ ├── netcdf-tutorial.texi │ │ │ └── netcdf.texi │ │ ├── quantize.md │ │ ├── quickstart_filters.md │ │ ├── release.css │ │ ├── release_header.html │ │ ├── static-pages │ │ │ ├── README.md │ │ │ ├── credits.html │ │ │ ├── orgs.html │ │ │ ├── software.html │ │ │ ├── standards.html │ │ │ └── usage.html │ │ ├── tests.md │ │ ├── testserver.dox │ │ ├── tutorial.dox │ │ ├── unidata_logo_cmyk.png │ │ └── windows-binaries.md │ │ ├── dods.m4 │ │ ├── examples │ │ ├── C │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── file.c │ │ │ ├── filter_example.c │ │ │ ├── format.c │ │ │ ├── large_files.c │ │ │ ├── met4D.c │ │ │ ├── parallel_vara.c │ │ │ ├── pres_temp_4D_rd.c │ │ │ ├── pres_temp_4D_wr.c │ │ │ ├── quick_large_files.c │ │ │ ├── quick_small_files.c │ │ │ ├── run_examples.sh │ │ │ ├── run_examples4.sh │ │ │ ├── run_filter.sh │ │ │ ├── run_par_test.sh.in │ │ │ ├── sfc_pres_temp_more.c │ │ │ ├── sfc_pres_temp_rd.c │ │ │ ├── sfc_pres_temp_wr.c │ │ │ ├── simple.c │ │ │ ├── simple_nc4_rd.c │ │ │ ├── simple_nc4_wr.c │ │ │ ├── simple_xy_nc4_rd.c │ │ │ ├── simple_xy_nc4_wr.c │ │ │ ├── simple_xy_rd.c │ │ │ └── simple_xy_wr.c │ │ ├── CDL │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── do_comps.sh │ │ │ ├── pres_temp_4D.cdl │ │ │ ├── sfc_pres_temp.cdl │ │ │ └── simple_xy.cdl │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── Makefile.in │ │ ├── fuzz │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── fuzz_open.c │ │ ├── h5_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── h5_err_macros.h │ │ ├── ref_tst_compounds.nc │ │ ├── ref_tst_h_compounds.h5 │ │ ├── ref_tst_h_compounds2.h5 │ │ ├── run_par_tests.sh.in │ │ ├── tst_h_atts.c │ │ ├── tst_h_atts3.c │ │ ├── tst_h_atts4.c │ │ ├── tst_h_compounds.c │ │ ├── tst_h_compounds2.c │ │ ├── tst_h_dimscales.c │ │ ├── tst_h_dimscales1.c │ │ ├── tst_h_dimscales2.c │ │ ├── tst_h_dimscales3.c │ │ ├── tst_h_dimscales4.c │ │ ├── tst_h_endian_float.c │ │ ├── tst_h_enums.c │ │ ├── tst_h_files.c │ │ ├── tst_h_files2.c │ │ ├── tst_h_files4.c │ │ ├── tst_h_grps.c │ │ ├── tst_h_ints.c │ │ ├── tst_h_mem.c │ │ ├── tst_h_opaques.c │ │ ├── tst_h_par.c │ │ ├── tst_h_par_compress.c │ │ ├── tst_h_rename.c │ │ ├── tst_h_strings.c │ │ ├── tst_h_strings1.c │ │ ├── tst_h_strings2.c │ │ ├── tst_h_vars.c │ │ ├── tst_h_vars2.c │ │ ├── tst_h_vars3.c │ │ ├── tst_h_vl.c │ │ └── tst_h_wrt_cmp.c │ │ ├── hdf4_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ref_chunked.hdf4 │ │ ├── ref_contiguous.hdf4 │ │ ├── run_formatx_hdf4.sh │ │ ├── run_get_hdf4_files.sh │ │ ├── tst_chunk_hdf4.c │ │ ├── tst_h4_lendian.c │ │ ├── tst_hdf4_extra.c │ │ ├── tst_interops2.c │ │ └── tst_interops3.c │ │ ├── include │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── XGetopt.h │ │ ├── ceconstraints.h │ │ ├── err_macros.h │ │ ├── fbits.h │ │ ├── hdf4dispatch.h │ │ ├── hdf5dispatch.h │ │ ├── hdf5internal.h │ │ ├── isnan.h │ │ ├── nc.h │ │ ├── nc3dispatch.h │ │ ├── nc3internal.h │ │ ├── nc4dispatch.h │ │ ├── nc4internal.h │ │ ├── nc_hashmap.h │ │ ├── nc_logging.h │ │ ├── nc_provenance.h │ │ ├── nc_tests.h │ │ ├── ncauth.h │ │ ├── ncbytes.h │ │ ├── ncconfigure.h │ │ ├── nccrc.h │ │ ├── ncdap.h │ │ ├── ncdimscale.h │ │ ├── ncdispatch.h │ │ ├── ncexhash.h │ │ ├── ncexternl.h │ │ ├── nchashmap.h │ │ ├── nchttp.h │ │ ├── ncindex.h │ │ ├── ncjson.h │ │ ├── nclist.h │ │ ├── nclog.h │ │ ├── ncmodel.h │ │ ├── ncoffsets.h │ │ ├── ncpathmgr.h │ │ ├── ncrc.h │ │ ├── ncs3sdk.h │ │ ├── nctestserver.h │ │ ├── nctime.h │ │ ├── ncuri.h │ │ ├── ncurlmodel.h │ │ ├── ncutf8.h │ │ ├── ncxcache.h │ │ ├── ncxml.h │ │ ├── netcdf.h │ │ ├── netcdf_aux.h │ │ ├── netcdf_dispatch.h │ │ ├── netcdf_dispatch.h.in │ │ ├── netcdf_f.h │ │ ├── netcdf_filter.h │ │ ├── netcdf_filter_build.h │ │ ├── netcdf_filter_hdf5_build.h │ │ ├── netcdf_json.h │ │ ├── netcdf_mem.h │ │ ├── netcdf_meta.h │ │ ├── netcdf_meta.h.in │ │ ├── netcdf_par.h │ │ ├── onstack.h │ │ └── rnd.h │ │ ├── install-sh │ │ ├── lib_flags.am │ │ ├── libdap2 │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cache.c │ │ ├── cdf.c │ │ ├── common.c │ │ ├── constraints.c │ │ ├── constraints.h │ │ ├── cvt │ │ ├── dapattr.c │ │ ├── dapcvt.c │ │ ├── dapdebug.c │ │ ├── dapdebug.h │ │ ├── dapdump.c │ │ ├── dapdump.h │ │ ├── dapincludes.h │ │ ├── dapnc.h │ │ ├── dapodom.c │ │ ├── dapodom.h │ │ ├── daputil.c │ │ ├── daputil.h │ │ ├── dce.y │ │ ├── dceconstraints.c │ │ ├── dceconstraints.h │ │ ├── dcelex.c │ │ ├── dceparse.c │ │ ├── dceparselex.h │ │ ├── dcetab.c │ │ ├── dcetab.h │ │ ├── env │ │ ├── getvara.c │ │ ├── getvara.h │ │ ├── main.c │ │ ├── nccommon.h │ │ ├── ncd2dispatch.c │ │ ├── ncd2dispatch.h │ │ ├── ncdap.c │ │ ├── ncdapa.c │ │ ├── ncdaperr.c │ │ ├── obsolete │ │ │ ├── cdf4.c │ │ │ ├── constraints4.c │ │ │ ├── constraints4.h │ │ │ ├── getvara4.c │ │ │ ├── ncdap4.c │ │ │ ├── ncdap4.h │ │ │ └── stubdap4.c │ │ ├── test1.sh │ │ ├── todo │ │ └── translation.html │ │ ├── libdap4 │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── d4bytes.c │ │ ├── d4bytes.h │ │ ├── d4chunk.c │ │ ├── d4chunk.h │ │ ├── d4curlflags.c │ │ ├── d4curlfunctions.c │ │ ├── d4curlfunctions.h │ │ ├── d4cvt.c │ │ ├── d4data.c │ │ ├── d4debug.c │ │ ├── d4debug.h │ │ ├── d4dump.c │ │ ├── d4file.c │ │ ├── d4fix.c │ │ ├── d4http.c │ │ ├── d4http.h │ │ ├── d4includes.h │ │ ├── d4mem.c │ │ ├── d4meta.c │ │ ├── d4odom.c │ │ ├── d4odom.h │ │ ├── d4parser.c │ │ ├── d4printer.c │ │ ├── d4read.c │ │ ├── d4read.h │ │ ├── d4swap.c │ │ ├── d4util.c │ │ ├── d4util.h │ │ ├── d4varx.c │ │ ├── ncd4.h │ │ ├── ncd4dispatch.c │ │ ├── ncd4dispatch.h │ │ └── ncd4types.h │ │ ├── libdispatch │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── awsincludes.h │ │ ├── datt.c │ │ ├── dattget.c │ │ ├── dattinq.c │ │ ├── dattput.c │ │ ├── dauth.c │ │ ├── daux.c │ │ ├── dcompound.c │ │ ├── dcopy.c │ │ ├── dcrc32.c │ │ ├── dcrc32.h │ │ ├── dcrc64.c │ │ ├── ddim.c │ │ ├── ddispatch.c │ │ ├── defcheck.c │ │ ├── denum.c │ │ ├── derror.c │ │ ├── dfile.c │ │ ├── dfilter.c │ │ ├── dfilterx.c │ │ ├── dgroup.c │ │ ├── dhttp.c │ │ ├── dinfermodel.c │ │ ├── dinstance.c │ │ ├── dinternal.c │ │ ├── dnotnc3.c │ │ ├── dnotnc4.c │ │ ├── doffsets.c │ │ ├── dopaque.c │ │ ├── dparallel.c │ │ ├── dpathmgr.c │ │ ├── drc.c │ │ ├── dreadonly.c │ │ ├── dreg.c │ │ ├── ds3util.c │ │ ├── dstring.c │ │ ├── dtype.c │ │ ├── durlmodel.c │ │ ├── dutf8.c │ │ ├── dutil.c │ │ ├── dv2i.c │ │ ├── dvar.c │ │ ├── dvarget.c │ │ ├── dvarinq.c │ │ ├── dvarput.c │ │ ├── dvlen.c │ │ ├── ezxml_extra.c │ │ ├── json.c │ │ ├── nc.c │ │ ├── ncbytes.c │ │ ├── ncexhash.c │ │ ├── nchashmap.c │ │ ├── ncjson.c │ │ ├── nclist.c │ │ ├── nclistmgr.c │ │ ├── nclog.c │ │ ├── ncs3sdk.cpp │ │ ├── ncsettings.hdr │ │ ├── nctime.c │ │ ├── ncuri.c │ │ ├── ncxcache.c │ │ ├── netcdf.m4 │ │ ├── stubdef.c │ │ ├── u8.c │ │ ├── u8.h │ │ ├── utf8proc.c │ │ ├── utf8proc.h │ │ └── utf8proc_data.c │ │ ├── libhdf4 │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── hdf4dispatch.c │ │ ├── hdf4file.c │ │ ├── hdf4func.c │ │ └── hdf4var.c │ │ ├── libhdf5 │ │ ├── CMakeLists.txt │ │ ├── H5FDhttp.c │ │ ├── H5FDhttp.h │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── hdf5attr.c │ │ ├── hdf5create.c │ │ ├── hdf5debug.c │ │ ├── hdf5debug.h │ │ ├── hdf5dim.c │ │ ├── hdf5dispatch.c │ │ ├── hdf5err.h │ │ ├── hdf5file.c │ │ ├── hdf5filter.c │ │ ├── hdf5grp.c │ │ ├── hdf5internal.c │ │ ├── hdf5open.c │ │ ├── hdf5set_format_compatibility.c │ │ ├── hdf5type.c │ │ ├── hdf5var.c │ │ ├── nc4hdf.c │ │ ├── nc4info.c │ │ ├── nc4mem.c │ │ └── nc4memcb.c │ │ ├── liblib │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── nc_initialize.c │ │ ├── libncpoco │ │ ├── CMakeLists.txt │ │ ├── COPYRIGHT │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── SourceLicence │ │ ├── cp_test.c │ │ ├── cp_unix.c │ │ ├── cp_win32.c │ │ ├── cptestlib.c │ │ ├── ncpoco.c │ │ └── ncpoco.h │ │ ├── libncxml │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── license.txt │ │ ├── ncxml_ezxml.c │ │ ├── ncxml_tinyxml2.cpp │ │ ├── ncxml_xml2.c │ │ ├── tinyxml2.cpp │ │ └── tinyxml2.h │ │ ├── libnczarr │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── SimpleBinStream.h │ │ ├── obsolete │ │ │ ├── zcache.c │ │ │ └── zmap_nz4.c │ │ ├── zarr.c │ │ ├── zarr.h │ │ ├── zattr.c │ │ ├── zcache.h │ │ ├── zchunking.c │ │ ├── zchunking.h │ │ ├── zclose.c │ │ ├── zcreate.c │ │ ├── zcvt.c │ │ ├── zdebug.c │ │ ├── zdebug.h │ │ ├── zdim.c │ │ ├── zdispatch.c │ │ ├── zdispatch.h │ │ ├── zfile.c │ │ ├── zfilter.c │ │ ├── zfilter.h │ │ ├── zgrp.c │ │ ├── zincludes.h │ │ ├── zinternal.c │ │ ├── zinternal.h │ │ ├── zmap.c │ │ ├── zmap.h │ │ ├── zmap_file.c │ │ ├── zmap_s3sdk.c │ │ ├── zmap_zip.c │ │ ├── zodom.c │ │ ├── zodom.h │ │ ├── zopen.c │ │ ├── zprov.c │ │ ├── zprovenance.h │ │ ├── zs3sdk.cpp │ │ ├── zsync.c │ │ ├── ztype.c │ │ ├── zutil.c │ │ ├── zvar.c │ │ ├── zwalk.c │ │ └── zxcache.c │ │ ├── libnetcdf.settings.in │ │ ├── libsrc │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── XGetopt.c │ │ ├── attr.c │ │ ├── attr.m4 │ │ ├── depend │ │ ├── dim.c │ │ ├── ffio.c │ │ ├── httpio.c │ │ ├── lookup3.c │ │ ├── memio.c │ │ ├── mmapio.c │ │ ├── nc3dispatch.c │ │ ├── nc3internal.c │ │ ├── ncFile.c │ │ ├── ncio.c │ │ ├── ncio.h │ │ ├── ncstdio.c │ │ ├── ncstdio.h │ │ ├── ncx.c │ │ ├── ncx.h │ │ ├── ncx.m4 │ │ ├── ncx_cray.c │ │ ├── netcdf.3 │ │ ├── posixio.c │ │ ├── pstdint.h │ │ ├── putget.c │ │ ├── putget.m4 │ │ ├── s3io.c │ │ ├── t_ncio.c │ │ ├── t_ncio.in │ │ ├── t_ncxx.m4 │ │ ├── test_nc.sav │ │ ├── v1hpg.c │ │ ├── var.c │ │ └── winceio.c │ │ ├── libsrc4 │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── nc4attr.c │ │ ├── nc4cache.c │ │ ├── nc4dim.c │ │ ├── nc4dispatch.c │ │ ├── nc4filters.c │ │ ├── nc4grp.c │ │ ├── nc4internal.c │ │ ├── nc4type.c │ │ ├── nc4var.c │ │ ├── ncfunc.c │ │ └── ncindex.c │ │ ├── libsrcp │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── ncpdispatch.c │ │ ├── ltmain.sh │ │ ├── m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ │ ├── mclean │ │ ├── missing │ │ ├── nc-config.cmake.in │ │ ├── nc-config.in │ │ ├── ncgen │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bindata.c │ │ ├── bytebuffer.c │ │ ├── bytebuffer.h │ │ ├── c0.cdl │ │ ├── c0_4.cdl │ │ ├── c5.cdl │ │ ├── cdata.c │ │ ├── cdfdata.c │ │ ├── cmldata.c │ │ ├── compound_datasize_test.cdl │ │ ├── compound_datasize_test2.cdl │ │ ├── ctests.sh │ │ ├── cvt.c │ │ ├── data.c │ │ ├── data.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── depend │ │ ├── dump.c │ │ ├── dump.h │ │ ├── env │ │ ├── escapes.c │ │ ├── f77data.c │ │ ├── foo.cdl │ │ ├── ftests.sh │ │ ├── genbin.c │ │ ├── genc.c │ │ ├── genchar.c │ │ ├── gencml.c │ │ ├── generate.c │ │ ├── generate.h │ │ ├── generr.c │ │ ├── generr.h │ │ ├── genf77.c │ │ ├── genj.c │ │ ├── genjjni.c │ │ ├── genjstd.c │ │ ├── genlib.c │ │ ├── genlib.h │ │ ├── getfill.c │ │ ├── includes.h │ │ ├── internals.html │ │ ├── jdata.c │ │ ├── jdatajni.c │ │ ├── jdatastd.c │ │ ├── jtests.sh │ │ ├── lfs-tests │ │ ├── list.c │ │ ├── list.h │ │ ├── main.c │ │ ├── main_cpp.cpp │ │ ├── makeparser.sh │ │ ├── ncf199.cdl │ │ ├── ncf345.cdl │ │ ├── ncgen.1 │ │ ├── ncgen.h │ │ ├── ncgen.l │ │ ├── ncgen.y │ │ ├── ncgenl.c │ │ ├── ncgeny.c │ │ ├── ncgeny.h │ │ ├── odom.c │ │ ├── odom.h │ │ ├── ref_camrun.cdl │ │ ├── run_tests2.sh │ │ ├── semantics.c │ │ ├── tst_gattenum.cdl │ │ ├── tst_usuffix.cdl │ │ ├── util.c │ │ └── util.h │ │ ├── ncgen3 │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bigf1.cdl │ │ ├── bigf2.cdl │ │ ├── bigf3.cdl │ │ ├── bigr1.cdl │ │ ├── bigr2.cdl │ │ ├── bigr3.cdl │ │ ├── c0.cdl │ │ ├── depend │ │ ├── escapes.c │ │ ├── generic.h │ │ ├── genlib.c │ │ ├── genlib.h │ │ ├── getfill.c │ │ ├── init.c │ │ ├── lfs-tests │ │ ├── load.c │ │ ├── main.c │ │ ├── main_cpp.cpp │ │ ├── ncgen.h │ │ ├── ncgen.l │ │ ├── ncgen.y │ │ ├── ncgen3.1 │ │ ├── ncgenl.c │ │ ├── ncgeny.c │ │ ├── ncgeny.h │ │ ├── run_nc4_tests.sh │ │ ├── run_tests.sh │ │ └── run_tests2.sh │ │ ├── nctest │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── add.c │ │ ├── add.h │ │ ├── atttests.c │ │ ├── cdftests.c │ │ ├── compare_test_files.sh │ │ ├── depend │ │ ├── dimtests.c │ │ ├── driver.c │ │ ├── emalloc.c │ │ ├── emalloc.h │ │ ├── error.c │ │ ├── error.h │ │ ├── misctest.c │ │ ├── rec.c │ │ ├── ref_nctest_64bit_offset.nc │ │ ├── ref_nctest_classic.nc │ │ ├── slabs.c │ │ ├── testcdf.h │ │ ├── tests.h │ │ ├── timesum.awk │ │ ├── tst_rename.c │ │ ├── val.c │ │ ├── val.h │ │ ├── vardef.c │ │ ├── varget.c │ │ ├── vargetg.c │ │ ├── varput.c │ │ ├── varputg.c │ │ ├── vartests.c │ │ ├── vputget.c │ │ └── vputgetg.c │ │ ├── nczarr_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bm_chunks3.c │ │ ├── bm_timer.h │ │ ├── bm_utils.c │ │ ├── bm_utils.h │ │ ├── ncdumpchunks.c │ │ ├── ref_any.cdl │ │ ├── ref_avail1.cdl │ │ ├── ref_avail1.dmp │ │ ├── ref_avail1.txt │ │ ├── ref_blosc_zmap.txt │ │ ├── ref_byte.cdl │ │ ├── ref_byte.zarr.zip │ │ ├── ref_byte_fill_value_null.cdl │ │ ├── ref_byte_fill_value_null.zarr.zip │ │ ├── ref_bzip2.cdl │ │ ├── ref_fillonly.cdl │ │ ├── ref_filtered.cdl │ │ ├── ref_groups.h5 │ │ ├── ref_groups_regular.cdl │ │ ├── ref_jsonconvention.cdl │ │ ├── ref_jsonconvention.zmap │ │ ├── ref_misc1.cdl │ │ ├── ref_misc1.dmp │ │ ├── ref_misc2.cdl │ │ ├── ref_multi.cdl │ │ ├── ref_nczarr2zarr.cdl │ │ ├── ref_ndims.cdl │ │ ├── ref_ndims.dmp │ │ ├── ref_newformatpure.cdl │ │ ├── ref_nulls.cdl │ │ ├── ref_nulls_nczarr.baseline │ │ ├── ref_nulls_zarr.baseline │ │ ├── ref_oldformat.cdl │ │ ├── ref_oldformat.zip │ │ ├── ref_perdimspecs.cdl │ │ ├── ref_power_901_constants.cdl │ │ ├── ref_power_901_constants_orig.zip │ │ ├── ref_purezarr.cdl │ │ ├── ref_purezarr_base.cdl │ │ ├── ref_quotes.cdl │ │ ├── ref_quotes_orig.zip │ │ ├── ref_rem.cdl │ │ ├── ref_rem.dmp │ │ ├── ref_scalar.cdl │ │ ├── ref_skip.cdl │ │ ├── ref_skip.txt │ │ ├── ref_skipw.cdl │ │ ├── ref_string.cdl │ │ ├── ref_string_nczarr.baseline │ │ ├── ref_string_zarr.baseline │ │ ├── ref_t_meta_dim1.cdl │ │ ├── ref_t_meta_var1.cdl │ │ ├── ref_ut_json_build.txt │ │ ├── ref_ut_json_parse.txt │ │ ├── ref_ut_map_create.cdl │ │ ├── ref_ut_map_readdata_nz4.txt │ │ ├── ref_ut_map_readmeta.txt │ │ ├── ref_ut_map_readmeta2.txt │ │ ├── ref_ut_map_readmeta_nz4.txt │ │ ├── ref_ut_map_readmeta_nzf.txt │ │ ├── ref_ut_map_search.txt │ │ ├── ref_ut_map_search_nz4.txt │ │ ├── ref_ut_map_search_nzf.txt │ │ ├── ref_ut_map_writedata.cdl │ │ ├── ref_ut_map_writemeta.cdl │ │ ├── ref_ut_map_writemeta2.cdl │ │ ├── ref_ut_mapapi_create.cdl │ │ ├── ref_ut_mapapi_data.cdl │ │ ├── ref_ut_mapapi_meta.cdl │ │ ├── ref_ut_mapapi_search.txt │ │ ├── ref_ut_mapapi_search_nz4.txt │ │ ├── ref_ut_mapapi_search_nzf.txt │ │ ├── ref_ut_mapapi_search_s3.txt │ │ ├── ref_ut_proj.txt │ │ ├── ref_ut_testmap_create.cdl │ │ ├── ref_whole.cdl │ │ ├── ref_whole.txt │ │ ├── ref_xarray.cdl │ │ ├── ref_zarr_test_data.cdl.gz │ │ ├── refs │ │ │ ├── ref_ut_map_create.cdl │ │ │ ├── ref_ut_map_readmeta.txt │ │ │ ├── ref_ut_map_write2meta.cdl │ │ │ ├── ref_ut_map_writedata.cdl │ │ │ └── ref_ut_map_writemeta.cdl │ │ ├── run_chunkcases.sh │ │ ├── run_fillonlyz.sh │ │ ├── run_filter.sh │ │ ├── run_interop.sh │ │ ├── run_it_chunks1.sh │ │ ├── run_jsonconvention.sh │ │ ├── run_misc.sh │ │ ├── run_nccopyz.sh │ │ ├── run_ncgen4.sh │ │ ├── run_nczarr_fill.sh │ │ ├── run_nczfilter.sh │ │ ├── run_newformat.sh │ │ ├── run_nulls.sh │ │ ├── run_perf_chunks1.sh │ │ ├── run_purezarr.sh │ │ ├── run_quantize.sh │ │ ├── run_s3_cleanup.sh │ │ ├── run_scalar.sh │ │ ├── run_strings.sh │ │ ├── run_ut_chunk.sh │ │ ├── run_ut_map.sh │ │ ├── run_ut_mapapi.sh │ │ ├── run_ut_misc.sh │ │ ├── s3util.c │ │ ├── test_nczarr.sh │ │ ├── test_nczarr_utils.h │ │ ├── testfilter.c │ │ ├── testfilter_misc.c │ │ ├── testfilter_multi.c │ │ ├── testfilter_order.c │ │ ├── testfilter_repeat.c │ │ ├── tst_chunkcases.c │ │ ├── tst_fillonlyz.c │ │ ├── tst_nczfilter.c │ │ ├── tst_utils.c │ │ ├── tst_utils.h │ │ ├── tst_zchunks.c │ │ ├── tst_zchunks2.c │ │ ├── tst_zchunks3.c │ │ ├── ut_chunking.c │ │ ├── ut_includes.h │ │ ├── ut_json.c │ │ ├── ut_map.c │ │ ├── ut_mapapi.c │ │ ├── ut_projections.c │ │ ├── ut_projtest.h │ │ ├── ut_test.c │ │ ├── ut_test.h │ │ ├── ut_util.c │ │ ├── ut_util.h │ │ ├── z4dump.c │ │ ├── zhex.c │ │ ├── zisjson.c │ │ ├── zmapio.c │ │ └── zs3parse.c │ │ ├── netCDFConfig.cmake.in │ │ ├── netcdf.pc.in │ │ ├── oc2 │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── auth.html.in │ │ ├── dap.y │ │ ├── daplex.c │ │ ├── dapparse.c │ │ ├── dapparselex.h │ │ ├── dapy.c │ │ ├── dapy.h │ │ ├── dodsrc.example │ │ ├── oc.c │ │ ├── oc.css │ │ ├── oc.h │ │ ├── occompile.c │ │ ├── occompile.h │ │ ├── occonstraints.h │ │ ├── occurlflags.c │ │ ├── occurlfunctions.c │ │ ├── occurlfunctions.h │ │ ├── ocdata.c │ │ ├── ocdata.h │ │ ├── ocdatatypes.h │ │ ├── ocdebug.c │ │ ├── ocdebug.h │ │ ├── ocdump.c │ │ ├── ocdump.h │ │ ├── ochttp.c │ │ ├── ochttp.h │ │ ├── ocinternal.c │ │ ├── ocinternal.h │ │ ├── ocnode.c │ │ ├── ocnode.h │ │ ├── ocread.c │ │ ├── ocread.h │ │ ├── ocutil.c │ │ ├── ocutil.h │ │ ├── ocx.h │ │ ├── xxdr.c │ │ └── xxdr.h │ │ ├── plugins │ │ ├── BZIP2_LICENSE │ │ ├── CMakeLists.txt │ │ ├── H5Zblosc.c │ │ ├── H5Zblosc.h │ │ ├── H5Zbzip2.c │ │ ├── H5Zdeflate.c │ │ ├── H5Zfletcher32.c │ │ ├── H5Zmisc.c │ │ ├── H5Znoop.c │ │ ├── H5Zshuffle.c │ │ ├── H5Zszip.c │ │ ├── H5Zszip.h │ │ ├── H5Ztemplate.c │ │ ├── H5Zunknown.c │ │ ├── H5Zutil.c │ │ ├── H5Zzstd.c │ │ ├── H5Zzstd.h │ │ ├── H5checksum.c │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NCZhdf5filters.c │ │ ├── NCZmisc.c │ │ ├── NCZstdfilters.c │ │ ├── NCZszip.c │ │ ├── NCZtest.c │ │ ├── blocksort.c │ │ ├── bzlib.c │ │ ├── bzlib.h │ │ ├── bzlib_private.h │ │ ├── compress.c │ │ ├── crctable.c │ │ ├── decompress.c │ │ ├── h5bzip2.h │ │ ├── h5misc.h │ │ ├── h5noop.h │ │ ├── huffman.c │ │ └── randtable.c │ │ ├── postinstall.sh.in │ │ ├── test-driver │ │ ├── test-driver-verbose │ │ ├── test_common.in │ │ ├── test_prog.c │ │ ├── unit_test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── nctest_netcdf4_classic.nc │ │ ├── run_aws.sh │ │ ├── test_aws.c │ │ ├── test_ncuri.c │ │ ├── test_pathcvt.c │ │ ├── timer_utils.c │ │ ├── timer_utils.h │ │ ├── tst_exhash.c │ │ ├── tst_nc4internal.c │ │ ├── tst_nclist.c │ │ └── tst_xcache.c │ │ └── wjna ├── libopenjpeg.sh ├── libopenjpeg │ ├── libopenjpeg.gyp │ ├── openjpeg │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── CTestConfig.cmake │ │ ├── INSTALL.md │ │ ├── LICENSE │ │ ├── NEWS.md │ │ ├── README.md │ │ ├── THANKS.md │ │ ├── appveyor.yml │ │ ├── cmake │ │ │ ├── CTestCustom.cmake.in │ │ │ ├── EnsureFileInclude.cmake │ │ │ ├── FindCPPCHECK.cmake │ │ │ ├── FindFCGI.cmake │ │ │ ├── FindJPYLYZER.cmake │ │ │ ├── FindKAKADU.cmake │ │ │ ├── FindLCMS.cmake │ │ │ ├── FindLCMS2.cmake │ │ │ ├── JPIPTestDriver.cmake │ │ │ ├── OpenJPEGCPack.cmake │ │ │ ├── OpenJPEGConfig.cmake.in │ │ │ ├── TestFileOffsetBits.c │ │ │ ├── TestLargeFiles.c.cmake.in │ │ │ ├── TestLargeFiles.cmake │ │ │ ├── TestWindowsFSeek.c │ │ │ └── openjpeg_valgrind.supp │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile.dox.cmake.in │ │ │ ├── jpip_architect.png │ │ │ ├── jpip_protocol.png │ │ │ ├── mainpage.dox.in │ │ │ ├── man │ │ │ │ ├── man1 │ │ │ │ │ ├── opj_compress.1 │ │ │ │ │ ├── opj_decompress.1 │ │ │ │ │ └── opj_dump.1 │ │ │ │ └── man3 │ │ │ │ │ └── libopenjp2.3 │ │ │ └── openjpip.dox.in │ │ ├── scripts │ │ │ ├── astyle.options │ │ │ ├── astyle.sh │ │ │ ├── prepare-commit.sh │ │ │ ├── remove_temporary_files.sh │ │ │ └── verify-indentation.sh │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── bin │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── color.c │ │ │ │ │ ├── color.h │ │ │ │ │ ├── format_defs.h │ │ │ │ │ ├── opj_apps_config.h.cmake.in │ │ │ │ │ ├── opj_getopt.c │ │ │ │ │ ├── opj_getopt.h │ │ │ │ │ └── opj_string.h │ │ │ │ ├── jp2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── convert.c │ │ │ │ │ ├── convert.h │ │ │ │ │ ├── convertbmp.c │ │ │ │ │ ├── convertpng.c │ │ │ │ │ ├── converttif.c │ │ │ │ │ ├── index.c │ │ │ │ │ ├── index.h │ │ │ │ │ ├── opj_compress.c │ │ │ │ │ ├── opj_decompress.c │ │ │ │ │ ├── opj_dump.c │ │ │ │ │ └── windirent.h │ │ │ │ ├── jp3d │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── convert.c │ │ │ │ │ ├── convert.h │ │ │ │ │ ├── getopt.c │ │ │ │ │ ├── getopt.h │ │ │ │ │ ├── opj_jp3d_compress.c │ │ │ │ │ ├── opj_jp3d_decompress.c │ │ │ │ │ ├── tcltk │ │ │ │ │ │ ├── LPI_JP3D_VM.tcl │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── decoder.tcl │ │ │ │ │ │ ├── encoder.tcl │ │ │ │ │ │ └── logoLPI.gif │ │ │ │ │ └── windirent.h │ │ │ │ ├── jpip │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── README │ │ │ │ │ ├── opj_dec_server.c │ │ │ │ │ ├── opj_jpip_addxml.c │ │ │ │ │ ├── opj_jpip_test.c │ │ │ │ │ ├── opj_jpip_transcode.c │ │ │ │ │ ├── opj_server.c │ │ │ │ │ ├── opj_viewer │ │ │ │ │ │ ├── dist │ │ │ │ │ │ │ └── manifest.txt │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── ImageManager.java │ │ │ │ │ │ │ ├── ImageViewer.java │ │ │ │ │ │ │ ├── ImageWindow.java │ │ │ │ │ │ │ ├── ImgdecClient.java │ │ │ │ │ │ │ ├── JPIPHttpClient.java │ │ │ │ │ │ │ ├── MML.java │ │ │ │ │ │ │ ├── PnmImage.java │ │ │ │ │ │ │ ├── RegimViewer.java │ │ │ │ │ │ │ └── ResizeListener.java │ │ │ │ │ └── opj_viewer_xerces │ │ │ │ │ │ ├── dist │ │ │ │ │ │ └── manifest.txt.in │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── ImageViewer.java │ │ │ │ │ │ ├── ImageWindow.java │ │ │ │ │ │ ├── JP2XMLparser.java │ │ │ │ │ │ └── OptionPanel.java │ │ │ │ ├── jpwl │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── convert.c │ │ │ │ │ ├── convert.h │ │ │ │ │ ├── index.c │ │ │ │ │ ├── index.h │ │ │ │ │ ├── opj_jpwl_compress.c │ │ │ │ │ ├── opj_jpwl_decompress.c │ │ │ │ │ └── windirent.h │ │ │ │ ├── mj2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── meta_out.c │ │ │ │ │ ├── meta_out.h │ │ │ │ │ ├── mj2_to_metadata.c │ │ │ │ │ ├── mj2_to_metadata.dtd │ │ │ │ │ ├── mj2_to_metadata.h │ │ │ │ │ ├── mj2_to_metadata.vcproj │ │ │ │ │ ├── mj2_to_metadata_Notes.doc │ │ │ │ │ ├── opj_mj2_compress.c │ │ │ │ │ ├── opj_mj2_decompress.c │ │ │ │ │ ├── opj_mj2_extract.c │ │ │ │ │ ├── opj_mj2_wrap.c │ │ │ │ │ └── readme.txt │ │ │ │ └── wx │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── OPJViewer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── OPJViewer.iss │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── about │ │ │ │ │ ├── about.htm │ │ │ │ │ └── opj_logo.png │ │ │ │ │ └── source │ │ │ │ │ ├── OPJAbout.cpp │ │ │ │ │ ├── OPJChild.ico │ │ │ │ │ ├── OPJChild16.xpm │ │ │ │ │ ├── OPJDialogs.cpp │ │ │ │ │ ├── OPJThreads.cpp │ │ │ │ │ ├── OPJViewer.cpp │ │ │ │ │ ├── OPJViewer.h │ │ │ │ │ ├── OPJViewer.ico │ │ │ │ │ ├── OPJViewer.rc │ │ │ │ │ ├── OPJViewer16.xpm │ │ │ │ │ ├── about_htm.h │ │ │ │ │ ├── build.h │ │ │ │ │ ├── icon1.xpm │ │ │ │ │ ├── icon2.xpm │ │ │ │ │ ├── icon3.xpm │ │ │ │ │ ├── icon4.xpm │ │ │ │ │ ├── icon5.xpm │ │ │ │ │ ├── imagjpeg2000.cpp │ │ │ │ │ ├── imagjpeg2000.h │ │ │ │ │ ├── imagmxf.cpp │ │ │ │ │ ├── imagmxf.h │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── opj_logo.xpm │ │ │ │ │ ├── readmeafter.txt │ │ │ │ │ ├── readmebefore.txt │ │ │ │ │ ├── wxj2kparser.cpp │ │ │ │ │ └── wxjp2parser.cpp │ │ │ └── lib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── openjp2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bench_dwt.c │ │ │ │ ├── bio.c │ │ │ │ ├── bio.h │ │ │ │ ├── cidx_manager.c │ │ │ │ ├── cidx_manager.h │ │ │ │ ├── cio.c │ │ │ │ ├── cio.h │ │ │ │ ├── dwt.c │ │ │ │ ├── dwt.h │ │ │ │ ├── event.c │ │ │ │ ├── event.h │ │ │ │ ├── function_list.c │ │ │ │ ├── function_list.h │ │ │ │ ├── image.c │ │ │ │ ├── image.h │ │ │ │ ├── indexbox_manager.h │ │ │ │ ├── invert.c │ │ │ │ ├── invert.h │ │ │ │ ├── j2k.c │ │ │ │ ├── j2k.h │ │ │ │ ├── jp2.c │ │ │ │ ├── jp2.h │ │ │ │ ├── libopenjp2.pc.cmake.in │ │ │ │ ├── mct.c │ │ │ │ ├── mct.h │ │ │ │ ├── mqc.c │ │ │ │ ├── mqc.h │ │ │ │ ├── mqc_inl.h │ │ │ │ ├── openjpeg.c │ │ │ │ ├── openjpeg.h │ │ │ │ ├── opj_clock.c │ │ │ │ ├── opj_clock.h │ │ │ │ ├── opj_codec.h │ │ │ │ ├── opj_common.h │ │ │ │ ├── opj_config.h │ │ │ │ ├── opj_config.h.cmake.in │ │ │ │ ├── opj_config_private.h │ │ │ │ ├── opj_config_private.h.cmake.in │ │ │ │ ├── opj_includes.h │ │ │ │ ├── opj_intmath.h │ │ │ │ ├── opj_inttypes.h │ │ │ │ ├── opj_malloc.c │ │ │ │ ├── opj_malloc.h │ │ │ │ ├── opj_stdint.h │ │ │ │ ├── phix_manager.c │ │ │ │ ├── pi.c │ │ │ │ ├── pi.h │ │ │ │ ├── ppix_manager.c │ │ │ │ ├── sparse_array.c │ │ │ │ ├── sparse_array.h │ │ │ │ ├── t1.c │ │ │ │ ├── t1.h │ │ │ │ ├── t1_generate_luts.c │ │ │ │ ├── t1_luts.h │ │ │ │ ├── t2.c │ │ │ │ ├── t2.h │ │ │ │ ├── tcd.c │ │ │ │ ├── tcd.h │ │ │ │ ├── test_sparse_array.c │ │ │ │ ├── tgt.c │ │ │ │ ├── tgt.h │ │ │ │ ├── thix_manager.c │ │ │ │ ├── thread.c │ │ │ │ ├── thread.h │ │ │ │ ├── tls_keys.h │ │ │ │ └── tpix_manager.c │ │ │ │ ├── openjp3d │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bio.c │ │ │ │ ├── bio.h │ │ │ │ ├── cio.c │ │ │ │ ├── cio.h │ │ │ │ ├── dwt.c │ │ │ │ ├── dwt.h │ │ │ │ ├── event.c │ │ │ │ ├── event.h │ │ │ │ ├── fix.h │ │ │ │ ├── int.h │ │ │ │ ├── jp3d.c │ │ │ │ ├── jp3d.h │ │ │ │ ├── jp3d_lib.c │ │ │ │ ├── jp3d_lib.h │ │ │ │ ├── libopenjp3d.pc.cmake.in │ │ │ │ ├── mct.c │ │ │ │ ├── mct.h │ │ │ │ ├── mqc.c │ │ │ │ ├── mqc.h │ │ │ │ ├── openjp3d.c │ │ │ │ ├── openjp3d.h │ │ │ │ ├── opj_includes.h │ │ │ │ ├── pi.c │ │ │ │ ├── pi.h │ │ │ │ ├── raw.c │ │ │ │ ├── raw.h │ │ │ │ ├── t1.c │ │ │ │ ├── t1.h │ │ │ │ ├── t1_3d.c │ │ │ │ ├── t1_3d.h │ │ │ │ ├── t2.c │ │ │ │ ├── t2.h │ │ │ │ ├── tcd.c │ │ │ │ ├── tcd.h │ │ │ │ ├── tgt.c │ │ │ │ ├── tgt.h │ │ │ │ ├── volume.c │ │ │ │ └── volume.h │ │ │ │ ├── openjpip │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── auxtrans_manager.c │ │ │ │ ├── auxtrans_manager.h │ │ │ │ ├── box_manager.c │ │ │ │ ├── box_manager.h │ │ │ │ ├── boxheader_manager.c │ │ │ │ ├── boxheader_manager.h │ │ │ │ ├── byte_manager.c │ │ │ │ ├── byte_manager.h │ │ │ │ ├── cache_manager.c │ │ │ │ ├── cache_manager.h │ │ │ │ ├── cachemodel_manager.c │ │ │ │ ├── cachemodel_manager.h │ │ │ │ ├── channel_manager.c │ │ │ │ ├── channel_manager.h │ │ │ │ ├── codestream_manager.c │ │ │ │ ├── codestream_manager.h │ │ │ │ ├── dec_clientmsg_handler.c │ │ │ │ ├── dec_clientmsg_handler.h │ │ │ │ ├── faixbox_manager.c │ │ │ │ ├── faixbox_manager.h │ │ │ │ ├── ihdrbox_manager.c │ │ │ │ ├── ihdrbox_manager.h │ │ │ │ ├── imgreg_manager.c │ │ │ │ ├── imgreg_manager.h │ │ │ │ ├── imgsock_manager.c │ │ │ │ ├── imgsock_manager.h │ │ │ │ ├── index_manager.c │ │ │ │ ├── index_manager.h │ │ │ │ ├── j2kheader_manager.c │ │ │ │ ├── j2kheader_manager.h │ │ │ │ ├── jp2k_decoder.c │ │ │ │ ├── jp2k_decoder.h │ │ │ │ ├── jp2k_encoder.c │ │ │ │ ├── jp2k_encoder.h │ │ │ │ ├── jpip_parser.c │ │ │ │ ├── jpip_parser.h │ │ │ │ ├── jpipstream_manager.c │ │ │ │ ├── jpipstream_manager.h │ │ │ │ ├── libopenjpip.pc.cmake.in │ │ │ │ ├── manfbox_manager.c │ │ │ │ ├── manfbox_manager.h │ │ │ │ ├── marker_manager.c │ │ │ │ ├── marker_manager.h │ │ │ │ ├── metadata_manager.c │ │ │ │ ├── metadata_manager.h │ │ │ │ ├── mhixbox_manager.c │ │ │ │ ├── mhixbox_manager.h │ │ │ │ ├── msgqueue_manager.c │ │ │ │ ├── msgqueue_manager.h │ │ │ │ ├── openjpip.c │ │ │ │ ├── openjpip.h │ │ │ │ ├── placeholder_manager.c │ │ │ │ ├── placeholder_manager.h │ │ │ │ ├── query_parser.c │ │ │ │ ├── query_parser.h │ │ │ │ ├── session_manager.c │ │ │ │ ├── session_manager.h │ │ │ │ ├── sock_manager.c │ │ │ │ ├── sock_manager.h │ │ │ │ ├── target_manager.c │ │ │ │ └── target_manager.h │ │ │ │ ├── openjpwl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.txt │ │ │ │ ├── crc.c │ │ │ │ ├── crc.h │ │ │ │ ├── jpwl.c │ │ │ │ ├── jpwl.h │ │ │ │ ├── jpwl_lib.c │ │ │ │ ├── libopenjpwl.pc.cmake.in │ │ │ │ ├── rs.c │ │ │ │ └── rs.h │ │ │ │ └── openmj2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bio.c │ │ │ │ ├── bio.h │ │ │ │ ├── cio.c │ │ │ │ ├── cio.h │ │ │ │ ├── dwt.c │ │ │ │ ├── dwt.h │ │ │ │ ├── event.c │ │ │ │ ├── event.h │ │ │ │ ├── fix.h │ │ │ │ ├── image.c │ │ │ │ ├── image.h │ │ │ │ ├── int.h │ │ │ │ ├── j2k.c │ │ │ │ ├── j2k.h │ │ │ │ ├── j2k_lib.c │ │ │ │ ├── j2k_lib.h │ │ │ │ ├── jp2.c │ │ │ │ ├── jp2.h │ │ │ │ ├── jpt.c │ │ │ │ ├── jpt.h │ │ │ │ ├── mct.c │ │ │ │ ├── mct.h │ │ │ │ ├── mj2.c │ │ │ │ ├── mj2.h │ │ │ │ ├── mj2_convert.c │ │ │ │ ├── mj2_convert.h │ │ │ │ ├── mqc.c │ │ │ │ ├── mqc.h │ │ │ │ ├── openjpeg.c │ │ │ │ ├── openjpeg.h │ │ │ │ ├── opj_includes.h │ │ │ │ ├── opj_malloc.h │ │ │ │ ├── pi.c │ │ │ │ ├── pi.h │ │ │ │ ├── raw.c │ │ │ │ ├── raw.h │ │ │ │ ├── t1.c │ │ │ │ ├── t1.h │ │ │ │ ├── t1_luts.h │ │ │ │ ├── t2.c │ │ │ │ ├── t2.h │ │ │ │ ├── tcd.c │ │ │ │ ├── tcd.h │ │ │ │ ├── tgt.c │ │ │ │ └── tgt.h │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── compare_dump_files.c │ │ │ ├── compare_images.c │ │ │ ├── compare_raw_files.c │ │ │ ├── conformance │ │ │ │ └── CMakeLists.txt │ │ │ ├── fuzzers │ │ │ │ ├── GNUmakefile │ │ │ │ ├── README.TXT │ │ │ │ ├── build_google_oss_fuzzers.sh │ │ │ │ ├── build_seed_corpus.sh │ │ │ │ ├── fuzzingengine.c │ │ │ │ └── opj_decompress_fuzzer.cpp │ │ │ ├── include_openjpeg.c │ │ │ ├── j2k_random_tile_access.c │ │ │ ├── nonregression │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── checkmd5refs.cmake │ │ │ │ ├── md5refs.txt │ │ │ │ └── test_suite.ctest.in │ │ │ ├── pdf2jp2.c │ │ │ ├── performance │ │ │ │ ├── compare_perfs.py │ │ │ │ ├── perf_test.py │ │ │ │ └── perf_test_filelist.csv │ │ │ ├── ppm2rgb3.c │ │ │ ├── profiling │ │ │ │ └── filter_massif_output.py │ │ │ ├── test_decode_area.c │ │ │ ├── test_tile_decoder.c │ │ │ ├── test_tile_encoder.c │ │ │ └── unit │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── testempty0.c │ │ │ │ ├── testempty1.c │ │ │ │ └── testempty2.c │ │ ├── thirdparty │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── astyle │ │ │ │ ├── ASBeautifier.cpp │ │ │ │ ├── ASEnhancer.cpp │ │ │ │ ├── ASFormatter.cpp │ │ │ │ ├── ASLocalizer.cpp │ │ │ │ ├── ASLocalizer.h │ │ │ │ ├── ASResource.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── astyle.h │ │ │ │ ├── astyle_main.cpp │ │ │ │ └── astyle_main.h │ │ │ ├── include │ │ │ │ ├── zconf.h │ │ │ │ └── zlib.h │ │ │ ├── liblcms2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING │ │ │ │ ├── include │ │ │ │ │ ├── lcms2.h │ │ │ │ │ └── lcms2_plugin.h │ │ │ │ └── src │ │ │ │ │ ├── cmsalpha.c │ │ │ │ │ ├── cmscam02.c │ │ │ │ │ ├── cmscgats.c │ │ │ │ │ ├── cmscnvrt.c │ │ │ │ │ ├── cmserr.c │ │ │ │ │ ├── cmsgamma.c │ │ │ │ │ ├── cmsgmt.c │ │ │ │ │ ├── cmshalf.c │ │ │ │ │ ├── cmsintrp.c │ │ │ │ │ ├── cmsio0.c │ │ │ │ │ ├── cmsio1.c │ │ │ │ │ ├── cmslut.c │ │ │ │ │ ├── cmsmd5.c │ │ │ │ │ ├── cmsmtrx.c │ │ │ │ │ ├── cmsnamed.c │ │ │ │ │ ├── cmsopt.c │ │ │ │ │ ├── cmspack.c │ │ │ │ │ ├── cmspcs.c │ │ │ │ │ ├── cmsplugin.c │ │ │ │ │ ├── cmsps2.c │ │ │ │ │ ├── cmssamp.c │ │ │ │ │ ├── cmssm.c │ │ │ │ │ ├── cmstypes.c │ │ │ │ │ ├── cmsvirt.c │ │ │ │ │ ├── cmswtpnt.c │ │ │ │ │ ├── cmsxform.c │ │ │ │ │ └── lcms2_internal.h │ │ │ ├── libpng │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── png.c │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngdebug.h │ │ │ │ ├── pngerror.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pnginfo.h │ │ │ │ ├── pnglibconf.h │ │ │ │ ├── pngmem.c │ │ │ │ ├── pngpread.c │ │ │ │ ├── pngpriv.h │ │ │ │ ├── pngread.c │ │ │ │ ├── pngrio.c │ │ │ │ ├── pngrtran.c │ │ │ │ ├── pngrutil.c │ │ │ │ ├── pngset.c │ │ │ │ ├── pngstruct.h │ │ │ │ ├── pngtrans.c │ │ │ │ ├── pngwio.c │ │ │ │ ├── pngwrite.c │ │ │ │ ├── pngwtran.c │ │ │ │ └── pngwutil.c │ │ │ ├── libtiff │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── libport.h │ │ │ │ ├── libtiff.def │ │ │ │ ├── snprintf.c │ │ │ │ ├── t4.h │ │ │ │ ├── test_inline.c │ │ │ │ ├── tif_aux.c │ │ │ │ ├── tif_close.c │ │ │ │ ├── tif_codec.c │ │ │ │ ├── tif_color.c │ │ │ │ ├── tif_compress.c │ │ │ │ ├── tif_config.h.cmake.in │ │ │ │ ├── tif_config.h.in │ │ │ │ ├── tif_dir.c │ │ │ │ ├── tif_dir.h │ │ │ │ ├── tif_dirinfo.c │ │ │ │ ├── tif_dirread.c │ │ │ │ ├── tif_dirwrite.c │ │ │ │ ├── tif_dumpmode.c │ │ │ │ ├── tif_error.c │ │ │ │ ├── tif_extension.c │ │ │ │ ├── tif_fax3.c │ │ │ │ ├── tif_fax3.h │ │ │ │ ├── tif_fax3sm.c │ │ │ │ ├── tif_flush.c │ │ │ │ ├── tif_getimage.c │ │ │ │ ├── tif_jbig.c │ │ │ │ ├── tif_jpeg.c │ │ │ │ ├── tif_jpeg_12.c │ │ │ │ ├── tif_luv.c │ │ │ │ ├── tif_lzma.c │ │ │ │ ├── tif_lzw.c │ │ │ │ ├── tif_next.c │ │ │ │ ├── tif_ojpeg.c │ │ │ │ ├── tif_open.c │ │ │ │ ├── tif_packbits.c │ │ │ │ ├── tif_pixarlog.c │ │ │ │ ├── tif_predict.c │ │ │ │ ├── tif_predict.h │ │ │ │ ├── tif_print.c │ │ │ │ ├── tif_read.c │ │ │ │ ├── tif_stream.cxx │ │ │ │ ├── tif_strip.c │ │ │ │ ├── tif_swab.c │ │ │ │ ├── tif_thunder.c │ │ │ │ ├── tif_tile.c │ │ │ │ ├── tif_unix.c │ │ │ │ ├── tif_version.c │ │ │ │ ├── tif_warning.c │ │ │ │ ├── tif_win32.c │ │ │ │ ├── tif_write.c │ │ │ │ ├── tif_zip.c │ │ │ │ ├── tiff.h │ │ │ │ ├── tiffconf.h.cmake.in │ │ │ │ ├── tiffconf.h.in │ │ │ │ ├── tiffio.h │ │ │ │ ├── tiffio.hxx │ │ │ │ ├── tiffiop.h │ │ │ │ ├── tiffvers.h │ │ │ │ └── uvcode.h │ │ │ └── libz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ ├── tools │ │ │ ├── abi-tracker │ │ │ │ └── openjpeg.json │ │ │ ├── ctest_scripts │ │ │ │ ├── toolchain-mingw32.cmake │ │ │ │ ├── toolchain-mingw64.cmake │ │ │ │ └── travis-ci.cmake │ │ │ └── travis-ci │ │ │ │ ├── abi-check.sh │ │ │ │ ├── detect-avx2.c │ │ │ │ ├── install.sh │ │ │ │ ├── knownfailures-Ubuntu14.04-gcc4.8.4-i386-Release-3rdP.txt │ │ │ │ ├── knownfailures-all.txt │ │ │ │ ├── knownfailures-windows-vs2010-x86-Release-3rdP.txt │ │ │ │ ├── run.sh │ │ │ │ └── travis_rsa.enc │ │ └── wrapping │ │ │ ├── CMakeLists.txt │ │ │ └── java │ │ │ ├── CMakeLists.txt │ │ │ └── openjp2 │ │ │ ├── CMakeLists.txt │ │ │ ├── JavaOpenJPEG.c │ │ │ ├── JavaOpenJPEGDecoder.c │ │ │ ├── index.c │ │ │ ├── index.h │ │ │ ├── java-sources │ │ │ └── org │ │ │ │ └── openJpeg │ │ │ │ ├── OpenJPEGJavaDecoder.java │ │ │ │ └── OpenJPEGJavaEncoder.java │ │ │ ├── org_openJpeg_OpenJPEGJavaDecoder.h │ │ │ └── org_openJpeg_OpenJPEGJavaEncoder.h │ ├── opj_config.h │ └── opj_config_private.h ├── libproj.sh ├── libproj │ ├── arch │ │ ├── unix │ │ │ └── src │ │ │ │ └── proj_config.h │ │ └── win │ │ │ └── src │ │ │ └── proj_config.h │ ├── libproj.gyp │ ├── patches │ │ └── libproj_proj_src_iso19111_io.cpp.diff │ └── proj │ │ ├── AUTHORS.md │ │ ├── CITATION │ │ ├── CITATION.cff │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── NEWS.md │ │ ├── README.md │ │ ├── cmake │ │ ├── CMakeLists.txt │ │ └── policies.cmake │ │ ├── data │ │ ├── CH │ │ ├── GL27 │ │ ├── ITRF2000 │ │ ├── ITRF2008 │ │ ├── ITRF2014 │ │ ├── ITRF2020 │ │ ├── nad.lst │ │ ├── nad27 │ │ ├── nad83 │ │ ├── other.extra │ │ ├── proj.db │ │ └── world │ │ ├── examples │ │ ├── EPSG_4326_to_32631.cpp │ │ ├── crs_to_geodetic.c │ │ ├── pj_obs_api_mini_demo.c │ │ ├── s45b.pol │ │ └── val_def.demo │ │ ├── include │ │ └── proj │ │ │ ├── common.hpp │ │ │ ├── coordinateoperation.hpp │ │ │ ├── coordinates.hpp │ │ │ ├── coordinatesystem.hpp │ │ │ ├── crs.hpp │ │ │ ├── datum.hpp │ │ │ ├── internal │ │ │ ├── coordinatesystem_internal.hpp │ │ │ ├── crs_internal.hpp │ │ │ ├── datum_internal.hpp │ │ │ ├── include_nlohmann_json.hpp │ │ │ ├── internal.hpp │ │ │ ├── io_internal.hpp │ │ │ ├── lru_cache.hpp │ │ │ ├── tracing.hpp │ │ │ └── vendor │ │ │ │ └── nlohmann │ │ │ │ └── json.hpp │ │ │ ├── io.hpp │ │ │ ├── metadata.hpp │ │ │ ├── nn.hpp │ │ │ └── util.hpp │ │ └── src │ │ ├── 4D_api.cpp │ │ ├── CMakeLists.txt │ │ ├── aasincos.cpp │ │ ├── adjlon.cpp │ │ ├── apps │ │ ├── cct.cpp │ │ ├── cs2cs.cpp │ │ ├── emess.cpp │ │ ├── emess.h │ │ ├── geod.cpp │ │ ├── geod_interface.cpp │ │ ├── geod_interface.h │ │ ├── geod_set.cpp │ │ ├── gie.cpp │ │ ├── optargpm.h │ │ ├── proj.cpp │ │ ├── proj_strtod.cpp │ │ ├── proj_strtod.h │ │ ├── projinfo.cpp │ │ ├── projsync.cpp │ │ ├── utils.h │ │ └── utils_apps.cpp │ │ ├── auth.cpp │ │ ├── conversions │ │ ├── axisswap.cpp │ │ ├── cart.cpp │ │ ├── geoc.cpp │ │ ├── geocent_conversions.cpp │ │ ├── noop.cpp │ │ ├── set.cpp │ │ ├── topocentric.cpp │ │ └── unitconvert.cpp │ │ ├── ctx.cpp │ │ ├── datum_set.cpp │ │ ├── datums.cpp │ │ ├── deriv.cpp │ │ ├── dmstor.cpp │ │ ├── ell_set.cpp │ │ ├── ellps.cpp │ │ ├── factors.cpp │ │ ├── filemanager.cpp │ │ ├── filemanager.hpp │ │ ├── fwd.cpp │ │ ├── gauss.cpp │ │ ├── general_doc.dox │ │ ├── generic_inverse.cpp │ │ ├── geodesic.c │ │ ├── geodesic.h │ │ ├── grids.cpp │ │ ├── grids.hpp │ │ ├── init.cpp │ │ ├── initcache.cpp │ │ ├── internal.cpp │ │ ├── inv.cpp │ │ ├── iso19111 │ │ ├── c_api.cpp │ │ ├── common.cpp │ │ ├── coordinates.cpp │ │ ├── coordinatesystem.cpp │ │ ├── crs.cpp │ │ ├── datum.cpp │ │ ├── factory.cpp │ │ ├── internal_iso19111.cpp │ │ ├── io.cpp │ │ ├── metadata.cpp │ │ ├── operation │ │ │ ├── concatenatedoperation.cpp │ │ │ ├── conversion.cpp │ │ │ ├── coordinateoperation_internal.hpp │ │ │ ├── coordinateoperation_private.hpp │ │ │ ├── coordinateoperationfactory.cpp │ │ │ ├── esriparammappings.cpp │ │ │ ├── esriparammappings.hpp │ │ │ ├── operationmethod_private.hpp │ │ │ ├── oputils.cpp │ │ │ ├── oputils.hpp │ │ │ ├── parammappings.cpp │ │ │ ├── parammappings.hpp │ │ │ ├── projbasedoperation.cpp │ │ │ ├── singleoperation.cpp │ │ │ ├── transformation.cpp │ │ │ ├── vectorofvaluesparams.cpp │ │ │ └── vectorofvaluesparams.hpp │ │ ├── static.cpp │ │ └── util.cpp │ │ ├── lib_proj.cmake │ │ ├── list.cpp │ │ ├── log.cpp │ │ ├── malloc.cpp │ │ ├── mlfn.cpp │ │ ├── msfn.cpp │ │ ├── mutex.cpp │ │ ├── networkfilemanager.cpp │ │ ├── param.cpp │ │ ├── phi2.cpp │ │ ├── pipeline.cpp │ │ ├── pj_list.h │ │ ├── pr_list.cpp │ │ ├── proj.h │ │ ├── proj_constants.h │ │ ├── proj_experimental.h │ │ ├── proj_internal.h │ │ ├── proj_json_streaming_writer.cpp │ │ ├── proj_json_streaming_writer.hpp │ │ ├── proj_mdist.cpp │ │ ├── proj_symbol_rename.h │ │ ├── projections │ │ ├── adams.cpp │ │ ├── aea.cpp │ │ ├── aeqd.cpp │ │ ├── airy.cpp │ │ ├── aitoff.cpp │ │ ├── august.cpp │ │ ├── bacon.cpp │ │ ├── bertin1953.cpp │ │ ├── bipc.cpp │ │ ├── boggs.cpp │ │ ├── bonne.cpp │ │ ├── calcofi.cpp │ │ ├── cass.cpp │ │ ├── cc.cpp │ │ ├── ccon.cpp │ │ ├── cea.cpp │ │ ├── chamb.cpp │ │ ├── col_urban.cpp │ │ ├── collg.cpp │ │ ├── comill.cpp │ │ ├── crast.cpp │ │ ├── denoy.cpp │ │ ├── eck1.cpp │ │ ├── eck2.cpp │ │ ├── eck3.cpp │ │ ├── eck4.cpp │ │ ├── eck5.cpp │ │ ├── eqc.cpp │ │ ├── eqdc.cpp │ │ ├── eqearth.cpp │ │ ├── fahey.cpp │ │ ├── fouc_s.cpp │ │ ├── gall.cpp │ │ ├── geos.cpp │ │ ├── gins8.cpp │ │ ├── gn_sinu.cpp │ │ ├── gnom.cpp │ │ ├── goode.cpp │ │ ├── gstmerc.cpp │ │ ├── hammer.cpp │ │ ├── hatano.cpp │ │ ├── healpix.cpp │ │ ├── igh.cpp │ │ ├── igh_o.cpp │ │ ├── imoll.cpp │ │ ├── imoll_o.cpp │ │ ├── imw_p.cpp │ │ ├── isea.cpp │ │ ├── krovak.cpp │ │ ├── labrd.cpp │ │ ├── laea.cpp │ │ ├── lagrng.cpp │ │ ├── larr.cpp │ │ ├── lask.cpp │ │ ├── latlong.cpp │ │ ├── lcc.cpp │ │ ├── lcca.cpp │ │ ├── loxim.cpp │ │ ├── mbt_fps.cpp │ │ ├── mbtfpp.cpp │ │ ├── mbtfpq.cpp │ │ ├── merc.cpp │ │ ├── mill.cpp │ │ ├── mod_ster.cpp │ │ ├── moll.cpp │ │ ├── natearth.cpp │ │ ├── natearth2.cpp │ │ ├── nell.cpp │ │ ├── nell_h.cpp │ │ ├── nicol.cpp │ │ ├── nsper.cpp │ │ ├── nzmg.cpp │ │ ├── ob_tran.cpp │ │ ├── ocea.cpp │ │ ├── oea.cpp │ │ ├── omerc.cpp │ │ ├── ortho.cpp │ │ ├── patterson.cpp │ │ ├── poly.cpp │ │ ├── putp2.cpp │ │ ├── putp3.cpp │ │ ├── putp4p.cpp │ │ ├── putp5.cpp │ │ ├── putp6.cpp │ │ ├── qsc.cpp │ │ ├── robin.cpp │ │ ├── rouss.cpp │ │ ├── rpoly.cpp │ │ ├── s2.cpp │ │ ├── sch.cpp │ │ ├── sconics.cpp │ │ ├── som.cpp │ │ ├── somerc.cpp │ │ ├── stere.cpp │ │ ├── sterea.cpp │ │ ├── sts.cpp │ │ ├── tcc.cpp │ │ ├── tcea.cpp │ │ ├── times.cpp │ │ ├── tmerc.cpp │ │ ├── tobmerc.cpp │ │ ├── tpeqd.cpp │ │ ├── urm5.cpp │ │ ├── urmfps.cpp │ │ ├── vandg.cpp │ │ ├── vandg2.cpp │ │ ├── vandg4.cpp │ │ ├── wag2.cpp │ │ ├── wag3.cpp │ │ ├── wag7.cpp │ │ ├── wink1.cpp │ │ └── wink2.cpp │ │ ├── qsfn.cpp │ │ ├── quadtree.hpp │ │ ├── release.cpp │ │ ├── rtodms.cpp │ │ ├── sqlite3_utils.cpp │ │ ├── sqlite3_utils.hpp │ │ ├── strerrno.cpp │ │ ├── strtod.cpp │ │ ├── tracing.cpp │ │ ├── transformations │ │ ├── affine.cpp │ │ ├── defmodel.cpp │ │ ├── defmodel.hpp │ │ ├── defmodel_exceptions.hpp │ │ ├── defmodel_impl.hpp │ │ ├── deformation.cpp │ │ ├── gridshift.cpp │ │ ├── helmert.cpp │ │ ├── hgridshift.cpp │ │ ├── horner.cpp │ │ ├── molodensky.cpp │ │ ├── tinshift.cpp │ │ ├── tinshift.hpp │ │ ├── tinshift_exceptions.hpp │ │ ├── tinshift_impl.hpp │ │ ├── vertoffset.cpp │ │ ├── vgridshift.cpp │ │ └── xyzgridshift.cpp │ │ ├── tsfn.cpp │ │ ├── units.cpp │ │ ├── wkt1_generated_parser.c │ │ ├── wkt1_generated_parser.h │ │ ├── wkt1_grammar.y │ │ ├── wkt1_parser.cpp │ │ ├── wkt1_parser.h │ │ ├── wkt2_generated_parser.c │ │ ├── wkt2_generated_parser.h │ │ ├── wkt2_grammar.y │ │ ├── wkt2_parser.cpp │ │ ├── wkt2_parser.h │ │ ├── wkt_parser.cpp │ │ ├── wkt_parser.hpp │ │ └── zpoly1.cpp ├── libsqlite.sh ├── libsqlite │ ├── libsqlite.gyp │ └── sqlite │ │ ├── shell.c │ │ ├── sqlite3.c │ │ ├── sqlite3.h │ │ ├── sqlite3ext.h │ │ └── sqlite3rc.h ├── muparser.sh └── muparser │ ├── muparser-2.3.5.tar.gz │ ├── muparser.gyp │ └── muparser │ ├── .gitattributes │ ├── .github │ └── workflows │ │ └── c-cpp.yml │ ├── .gitignore │ ├── .vscode │ └── settings.json │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Install.txt │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── docs │ ├── Doxyfile │ └── muparser_doc.html │ ├── include │ ├── muParser.h │ ├── muParserBase.h │ ├── muParserBytecode.h │ ├── muParserCallback.h │ ├── muParserDLL.h │ ├── muParserDef.h │ ├── muParserError.h │ ├── muParserFixes.h │ ├── muParserInt.h │ ├── muParserTemplateMagic.h │ ├── muParserTest.h │ ├── muParserToken.h │ └── muParserTokenReader.h │ ├── lib │ └── Readme.txt │ ├── muparser.pc.in │ ├── muparserConfig.cmake.in │ ├── samples │ ├── example1 │ │ └── example1.cpp │ ├── example2 │ │ ├── Readme.txt │ │ └── example2.c │ └── example3 │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ └── example3.cpp │ ├── src │ ├── muParser.cpp │ ├── muParserBase.cpp │ ├── muParserBytecode.cpp │ ├── muParserCallback.cpp │ ├── muParserDLL.cpp │ ├── muParserError.cpp │ ├── muParserInt.cpp │ ├── muParserTest.cpp │ └── muParserTokenReader.cpp │ └── test │ └── t_ParserTest.cpp ├── documentation.yml ├── eslint.config.mjs ├── examples ├── electron │ ├── README.md │ ├── index.html │ ├── main.js │ ├── package.json │ ├── preload.js │ ├── renderer.js │ └── styles.css ├── gdalinfo.js ├── ogrinfo.js ├── serve-async.js └── serve.js ├── gdal-async-logo.svg ├── gdal-async.md ├── include └── node_gdal.h ├── lib ├── calc.js ├── default_iterators.gpp ├── default_iterators.js ├── envelope.js ├── envelope_3d.js ├── gdal.js ├── iterators.js ├── multiplexer.js ├── readable.js ├── wrapVRT.js └── writable.js ├── package.json ├── scripts ├── container.sh ├── documentation-async.js ├── externalCrossLinks.js ├── gdal-doc.css ├── gdal-trunk.sh ├── motd.js ├── parse-commit-message.ps1 ├── publish-docs.js └── publish-packages.mjs ├── src ├── async.cpp ├── async.hpp ├── collections │ ├── array_attributes.cpp │ ├── array_attributes.hpp │ ├── array_dimensions.cpp │ ├── array_dimensions.hpp │ ├── colortable.cpp │ ├── colortable.hpp │ ├── compound_curves.cpp │ ├── compound_curves.hpp │ ├── dataset_bands.cpp │ ├── dataset_bands.hpp │ ├── dataset_layers.cpp │ ├── dataset_layers.hpp │ ├── feature_defn_fields.cpp │ ├── feature_defn_fields.hpp │ ├── feature_fields.cpp │ ├── feature_fields.hpp │ ├── gdal_drivers.cpp │ ├── gdal_drivers.hpp │ ├── geometry_collection_children.cpp │ ├── geometry_collection_children.hpp │ ├── group_arrays.cpp │ ├── group_arrays.hpp │ ├── group_attributes.cpp │ ├── group_attributes.hpp │ ├── group_collection.hpp │ ├── group_dimensions.cpp │ ├── group_dimensions.hpp │ ├── group_groups.cpp │ ├── group_groups.hpp │ ├── layer_features.cpp │ ├── layer_features.hpp │ ├── layer_fields.cpp │ ├── layer_fields.hpp │ ├── linestring_points.cpp │ ├── linestring_points.hpp │ ├── polygon_rings.cpp │ ├── polygon_rings.hpp │ ├── rasterband_overviews.cpp │ ├── rasterband_overviews.hpp │ ├── rasterband_pixels.cpp │ └── rasterband_pixels.hpp ├── gdal_algebra.cpp ├── gdal_algebra.hpp ├── gdal_algorithms.cpp ├── gdal_algorithms.hpp ├── gdal_attribute.cpp ├── gdal_attribute.hpp ├── gdal_common.cpp ├── gdal_common.hpp ├── gdal_coordinate_transformation.cpp ├── gdal_coordinate_transformation.hpp ├── gdal_dataset.cpp ├── gdal_dataset.hpp ├── gdal_dimension.cpp ├── gdal_dimension.hpp ├── gdal_driver.cpp ├── gdal_driver.hpp ├── gdal_feature.cpp ├── gdal_feature.hpp ├── gdal_feature_defn.cpp ├── gdal_feature_defn.hpp ├── gdal_field_defn.cpp ├── gdal_field_defn.hpp ├── gdal_fs.cpp ├── gdal_fs.hpp ├── gdal_group.cpp ├── gdal_group.hpp ├── gdal_layer.cpp ├── gdal_layer.hpp ├── gdal_majorobject.cpp ├── gdal_majorobject.hpp ├── gdal_mdarray.cpp ├── gdal_mdarray.hpp ├── gdal_memfile.cpp ├── gdal_memfile.hpp ├── gdal_rasterband.cpp ├── gdal_rasterband.hpp ├── gdal_spatial_reference.cpp ├── gdal_spatial_reference.hpp ├── gdal_utils.cpp ├── gdal_utils.hpp ├── gdal_warper.cpp ├── gdal_warper.hpp ├── geometry │ ├── gdal_circularstring.cpp │ ├── gdal_circularstring.hpp │ ├── gdal_compoundcurve.cpp │ ├── gdal_compoundcurve.hpp │ ├── gdal_curvebase.hpp │ ├── gdal_geometry.cpp │ ├── gdal_geometry.hpp │ ├── gdal_geometrybase.hpp │ ├── gdal_geometrycollection.cpp │ ├── gdal_geometrycollection.hpp │ ├── gdal_geometrycollectionbase.hpp │ ├── gdal_linearring.cpp │ ├── gdal_linearring.hpp │ ├── gdal_linestring.cpp │ ├── gdal_linestring.hpp │ ├── gdal_multicurve.cpp │ ├── gdal_multicurve.hpp │ ├── gdal_multilinestring.cpp │ ├── gdal_multilinestring.hpp │ ├── gdal_multipoint.cpp │ ├── gdal_multipoint.hpp │ ├── gdal_multipolygon.cpp │ ├── gdal_multipolygon.hpp │ ├── gdal_point.cpp │ ├── gdal_point.hpp │ ├── gdal_polygon.cpp │ ├── gdal_polygon.hpp │ ├── gdal_simplecurve.cpp │ └── gdal_simplecurve.hpp ├── nan-wrapper.h ├── node_gdal.cpp └── utils │ ├── field_types.hpp │ ├── number_list.cpp │ ├── number_list.hpp │ ├── ptr_manager.cpp │ ├── ptr_manager.hpp │ ├── string_list.cpp │ ├── string_list.hpp │ ├── typed_array.cpp │ ├── typed_array.hpp │ ├── warp_options.cpp │ └── warp_options.hpp ├── test ├── _common.ts ├── _hooks.ts ├── api_algebra.test.ts ├── api_algorithms.test.ts ├── api_asyncIterators.test.ts ├── api_base.test.ts ├── api_circularstring.test.ts ├── api_classes.test.ts ├── api_coordinatetransformation.test.ts ├── api_curve.test.ts ├── api_dataset.test.ts ├── api_drivers.test.ts ├── api_envelope.test.ts ├── api_envelope3d.test.ts ├── api_feature.test.ts ├── api_fs.test.ts ├── api_geometry.test.ts ├── api_layer.test.ts ├── api_layerAsync.test.ts ├── api_linearring.test.ts ├── api_linestring.test.ts ├── api_multidim.test.ts ├── api_point.test.ts ├── api_polygon.test.ts ├── api_rasterband-async.test.ts ├── api_rasterband.test.ts ├── api_spatialreference.test.ts ├── api_streams.test.ts ├── api_utils.test.ts ├── api_warp.test.ts ├── api_warpAsync.test.ts ├── api_wrapVRT.test.ts ├── artifacts │ └── .gitignore ├── data │ ├── 12_791_1476.jpg │ ├── AROME_D2m_10.tiff │ ├── AROME_T2m_10.tiff │ ├── Ain.json │ ├── CM13ct.pgw │ ├── CM13ct.png │ ├── France_120km_WRF_WAM_210525-00.grb │ ├── MRMS_NLDN_CG_001min_AvgDensity.latest.grib2.gz │ ├── a39se10.jgw │ ├── a39se10.jpg │ ├── arome_sp3.grib2.gz │ ├── blank.jpg │ ├── color_file.txt │ ├── complexfields.geo.json │ ├── crs_32631_fc_and_feat.json │ ├── cutline.dbf │ ├── cutline.prj │ ├── cutline.shp │ ├── cutline.shx │ ├── dem_azimuth50_pa.img │ ├── gfs.t00z.alnsf.nc │ ├── gfs.t00z.pgrb2b.4p.f000.grb2 │ ├── gpx │ │ └── spiritmountain.gpx │ ├── h5ex_d_gzip.h5 │ ├── h5ex_t_array.h5 │ ├── huge-sparse.tiff │ ├── invalid │ ├── makeValid.json │ ├── mitab │ │ ├── EXTRACT_POLYGON.mid │ │ └── EXTRACT_POLYGON.mif │ ├── multiband.tif │ ├── natural_earth.tif │ ├── ne_10m_admin_0_france.pmtiles │ ├── park.geo.json │ ├── sample.tif │ ├── sample.vrt │ ├── sample_bigtiff.tif │ ├── sample_deflate.tif │ ├── sample_jpeg.tif │ ├── sample_warped.tif │ ├── shp │ │ ├── sample.dbf │ │ ├── sample.prj │ │ ├── sample.shp │ │ ├── sample.shx │ │ ├── sample_int64.dbf │ │ ├── sample_int64.prj │ │ ├── sample_int64.shp │ │ ├── sample_int64.shx │ │ ├── sample_null.dbf │ │ ├── sample_null.prj │ │ ├── sample_null.shp │ │ └── sample_null.shx │ ├── srs │ │ └── sample.gml │ ├── stefan_full_rgba_alpha_1bit.jp2 │ ├── temp │ │ └── .gitignore │ ├── test_with_mask_1bit.tif │ ├── testopenfilegdb.gdb.zip │ ├── truncated.tiff │ ├── unsupported-srs.tif │ └── vsigzip │ │ └── hp40ne.gz ├── object_lifetime.test.ts ├── open.test.ts ├── open_bigtiff.test.ts ├── open_deflate_tiff.test.ts ├── open_geojson.test.ts ├── open_gpx.test.ts ├── open_grib.test.ts ├── open_gtiff.test.ts ├── open_hdf5.test.ts ├── open_hfa.test.ts ├── open_jpeg2000.test.ts ├── open_jpeg_tiff.test.ts ├── open_jpg.test.ts ├── open_jsonfg.test.ts ├── open_mitab.test.ts ├── open_netcdf.test.ts ├── open_openfilegdb.test.ts ├── open_pmtiles.test.ts ├── open_png.test.ts ├── open_shp.test.ts ├── open_vrt.test.ts ├── open_vsicurl.test.ts ├── open_vsigzip.test.ts ├── open_vsimem.test.ts ├── open_vsis3.test.ts ├── open_wcs.test.ts ├── open_wms.test.ts ├── open_wmts.test.ts ├── platforms │ ├── Dockerfile.amazonlinux │ ├── Dockerfile.archlinux │ ├── Dockerfile.centos │ ├── Dockerfile.debian │ ├── Dockerfile.debian-archive │ ├── Dockerfile.fedora │ ├── Dockerfile.ubuntu │ ├── debian-archive.list │ ├── entrypoint.sh │ └── freexian-archive-keyring_2022.06.08_all.deb ├── stress.js ├── tsconfig.test.json └── utils │ └── file.ts ├── tsconfig.json └── yatag.config.js /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mmomtchev 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.github/workflows/test-dev.yml -------------------------------------------------------------------------------- /.github/workflows/test-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.github/workflows/test-npm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /ASYNCIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/ASYNCIO.md -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/RELEASE.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /bench/00.streams.read.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/bench/00.streams.read.bench.js -------------------------------------------------------------------------------- /bench/02.streams.write.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/bench/02.streams.write.bench.js -------------------------------------------------------------------------------- /bench/04.streams.piping.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/bench/04.streams.piping.bench.js -------------------------------------------------------------------------------- /bench/streams.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/bench/streams.common.js -------------------------------------------------------------------------------- /bench/streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/bench/streams.js -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/binding.gyp -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/codecov.yml -------------------------------------------------------------------------------- /common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/common.gypi -------------------------------------------------------------------------------- /cpp_17.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/cpp_17.gypi -------------------------------------------------------------------------------- /deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/Makefile -------------------------------------------------------------------------------- /deps/exprtk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/exprtk.sh -------------------------------------------------------------------------------- /deps/exprtk/exprtk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/exprtk/exprtk.hpp -------------------------------------------------------------------------------- /deps/gen_patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/gen_patches.sh -------------------------------------------------------------------------------- /deps/glob-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/glob-files.py -------------------------------------------------------------------------------- /deps/libaec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec.sh -------------------------------------------------------------------------------- /deps/libaec/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/config/config.h -------------------------------------------------------------------------------- /deps/libaec/libaec.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec.gyp -------------------------------------------------------------------------------- /deps/libaec/libaec/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/AUTHORS -------------------------------------------------------------------------------- /deps/libaec/libaec/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/CHANGELOG.md -------------------------------------------------------------------------------- /deps/libaec/libaec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libaec/libaec/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/INSTALL.md -------------------------------------------------------------------------------- /deps/libaec/libaec/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/LICENSE.txt -------------------------------------------------------------------------------- /deps/libaec/libaec/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/Makefile.am -------------------------------------------------------------------------------- /deps/libaec/libaec/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/Makefile.in -------------------------------------------------------------------------------- /deps/libaec/libaec/README.SZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/README.SZIP -------------------------------------------------------------------------------- /deps/libaec/libaec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/README.md -------------------------------------------------------------------------------- /deps/libaec/libaec/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/THANKS -------------------------------------------------------------------------------- /deps/libaec/libaec/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/aclocal.m4 -------------------------------------------------------------------------------- /deps/libaec/libaec/config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/config/compile -------------------------------------------------------------------------------- /deps/libaec/libaec/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/config/depcomp -------------------------------------------------------------------------------- /deps/libaec/libaec/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/config/missing -------------------------------------------------------------------------------- /deps/libaec/libaec/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/configure -------------------------------------------------------------------------------- /deps/libaec/libaec/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/configure.ac -------------------------------------------------------------------------------- /deps/libaec/libaec/m4/00gnulib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/m4/00gnulib.m4 -------------------------------------------------------------------------------- /deps/libaec/libaec/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/m4/libtool.m4 -------------------------------------------------------------------------------- /deps/libaec/libaec/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/m4/ltsugar.m4 -------------------------------------------------------------------------------- /deps/libaec/libaec/src/bdec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/bdec.sh -------------------------------------------------------------------------------- /deps/libaec/libaec/src/benc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/benc.sh -------------------------------------------------------------------------------- /deps/libaec/libaec/src/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/decode.c -------------------------------------------------------------------------------- /deps/libaec/libaec/src/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/decode.h -------------------------------------------------------------------------------- /deps/libaec/libaec/src/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/encode.c -------------------------------------------------------------------------------- /deps/libaec/libaec/src/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/encode.h -------------------------------------------------------------------------------- /deps/libaec/libaec/src/graec.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/graec.1 -------------------------------------------------------------------------------- /deps/libaec/libaec/src/graec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/graec.c -------------------------------------------------------------------------------- /deps/libaec/libaec/src/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/utime.c -------------------------------------------------------------------------------- /deps/libaec/libaec/src/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/vector.c -------------------------------------------------------------------------------- /deps/libaec/libaec/src/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libaec/libaec/src/vector.h -------------------------------------------------------------------------------- /deps/libcurl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl.sh -------------------------------------------------------------------------------- /deps/libcurl/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/cacert.pem -------------------------------------------------------------------------------- /deps/libcurl/curl/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/CHANGES -------------------------------------------------------------------------------- /deps/libcurl/curl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libcurl/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/COPYING -------------------------------------------------------------------------------- /deps/libcurl/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/Makefile -------------------------------------------------------------------------------- /deps/libcurl/curl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/Makefile.am -------------------------------------------------------------------------------- /deps/libcurl/curl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/Makefile.in -------------------------------------------------------------------------------- /deps/libcurl/curl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/README -------------------------------------------------------------------------------- /deps/libcurl/curl/RELEASE-NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/RELEASE-NOTES -------------------------------------------------------------------------------- /deps/libcurl/curl/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/acinclude.m4 -------------------------------------------------------------------------------- /deps/libcurl/curl/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/aclocal.m4 -------------------------------------------------------------------------------- /deps/libcurl/curl/buildconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/buildconf -------------------------------------------------------------------------------- /deps/libcurl/curl/buildconf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/buildconf.bat -------------------------------------------------------------------------------- /deps/libcurl/curl/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/compile -------------------------------------------------------------------------------- /deps/libcurl/curl/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/config.guess -------------------------------------------------------------------------------- /deps/libcurl/curl/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/config.sub -------------------------------------------------------------------------------- /deps/libcurl/curl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/configure -------------------------------------------------------------------------------- /deps/libcurl/curl/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/configure.ac -------------------------------------------------------------------------------- /deps/libcurl/curl/curl-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/curl-config.in -------------------------------------------------------------------------------- /deps/libcurl/curl/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/depcomp -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/ALTSVC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/ALTSVC.md -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/BUFREF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/BUFREF.md -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/BUGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/BUGS.md -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/ECH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/ECH.md -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/FAQ -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/HSTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/HSTS.md -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/HTTP2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/HTTP2.md -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/HTTP3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/HTTP3.md -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/HYPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/HYPER.md -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/INSTALL -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/MQTT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/MQTT.md -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/THANKS -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/TODO -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/curl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/docs/curl.1 -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/libcurl/curl_multi_socket_all.3: -------------------------------------------------------------------------------- 1 | .so man3/curl_multi_socket.3 2 | -------------------------------------------------------------------------------- /deps/libcurl/curl/docs/libcurl/curl_strnequal.3: -------------------------------------------------------------------------------- 1 | .so man3/curl_strequal.3 2 | -------------------------------------------------------------------------------- /deps/libcurl/curl/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/install-sh -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/.checksrc: -------------------------------------------------------------------------------- 1 | enable STRERROR 2 | -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/altsvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/altsvc.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/altsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/altsvc.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/amigaos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/amigaos.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/amigaos.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/asyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/asyn.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/base64.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/bufref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/bufref.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/bufref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/bufref.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/c-hyper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/c-hyper.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/c-hyper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/c-hyper.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/connect.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/connect.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/cookie.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/cookie.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/curlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/curlx.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/dict.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/dict.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/doh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/doh.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/doh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/doh.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/dotdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/dotdot.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/dotdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/dotdot.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/dynbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/dynbuf.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/dynbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/dynbuf.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/easy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/easy.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/easyif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/easyif.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/escape.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/escape.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/file.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/file.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/ftp.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/ftp.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/getenv.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/getinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/getinfo.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/getinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/getinfo.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/gopher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/gopher.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/gopher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/gopher.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/hash.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/hash.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/hmac.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/hostip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/hostip.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/hostip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/hostip.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/hostip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/hostip4.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/hostip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/hostip6.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/hostsyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/hostsyn.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/hsts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/hsts.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/hsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/hsts.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/http.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/http.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/http2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/http2.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/http2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/http2.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/if2ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/if2ip.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/if2ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/if2ip.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/imap.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/imap.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/krb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/krb5.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/ldap.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/llist.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/llist.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/md4.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/md5.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/mime.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/mime.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/mprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/mprintf.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/mqtt.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/mqtt.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/multi.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/multiif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/multiif.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/netrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/netrc.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/netrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/netrc.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/nwlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/nwlib.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/nwos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/nwos.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/pop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/pop3.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/pop3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/pop3.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/psl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/psl.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/psl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/psl.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/quic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/quic.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/rand.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/rand.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/rename.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/rename.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/rtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/rtsp.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/rtsp.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/select.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/select.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/sendf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/sendf.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/sendf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/sendf.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/setopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/setopt.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/setopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/setopt.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/sha256.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/share.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/share.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/sigpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/sigpipe.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/slist.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/slist.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/smb.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/smb.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/smtp.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/smtp.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/socks.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/socks.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/splay.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/splay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/splay.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/strcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/strcase.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/strcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/strcase.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/strdup.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/strdup.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/strtok.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/strtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/strtok.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/telnet.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/telnet.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/tftp.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/tftp.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/timeval.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/timeval.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/url.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/url.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/urlapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/urlapi.c -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/urldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/urldata.h -------------------------------------------------------------------------------- /deps/libcurl/curl/lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/lib/version.c -------------------------------------------------------------------------------- /deps/libcurl/curl/libcurl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/libcurl.pc.in -------------------------------------------------------------------------------- /deps/libcurl/curl/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/ltmain.sh -------------------------------------------------------------------------------- /deps/libcurl/curl/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/m4/libtool.m4 -------------------------------------------------------------------------------- /deps/libcurl/curl/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/m4/ltsugar.m4 -------------------------------------------------------------------------------- /deps/libcurl/curl/maketgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/maketgz -------------------------------------------------------------------------------- /deps/libcurl/curl/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/missing -------------------------------------------------------------------------------- /deps/libcurl/curl/plan9/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/plan9/README -------------------------------------------------------------------------------- /deps/libcurl/curl/plan9/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/plan9/mkfile -------------------------------------------------------------------------------- /deps/libcurl/curl/src/curl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/src/curl.rc -------------------------------------------------------------------------------- /deps/libcurl/curl/src/mkhelp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/src/mkhelp.pl -------------------------------------------------------------------------------- /deps/libcurl/curl/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/curl/test-driver -------------------------------------------------------------------------------- /deps/libcurl/libcurl.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libcurl/libcurl.gyp -------------------------------------------------------------------------------- /deps/libexpat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libexpat.sh -------------------------------------------------------------------------------- /deps/libexpat/expat/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libexpat/expat/AUTHORS -------------------------------------------------------------------------------- /deps/libexpat/expat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libexpat/expat/COPYING -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libexpat/expat/lib/ascii.h -------------------------------------------------------------------------------- /deps/libexpat/expat/lib/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libexpat/expat/lib/expat.h -------------------------------------------------------------------------------- /deps/libexpat/libexpat.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libexpat/libexpat.gyp -------------------------------------------------------------------------------- /deps/libgdal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal.sh -------------------------------------------------------------------------------- /deps/libgdal/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/common.gypi -------------------------------------------------------------------------------- /deps/libgdal/gdal/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/.clang-format -------------------------------------------------------------------------------- /deps/libgdal/gdal/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/.editorconfig -------------------------------------------------------------------------------- /deps/libgdal/gdal/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/.flake8 -------------------------------------------------------------------------------- /deps/libgdal/gdal/.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/.isort.cfg -------------------------------------------------------------------------------- /deps/libgdal/gdal/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/.travis.yml -------------------------------------------------------------------------------- /deps/libgdal/gdal/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/BUILDING.md -------------------------------------------------------------------------------- /deps/libgdal/gdal/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/CITATION -------------------------------------------------------------------------------- /deps/libgdal/gdal/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/CITATION.cff -------------------------------------------------------------------------------- /deps/libgdal/gdal/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/GOVERNANCE.md -------------------------------------------------------------------------------- /deps/libgdal/gdal/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/LICENSE.TXT -------------------------------------------------------------------------------- /deps/libgdal/gdal/NEWS.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/NEWS.template -------------------------------------------------------------------------------- /deps/libgdal/gdal/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/SECURITY.md -------------------------------------------------------------------------------- /deps/libgdal/gdal/VERSION: -------------------------------------------------------------------------------- 1 | 3.12.0 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/los.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/alg/los.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/alg/zonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/alg/zonal.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/apps/gdal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/apps/gdal.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/cmake/helpers/CheckDependentLibrariesKakadu.cmake: -------------------------------------------------------------------------------- 1 | gdal_check_package(KDU "Enable KAKADU" CAN_DISABLE) 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/ecw/driver_declaration.cmake: -------------------------------------------------------------------------------- 1 | gdal_dependent_format(ecw "ERDAS JPEG2000 (.jp2)" "GDAL_USE_ECW") 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/grib/data/grib2_table_versions.csv: -------------------------------------------------------------------------------- 1 | component,version 2 | wmo,v34 3 | degrib,2.25 4 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/msg/PublicDecompWT_all.cpp: -------------------------------------------------------------------------------- 1 | #include "PublicDecompWT_all.h" 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/frmts/pcraster/libcsf/AUTHORS: -------------------------------------------------------------------------------- 1 | PCRaster Research and Development team, Utrecht University 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/gcore/gdal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/gcore/gdal.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gdal.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/gdal.cmake -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/gnm/gnm.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/gnm/gnm_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/gnm/gnm_api.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/data/epsg.wkt: -------------------------------------------------------------------------------- 1 | include cubewerx_extra.wkt 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/file.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/ogr/file.lst -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/ogr/ogr_api.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/ogr/ogr_p.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_swq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/ogr/ogr_swq.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogr_wkb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/ogr/ogr_wkb.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/ogr/ogrct.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/ogrsf_frmts/oci/driver_declaration.cmake: -------------------------------------------------------------------------------- 1 | ogr_dependent_driver(oci "Oracle OCI" "GDAL_USE_ORACLE") 2 | -------------------------------------------------------------------------------- /deps/libgdal/gdal/ogr/swq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/ogr/swq.cpp -------------------------------------------------------------------------------- /deps/libgdal/gdal/port/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/gdal/port/utf8.h -------------------------------------------------------------------------------- /deps/libgdal/gdal/third_party/fast_float/AUTHORS: -------------------------------------------------------------------------------- 1 | Daniel Lemire 2 | João Paulo Magalhaes 3 | -------------------------------------------------------------------------------- /deps/libgdal/libgdal.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgdal/libgdal.gyp -------------------------------------------------------------------------------- /deps/libgeos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos.sh -------------------------------------------------------------------------------- /deps/libgeos/geos/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos/geos/AUTHORS -------------------------------------------------------------------------------- /deps/libgeos/geos/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos/geos/COPYING -------------------------------------------------------------------------------- /deps/libgeos/geos/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos/geos/INSTALL.md -------------------------------------------------------------------------------- /deps/libgeos/geos/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos/geos/NEWS.md -------------------------------------------------------------------------------- /deps/libgeos/geos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos/geos/README.md -------------------------------------------------------------------------------- /deps/libgeos/geos/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos/geos/Version.txt -------------------------------------------------------------------------------- /deps/libgeos/geos/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos/geos/release.md -------------------------------------------------------------------------------- /deps/libgeos/include/geos_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos/include/geos_c.h -------------------------------------------------------------------------------- /deps/libgeos/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos/include/version.h -------------------------------------------------------------------------------- /deps/libgeos/libgeos.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libgeos/libgeos.gyp -------------------------------------------------------------------------------- /deps/libhdf5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5.sh -------------------------------------------------------------------------------- /deps/libhdf5/H5pubconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/H5pubconf.h -------------------------------------------------------------------------------- /deps/libhdf5/Windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/Windows.md -------------------------------------------------------------------------------- /deps/libhdf5/darwin-H5pubconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/darwin-H5pubconf.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/.autom4te.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/.autom4te.cfg -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/.clang-format -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/.gitignore -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/COPYING -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/Makefile.am -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/Makefile.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/Makefile.dist -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/Makefile.in -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/README.md -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/SECURITY.md -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/aclocal.m4 -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/acsite.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/acsite.m4 -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/autogen.sh -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/README.md -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/buildhdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/buildhdf5 -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/checkapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/checkapi -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/cmakehdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/cmakehdf5 -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/compile -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/depcomp -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/genparser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/genparser -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/h5cc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/h5cc.in -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/h5vers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/h5vers -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/iostats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/iostats -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/ltmain.sh -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/make_err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/make_err -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/make_vers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/make_vers -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/makehelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/makehelp -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/missing -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/release -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/trace -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/bin/warnhist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/bin/warnhist -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/apple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/config/apple -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/clang-warnings/no-developer-general: -------------------------------------------------------------------------------- 1 | -Wno-missing-noreturn 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/cmake/PkgInfo.in: -------------------------------------------------------------------------------- 1 | FMWK???? 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/config/cygwin -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/4.9: -------------------------------------------------------------------------------- 1 | -Wdate-time 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/5: -------------------------------------------------------------------------------- 1 | -Warray-bounds=2 2 | -Wc99-c11-compat 3 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/9: -------------------------------------------------------------------------------- 1 | -Wattribute-alias=2 2 | -Wmissing-profile 3 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/9.3: -------------------------------------------------------------------------------- 1 | -Wc11-c2x-compat 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/cxx-4.9: -------------------------------------------------------------------------------- 1 | -Wdate-time 2 | -Wopenmp-simd 3 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/cxx-5: -------------------------------------------------------------------------------- 1 | -Warray-bounds=2 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/developer-10: -------------------------------------------------------------------------------- 1 | # New warning 2 | -Warith-conversion 3 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/developer-7: -------------------------------------------------------------------------------- 1 | -Wstringop-overflow=2 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/error-7: -------------------------------------------------------------------------------- 1 | -Werror=restrict 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/gfort-6: -------------------------------------------------------------------------------- 1 | -Winteger-division 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/gfort-8: -------------------------------------------------------------------------------- 1 | -Wfrontend-loop-interchange 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/gnu-warnings/gfort-developer-5: -------------------------------------------------------------------------------- 1 | -Wuse-without-only 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/classic/18: -------------------------------------------------------------------------------- 1 | -Wic-pointer 2 | -Wsign-compare 3 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/classic/developer-general: -------------------------------------------------------------------------------- 1 | -Wreorder 2 | -Wport 3 | -Wstrict-aliasing 4 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/classic/general: -------------------------------------------------------------------------------- 1 | -Wall 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/classic/ifort-general: -------------------------------------------------------------------------------- 1 | -warn all 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/classic/win-developer-general: -------------------------------------------------------------------------------- 1 | /Wport 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/classic/win-general: -------------------------------------------------------------------------------- 1 | /Wall 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/classic/win-ifort-general: -------------------------------------------------------------------------------- 1 | /warn:all 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/oneapi/developer-general: -------------------------------------------------------------------------------- 1 | -Wreorder 2 | -Wstrict-aliasing 3 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/oneapi/general: -------------------------------------------------------------------------------- 1 | -Wall 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/oneapi/ifort-general: -------------------------------------------------------------------------------- 1 | -warn all 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/oneapi/win-developer-general: -------------------------------------------------------------------------------- 1 | /Wreorder 2 | /Wstrict-aliasing 3 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/oneapi/win-general: -------------------------------------------------------------------------------- 1 | /Wall 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/intel-warnings/oneapi/win-ifort-general: -------------------------------------------------------------------------------- 1 | /warn:all 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/config/netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/config/netbsd -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/configure -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/configure.ac -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/hl/src/H5DO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/hl/src/H5DO.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/hl/src/H5DS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/hl/src/H5DS.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/hl/src/H5IM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/hl/src/H5IM.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/hl/src/H5LD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/hl/src/H5LD.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/hl/src/H5LT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/hl/src/H5LT.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/hl/src/H5PT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/hl/src/H5PT.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/hl/src/H5TB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/hl/src/H5TB.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/hl/tools/h5watch/testfiles/w-err-dset1.err: -------------------------------------------------------------------------------- 1 | h5watch error: no dataset specified 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/hl/tools/h5watch/testfiles/w-err-dset2.err: -------------------------------------------------------------------------------- 1 | h5watch error: unable to open dataset "/group/DSET_CMPD" 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/hl/tools/h5watch/testfiles/w-err-file.err: -------------------------------------------------------------------------------- 1 | h5watch error: unable to open file "../WATCH.h5/DSET_CMPD" 2 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/java/examples/testfiles/examples.groups.H5Ex_G_Create.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/java/examples/testfiles/examples.intro.H5_CreateAttribute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/java/examples/testfiles/examples.intro.H5_CreateDataset.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/java/examples/testfiles/examples.intro.H5_CreateFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/java/examples/testfiles/examples.intro.H5_CreateGroup.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/java/examples/testfiles/examples.intro.H5_CreateGroupAbsoluteRelative.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/java/examples/testfiles/examples.intro.H5_CreateGroupDataset.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/java/examples/testfiles/examples.intro.H5_ReadWrite.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/m4/libtool.m4 -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/m4/ltsugar.m4 -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5A.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5AC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5AC.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5ACdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5ACdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5ACpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5ACpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Aint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Aint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Apkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Apkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Atest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Atest.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5B.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5B.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5B2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5B2.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5B2dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5B2dbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5B2hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5B2hdr.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5B2int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5B2int.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5B2pkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5B2pkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Bdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Bdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Bpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Bpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5C.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5CS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5CS.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5CX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5CX.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Cdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Cdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Cint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Cint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Clog.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Clog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Clog.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Cmpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Cmpio.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Cpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Cpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ctag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ctag.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ctest.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5D.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ddbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ddbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Defl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Defl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Dfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Dfill.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Dint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Dint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Dio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Dio.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Dmpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Dmpio.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Dnone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Dnone.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Doh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Doh.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Dpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Dpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Dtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Dtest.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5E.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5E.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5EA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5EA.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5EAdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5EAdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5EAhdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5EAhdr.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5EAint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5EAint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5EApkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5EApkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5ES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5ES.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5ESint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5ESint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5ESpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5ESpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Einit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Einit.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Eint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Eint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Epkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Epkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Eterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Eterm.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5F.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5F.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FA.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FAdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FAdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FAhdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FAhdr.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FAint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FAint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FApkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FApkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FD.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FDint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FDint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FDlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FDlog.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FDlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FDlog.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FDmpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FDmpi.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FDmpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FDmpi.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FDpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FDpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FL.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FO.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FS.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FSdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FSdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FSint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FSint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5FSpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5FSpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Fcwfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Fcwfs.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Fdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Fdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Fefc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Fefc.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ffake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ffake.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Fint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Fint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Fio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Fio.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Fmpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Fmpi.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Fpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Fpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ftest.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5G.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5G.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Gent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Gent.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Gint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Gint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Glink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Glink.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Gloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Gloc.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Gname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Gname.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Gnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Gnode.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Gobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Gobj.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Goh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Goh.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Gpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Gpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Groot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Groot.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Gstab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Gstab.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Gtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Gtest.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HF.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HFdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HFdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HFhdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HFhdr.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HFman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HFman.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HFpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HFpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HG.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HGdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HGdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HGpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HGpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HL.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HLdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HLdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HLint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HLint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5HLpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5HLpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5I.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5I.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Idbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Idbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Iint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Iint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ipkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ipkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Itest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Itest.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5L.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5L.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Lint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Lint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Lpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Lpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5M.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5MF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5MF.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5MFdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5MFdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5MFpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5MFpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5MM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5MM.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Mpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Mpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5O.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5O.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Oattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Oattr.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ocont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ocont.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ocopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ocopy.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Odbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Odbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Oefl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Oefl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ofill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ofill.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Oint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Oint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Olink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Olink.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Oname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Oname.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Onull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Onull.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Opkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Opkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ostab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ostab.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Otest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Otest.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5P.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5P.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5PB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5PB.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5PBpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5PBpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5PL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5PL.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5PLint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5PLint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5PLpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5PLpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pacpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pacpl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pdapl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pdapl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pdcpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pdcpl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pdxpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pdxpl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pfapl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pfapl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pfcpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pfcpl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pfmpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pfmpl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pgcpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pgcpl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Plapl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Plapl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Plcpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Plcpl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pmapl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pmapl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pmcpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pmcpl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Pocpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Pocpl.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ppkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ppkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Ptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Ptest.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5R.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5RS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5RS.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Rint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Rpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Rpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5S.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5S.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5SL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5SL.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5SM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5SM.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5SMpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5SMpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Sall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Sall.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Sdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Sdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Smpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Smpio.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Snone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Snone.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Spkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Spkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Stest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Stest.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5T.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5T.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5TS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5TS.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Tbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Tbit.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Tconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Tconv.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Tcset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Tcset.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Tdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Tdbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Tenum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Tenum.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Toh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Toh.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Tpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Tpad.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Tpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Tpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Tref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Tref.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Tvlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Tvlen.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5UC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5UC.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5VL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5VL.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5VLint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5VLint.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5VLpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5VLpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5VM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5VM.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5WB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5WB.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Z.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Znbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Znbit.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Zpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Zpkg.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5Zszip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5Zszip.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5dbg.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5err.txt -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5mpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5mpi.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5timer.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/H5trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/H5trace.c -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/hdf5.h -------------------------------------------------------------------------------- /deps/libhdf5/hdf5/src/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/hdf5/src/uthash.h -------------------------------------------------------------------------------- /deps/libhdf5/libhdf5.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/libhdf5.gyp -------------------------------------------------------------------------------- /deps/libhdf5/linux-H5pubconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libhdf5/linux-H5pubconf.h -------------------------------------------------------------------------------- /deps/libnetcdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf.sh -------------------------------------------------------------------------------- /deps/libnetcdf/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/config.h -------------------------------------------------------------------------------- /deps/libnetcdf/libnetcdf.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/libnetcdf.gyp -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/COPYRIGHT -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/NUG/.gitignore: -------------------------------------------------------------------------------- 1 | nug.tag 2 | -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/PostInstall.cmake: -------------------------------------------------------------------------------- 1 | EXECUTE_PROCESS(COMMAND sh -c "${CMAKE_BINARY_DIR}/postinstall.sh -t cmake") -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/README.md -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf -ivf 4 | -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/compile -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/config.h -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/configure -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/depcomp -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/docs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/dods.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/dods.m4 -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/ltmain.sh -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/mclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/mclean -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/missing -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/ncgen/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/ncgen/env -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/nczarr_test/ref_ut_map_create.cdl: -------------------------------------------------------------------------------- 1 | [0] /.nczarr : (0) || 2 | -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/nczarr_test/ref_ut_map_readdata_nz4.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/nczarr_test/ref_ut_mapapi_create.cdl: -------------------------------------------------------------------------------- 1 | [0] /.nczarr : (0) || 2 | -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/oc2/dap.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/oc2/dap.y -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/oc2/oc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/oc2/oc.c -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/oc2/oc.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/oc2/oc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/oc2/oc.h -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/oc2/ocx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/oc2/ocx.h -------------------------------------------------------------------------------- /deps/libnetcdf/netcdf/wjna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libnetcdf/netcdf/wjna -------------------------------------------------------------------------------- /deps/libopenjpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libopenjpeg.sh -------------------------------------------------------------------------------- /deps/libopenjpeg/openjpeg/src/bin/wx/OPJViewer/source/build.h: -------------------------------------------------------------------------------- 1 | wxT("491") 2 | -------------------------------------------------------------------------------- /deps/libopenjpeg/openjpeg/wrapping/java/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # 2 | add_subdirectory(openjp2) 3 | -------------------------------------------------------------------------------- /deps/libopenjpeg/opj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libopenjpeg/opj_config.h -------------------------------------------------------------------------------- /deps/libproj.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj.sh -------------------------------------------------------------------------------- /deps/libproj/libproj.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/libproj.gyp -------------------------------------------------------------------------------- /deps/libproj/proj/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/AUTHORS.md -------------------------------------------------------------------------------- /deps/libproj/proj/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/CITATION -------------------------------------------------------------------------------- /deps/libproj/proj/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/CITATION.cff -------------------------------------------------------------------------------- /deps/libproj/proj/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/COPYING -------------------------------------------------------------------------------- /deps/libproj/proj/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/NEWS.md -------------------------------------------------------------------------------- /deps/libproj/proj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/README.md -------------------------------------------------------------------------------- /deps/libproj/proj/data/CH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/CH -------------------------------------------------------------------------------- /deps/libproj/proj/data/GL27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/GL27 -------------------------------------------------------------------------------- /deps/libproj/proj/data/ITRF2000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/ITRF2000 -------------------------------------------------------------------------------- /deps/libproj/proj/data/ITRF2008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/ITRF2008 -------------------------------------------------------------------------------- /deps/libproj/proj/data/ITRF2014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/ITRF2014 -------------------------------------------------------------------------------- /deps/libproj/proj/data/ITRF2020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/ITRF2020 -------------------------------------------------------------------------------- /deps/libproj/proj/data/nad.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/nad.lst -------------------------------------------------------------------------------- /deps/libproj/proj/data/nad27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/nad27 -------------------------------------------------------------------------------- /deps/libproj/proj/data/nad83: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/nad83 -------------------------------------------------------------------------------- /deps/libproj/proj/data/proj.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/proj.db -------------------------------------------------------------------------------- /deps/libproj/proj/data/world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/data/world -------------------------------------------------------------------------------- /deps/libproj/proj/src/auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/auth.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/ctx.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/deriv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/deriv.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/ellps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/ellps.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/fwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/fwd.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/gauss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/gauss.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/grids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/grids.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/grids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/grids.hpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/init.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/inv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/inv.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/list.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/log.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/mlfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/mlfn.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/msfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/msfn.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/mutex.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/param.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/phi2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/phi2.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/pj_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/pj_list.h -------------------------------------------------------------------------------- /deps/libproj/proj/src/proj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/proj.h -------------------------------------------------------------------------------- /deps/libproj/proj/src/qsfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/qsfn.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/tsfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/tsfn.cpp -------------------------------------------------------------------------------- /deps/libproj/proj/src/units.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libproj/proj/src/units.cpp -------------------------------------------------------------------------------- /deps/libsqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libsqlite.sh -------------------------------------------------------------------------------- /deps/libsqlite/libsqlite.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libsqlite/libsqlite.gyp -------------------------------------------------------------------------------- /deps/libsqlite/sqlite/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libsqlite/sqlite/shell.c -------------------------------------------------------------------------------- /deps/libsqlite/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libsqlite/sqlite/sqlite3.c -------------------------------------------------------------------------------- /deps/libsqlite/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/libsqlite/sqlite/sqlite3.h -------------------------------------------------------------------------------- /deps/muparser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/muparser.sh -------------------------------------------------------------------------------- /deps/muparser/muparser.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/muparser/muparser.gyp -------------------------------------------------------------------------------- /deps/muparser/muparser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/deps/muparser/muparser/LICENSE -------------------------------------------------------------------------------- /documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/documentation.yml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /examples/electron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/examples/electron/README.md -------------------------------------------------------------------------------- /examples/electron/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/examples/electron/index.html -------------------------------------------------------------------------------- /examples/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/examples/electron/main.js -------------------------------------------------------------------------------- /examples/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/examples/electron/package.json -------------------------------------------------------------------------------- /examples/electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/examples/electron/preload.js -------------------------------------------------------------------------------- /examples/electron/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/examples/electron/renderer.js -------------------------------------------------------------------------------- /examples/electron/styles.css: -------------------------------------------------------------------------------- 1 | /* styles.css */ 2 | -------------------------------------------------------------------------------- /examples/gdalinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/examples/gdalinfo.js -------------------------------------------------------------------------------- /examples/ogrinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/examples/ogrinfo.js -------------------------------------------------------------------------------- /examples/serve-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/examples/serve-async.js -------------------------------------------------------------------------------- /examples/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/examples/serve.js -------------------------------------------------------------------------------- /gdal-async-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/gdal-async-logo.svg -------------------------------------------------------------------------------- /gdal-async.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/gdal-async.md -------------------------------------------------------------------------------- /include/node_gdal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/include/node_gdal.h -------------------------------------------------------------------------------- /lib/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/calc.js -------------------------------------------------------------------------------- /lib/default_iterators.gpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/default_iterators.gpp -------------------------------------------------------------------------------- /lib/default_iterators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/default_iterators.js -------------------------------------------------------------------------------- /lib/envelope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/envelope.js -------------------------------------------------------------------------------- /lib/envelope_3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/envelope_3d.js -------------------------------------------------------------------------------- /lib/gdal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/gdal.js -------------------------------------------------------------------------------- /lib/iterators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/iterators.js -------------------------------------------------------------------------------- /lib/multiplexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/multiplexer.js -------------------------------------------------------------------------------- /lib/readable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/readable.js -------------------------------------------------------------------------------- /lib/wrapVRT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/wrapVRT.js -------------------------------------------------------------------------------- /lib/writable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/lib/writable.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/package.json -------------------------------------------------------------------------------- /scripts/container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/scripts/container.sh -------------------------------------------------------------------------------- /scripts/documentation-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/scripts/documentation-async.js -------------------------------------------------------------------------------- /scripts/externalCrossLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/scripts/externalCrossLinks.js -------------------------------------------------------------------------------- /scripts/gdal-doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/scripts/gdal-doc.css -------------------------------------------------------------------------------- /scripts/gdal-trunk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/scripts/gdal-trunk.sh -------------------------------------------------------------------------------- /scripts/motd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/scripts/motd.js -------------------------------------------------------------------------------- /scripts/publish-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/scripts/publish-docs.js -------------------------------------------------------------------------------- /scripts/publish-packages.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/scripts/publish-packages.mjs -------------------------------------------------------------------------------- /src/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/async.cpp -------------------------------------------------------------------------------- /src/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/async.hpp -------------------------------------------------------------------------------- /src/collections/colortable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/collections/colortable.cpp -------------------------------------------------------------------------------- /src/collections/colortable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/collections/colortable.hpp -------------------------------------------------------------------------------- /src/gdal_algebra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_algebra.cpp -------------------------------------------------------------------------------- /src/gdal_algebra.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_algebra.hpp -------------------------------------------------------------------------------- /src/gdal_algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_algorithms.cpp -------------------------------------------------------------------------------- /src/gdal_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_algorithms.hpp -------------------------------------------------------------------------------- /src/gdal_attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_attribute.cpp -------------------------------------------------------------------------------- /src/gdal_attribute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_attribute.hpp -------------------------------------------------------------------------------- /src/gdal_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_common.cpp -------------------------------------------------------------------------------- /src/gdal_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_common.hpp -------------------------------------------------------------------------------- /src/gdal_dataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_dataset.cpp -------------------------------------------------------------------------------- /src/gdal_dataset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_dataset.hpp -------------------------------------------------------------------------------- /src/gdal_dimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_dimension.cpp -------------------------------------------------------------------------------- /src/gdal_dimension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_dimension.hpp -------------------------------------------------------------------------------- /src/gdal_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_driver.cpp -------------------------------------------------------------------------------- /src/gdal_driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_driver.hpp -------------------------------------------------------------------------------- /src/gdal_feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_feature.cpp -------------------------------------------------------------------------------- /src/gdal_feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_feature.hpp -------------------------------------------------------------------------------- /src/gdal_feature_defn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_feature_defn.cpp -------------------------------------------------------------------------------- /src/gdal_feature_defn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_feature_defn.hpp -------------------------------------------------------------------------------- /src/gdal_field_defn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_field_defn.cpp -------------------------------------------------------------------------------- /src/gdal_field_defn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_field_defn.hpp -------------------------------------------------------------------------------- /src/gdal_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_fs.cpp -------------------------------------------------------------------------------- /src/gdal_fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_fs.hpp -------------------------------------------------------------------------------- /src/gdal_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_group.cpp -------------------------------------------------------------------------------- /src/gdal_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_group.hpp -------------------------------------------------------------------------------- /src/gdal_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_layer.cpp -------------------------------------------------------------------------------- /src/gdal_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_layer.hpp -------------------------------------------------------------------------------- /src/gdal_majorobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_majorobject.cpp -------------------------------------------------------------------------------- /src/gdal_majorobject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_majorobject.hpp -------------------------------------------------------------------------------- /src/gdal_mdarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_mdarray.cpp -------------------------------------------------------------------------------- /src/gdal_mdarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_mdarray.hpp -------------------------------------------------------------------------------- /src/gdal_memfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_memfile.cpp -------------------------------------------------------------------------------- /src/gdal_memfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_memfile.hpp -------------------------------------------------------------------------------- /src/gdal_rasterband.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_rasterband.cpp -------------------------------------------------------------------------------- /src/gdal_rasterband.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_rasterband.hpp -------------------------------------------------------------------------------- /src/gdal_spatial_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_spatial_reference.cpp -------------------------------------------------------------------------------- /src/gdal_spatial_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_spatial_reference.hpp -------------------------------------------------------------------------------- /src/gdal_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_utils.cpp -------------------------------------------------------------------------------- /src/gdal_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_utils.hpp -------------------------------------------------------------------------------- /src/gdal_warper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_warper.cpp -------------------------------------------------------------------------------- /src/gdal_warper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/gdal_warper.hpp -------------------------------------------------------------------------------- /src/geometry/gdal_curvebase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/geometry/gdal_curvebase.hpp -------------------------------------------------------------------------------- /src/geometry/gdal_geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/geometry/gdal_geometry.cpp -------------------------------------------------------------------------------- /src/geometry/gdal_geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/geometry/gdal_geometry.hpp -------------------------------------------------------------------------------- /src/geometry/gdal_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/geometry/gdal_point.cpp -------------------------------------------------------------------------------- /src/geometry/gdal_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/geometry/gdal_point.hpp -------------------------------------------------------------------------------- /src/geometry/gdal_polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/geometry/gdal_polygon.cpp -------------------------------------------------------------------------------- /src/geometry/gdal_polygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/geometry/gdal_polygon.hpp -------------------------------------------------------------------------------- /src/nan-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/nan-wrapper.h -------------------------------------------------------------------------------- /src/node_gdal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/node_gdal.cpp -------------------------------------------------------------------------------- /src/utils/field_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/field_types.hpp -------------------------------------------------------------------------------- /src/utils/number_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/number_list.cpp -------------------------------------------------------------------------------- /src/utils/number_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/number_list.hpp -------------------------------------------------------------------------------- /src/utils/ptr_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/ptr_manager.cpp -------------------------------------------------------------------------------- /src/utils/ptr_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/ptr_manager.hpp -------------------------------------------------------------------------------- /src/utils/string_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/string_list.cpp -------------------------------------------------------------------------------- /src/utils/string_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/string_list.hpp -------------------------------------------------------------------------------- /src/utils/typed_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/typed_array.cpp -------------------------------------------------------------------------------- /src/utils/typed_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/typed_array.hpp -------------------------------------------------------------------------------- /src/utils/warp_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/warp_options.cpp -------------------------------------------------------------------------------- /src/utils/warp_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/src/utils/warp_options.hpp -------------------------------------------------------------------------------- /test/_common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/_common.ts -------------------------------------------------------------------------------- /test/_hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/_hooks.ts -------------------------------------------------------------------------------- /test/api_algebra.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_algebra.test.ts -------------------------------------------------------------------------------- /test/api_algorithms.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_algorithms.test.ts -------------------------------------------------------------------------------- /test/api_asyncIterators.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_asyncIterators.test.ts -------------------------------------------------------------------------------- /test/api_base.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_base.test.ts -------------------------------------------------------------------------------- /test/api_circularstring.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_circularstring.test.ts -------------------------------------------------------------------------------- /test/api_classes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_classes.test.ts -------------------------------------------------------------------------------- /test/api_curve.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_curve.test.ts -------------------------------------------------------------------------------- /test/api_dataset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_dataset.test.ts -------------------------------------------------------------------------------- /test/api_drivers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_drivers.test.ts -------------------------------------------------------------------------------- /test/api_envelope.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_envelope.test.ts -------------------------------------------------------------------------------- /test/api_envelope3d.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_envelope3d.test.ts -------------------------------------------------------------------------------- /test/api_feature.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_feature.test.ts -------------------------------------------------------------------------------- /test/api_fs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_fs.test.ts -------------------------------------------------------------------------------- /test/api_geometry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_geometry.test.ts -------------------------------------------------------------------------------- /test/api_layer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_layer.test.ts -------------------------------------------------------------------------------- /test/api_layerAsync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_layerAsync.test.ts -------------------------------------------------------------------------------- /test/api_linearring.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_linearring.test.ts -------------------------------------------------------------------------------- /test/api_linestring.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_linestring.test.ts -------------------------------------------------------------------------------- /test/api_multidim.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_multidim.test.ts -------------------------------------------------------------------------------- /test/api_point.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_point.test.ts -------------------------------------------------------------------------------- /test/api_polygon.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_polygon.test.ts -------------------------------------------------------------------------------- /test/api_rasterband.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_rasterband.test.ts -------------------------------------------------------------------------------- /test/api_streams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_streams.test.ts -------------------------------------------------------------------------------- /test/api_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_utils.test.ts -------------------------------------------------------------------------------- /test/api_warp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_warp.test.ts -------------------------------------------------------------------------------- /test/api_warpAsync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_warpAsync.test.ts -------------------------------------------------------------------------------- /test/api_wrapVRT.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/api_wrapVRT.test.ts -------------------------------------------------------------------------------- /test/artifacts/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test/data/12_791_1476.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/12_791_1476.jpg -------------------------------------------------------------------------------- /test/data/AROME_D2m_10.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/AROME_D2m_10.tiff -------------------------------------------------------------------------------- /test/data/AROME_T2m_10.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/AROME_T2m_10.tiff -------------------------------------------------------------------------------- /test/data/Ain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/Ain.json -------------------------------------------------------------------------------- /test/data/CM13ct.pgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/CM13ct.pgw -------------------------------------------------------------------------------- /test/data/CM13ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/CM13ct.png -------------------------------------------------------------------------------- /test/data/a39se10.jgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/a39se10.jgw -------------------------------------------------------------------------------- /test/data/a39se10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/a39se10.jpg -------------------------------------------------------------------------------- /test/data/arome_sp3.grib2.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/arome_sp3.grib2.gz -------------------------------------------------------------------------------- /test/data/blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/blank.jpg -------------------------------------------------------------------------------- /test/data/color_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/color_file.txt -------------------------------------------------------------------------------- /test/data/cutline.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/cutline.dbf -------------------------------------------------------------------------------- /test/data/cutline.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/cutline.prj -------------------------------------------------------------------------------- /test/data/cutline.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/cutline.shp -------------------------------------------------------------------------------- /test/data/cutline.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/cutline.shx -------------------------------------------------------------------------------- /test/data/dem_azimuth50_pa.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/dem_azimuth50_pa.img -------------------------------------------------------------------------------- /test/data/gfs.t00z.alnsf.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/gfs.t00z.alnsf.nc -------------------------------------------------------------------------------- /test/data/h5ex_d_gzip.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/h5ex_d_gzip.h5 -------------------------------------------------------------------------------- /test/data/h5ex_t_array.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/h5ex_t_array.h5 -------------------------------------------------------------------------------- /test/data/huge-sparse.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/huge-sparse.tiff -------------------------------------------------------------------------------- /test/data/invalid: -------------------------------------------------------------------------------- 1 | This is not a tiff. -------------------------------------------------------------------------------- /test/data/makeValid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/makeValid.json -------------------------------------------------------------------------------- /test/data/mitab/EXTRACT_POLYGON.mid: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/data/multiband.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/multiband.tif -------------------------------------------------------------------------------- /test/data/natural_earth.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/natural_earth.tif -------------------------------------------------------------------------------- /test/data/park.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/park.geo.json -------------------------------------------------------------------------------- /test/data/sample.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/sample.tif -------------------------------------------------------------------------------- /test/data/sample.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/sample.vrt -------------------------------------------------------------------------------- /test/data/sample_bigtiff.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/sample_bigtiff.tif -------------------------------------------------------------------------------- /test/data/sample_deflate.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/sample_deflate.tif -------------------------------------------------------------------------------- /test/data/sample_jpeg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/sample_jpeg.tif -------------------------------------------------------------------------------- /test/data/sample_warped.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/sample_warped.tif -------------------------------------------------------------------------------- /test/data/shp/sample.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample.dbf -------------------------------------------------------------------------------- /test/data/shp/sample.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample.prj -------------------------------------------------------------------------------- /test/data/shp/sample.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample.shp -------------------------------------------------------------------------------- /test/data/shp/sample.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample.shx -------------------------------------------------------------------------------- /test/data/shp/sample_int64.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample_int64.dbf -------------------------------------------------------------------------------- /test/data/shp/sample_int64.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample_int64.prj -------------------------------------------------------------------------------- /test/data/shp/sample_int64.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample_int64.shp -------------------------------------------------------------------------------- /test/data/shp/sample_int64.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample_int64.shx -------------------------------------------------------------------------------- /test/data/shp/sample_null.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample_null.dbf -------------------------------------------------------------------------------- /test/data/shp/sample_null.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample_null.prj -------------------------------------------------------------------------------- /test/data/shp/sample_null.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample_null.shp -------------------------------------------------------------------------------- /test/data/shp/sample_null.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/shp/sample_null.shx -------------------------------------------------------------------------------- /test/data/srs/sample.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/srs/sample.gml -------------------------------------------------------------------------------- /test/data/temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test/data/truncated.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/truncated.tiff -------------------------------------------------------------------------------- /test/data/unsupported-srs.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/unsupported-srs.tif -------------------------------------------------------------------------------- /test/data/vsigzip/hp40ne.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/data/vsigzip/hp40ne.gz -------------------------------------------------------------------------------- /test/object_lifetime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/object_lifetime.test.ts -------------------------------------------------------------------------------- /test/open.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open.test.ts -------------------------------------------------------------------------------- /test/open_bigtiff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_bigtiff.test.ts -------------------------------------------------------------------------------- /test/open_deflate_tiff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_deflate_tiff.test.ts -------------------------------------------------------------------------------- /test/open_geojson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_geojson.test.ts -------------------------------------------------------------------------------- /test/open_gpx.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_gpx.test.ts -------------------------------------------------------------------------------- /test/open_grib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_grib.test.ts -------------------------------------------------------------------------------- /test/open_gtiff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_gtiff.test.ts -------------------------------------------------------------------------------- /test/open_hdf5.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_hdf5.test.ts -------------------------------------------------------------------------------- /test/open_hfa.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_hfa.test.ts -------------------------------------------------------------------------------- /test/open_jpeg2000.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_jpeg2000.test.ts -------------------------------------------------------------------------------- /test/open_jpeg_tiff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_jpeg_tiff.test.ts -------------------------------------------------------------------------------- /test/open_jpg.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_jpg.test.ts -------------------------------------------------------------------------------- /test/open_jsonfg.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_jsonfg.test.ts -------------------------------------------------------------------------------- /test/open_mitab.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_mitab.test.ts -------------------------------------------------------------------------------- /test/open_netcdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_netcdf.test.ts -------------------------------------------------------------------------------- /test/open_openfilegdb.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_openfilegdb.test.ts -------------------------------------------------------------------------------- /test/open_pmtiles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_pmtiles.test.ts -------------------------------------------------------------------------------- /test/open_png.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_png.test.ts -------------------------------------------------------------------------------- /test/open_shp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_shp.test.ts -------------------------------------------------------------------------------- /test/open_vrt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_vrt.test.ts -------------------------------------------------------------------------------- /test/open_vsicurl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_vsicurl.test.ts -------------------------------------------------------------------------------- /test/open_vsigzip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_vsigzip.test.ts -------------------------------------------------------------------------------- /test/open_vsimem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_vsimem.test.ts -------------------------------------------------------------------------------- /test/open_vsis3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_vsis3.test.ts -------------------------------------------------------------------------------- /test/open_wcs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_wcs.test.ts -------------------------------------------------------------------------------- /test/open_wms.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_wms.test.ts -------------------------------------------------------------------------------- /test/open_wmts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/open_wmts.test.ts -------------------------------------------------------------------------------- /test/platforms/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/platforms/entrypoint.sh -------------------------------------------------------------------------------- /test/stress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/stress.js -------------------------------------------------------------------------------- /test/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/tsconfig.test.json -------------------------------------------------------------------------------- /test/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/test/utils/file.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yatag.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmomtchev/node-gdal-async/HEAD/yatag.config.js --------------------------------------------------------------------------------