Cords_Insitu {RFplus} | R Documentation |
Precipitation Station Coordinates Dataset
Description
This dataset contains the coordinates (in UTM format) of several precipitation stations. Each station is uniquely identified by the Cod
column, which corresponds to the station identifiers used in the BD_Insitu
dataset. The coordinates of each station are provided in two columns:
- X
for the Easting (longitude),
- Y
for the Northing (latitude),
Z
for the altitude.
Usage
data("Cords_Insitu")
Format
A 'data.table' object with station coordinates. The dataset includes the following columns:
Cod
The unique identifier for each station. This should correspond to the station columns in the
BD_Insitu
dataset.X
The Easting (X-coordinate) of the station in UTM format (numeric).
Y
The Northing (Y-coordinate) of the station in UTM format (numeric).
Z
Altitude of the station in meters (numeric).
Details
The data represents the geographic coordinates of precipitation stations used in the analysis. The first column, Cod
, contains the unique identifiers of the stations, which should match the column names in the BD_Insitu
dataset. The subsequent columns, X
, Y
, contain the UTM coordinates for each station, representing the station's location on the Earth's surface and Z
, contain the altitude in meters of each station.
Source
The data was generated for use in the bias correction model for satellite products, RFplus.
Examples
data(Cords_Insitu)
## You can use str(Cords_Insitu) to get a description of the structure
## or view some of the first rows using head(Cords_Insitu)