├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── cran-checks.yaml │ ├── pkgdown.yaml │ └── rhub.yaml ├── .gitignore ├── .vscode └── settings.json ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── arc-auth.R ├── arc-base-req.R ├── arc-paginate-req.R ├── arc-token.R ├── arcgisutils-package.R ├── auth-shiny.R ├── esri-features-list.R ├── esri-features-string.R ├── esri-featureset-list.R ├── esri-featureset-string.R ├── esri-field-mapping.R ├── esri-geometry.R ├── extendr-wrappers.R ├── feature-collection.R ├── geoprocessing-class.R ├── geoprocessing-types.R ├── import-standalone-obj-type.R ├── import-standalone-types-check.R ├── portal-group-user-list.R ├── portal-resources.R ├── portal-self.R ├── portal-servers.R ├── portal-types.R ├── portal-users.R ├── rbind-results.R ├── search.R ├── sharing.R ├── user-group-content.R ├── user-self.R ├── util-parse-esri-json.R ├── utils-crs.R ├── utils-dates.R ├── utils-dimensions.R ├── utils-geometry.R ├── utils-requests.R ├── utils-url.R ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── configure ├── configure.win ├── cran-comments.md ├── dev ├── analysis.R ├── geoprocessing-async.R └── hydrology.R ├── inst ├── example-auth-shiny-calcite.R └── example-auth-shiny.R ├── justfile ├── man ├── arc_agent.Rd ├── arc_base_req.Rd ├── arc_form_params.Rd ├── arc_group.Rd ├── arc_group_users.Rd ├── arc_host.Rd ├── arc_item.Rd ├── arc_item_data.Rd ├── arc_job_status.Rd ├── arc_paginate_req.Rd ├── arc_portal_resources.Rd ├── arc_portal_servers.Rd ├── arc_portal_urls.Rd ├── arc_portal_users.Rd ├── arc_user.Rd ├── arc_user_self.Rd ├── as_esri_geometry.Rd ├── as_extent.Rd ├── auth.Rd ├── auth_shiny.Rd ├── content.Rd ├── dates.Rd ├── detect_errors.Rd ├── determine_dims.Rd ├── determine_esri_geo_type.Rd ├── features.Rd ├── featureset.Rd ├── fetch_layer_metadata.Rd ├── field_mapping.Rd ├── figures │ ├── README-unnamed-chunk-17-1.png │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ └── logo.svg ├── gp_job.Rd ├── gp_job_from_url.Rd ├── gp_params.Rd ├── layer_json.Rd ├── parse_esri_json.Rd ├── portal_types.Rd ├── rbind_results.Rd ├── search_items.Rd ├── self.Rd ├── token.Rd ├── url.Rd ├── utilities.Rd └── validate_crs.Rd ├── src ├── .gitignore ├── Makevars.in ├── Makevars.ucrt ├── Makevars.win.in ├── arcgisutils-win.def ├── entrypoint.c └── rust │ ├── Cargo.lock │ ├── Cargo.toml │ ├── src │ ├── lib.rs │ ├── parse_json.rs │ ├── sf_compat │ │ ├── coord.rs │ │ ├── geometry.rs │ │ ├── mod.rs │ │ ├── multipoint.rs │ │ ├── point.rs │ │ ├── polygon.rs │ │ ├── polyline.rs │ │ └── sfc.rs │ ├── sfc.rs │ ├── sfg.rs │ └── to │ │ ├── attributes.rs │ │ ├── features │ │ ├── linestring.rs │ │ ├── mod.rs │ │ ├── multilinestring.rs │ │ ├── multipoint.rs │ │ ├── multipolygon.rs │ │ ├── point.rs │ │ └── polygon.rs │ │ ├── featureset.rs │ │ ├── linestring.rs │ │ ├── mod.rs │ │ ├── multilinestring.rs │ │ ├── multipoint.rs │ │ ├── multipolygon.rs │ │ ├── point.rs │ │ └── polygon.rs │ ├── vendor-config.toml │ └── vendor.tar.xz ├── tests ├── testthat.R └── testthat │ ├── _snaps │ └── date-parsing.md │ ├── test-arc-base-req.R │ ├── test-arc_token.R │ ├── test-date-handling.R │ ├── test-date-parsing.R │ ├── test-empty-results.R │ ├── test-fetch_layer_metadata.R │ ├── test-field-mapping.R │ ├── test-json-conversions.R │ ├── test-null-geometry.R │ ├── test-rbind-results.R │ ├── test-sharing.R │ ├── test-utils-url.R │ └── testdata │ ├── date-parse-error.json │ └── null-polyline.json └── tools ├── config.R ├── generate-configures.sh └── msrv.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/cran-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/.github/workflows/cran-checks.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/arc-auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/arc-auth.R -------------------------------------------------------------------------------- /R/arc-base-req.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/arc-base-req.R -------------------------------------------------------------------------------- /R/arc-paginate-req.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/arc-paginate-req.R -------------------------------------------------------------------------------- /R/arc-token.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/arc-token.R -------------------------------------------------------------------------------- /R/arcgisutils-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/arcgisutils-package.R -------------------------------------------------------------------------------- /R/auth-shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/auth-shiny.R -------------------------------------------------------------------------------- /R/esri-features-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/esri-features-list.R -------------------------------------------------------------------------------- /R/esri-features-string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/esri-features-string.R -------------------------------------------------------------------------------- /R/esri-featureset-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/esri-featureset-list.R -------------------------------------------------------------------------------- /R/esri-featureset-string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/esri-featureset-string.R -------------------------------------------------------------------------------- /R/esri-field-mapping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/esri-field-mapping.R -------------------------------------------------------------------------------- /R/esri-geometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/esri-geometry.R -------------------------------------------------------------------------------- /R/extendr-wrappers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/extendr-wrappers.R -------------------------------------------------------------------------------- /R/feature-collection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/feature-collection.R -------------------------------------------------------------------------------- /R/geoprocessing-class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/geoprocessing-class.R -------------------------------------------------------------------------------- /R/geoprocessing-types.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/geoprocessing-types.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/portal-group-user-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/portal-group-user-list.R -------------------------------------------------------------------------------- /R/portal-resources.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/portal-resources.R -------------------------------------------------------------------------------- /R/portal-self.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/portal-self.R -------------------------------------------------------------------------------- /R/portal-servers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/portal-servers.R -------------------------------------------------------------------------------- /R/portal-types.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/portal-types.R -------------------------------------------------------------------------------- /R/portal-users.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/portal-users.R -------------------------------------------------------------------------------- /R/rbind-results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/rbind-results.R -------------------------------------------------------------------------------- /R/search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/search.R -------------------------------------------------------------------------------- /R/sharing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/sharing.R -------------------------------------------------------------------------------- /R/user-group-content.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/user-group-content.R -------------------------------------------------------------------------------- /R/user-self.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/user-self.R -------------------------------------------------------------------------------- /R/util-parse-esri-json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/util-parse-esri-json.R -------------------------------------------------------------------------------- /R/utils-crs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/utils-crs.R -------------------------------------------------------------------------------- /R/utils-dates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/utils-dates.R -------------------------------------------------------------------------------- /R/utils-dimensions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/utils-dimensions.R -------------------------------------------------------------------------------- /R/utils-geometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/utils-geometry.R -------------------------------------------------------------------------------- /R/utils-requests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/utils-requests.R -------------------------------------------------------------------------------- /R/utils-url.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/utils-url.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- 1 | .onLoad <- function(...) { 2 | S7::methods_register() 3 | } -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/configure -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/configure.win -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/cran-comments.md -------------------------------------------------------------------------------- /dev/analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/dev/analysis.R -------------------------------------------------------------------------------- /dev/geoprocessing-async.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/dev/geoprocessing-async.R -------------------------------------------------------------------------------- /dev/hydrology.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/dev/hydrology.R -------------------------------------------------------------------------------- /inst/example-auth-shiny-calcite.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/inst/example-auth-shiny-calcite.R -------------------------------------------------------------------------------- /inst/example-auth-shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/inst/example-auth-shiny.R -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | readme: 2 | R -q -e "rmarkdown::render('README.Rmd')" -------------------------------------------------------------------------------- /man/arc_agent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_agent.Rd -------------------------------------------------------------------------------- /man/arc_base_req.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_base_req.Rd -------------------------------------------------------------------------------- /man/arc_form_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_form_params.Rd -------------------------------------------------------------------------------- /man/arc_group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_group.Rd -------------------------------------------------------------------------------- /man/arc_group_users.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_group_users.Rd -------------------------------------------------------------------------------- /man/arc_host.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_host.Rd -------------------------------------------------------------------------------- /man/arc_item.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_item.Rd -------------------------------------------------------------------------------- /man/arc_item_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_item_data.Rd -------------------------------------------------------------------------------- /man/arc_job_status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_job_status.Rd -------------------------------------------------------------------------------- /man/arc_paginate_req.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_paginate_req.Rd -------------------------------------------------------------------------------- /man/arc_portal_resources.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_portal_resources.Rd -------------------------------------------------------------------------------- /man/arc_portal_servers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_portal_servers.Rd -------------------------------------------------------------------------------- /man/arc_portal_urls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_portal_urls.Rd -------------------------------------------------------------------------------- /man/arc_portal_users.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_portal_users.Rd -------------------------------------------------------------------------------- /man/arc_user.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_user.Rd -------------------------------------------------------------------------------- /man/arc_user_self.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/arc_user_self.Rd -------------------------------------------------------------------------------- /man/as_esri_geometry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/as_esri_geometry.Rd -------------------------------------------------------------------------------- /man/as_extent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/as_extent.Rd -------------------------------------------------------------------------------- /man/auth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/auth.Rd -------------------------------------------------------------------------------- /man/auth_shiny.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/auth_shiny.Rd -------------------------------------------------------------------------------- /man/content.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/content.Rd -------------------------------------------------------------------------------- /man/dates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/dates.Rd -------------------------------------------------------------------------------- /man/detect_errors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/detect_errors.Rd -------------------------------------------------------------------------------- /man/determine_dims.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/determine_dims.Rd -------------------------------------------------------------------------------- /man/determine_esri_geo_type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/determine_esri_geo_type.Rd -------------------------------------------------------------------------------- /man/features.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/features.Rd -------------------------------------------------------------------------------- /man/featureset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/featureset.Rd -------------------------------------------------------------------------------- /man/fetch_layer_metadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/fetch_layer_metadata.Rd -------------------------------------------------------------------------------- /man/field_mapping.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/field_mapping.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/figures/README-unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/gp_job.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/gp_job.Rd -------------------------------------------------------------------------------- /man/gp_job_from_url.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/gp_job_from_url.Rd -------------------------------------------------------------------------------- /man/gp_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/gp_params.Rd -------------------------------------------------------------------------------- /man/layer_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/layer_json.Rd -------------------------------------------------------------------------------- /man/parse_esri_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/parse_esri_json.Rd -------------------------------------------------------------------------------- /man/portal_types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/portal_types.Rd -------------------------------------------------------------------------------- /man/rbind_results.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/rbind_results.Rd -------------------------------------------------------------------------------- /man/search_items.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/search_items.Rd -------------------------------------------------------------------------------- /man/self.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/self.Rd -------------------------------------------------------------------------------- /man/token.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/token.Rd -------------------------------------------------------------------------------- /man/url.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/url.Rd -------------------------------------------------------------------------------- /man/utilities.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/utilities.Rd -------------------------------------------------------------------------------- /man/validate_crs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/man/validate_crs.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.ucrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/Makevars.ucrt -------------------------------------------------------------------------------- /src/Makevars.win.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/Makevars.win.in -------------------------------------------------------------------------------- /src/arcgisutils-win.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | R_init_arcgisutils 3 | -------------------------------------------------------------------------------- /src/entrypoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/entrypoint.c -------------------------------------------------------------------------------- /src/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/Cargo.lock -------------------------------------------------------------------------------- /src/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/Cargo.toml -------------------------------------------------------------------------------- /src/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/lib.rs -------------------------------------------------------------------------------- /src/rust/src/parse_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/parse_json.rs -------------------------------------------------------------------------------- /src/rust/src/sf_compat/coord.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/sf_compat/coord.rs -------------------------------------------------------------------------------- /src/rust/src/sf_compat/geometry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/sf_compat/geometry.rs -------------------------------------------------------------------------------- /src/rust/src/sf_compat/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/sf_compat/mod.rs -------------------------------------------------------------------------------- /src/rust/src/sf_compat/multipoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/sf_compat/multipoint.rs -------------------------------------------------------------------------------- /src/rust/src/sf_compat/point.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/sf_compat/point.rs -------------------------------------------------------------------------------- /src/rust/src/sf_compat/polygon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/sf_compat/polygon.rs -------------------------------------------------------------------------------- /src/rust/src/sf_compat/polyline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/sf_compat/polyline.rs -------------------------------------------------------------------------------- /src/rust/src/sf_compat/sfc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/sf_compat/sfc.rs -------------------------------------------------------------------------------- /src/rust/src/sfc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/sfc.rs -------------------------------------------------------------------------------- /src/rust/src/sfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/sfg.rs -------------------------------------------------------------------------------- /src/rust/src/to/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/attributes.rs -------------------------------------------------------------------------------- /src/rust/src/to/features/linestring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/features/linestring.rs -------------------------------------------------------------------------------- /src/rust/src/to/features/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/features/mod.rs -------------------------------------------------------------------------------- /src/rust/src/to/features/multilinestring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/features/multilinestring.rs -------------------------------------------------------------------------------- /src/rust/src/to/features/multipoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/features/multipoint.rs -------------------------------------------------------------------------------- /src/rust/src/to/features/multipolygon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/features/multipolygon.rs -------------------------------------------------------------------------------- /src/rust/src/to/features/point.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/features/point.rs -------------------------------------------------------------------------------- /src/rust/src/to/features/polygon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/features/polygon.rs -------------------------------------------------------------------------------- /src/rust/src/to/featureset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/featureset.rs -------------------------------------------------------------------------------- /src/rust/src/to/linestring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/linestring.rs -------------------------------------------------------------------------------- /src/rust/src/to/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/mod.rs -------------------------------------------------------------------------------- /src/rust/src/to/multilinestring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/multilinestring.rs -------------------------------------------------------------------------------- /src/rust/src/to/multipoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/multipoint.rs -------------------------------------------------------------------------------- /src/rust/src/to/multipolygon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/multipolygon.rs -------------------------------------------------------------------------------- /src/rust/src/to/point.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/point.rs -------------------------------------------------------------------------------- /src/rust/src/to/polygon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/src/to/polygon.rs -------------------------------------------------------------------------------- /src/rust/vendor-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/vendor-config.toml -------------------------------------------------------------------------------- /src/rust/vendor.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/src/rust/vendor.tar.xz -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/date-parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/_snaps/date-parsing.md -------------------------------------------------------------------------------- /tests/testthat/test-arc-base-req.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-arc-base-req.R -------------------------------------------------------------------------------- /tests/testthat/test-arc_token.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-arc_token.R -------------------------------------------------------------------------------- /tests/testthat/test-date-handling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-date-handling.R -------------------------------------------------------------------------------- /tests/testthat/test-date-parsing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-date-parsing.R -------------------------------------------------------------------------------- /tests/testthat/test-empty-results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-empty-results.R -------------------------------------------------------------------------------- /tests/testthat/test-fetch_layer_metadata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-fetch_layer_metadata.R -------------------------------------------------------------------------------- /tests/testthat/test-field-mapping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-field-mapping.R -------------------------------------------------------------------------------- /tests/testthat/test-json-conversions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-json-conversions.R -------------------------------------------------------------------------------- /tests/testthat/test-null-geometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-null-geometry.R -------------------------------------------------------------------------------- /tests/testthat/test-rbind-results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-rbind-results.R -------------------------------------------------------------------------------- /tests/testthat/test-sharing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-sharing.R -------------------------------------------------------------------------------- /tests/testthat/test-utils-url.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/test-utils-url.R -------------------------------------------------------------------------------- /tests/testthat/testdata/date-parse-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/testdata/date-parse-error.json -------------------------------------------------------------------------------- /tests/testthat/testdata/null-polyline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tests/testthat/testdata/null-polyline.json -------------------------------------------------------------------------------- /tools/config.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tools/config.R -------------------------------------------------------------------------------- /tools/generate-configures.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tools/generate-configures.sh -------------------------------------------------------------------------------- /tools/msrv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-ArcGIS/arcgisutils/HEAD/tools/msrv.R --------------------------------------------------------------------------------