search for: gfdl_preci

Displaying 3 results from an estimated 3 matches for "gfdl_preci".

2017 Aug 28
3
Extracting subset from netCDF file using lat/lon and converting into .csv in R
I have a series of nertCDF files containing global data for a particular variable, e.g. tmin/tmax/precipiation/windspeed/relative humuidity/radiation etc. I get the following information when using *nc_open* function in R: datafile: https://www.dropbox.com/s/xpo7zklcmtm3g5r/gfdl_preci.nc?dl=0 File gfdl_preci.nc (NC_FORMAT_NETCDF4_CLASSIC): 1 variables (excluding dimension variables): float prAdjust[lon,lat,time] _FillValue: 1.00000002004088e+20 missing_value: 1.00000002004088e+20 comment: includes all types (rain, snow, large-scale,...
2017 Aug 28
0
Extracting subset from netCDF file using lat/lon and converting into .csv in R
...have a series of nertCDF files containing global data for a particular > variable, e.g. tmin/tmax/precipiation/windspeed/relative > humuidity/radiation etc. I get the following information when using > *nc_open* function in R: > > datafile: https://www.dropbox.com/s/xpo7zklcmtm3g5r/gfdl_preci.nc?dl=0 > > File gfdl_preci.nc (NC_FORMAT_NETCDF4_CLASSIC): > > 1 variables (excluding dimension variables): > float prAdjust[lon,lat,time] > _FillValue: 1.00000002004088e+20 > missing_value: 1.00000002004088e+20 > comment: includes...
2017 Sep 19
0
Extracting Europe from a netCDF file
Dear ALL, I was trying to extract the data only for european region from this file https://www.dropbox.com/s/xpo7zklcmtm3g5r/gfdl_preci.nc?dl=0 using these points (-10.375, 35.125), (43.375, 35.125), (-10.375, 71.375), (43.375, 71.375). However, I am not sure how I can proceed further. I have started with the following script: *f <- "~/gfdl_preci.nc <http://gfdl_preci.nc>"library(raster)pr <- brick(f)pri...