├── .Rbuildignore ├── .github ├── .gitignore ├── CONTRIBUTING.md ├── issue_template.md ├── pull_request_template.md └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── Feature.R ├── FeatureCollection.R ├── GeometryCollection.R ├── LineString.R ├── MultiLineString.R ├── MultiPoint.R ├── MultiPolygon.R ├── Point.R ├── Polygon.R ├── RcppExports.R ├── along.R ├── area.R ├── bbox_polygon.R ├── bearing.R ├── destination.R ├── distance.R ├── geojson-types.R ├── geoops-package.R ├── get_coord.R ├── line_distance.R ├── midpoint.R ├── nearest.R ├── planepoint.R ├── pointgrid.R ├── trianglegrid.R ├── version.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codemeta.json ├── cran-comments.md ├── geoops.Rproj ├── inst ├── examples │ └── zillow_or.geojson ├── ignore │ ├── boolean-clockwise.cpp │ ├── boolean.R │ ├── bound_box.R │ ├── circle.R │ ├── cpp_play.R │ ├── geoops.h │ ├── hex-grid.cpp │ ├── hex_grid.R │ ├── in_ring.R │ ├── inside.R │ ├── meta.cpp │ ├── nearest.cpp │ ├── overlay.R │ ├── rcpp_hello.cpp │ ├── square_grid.R │ ├── square_grid.cpp │ └── testing.R └── vign │ └── classes.Rmd ├── man ├── Feature.Rd ├── FeatureCollection.Rd ├── GeometryCollection.Rd ├── LineString.Rd ├── MultiLineString.Rd ├── MultiPoint.Rd ├── MultiPolygon.Rd ├── Point.Rd ├── Polygon.Rd ├── figures │ ├── unnamed-chunk-13-1.png │ ├── unnamed-chunk-14-1.png │ └── unnamed-chunk-15-1.png ├── geo_along.Rd ├── geo_area.Rd ├── geo_bbox_polygon.Rd ├── geo_bearing.Rd ├── geo_destination.Rd ├── geo_distance.Rd ├── geo_get_coords.Rd ├── geo_line_distance.Rd ├── geo_midpoint.Rd ├── geo_nearest.Rd ├── geo_planepoint.Rd ├── geo_pointgrid.Rd ├── geo_trianglegrid.Rd ├── geojson-types.Rd ├── geoops-package.Rd └── version.Rd ├── src ├── Makevars ├── RcppExports.cpp ├── along.cpp ├── area.cpp ├── bbox_polygon.cpp ├── bearing.cpp ├── bearing.h ├── circle.cpp ├── destination.cpp ├── destination.h ├── distance.cpp ├── distance.h ├── geojson_helpers.cpp ├── geojson_helpers.h ├── get_coords.cpp ├── get_coords.h ├── inside.cpp ├── json.h ├── line_distance.cpp ├── midpoint.cpp ├── planepoint.cpp ├── pointgrid.cpp ├── triangle_grid.cpp └── version.cpp ├── tests ├── test-all.R └── testthat │ ├── test-along.R │ ├── test-area.R │ ├── test-bbox_polygon.R │ ├── test-bearing.R │ ├── test-destination.R │ ├── test-distance.R │ ├── test-fail-well.R │ ├── test-get_coords.R │ ├── test-line_distance.R │ ├── test-midpoint.R │ ├── test-nearest.R │ ├── test-planepoint.R │ ├── test-pointgrid.R │ ├── test-trianglegrid.R │ └── test-version.R └── vignettes └── geoops.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: geoops authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/Feature.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/Feature.R -------------------------------------------------------------------------------- /R/FeatureCollection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/FeatureCollection.R -------------------------------------------------------------------------------- /R/GeometryCollection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/GeometryCollection.R -------------------------------------------------------------------------------- /R/LineString.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/LineString.R -------------------------------------------------------------------------------- /R/MultiLineString.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/MultiLineString.R -------------------------------------------------------------------------------- /R/MultiPoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/MultiPoint.R -------------------------------------------------------------------------------- /R/MultiPolygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/MultiPolygon.R -------------------------------------------------------------------------------- /R/Point.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/Point.R -------------------------------------------------------------------------------- /R/Polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/Polygon.R -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/along.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/along.R -------------------------------------------------------------------------------- /R/area.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/area.R -------------------------------------------------------------------------------- /R/bbox_polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/bbox_polygon.R -------------------------------------------------------------------------------- /R/bearing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/bearing.R -------------------------------------------------------------------------------- /R/destination.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/destination.R -------------------------------------------------------------------------------- /R/distance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/distance.R -------------------------------------------------------------------------------- /R/geojson-types.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/geojson-types.R -------------------------------------------------------------------------------- /R/geoops-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/geoops-package.R -------------------------------------------------------------------------------- /R/get_coord.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/get_coord.R -------------------------------------------------------------------------------- /R/line_distance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/line_distance.R -------------------------------------------------------------------------------- /R/midpoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/midpoint.R -------------------------------------------------------------------------------- /R/nearest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/nearest.R -------------------------------------------------------------------------------- /R/planepoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/planepoint.R -------------------------------------------------------------------------------- /R/pointgrid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/pointgrid.R -------------------------------------------------------------------------------- /R/trianglegrid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/trianglegrid.R -------------------------------------------------------------------------------- /R/version.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/version.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/cran-comments.md -------------------------------------------------------------------------------- /geoops.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/geoops.Rproj -------------------------------------------------------------------------------- /inst/examples/zillow_or.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/examples/zillow_or.geojson -------------------------------------------------------------------------------- /inst/ignore/boolean-clockwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/boolean-clockwise.cpp -------------------------------------------------------------------------------- /inst/ignore/boolean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/boolean.R -------------------------------------------------------------------------------- /inst/ignore/bound_box.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/bound_box.R -------------------------------------------------------------------------------- /inst/ignore/circle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/circle.R -------------------------------------------------------------------------------- /inst/ignore/cpp_play.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/cpp_play.R -------------------------------------------------------------------------------- /inst/ignore/geoops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/geoops.h -------------------------------------------------------------------------------- /inst/ignore/hex-grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/hex-grid.cpp -------------------------------------------------------------------------------- /inst/ignore/hex_grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/hex_grid.R -------------------------------------------------------------------------------- /inst/ignore/in_ring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/in_ring.R -------------------------------------------------------------------------------- /inst/ignore/inside.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/inside.R -------------------------------------------------------------------------------- /inst/ignore/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/meta.cpp -------------------------------------------------------------------------------- /inst/ignore/nearest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/nearest.cpp -------------------------------------------------------------------------------- /inst/ignore/overlay.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/overlay.R -------------------------------------------------------------------------------- /inst/ignore/rcpp_hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/rcpp_hello.cpp -------------------------------------------------------------------------------- /inst/ignore/square_grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/square_grid.R -------------------------------------------------------------------------------- /inst/ignore/square_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/square_grid.cpp -------------------------------------------------------------------------------- /inst/ignore/testing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/ignore/testing.R -------------------------------------------------------------------------------- /inst/vign/classes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/inst/vign/classes.Rmd -------------------------------------------------------------------------------- /man/Feature.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/Feature.Rd -------------------------------------------------------------------------------- /man/FeatureCollection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/FeatureCollection.Rd -------------------------------------------------------------------------------- /man/GeometryCollection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/GeometryCollection.Rd -------------------------------------------------------------------------------- /man/LineString.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/LineString.Rd -------------------------------------------------------------------------------- /man/MultiLineString.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/MultiLineString.Rd -------------------------------------------------------------------------------- /man/MultiPoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/MultiPoint.Rd -------------------------------------------------------------------------------- /man/MultiPolygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/MultiPolygon.Rd -------------------------------------------------------------------------------- /man/Point.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/Point.Rd -------------------------------------------------------------------------------- /man/Polygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/Polygon.Rd -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/figures/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/figures/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/figures/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /man/geo_along.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_along.Rd -------------------------------------------------------------------------------- /man/geo_area.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_area.Rd -------------------------------------------------------------------------------- /man/geo_bbox_polygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_bbox_polygon.Rd -------------------------------------------------------------------------------- /man/geo_bearing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_bearing.Rd -------------------------------------------------------------------------------- /man/geo_destination.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_destination.Rd -------------------------------------------------------------------------------- /man/geo_distance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_distance.Rd -------------------------------------------------------------------------------- /man/geo_get_coords.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_get_coords.Rd -------------------------------------------------------------------------------- /man/geo_line_distance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_line_distance.Rd -------------------------------------------------------------------------------- /man/geo_midpoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_midpoint.Rd -------------------------------------------------------------------------------- /man/geo_nearest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_nearest.Rd -------------------------------------------------------------------------------- /man/geo_planepoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_planepoint.Rd -------------------------------------------------------------------------------- /man/geo_pointgrid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_pointgrid.Rd -------------------------------------------------------------------------------- /man/geo_trianglegrid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geo_trianglegrid.Rd -------------------------------------------------------------------------------- /man/geojson-types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geojson-types.Rd -------------------------------------------------------------------------------- /man/geoops-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/geoops-package.Rd -------------------------------------------------------------------------------- /man/version.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/man/version.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/along.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/along.cpp -------------------------------------------------------------------------------- /src/area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/area.cpp -------------------------------------------------------------------------------- /src/bbox_polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/bbox_polygon.cpp -------------------------------------------------------------------------------- /src/bearing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/bearing.cpp -------------------------------------------------------------------------------- /src/bearing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/bearing.h -------------------------------------------------------------------------------- /src/circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/circle.cpp -------------------------------------------------------------------------------- /src/destination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/destination.cpp -------------------------------------------------------------------------------- /src/destination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/destination.h -------------------------------------------------------------------------------- /src/distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/distance.cpp -------------------------------------------------------------------------------- /src/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/distance.h -------------------------------------------------------------------------------- /src/geojson_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/geojson_helpers.cpp -------------------------------------------------------------------------------- /src/geojson_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/geojson_helpers.h -------------------------------------------------------------------------------- /src/get_coords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/get_coords.cpp -------------------------------------------------------------------------------- /src/get_coords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/get_coords.h -------------------------------------------------------------------------------- /src/inside.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/inside.cpp -------------------------------------------------------------------------------- /src/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/json.h -------------------------------------------------------------------------------- /src/line_distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/line_distance.cpp -------------------------------------------------------------------------------- /src/midpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/midpoint.cpp -------------------------------------------------------------------------------- /src/planepoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/planepoint.cpp -------------------------------------------------------------------------------- /src/pointgrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/pointgrid.cpp -------------------------------------------------------------------------------- /src/triangle_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/triangle_grid.cpp -------------------------------------------------------------------------------- /src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/src/version.cpp -------------------------------------------------------------------------------- /tests/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/test-all.R -------------------------------------------------------------------------------- /tests/testthat/test-along.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-along.R -------------------------------------------------------------------------------- /tests/testthat/test-area.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-area.R -------------------------------------------------------------------------------- /tests/testthat/test-bbox_polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-bbox_polygon.R -------------------------------------------------------------------------------- /tests/testthat/test-bearing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-bearing.R -------------------------------------------------------------------------------- /tests/testthat/test-destination.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-destination.R -------------------------------------------------------------------------------- /tests/testthat/test-distance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-distance.R -------------------------------------------------------------------------------- /tests/testthat/test-fail-well.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-fail-well.R -------------------------------------------------------------------------------- /tests/testthat/test-get_coords.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-get_coords.R -------------------------------------------------------------------------------- /tests/testthat/test-line_distance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-line_distance.R -------------------------------------------------------------------------------- /tests/testthat/test-midpoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-midpoint.R -------------------------------------------------------------------------------- /tests/testthat/test-nearest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-nearest.R -------------------------------------------------------------------------------- /tests/testthat/test-planepoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-planepoint.R -------------------------------------------------------------------------------- /tests/testthat/test-pointgrid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-pointgrid.R -------------------------------------------------------------------------------- /tests/testthat/test-trianglegrid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-trianglegrid.R -------------------------------------------------------------------------------- /tests/testthat/test-version.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/tests/testthat/test-version.R -------------------------------------------------------------------------------- /vignettes/geoops.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sckott/geoops/HEAD/vignettes/geoops.Rmd --------------------------------------------------------------------------------