Displaying 9 results from an estimated 9 matches for "degrees_east".
2011 Sep 07
3
Editing the variables attributes section in the netCDF header of netCDF files created using the package ncdf.
...= "latitude" ;
lat:units = "degrees_north" ;
lat:axis = "Y" ;
double lon(lon) ;
lon:long_name = "longitude" ;
lon:standard_name = "longitude" ;
lon:units = "degrees_east" ;
lon:axis = "X" ;
byte ccd(time, lat, lon) ;
ccd:Unit_duration = 7.5f ;
ccd:units = "Unit_duration mins" ;
ccd:long_name = "Cold Cloud Duration" ;
ccd:short_name = "ccd&...
2009 Nov 10
3
NetCDF output in R
...[1]]
[1] 6
Warning message:
In 1:nt : numerical expression has 26 elements: only the first used
################# function for writing out the netcdf file #############
write.netcdf.time <- function(filename='outputfile.nc',data,lons,lats,nt){
lon <- dim.def.ncdf('lon','degrees_east',lons)
lat <- dim.def.ncdf('lat','degrees_north',lats)
times <- 1:nt
tdim <- dim.def.ncdf('time','days since 1980-01-01', times, unlim=TRUE)
# levs <- dim.def.ncdf('lev','pressure',levs)
var <- var.def.ncdf('data','unitl...
2009 Nov 10
3
NetCDF output in R
...[1]]
[1] 6
Warning message:
In 1:nt : numerical expression has 26 elements: only the first used
################# function for writing out the netcdf file #############
write.netcdf.time <- function(filename='outputfile.nc',data,lons,lats,nt){
lon <- dim.def.ncdf('lon','degrees_east',lons)
lat <- dim.def.ncdf('lat','degrees_north',lats)
times <- 1:nt
tdim <- dim.def.ncdf('time','days since 1980-01-01', times, unlim=TRUE)
# levs <- dim.def.ncdf('lev','pressure',levs)
var <- var.def.ncdf('data','unitl...
2011 May 06
1
read a netcdf file _Fill_value=-32768
..."latitude" ;
lat:units = "degrees_north" ;
lat:valid_range = -60., 60. ;
float lon(lon) ;
lon:long_name = "longitude" ;
lon:standard_name = "longitude" ;
lon:units = "degrees_east" ;
lon:valid_range = -100., 45. ;
double sst(time, lat, lon) ;
sst:long_name = "sea surface temperature" ;
sst:standard_name = "sea_surface_temperature" ;
sst:units = "K" ;
sst...
2017 Aug 28
3
Extracting subset from netCDF file using lat/lon and converting into .csv in R
...in, snow, large-scale,
convective, etc.)
long_name: Bias-Corrected Precipitation
units: kg m-2 s-1
standard_name: precipitation_flux
3 dimensions:
lon Size:720
standard_name: longitude
long_name: longitude
units: degrees_east
axis: X
lat Size:360
standard_name: latitude
long_name: latitude
units: degrees_north
axis: Y
time Size:365 *** is unlimited ***
standard_name: time
units: days since 1860-1-1 00:00:00...
2017 Aug 28
0
Extracting subset from netCDF file using lat/lon and converting into .csv in R
...c.)
> long_name: Bias-Corrected Precipitation
> units: kg m-2 s-1
> standard_name: precipitation_flux
>
> 3 dimensions:
> lon Size:720
> standard_name: longitude
> long_name: longitude
> units: degrees_east
> axis: X
> lat Size:360
> standard_name: latitude
> long_name: latitude
> units: degrees_north
> axis: Y
> time Size:365 *** is unlimited ***
> standard_name: time
> units: day...
2009 May 01
0
Copying ncdf dims and vars from one file to the other
...:units = "minutes since 2007-06-17 00:00:0.0";
:delta_t = "0000-00-00 00:10:00";
:coordinate_defines = "point";
:actual_range = 5770.0, 7200.0; // double
:_CoordinateAxisType = "Time";
float lon(yc=211, xc=157);
:units = "degrees_east";
:long_name = "longitude";
:standard_name = "longitude";
:actual_range = 275.0508346557617, 281.5693588256836; // double
:_CoordinateAxisType = "Lon";
float lat(yc=211, xc=157);
:units = "degrees_north";
:long_name = &qu...
2010 Dec 13
0
Problem with retrieve.nc of clim.pact
...d$dim$'time$units'"
[1] "Time, units: hours since 1-1-1 00:00:0.0"
[1] "torg= 1-1-1 00:00:0.0"
[1] "Time origin: (year-month-day) 1 - 1 - 1"
[1] "Time unit: hours"
[1] "Latitudes: 0 - 90 degrees_north"
[1] "Longitudes: 0 - 357.5 degrees_east"
[1] "Reading hgt"
[1] "read the data from EASTERN hemisphere"
start count varsize
[1,] 1 144 144
[2,] 1 37 37
[3,] 1 1 1
[4,] 1 31 11475
[1] "dim dat:"
[1] 31 1 37 144
[1] 144 0 37 1 31
[1] 0.0 357.5
[...
2011 Jun 17
0
Inconsistent results from var.get.nc in RNetCDF
...quot;latitude" ;
lat:standard_name = "latitude" ;
lat:units = "degrees_north" ;
float lon(lon) ;
lon:long_name = "longitude" ;
lon:standard_name = "longitude" ;
lon:units = "degrees_east" ;
short tmax(lon, lat, month) ;
tmax:missing_value = -9999 ;
tmax:_FillValue = -9999 ;
tmax:units = "degree_celsius" ;
tmax:scale_factor = 0.01 ;
tmax:valid_min = -5000 ;
tmax:valid_max = 6000...