- Notifications
You must be signed in to change notification settings - Fork0
GeomarPerales/ideamR
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
ideamR is a package for hydrometeorological data management from DHIME (IDEAM, Colombia). DHIME is an Information System for the management of Hydrological and Meteorological data from Colombia. functions from ideamR are for precipitation, maximum and minimum temperature.
A goal from ideamR is meteorological data preparation for use it in R.
You can install the released version of ideamR from Github with:
Step 1: Install devtools from CRAN
> install.packages("devtools")Step 2: Install ideamR from Github
> library(devtools)> install_github("GeomarPerales/ideamR")
In this example, I use daily precipitation data from Bucaramanga (Santander, Colombia) station for run ideamR.
library(ideamR)data("Bucaramanga")#Bucaramanga station informationstation.info <- ideaminfo(Bucaramanga)head(station.info)#Bucaramanga station localization (coordinates and elevation)station.loc <- ideamloc(Bucaramanga)head(station.loc)#data summary from Bucaramanga station station.summary <- ideamsummary(Bucaramanga)head(station.summary)#data preparation from Bucaramanga stationdata.prep <- ideamprep(Bucaramanga)head(data.prep)# monthly time serie from bucaramanga station (daily to monthly)monthly.ts <- ideam2monthly(data.prep)head(monthly.ts)# annual time serie from bucaramanga station (daily to annual)annual.ts <- ideam2annual(data.prep)head(annual.ts)#information about NA' from monthly time serie of Bucaramanga station data.na <- ideamna(data.prep)ideamR was developed by Geomar Perales Apaico. or any issue or suggestion please writeto:perales.geomar@gmail.com.
About
ideamR is a package for hydrometeorological data management from DHIME (IDEAM, Colombia). DHIME is Information System for the management of Hydrological and Meteorological data from Colombia.
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.