File: vctrs.R

package info (click to toggle)
r-cran-s2 1.1.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,540 kB
  • sloc: cpp: 124,506; ansic: 2,639; pascal: 1,495; python: 354; sh: 139; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

vec_proxy.s2_geography <- function(x, ...) {
  unclass(x)
}

vec_restore.s2_geography <- function(x, ...) {
  new_s2_geography(x)
}

vec_ptype_abbr.s2_geography <- function(x, ...) {
  "s2_geography"
}

vec_proxy.s2_cell <- function(x, ...) {
  unclass(x)
}

vec_restore.s2_cell <- function(x, ...) {
  new_s2_cell(x)
}

vec_ptype_abbr.s2_cell <- function(x, ...) {
  "s2cell"
}

vec_proxy.s2_cell_union <- function(x, ...) {
  unclass(x)
}

vec_restore.s2_cell_union <- function(x, ...) {
  new_s2_cell_union(x)
}

vec_ptype_abbr.s2_cell_union <- function(x, ...) {
  "s2cellunion"
}