Skip to content

Commit da23214

Browse files
authored
Merge pull request #201 from R-ArcGIS/cran-release
CRAN release
2 parents 3781534 + bf1e7ea commit da23214

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: arcgislayers
22
Type: Package
33
Title: An Interface to ArcGIS Data Services
4-
Version: 0.2.1
4+
Version: 0.3.0
55
Authors@R: c(
66
person("Josiah", "Parry", , "[email protected]", role = c("aut", "cre"),
77
comment = c(ORCID = "0000-0001-9910-865X")),

Diff for: NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# arcgislayers (development)
1+
# arcgislayers 0.3.0
22

33
- `arc_open()` will now work on any resource that works when `f=json` is set in the query parameters closes [#163](https://github.com/R-ArcGIS/arcgislayers/issues/163)
44
- Now uses [`{arcpbf}`](https://r.esri.com/arcpbf/index.html) when a layer supports protocol buffers.

Diff for: R/utils.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ list_fields <- function(x) {
5656
res <- infer_esri_type(data.frame())
5757
}
5858

59-
res
59+
data_frame(res)
6060
}
6161

6262
#' @export
@@ -72,7 +72,7 @@ pull_field_aliases <- function(x) {
7272
#' @rdname utils
7373
list_items <- function(x) {
7474
check_inherits_any(x, c("FeatureServer", "ImageServer", "MapServer"))
75-
rbind(x[["layers"]], x[["tables"]])
75+
data_frame(rbind(x[["layers"]], x[["tables"]]))
7676
}
7777

7878
#' @export

0 commit comments

Comments
 (0)