Create a new GeoLocator Data Package shell with the GeoLocator-DP profile schema.
See also
read_gldp() to read an existing package, write_gldp() to write
a package to disk, and gldp_version() to inspect the package schema
version.
Examples
pkg <- create_gldp()
pkg
#>
#> ── A GeoLocator Data Package `pkg` (v1.0) ──────────────────────────────────────
#>
#> ── Metadata
#> Note: All green texts are fields of `pkg` which can be accessed with `pkg$field`).
#> ✔ access: Open access
#> ! community: no Geolocator DP community
#>
#> ── Resources: (0 resources)
# Previous version
pkg <- create_gldp(version = "v0.2")
pkg
#>
#> ── A GeoLocator Data Package `pkg` (v0.2) ──────────────────────────────────────
#>
#> ── Metadata
#> Note: All green texts are fields of `pkg` which can be accessed with `pkg$field`).
#> ✔ access: Open access
#> ! community: no Geolocator DP community
#>
#> ── Resources: (0 resources)
