Changes between Version 26 and Version 27 of EcomsUdg/RPackage/Functions
- Timestamp:
- May 25, 2013 12:56:43 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EcomsUdg/RPackage/Functions
v26 v27 210 210 211 211 212 = loadS ystem4=212 = loadSeasonalForecast = 213 213 214 214 215 215 === ''__Description__'' 216 216 217 Loads hindcast/forecast data from ECMWF's System4 model by remotely accessingthe SPECS-EUPORIAS THREDDS Data Server.217 Loads hindcast/forecast data from the SPECS-EUPORIAS THREDDS Data Server. 218 218 219 219 … … 221 221 222 222 {{{ 223 loadS ystem4(dataset, var, members, lonLim, latLim, season, years, leadMonth)223 loadSeasonalForecast(dataset, var, standard.vars = TRUE, dictionary = NULL, members, lonLim, latLim, season, years, leadMonth) 224 224 }}} 225 225 … … 239 239 === ''__Details__'' 240 240 241 242 243 {{{#!comment 241 244 Currently, accepted values for the argument `var` are `tas`, `tasmin`, `tasmax`, `pr` or `mslp`, as internally defined in the vocabulary of System4 following the nomenclature displayed in the table below. However, note that new variables and datasets will be progressively included. Further details regarding the nature and temporal aggregation of these variables can be obtained through the `dataInventory` function. 242 245 … … 249 252 ||=mslp=||=Mean sea level pressure||=Pa=||=Yes=|| 250 253 251 252 {{{#!comment253 254 This function automatically cares about the proper location of the right indices for data sub-setting across the different variable dimensions, given a few simple arguments for subset definition. In addition, instead of retrieving a NetCDF file that needs to be opened and read, the requested data is directly loaded into the current R working session, according to a particular structure described below, prior to data analysis and/or representation. 254 255 }}}