get_NOAA_stations_nearXY {soilDB} | R Documentation |
Get NOAA station data near a given latitude and longitude
Description
Query the NOAA API to get station data (limit 1000 records) near a point. Default extent is plus or minus 0.5 degrees (bounding box) (with bbox = 1
) around the specified point [lat, lng].
In order to use this function, you must obtain an API token from this website: https://www.ncdc.noaa.gov/cdo-web/token
Usage
get_NOAA_stations_nearXY(lat, lng, apitoken, bbox = 1, crs = "EPSG:4326")
Arguments
lat |
Latitude or Y coordinate in |
lng |
Longitude or X coordinate in |
apitoken |
API key token for NOAA NCDC web service |
bbox |
Optional: Dimension of the bounding box centered at |
crs |
Coordinate Reference System. Default |
Value
data.frame containing station information for all stations within a bounding box around lat
, lng
.
Examples
## in order to use this function, you must obtain an API token from this website:
## https://www.ncdc.noaa.gov/cdo-web/token
# stations <- get_NOAA_stations_nearXY(lat = 37, lng = -120,
# apitoken = "yourtokenhere")
[Package soilDB version 2.8.3 Index]