├── .Rbuildignore ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── issue_template.md ├── pull_request_template.md └── workflows │ ├── R-check.yml │ └── revdep-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── as.json.R ├── as_featurecollection.R ├── bounding_wkt.R ├── circularstring.R ├── dump.R ├── geojson2wkt.R ├── geometrycollection.R ├── get_centroid.R ├── linestring.R ├── lint.R ├── multilinestring.R ├── multipoint.R ├── multipolygon.R ├── point.R ├── polygon.R ├── properties.R ├── sp_convert.R ├── wellknown-package.R ├── wkb.R ├── wkt2geojson.R ├── wktview.R └── zzz.R ├── README-not.md ├── README.Rmd ├── README.md ├── codemeta.json ├── cran-comments.md ├── data └── us_cities.rda ├── inst └── ignore │ ├── geojson2wkb.R │ ├── geojson2wkt_.R │ ├── python_wkt_file.R │ ├── sp_convert_egs.R │ └── wkt_vis.R ├── man-roxygen ├── fmt.R └── geojson2wktegs.R ├── man ├── as_featurecollection.Rd ├── as_json.Rd ├── bounding_wkt.Rd ├── circularstring.Rd ├── geojson2wkt.Rd ├── geometrycollection.Rd ├── get_centroid.Rd ├── linestring.Rd ├── lint.Rd ├── multilinestring.Rd ├── multipoint.Rd ├── multipolygon.Rd ├── point.Rd ├── polygon.Rd ├── properties.Rd ├── sf_convert.Rd ├── us_cities.Rd ├── validate_wkt.Rd ├── wellknown-package.Rd ├── wkb.Rd ├── wkt2geojson.Rd ├── wkt_bounding.Rd ├── wkt_centroid.Rd ├── wkt_coords.Rd ├── wkt_correct.Rd ├── wkt_reverse.Rd └── wktview.Rd ├── revdep ├── README.md ├── check.R ├── failures.md └── problems.md ├── src ├── .gitignore ├── Makevars ├── RcppExports.cpp ├── bounding_wkt.cpp ├── centroid.cpp ├── def.h ├── reverse.cpp ├── utils.cpp ├── utils.h ├── validate.cpp ├── wkt_bounding.cpp ├── wkt_coords.cpp └── wkt_correct.cpp ├── tests ├── othertests │ ├── sf_convert1.rda │ ├── sf_convert2.rda │ ├── sp_convert1.rda │ └── test-sf_convert.R ├── test-all.R └── testthat │ ├── test-as_json.R │ ├── test-bounding.R │ ├── test-circularstring.R │ ├── test-geojson2wkt.r │ ├── test-geometrycollection.R │ ├── test-linestring.R │ ├── test-lint.R │ ├── test-multilinestring.R │ ├── test-multipoint.R │ ├── test-multipolygon.R │ ├── test-point.R │ ├── test-polygon.R │ ├── test-properties.r │ ├── test-validate_wkt.R │ ├── test-wkb_wkt.R │ ├── test-wkt2geojson.R │ ├── test-wkt_centroid.R │ ├── test-wkt_coords.R │ ├── test-wkt_reverse.R │ ├── test-wkt_wkb.R │ └── test-wktview.R └── vignettes ├── wellknown.Rmd └── wellknown.Rmd.og /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | inst/js/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/R-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/.github/workflows/R-check.yml -------------------------------------------------------------------------------- /.github/workflows/revdep-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/.github/workflows/revdep-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: Scott Chamberlain 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/as.json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/as.json.R -------------------------------------------------------------------------------- /R/as_featurecollection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/as_featurecollection.R -------------------------------------------------------------------------------- /R/bounding_wkt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/bounding_wkt.R -------------------------------------------------------------------------------- /R/circularstring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/circularstring.R -------------------------------------------------------------------------------- /R/dump.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/dump.R -------------------------------------------------------------------------------- /R/geojson2wkt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/geojson2wkt.R -------------------------------------------------------------------------------- /R/geometrycollection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/geometrycollection.R -------------------------------------------------------------------------------- /R/get_centroid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/get_centroid.R -------------------------------------------------------------------------------- /R/linestring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/linestring.R -------------------------------------------------------------------------------- /R/lint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/lint.R -------------------------------------------------------------------------------- /R/multilinestring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/multilinestring.R -------------------------------------------------------------------------------- /R/multipoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/multipoint.R -------------------------------------------------------------------------------- /R/multipolygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/multipolygon.R -------------------------------------------------------------------------------- /R/point.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/point.R -------------------------------------------------------------------------------- /R/polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/polygon.R -------------------------------------------------------------------------------- /R/properties.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/properties.R -------------------------------------------------------------------------------- /R/sp_convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/sp_convert.R -------------------------------------------------------------------------------- /R/wellknown-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/wellknown-package.R -------------------------------------------------------------------------------- /R/wkb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/wkb.R -------------------------------------------------------------------------------- /R/wkt2geojson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/wkt2geojson.R -------------------------------------------------------------------------------- /R/wktview.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/wktview.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README-not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/README-not.md -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/README.md -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/us_cities.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/data/us_cities.rda -------------------------------------------------------------------------------- /inst/ignore/geojson2wkb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/inst/ignore/geojson2wkb.R -------------------------------------------------------------------------------- /inst/ignore/geojson2wkt_.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/inst/ignore/geojson2wkt_.R -------------------------------------------------------------------------------- /inst/ignore/python_wkt_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/inst/ignore/python_wkt_file.R -------------------------------------------------------------------------------- /inst/ignore/sp_convert_egs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/inst/ignore/sp_convert_egs.R -------------------------------------------------------------------------------- /inst/ignore/wkt_vis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/inst/ignore/wkt_vis.R -------------------------------------------------------------------------------- /man-roxygen/fmt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man-roxygen/fmt.R -------------------------------------------------------------------------------- /man-roxygen/geojson2wktegs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man-roxygen/geojson2wktegs.R -------------------------------------------------------------------------------- /man/as_featurecollection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/as_featurecollection.Rd -------------------------------------------------------------------------------- /man/as_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/as_json.Rd -------------------------------------------------------------------------------- /man/bounding_wkt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/bounding_wkt.Rd -------------------------------------------------------------------------------- /man/circularstring.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/circularstring.Rd -------------------------------------------------------------------------------- /man/geojson2wkt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/geojson2wkt.Rd -------------------------------------------------------------------------------- /man/geometrycollection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/geometrycollection.Rd -------------------------------------------------------------------------------- /man/get_centroid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/get_centroid.Rd -------------------------------------------------------------------------------- /man/linestring.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/linestring.Rd -------------------------------------------------------------------------------- /man/lint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/lint.Rd -------------------------------------------------------------------------------- /man/multilinestring.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/multilinestring.Rd -------------------------------------------------------------------------------- /man/multipoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/multipoint.Rd -------------------------------------------------------------------------------- /man/multipolygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/multipolygon.Rd -------------------------------------------------------------------------------- /man/point.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/point.Rd -------------------------------------------------------------------------------- /man/polygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/polygon.Rd -------------------------------------------------------------------------------- /man/properties.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/properties.Rd -------------------------------------------------------------------------------- /man/sf_convert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/sf_convert.Rd -------------------------------------------------------------------------------- /man/us_cities.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/us_cities.Rd -------------------------------------------------------------------------------- /man/validate_wkt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/validate_wkt.Rd -------------------------------------------------------------------------------- /man/wellknown-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/wellknown-package.Rd -------------------------------------------------------------------------------- /man/wkb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/wkb.Rd -------------------------------------------------------------------------------- /man/wkt2geojson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/wkt2geojson.Rd -------------------------------------------------------------------------------- /man/wkt_bounding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/wkt_bounding.Rd -------------------------------------------------------------------------------- /man/wkt_centroid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/wkt_centroid.Rd -------------------------------------------------------------------------------- /man/wkt_coords.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/wkt_coords.Rd -------------------------------------------------------------------------------- /man/wkt_correct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/wkt_correct.Rd -------------------------------------------------------------------------------- /man/wkt_reverse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/wkt_reverse.Rd -------------------------------------------------------------------------------- /man/wktview.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/man/wktview.Rd -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/revdep/check.R -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/bounding_wkt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/bounding_wkt.cpp -------------------------------------------------------------------------------- /src/centroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/centroid.cpp -------------------------------------------------------------------------------- /src/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/def.h -------------------------------------------------------------------------------- /src/reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/reverse.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/validate.cpp -------------------------------------------------------------------------------- /src/wkt_bounding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/wkt_bounding.cpp -------------------------------------------------------------------------------- /src/wkt_coords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/wkt_coords.cpp -------------------------------------------------------------------------------- /src/wkt_correct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/src/wkt_correct.cpp -------------------------------------------------------------------------------- /tests/othertests/sf_convert1.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/othertests/sf_convert1.rda -------------------------------------------------------------------------------- /tests/othertests/sf_convert2.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/othertests/sf_convert2.rda -------------------------------------------------------------------------------- /tests/othertests/sp_convert1.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/othertests/sp_convert1.rda -------------------------------------------------------------------------------- /tests/othertests/test-sf_convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/othertests/test-sf_convert.R -------------------------------------------------------------------------------- /tests/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/test-all.R -------------------------------------------------------------------------------- /tests/testthat/test-as_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-as_json.R -------------------------------------------------------------------------------- /tests/testthat/test-bounding.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-bounding.R -------------------------------------------------------------------------------- /tests/testthat/test-circularstring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-circularstring.R -------------------------------------------------------------------------------- /tests/testthat/test-geojson2wkt.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-geojson2wkt.r -------------------------------------------------------------------------------- /tests/testthat/test-geometrycollection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-geometrycollection.R -------------------------------------------------------------------------------- /tests/testthat/test-linestring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-linestring.R -------------------------------------------------------------------------------- /tests/testthat/test-lint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-lint.R -------------------------------------------------------------------------------- /tests/testthat/test-multilinestring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-multilinestring.R -------------------------------------------------------------------------------- /tests/testthat/test-multipoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-multipoint.R -------------------------------------------------------------------------------- /tests/testthat/test-multipolygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-multipolygon.R -------------------------------------------------------------------------------- /tests/testthat/test-point.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-point.R -------------------------------------------------------------------------------- /tests/testthat/test-polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-polygon.R -------------------------------------------------------------------------------- /tests/testthat/test-properties.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-properties.r -------------------------------------------------------------------------------- /tests/testthat/test-validate_wkt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-validate_wkt.R -------------------------------------------------------------------------------- /tests/testthat/test-wkb_wkt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-wkb_wkt.R -------------------------------------------------------------------------------- /tests/testthat/test-wkt2geojson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-wkt2geojson.R -------------------------------------------------------------------------------- /tests/testthat/test-wkt_centroid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-wkt_centroid.R -------------------------------------------------------------------------------- /tests/testthat/test-wkt_coords.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-wkt_coords.R -------------------------------------------------------------------------------- /tests/testthat/test-wkt_reverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-wkt_reverse.R -------------------------------------------------------------------------------- /tests/testthat/test-wkt_wkb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-wkt_wkb.R -------------------------------------------------------------------------------- /tests/testthat/test-wktview.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/tests/testthat/test-wktview.R -------------------------------------------------------------------------------- /vignettes/wellknown.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/vignettes/wellknown.Rmd -------------------------------------------------------------------------------- /vignettes/wellknown.Rmd.og: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/wellknown/HEAD/vignettes/wellknown.Rmd.og --------------------------------------------------------------------------------