HISCentral_GetSeriesCatalog: HISCentral_GetSeriesCatalog

Description Usage Arguments Value Examples

View source: R/HISCentral_GetSeriesCatalog.R

Description

This function searches the table of time series from the HIS Central catalog

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
HISCentral_GetSeriesCatalog(
  west,
  south,
  east,
  north,
  serviceID = NULL,
  keyword = NULL,
  beginDate = NULL,
  endDate = NULL
)

Arguments

west

The west longitude of the geographic bounding box in decimal degrees. Allowed values are between -180.0 and +180.0

south

The south latitude of the geographic bounding box in decimal degrees. Allowed values are between -90.0 and +90.0

east

The east longitude of the geographic bounding box in decimal degrees. Allowed values are between -180.0 and +180.0

north

The north latitude of the geographic bounding box in decimal degrees. Allowed values are between -90.0 and +90.0

serviceID

(optional): The ID of the service on HIS Central. To get the service ID, use the id column in the output of the GetServices() function.

keyword

(optional): The concept keyword (common name of variable) for searching the sites on HIS Central. Examples include Temperature, Precipitation, Snow Depth,... If the Keyword is not specified then sites with any variable will be returned.

beginDate

(optional): The begin date of the observations in yyyy-mm-dd format.

endDate

(optional): The end date of the observations in yyyy-mm-dd format.

Value

a data.frame of series catalog entries. The data.frame has the following columns:

Examples

1
2
#Getting all time series from the (14.1E, 49.9N, 14.3E, 50.1N) bounding box
series_catalog <- HISCentral_GetSeriesCatalog(west=14.1, south=49.9, east=14.3, north=50.1)

WaterML documentation built on April 10, 2021, 9:05 a.m.