├── .Rbuildignore ├── .gitattributes ├── .gitignore ├── .travis.yml ├── COPYING ├── DESCRIPTION ├── NAMESPACE ├── R ├── RcppExports.R ├── s2.R ├── s2cap.R ├── s2polygon.R └── s2regioncoverer.R ├── README.md ├── appveyor.yml ├── cleanup ├── configure ├── configure.win ├── inst └── include │ ├── Rcpp_datatypes.h │ ├── base │ ├── basictypes.h │ ├── casts.h │ ├── commandlineflags.h │ ├── int128.h │ ├── integral_types.h │ ├── logging.h │ ├── macros.h │ ├── port.h │ ├── scoped_ptr.h │ ├── stl_decl.h │ ├── stl_decl_msvc.h │ ├── stl_decl_osx.h │ ├── stringprintf.h │ ├── strtoint.h │ ├── template_util.h │ └── type_traits.h │ ├── s2 │ ├── r1interval.h │ ├── s1angle.h │ ├── s1interval.h │ ├── s2.h │ ├── s2cap.h │ ├── s2cell.h │ ├── s2cellid.h │ ├── s2cellunion.h │ ├── s2edgeindex.h │ ├── s2edgeutil.h │ ├── s2latlng.h │ ├── s2latlngrect.h │ ├── s2loop.h │ ├── s2pointregion.h │ ├── s2polygon.h │ ├── s2polygonbuilder.h │ ├── s2polyline.h │ ├── s2r2rect.h │ ├── s2region.h │ ├── s2regioncoverer.h │ ├── s2regionintersection.h │ └── s2regionunion.h │ ├── strings │ ├── ascii_ctype.h │ ├── split.h │ ├── stringprintf.h │ └── strutil.h │ └── util │ ├── coding │ ├── coder.h │ └── varint.h │ ├── endian │ └── endian.h │ ├── hash │ ├── hash.h │ └── hash_jenkins_lookup2.h │ └── math │ ├── exactfloat │ └── exactfloat.h │ ├── mathlimits.h │ ├── mathutil.h │ ├── matrix3x3-inl.h │ ├── matrix3x3.h │ ├── vector2-inl.h │ ├── vector2.h │ ├── vector3-inl.h │ ├── vector3.h │ ├── vector4-inl.h │ └── vector4.h ├── man ├── S2CapFromAxisHeight.Rd ├── S2Cap_Contains.Rd ├── S2Cap_GetRectBound.Rd ├── S2Cap_area.Rd ├── S2Cell.Rd ├── S2CellIdFromPoint.Rd ├── S2CellId_ToPoint.Rd ├── S2CellId_ToString.Rd ├── S2Covering.Rd ├── S2LatLngRect.Rd ├── S2LatLngRect_area.Rd ├── S2Point_interpolate.Rd ├── S2Polygon.Rd ├── S2Polygon_Contains.Rd ├── S2Polygon_union.Rd ├── S2Polygons_area.Rd ├── S2Polygons_centroid.Rd ├── S2Polygons_intersect.Rd ├── S2Polygons_intersection.Rd ├── S2Polyline_dist.Rd └── s2-package.Rd ├── s2.Rproj ├── src ├── Makevars.in ├── Makevars.win ├── RcppExports.cpp ├── Rcpp_datatypes.cpp ├── Rcpp_s2cap.cpp ├── Rcpp_s2cell.cpp ├── Rcpp_s2latlng.cpp ├── Rcpp_s2latlngrect.cpp ├── Rcpp_s2point.cpp ├── Rcpp_s2polygon.cpp └── geometry │ ├── CMakeLists.txt │ ├── base │ ├── int128.cc │ ├── logging.cc │ ├── stringprintf.cc │ └── strtoint.cc │ ├── s1angle.cc │ ├── s1interval.cc │ ├── s2.cc │ ├── s2.pc.in │ ├── s2cap.cc │ ├── s2cell.cc │ ├── s2cellid.cc │ ├── s2cellid.pc.in │ ├── s2cellunion.cc │ ├── s2edgeindex.cc │ ├── s2edgeutil.cc │ ├── s2latlng.cc │ ├── s2latlngrect.cc │ ├── s2loop.cc │ ├── s2pointregion.cc │ ├── s2polygon.cc │ ├── s2polygonbuilder.cc │ ├── s2polyline.cc │ ├── s2r2rect.cc │ ├── s2region.cc │ ├── s2regioncoverer.cc │ ├── s2regionintersection.cc │ ├── s2regionunion.cc │ ├── strings │ ├── ascii_ctype.cc │ ├── split.cc │ ├── stringprintf.cc │ └── strutil.cc │ └── util │ ├── coding │ ├── coder.cc │ └── varint.cc │ ├── hash │ └── hash.cc │ └── math │ ├── exactfloat │ └── exactfloat.cc │ ├── mathlimits.cc │ └── mathutil.cc ├── tools ├── src_tweaks.R ├── version.c └── winlibs.R └── windows └── openssl-1.0.2d ├── include └── openssl │ ├── aes.h │ ├── applink.c │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1t.h │ ├── bio.h │ ├── blowfish.h │ ├── bn.h │ ├── buffer.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── comp.h │ ├── conf.h │ ├── conf_api.h │ ├── crypto.h │ ├── des.h │ ├── des_old.h │ ├── dh.h │ ├── dsa.h │ ├── dso.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── idea.h │ ├── krb5_asn.h │ ├── kssl.h │ ├── lhash.h │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── ocsp.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── pqueue.h │ ├── rand.h │ ├── rc2.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl23.h │ ├── ssl3.h │ ├── stack.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── txt_db.h │ ├── ui.h │ ├── ui_compat.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h └── lib ├── i386 ├── libcrypto.a └── libssl.a └── x64 ├── libcrypto.a └── libssl.a /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/COPYING -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/s2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/R/s2.R -------------------------------------------------------------------------------- /R/s2cap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/R/s2cap.R -------------------------------------------------------------------------------- /R/s2polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/R/s2polygon.R -------------------------------------------------------------------------------- /R/s2regioncoverer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/R/s2regioncoverer.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/cleanup -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/configure -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inst/include/Rcpp_datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/Rcpp_datatypes.h -------------------------------------------------------------------------------- /inst/include/base/basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/basictypes.h -------------------------------------------------------------------------------- /inst/include/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/casts.h -------------------------------------------------------------------------------- /inst/include/base/commandlineflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/commandlineflags.h -------------------------------------------------------------------------------- /inst/include/base/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/int128.h -------------------------------------------------------------------------------- /inst/include/base/integral_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/integral_types.h -------------------------------------------------------------------------------- /inst/include/base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/logging.h -------------------------------------------------------------------------------- /inst/include/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/macros.h -------------------------------------------------------------------------------- /inst/include/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/port.h -------------------------------------------------------------------------------- /inst/include/base/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/scoped_ptr.h -------------------------------------------------------------------------------- /inst/include/base/stl_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/stl_decl.h -------------------------------------------------------------------------------- /inst/include/base/stl_decl_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/stl_decl_msvc.h -------------------------------------------------------------------------------- /inst/include/base/stl_decl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/stl_decl_osx.h -------------------------------------------------------------------------------- /inst/include/base/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/stringprintf.h -------------------------------------------------------------------------------- /inst/include/base/strtoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/strtoint.h -------------------------------------------------------------------------------- /inst/include/base/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/template_util.h -------------------------------------------------------------------------------- /inst/include/base/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/base/type_traits.h -------------------------------------------------------------------------------- /inst/include/s2/r1interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/r1interval.h -------------------------------------------------------------------------------- /inst/include/s2/s1angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s1angle.h -------------------------------------------------------------------------------- /inst/include/s2/s1interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s1interval.h -------------------------------------------------------------------------------- /inst/include/s2/s2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2.h -------------------------------------------------------------------------------- /inst/include/s2/s2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2cap.h -------------------------------------------------------------------------------- /inst/include/s2/s2cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2cell.h -------------------------------------------------------------------------------- /inst/include/s2/s2cellid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2cellid.h -------------------------------------------------------------------------------- /inst/include/s2/s2cellunion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2cellunion.h -------------------------------------------------------------------------------- /inst/include/s2/s2edgeindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2edgeindex.h -------------------------------------------------------------------------------- /inst/include/s2/s2edgeutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2edgeutil.h -------------------------------------------------------------------------------- /inst/include/s2/s2latlng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2latlng.h -------------------------------------------------------------------------------- /inst/include/s2/s2latlngrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2latlngrect.h -------------------------------------------------------------------------------- /inst/include/s2/s2loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2loop.h -------------------------------------------------------------------------------- /inst/include/s2/s2pointregion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2pointregion.h -------------------------------------------------------------------------------- /inst/include/s2/s2polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2polygon.h -------------------------------------------------------------------------------- /inst/include/s2/s2polygonbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2polygonbuilder.h -------------------------------------------------------------------------------- /inst/include/s2/s2polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2polyline.h -------------------------------------------------------------------------------- /inst/include/s2/s2r2rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2r2rect.h -------------------------------------------------------------------------------- /inst/include/s2/s2region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2region.h -------------------------------------------------------------------------------- /inst/include/s2/s2regioncoverer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2regioncoverer.h -------------------------------------------------------------------------------- /inst/include/s2/s2regionintersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2regionintersection.h -------------------------------------------------------------------------------- /inst/include/s2/s2regionunion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/s2/s2regionunion.h -------------------------------------------------------------------------------- /inst/include/strings/ascii_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/strings/ascii_ctype.h -------------------------------------------------------------------------------- /inst/include/strings/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/strings/split.h -------------------------------------------------------------------------------- /inst/include/strings/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/strings/stringprintf.h -------------------------------------------------------------------------------- /inst/include/strings/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/strings/strutil.h -------------------------------------------------------------------------------- /inst/include/util/coding/coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/coding/coder.h -------------------------------------------------------------------------------- /inst/include/util/coding/varint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/coding/varint.h -------------------------------------------------------------------------------- /inst/include/util/endian/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/endian/endian.h -------------------------------------------------------------------------------- /inst/include/util/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/hash/hash.h -------------------------------------------------------------------------------- /inst/include/util/hash/hash_jenkins_lookup2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/hash/hash_jenkins_lookup2.h -------------------------------------------------------------------------------- /inst/include/util/math/exactfloat/exactfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/exactfloat/exactfloat.h -------------------------------------------------------------------------------- /inst/include/util/math/mathlimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/mathlimits.h -------------------------------------------------------------------------------- /inst/include/util/math/mathutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/mathutil.h -------------------------------------------------------------------------------- /inst/include/util/math/matrix3x3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/matrix3x3-inl.h -------------------------------------------------------------------------------- /inst/include/util/math/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/matrix3x3.h -------------------------------------------------------------------------------- /inst/include/util/math/vector2-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/vector2-inl.h -------------------------------------------------------------------------------- /inst/include/util/math/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/vector2.h -------------------------------------------------------------------------------- /inst/include/util/math/vector3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/vector3-inl.h -------------------------------------------------------------------------------- /inst/include/util/math/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/vector3.h -------------------------------------------------------------------------------- /inst/include/util/math/vector4-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/vector4-inl.h -------------------------------------------------------------------------------- /inst/include/util/math/vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/inst/include/util/math/vector4.h -------------------------------------------------------------------------------- /man/S2CapFromAxisHeight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2CapFromAxisHeight.Rd -------------------------------------------------------------------------------- /man/S2Cap_Contains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Cap_Contains.Rd -------------------------------------------------------------------------------- /man/S2Cap_GetRectBound.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Cap_GetRectBound.Rd -------------------------------------------------------------------------------- /man/S2Cap_area.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Cap_area.Rd -------------------------------------------------------------------------------- /man/S2Cell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Cell.Rd -------------------------------------------------------------------------------- /man/S2CellIdFromPoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2CellIdFromPoint.Rd -------------------------------------------------------------------------------- /man/S2CellId_ToPoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2CellId_ToPoint.Rd -------------------------------------------------------------------------------- /man/S2CellId_ToString.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2CellId_ToString.Rd -------------------------------------------------------------------------------- /man/S2Covering.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Covering.Rd -------------------------------------------------------------------------------- /man/S2LatLngRect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2LatLngRect.Rd -------------------------------------------------------------------------------- /man/S2LatLngRect_area.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2LatLngRect_area.Rd -------------------------------------------------------------------------------- /man/S2Point_interpolate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Point_interpolate.Rd -------------------------------------------------------------------------------- /man/S2Polygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Polygon.Rd -------------------------------------------------------------------------------- /man/S2Polygon_Contains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Polygon_Contains.Rd -------------------------------------------------------------------------------- /man/S2Polygon_union.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Polygon_union.Rd -------------------------------------------------------------------------------- /man/S2Polygons_area.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Polygons_area.Rd -------------------------------------------------------------------------------- /man/S2Polygons_centroid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Polygons_centroid.Rd -------------------------------------------------------------------------------- /man/S2Polygons_intersect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Polygons_intersect.Rd -------------------------------------------------------------------------------- /man/S2Polygons_intersection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Polygons_intersection.Rd -------------------------------------------------------------------------------- /man/S2Polyline_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/S2Polyline_dist.Rd -------------------------------------------------------------------------------- /man/s2-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/man/s2-package.Rd -------------------------------------------------------------------------------- /s2.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/s2.Rproj -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/Rcpp_datatypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/Rcpp_datatypes.cpp -------------------------------------------------------------------------------- /src/Rcpp_s2cap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/Rcpp_s2cap.cpp -------------------------------------------------------------------------------- /src/Rcpp_s2cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/Rcpp_s2cell.cpp -------------------------------------------------------------------------------- /src/Rcpp_s2latlng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/Rcpp_s2latlng.cpp -------------------------------------------------------------------------------- /src/Rcpp_s2latlngrect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/Rcpp_s2latlngrect.cpp -------------------------------------------------------------------------------- /src/Rcpp_s2point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/Rcpp_s2point.cpp -------------------------------------------------------------------------------- /src/Rcpp_s2polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/Rcpp_s2polygon.cpp -------------------------------------------------------------------------------- /src/geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/CMakeLists.txt -------------------------------------------------------------------------------- /src/geometry/base/int128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/base/int128.cc -------------------------------------------------------------------------------- /src/geometry/base/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/base/logging.cc -------------------------------------------------------------------------------- /src/geometry/base/stringprintf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/base/stringprintf.cc -------------------------------------------------------------------------------- /src/geometry/base/strtoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/base/strtoint.cc -------------------------------------------------------------------------------- /src/geometry/s1angle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s1angle.cc -------------------------------------------------------------------------------- /src/geometry/s1interval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s1interval.cc -------------------------------------------------------------------------------- /src/geometry/s2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2.cc -------------------------------------------------------------------------------- /src/geometry/s2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2.pc.in -------------------------------------------------------------------------------- /src/geometry/s2cap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2cap.cc -------------------------------------------------------------------------------- /src/geometry/s2cell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2cell.cc -------------------------------------------------------------------------------- /src/geometry/s2cellid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2cellid.cc -------------------------------------------------------------------------------- /src/geometry/s2cellid.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2cellid.pc.in -------------------------------------------------------------------------------- /src/geometry/s2cellunion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2cellunion.cc -------------------------------------------------------------------------------- /src/geometry/s2edgeindex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2edgeindex.cc -------------------------------------------------------------------------------- /src/geometry/s2edgeutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2edgeutil.cc -------------------------------------------------------------------------------- /src/geometry/s2latlng.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2latlng.cc -------------------------------------------------------------------------------- /src/geometry/s2latlngrect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2latlngrect.cc -------------------------------------------------------------------------------- /src/geometry/s2loop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2loop.cc -------------------------------------------------------------------------------- /src/geometry/s2pointregion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2pointregion.cc -------------------------------------------------------------------------------- /src/geometry/s2polygon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2polygon.cc -------------------------------------------------------------------------------- /src/geometry/s2polygonbuilder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2polygonbuilder.cc -------------------------------------------------------------------------------- /src/geometry/s2polyline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2polyline.cc -------------------------------------------------------------------------------- /src/geometry/s2r2rect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2r2rect.cc -------------------------------------------------------------------------------- /src/geometry/s2region.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2region.cc -------------------------------------------------------------------------------- /src/geometry/s2regioncoverer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2regioncoverer.cc -------------------------------------------------------------------------------- /src/geometry/s2regionintersection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2regionintersection.cc -------------------------------------------------------------------------------- /src/geometry/s2regionunion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/s2regionunion.cc -------------------------------------------------------------------------------- /src/geometry/strings/ascii_ctype.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/strings/ascii_ctype.cc -------------------------------------------------------------------------------- /src/geometry/strings/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/strings/split.cc -------------------------------------------------------------------------------- /src/geometry/strings/stringprintf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/strings/stringprintf.cc -------------------------------------------------------------------------------- /src/geometry/strings/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/strings/strutil.cc -------------------------------------------------------------------------------- /src/geometry/util/coding/coder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/util/coding/coder.cc -------------------------------------------------------------------------------- /src/geometry/util/coding/varint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/util/coding/varint.cc -------------------------------------------------------------------------------- /src/geometry/util/hash/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/util/hash/hash.cc -------------------------------------------------------------------------------- /src/geometry/util/math/exactfloat/exactfloat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/util/math/exactfloat/exactfloat.cc -------------------------------------------------------------------------------- /src/geometry/util/math/mathlimits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/util/math/mathlimits.cc -------------------------------------------------------------------------------- /src/geometry/util/math/mathutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/src/geometry/util/math/mathutil.cc -------------------------------------------------------------------------------- /tools/src_tweaks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/tools/src_tweaks.R -------------------------------------------------------------------------------- /tools/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/tools/version.c -------------------------------------------------------------------------------- /tools/winlibs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/tools/winlibs.R -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/aes.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/applink.c -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/asn1.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/asn1t.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/bio.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/blowfish.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/bn.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/buffer.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/camellia.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/cast.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/cmac.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/cms.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/comp.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/conf.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/conf_api.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/crypto.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/des.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/des_old.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/dh.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/dsa.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/dso.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/dtls1.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/e_os2.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ec.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ecdh.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/engine.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/err.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/evp.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/hmac.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/idea.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/kssl.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/lhash.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/md4.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/md5.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/mdc2.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/modes.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/objects.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ocsp.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/opensslv.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/pem.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/pem2.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/pqueue.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/rand.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/rc2.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/rc4.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ripemd.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/rsa.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/safestack.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/seed.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/sha.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/srp.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/srtp.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ssl.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ssl2.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ssl23.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ssl3.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/stack.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/symhacks.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/tls1.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ts.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/txt_db.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ui.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/x509.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/include/openssl/x509v3.h -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/lib/i386/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/lib/i386/libcrypto.a -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/lib/i386/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/lib/i386/libssl.a -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/lib/x64/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/lib/x64/libcrypto.a -------------------------------------------------------------------------------- /windows/openssl-1.0.2d/lib/x64/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatstat/s2/HEAD/windows/openssl-1.0.2d/lib/x64/libssl.a --------------------------------------------------------------------------------