Retrieves name, location, and status metadata for Texas Water Development Board (TWDB) stations from the TexMesonet API.
Value
A tibble containing station metadata returned by TexMesonet,
including station_id, station_name, display ID, state, county,
latitude, longitude, elevation in feet, active status, and online date.
Details
TexMesonet is managed by the Texas Water Development Board. Its public API provides near-real-time data for TWDB weather and soil observing stations. Review the TexMesonet disclaimer before automated use.
References
TexMesonet APIs: https://www.texmesonet.org/Apis
TexMesonet disclaimer: https://www.texmesonet.org/About
Examples
if (FALSE) { # \dontrun{
stations <- tex_meso_stations(active = TRUE)
subset(stations, county == "Blanco")
} # }