BD_Obs | R Documentation |
A dataset containing daily precipitation observations from multiple ground stations.
data(BD_Obs)
A data.table
or data.frame
with n rows (dates) and m+1 columns (stations + Date):
Date: A Date
object representing the observation date.
STxxx: Numeric values representing observed precipitation measurements for each station, where STxxx
is the unique station identifier.
The dataset follows the structure:
> BD_Obs # A data.table or data.frame with n rows (dates) and m+1 columns (stations + Date) Date ST001 ST002 ST003 ST004 ... <date> <dbl> <dbl> <dbl> <dbl> ... 1 2015-01-01 0 0 0 0 ... 2 2015-01-02 0 0 0 0.2 ... 3 2015-01-03 0.1 0 0 0.1 ...
- Each station column contains numeric values representing observed measurements.
- The column names (station identifiers) must be unique and match those in BD_Coord$Cod
to ensure proper spatial referencing.
BD_Coord
for station metadata.
# Load dataset
data(BD_Obs)
# Check structure
str(BD_Obs)
# Display first rows
head(BD_Obs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.