Displaying 9 results from an estimated 9 matches for "degrees_north".
2009 Nov 10
3
NetCDF output in R
...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','unitless',list(lon,lat,tdim),-999.9)
ncid <- create.ncdf(filename...
2009 Nov 10
3
NetCDF output in R
...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','unitless',list(lon,lat,tdim),-999.9)
ncid <- create.ncdf(filename...
2011 May 06
1
read a netcdf file _Fill_value=-32768
....nc
netcdf test {
dimensions:
lat = 301 ;
lon = 401 ;
time = UNLIMITED ; // (80 currently)
variables:
float lat(lat) ;
lat:long_name = "latitude" ;
lat:standard_name = "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. ;...
2017 Aug 28
3
Extracting subset from netCDF file using lat/lon and converting into .csv in R
...d_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
calendar: standard
axis: T
14 global attributes:
CDI: Climate Data Interface version 1.7.0 (http://mpimet.mpg.de/cdi...
2017 Aug 28
0
Extracting subset from netCDF file using lat/lon and converting into .csv in R
...imensions:
> 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
> calendar: standard
> axis: T
>
> 14 global attributes:
> CDI: Climate Data Interface ve...
2009 May 01
0
Copying ncdf dims and vars from one file to the other
...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 = "latitude";
:standard_name = "latitude";
:actual_range = 40.151729583740234, 45.38578414916992; // double
:_CoordinateAxisType = "Lat";
:Conventions = "CF-1.0";
:title = "AURV-PPBV 2_5km/species_2_5km_200706...
2010 Dec 13
0
Problem with retrieve.nc of clim.pact
...l span= 275376
data points= 11475"
[1] "ncid$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...
2011 Jun 17
0
Inconsistent results from var.get.nc in RNetCDF
...rint.nc for clarity:
-----
dimensions:
month = UNLIMITED ; // (1368 currently)
lat = 3105 ;
lon = 7025 ;
variables:
float lat(lat) ;
lat:long_name = "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:_Fill...
2011 Sep 07
3
Editing the variables attributes section in the netCDF header of netCDF files created using the package ncdf.
...time:units = "days since 1984-05-01 0:0:0" ;
time:day_begins = "06:15" ;
double lat(lat) ;
lat:long_name = "latitude" ;
lat:standard_name = "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" ;...