geospatial_add: Create new geospatial study

View source: R/geospatial.R

geospatial_addR Documentation

Create new geospatial study

Description

Create a new geospatial study

Usage

geospatial_add(
  idno,
  metadata,
  repositoryid = NULL,
  access_policy = NULL,
  data_remote_url = NULL,
  published = 0,
  overwrite = "no",
  thumbnail = NULL,
  api_key = NULL,
  api_base_url = NULL
)

Arguments

idno

(required) Study unique identifier

metadata

(required) Metadata list depending on the type of study

repositoryid

Collection ID that owns the study

access_policy

Select the access policy suitable for your data. Valid values - "open" "direct" "public" "licensed" "enclave" "remote" "other"

data_remote_url

Link to the website where the data is available. Required if access_policy is set to 'remote'.

published

Set status for study - 0 = Draft, 1 = Published

overwrite

Overwrite if a study with the same ID already exists? Valid values "yes", "no"

Examples


metadata= list(
metadata_maintenance=list(
"update_frequency"="daily",
"note"="Maintenane note",
"contact"=list(
list(
    "person_name"="name here",
    "role"="role"
  )
)
)

dataset_description=list(
"file_identifier"="Unique IDNO",
"language"="en",
"contact"= list(
    "person_name"= "name",
    "role"= "string",
  ),
  "identification_info"=list(
     "title"="title goes here",
  )
)
)

geospatial_add (
  idno="survey-idno-test",
  published = 1,
  overwrite = "yes",
  metadata_maintenance = list(),
  dataset_description = list()
  additional = list()
)





mah0001/nadar documentation built on March 30, 2024, 2:44 a.m.