Displaying 6 results from an estimated 6 matches for "standard_nam".
Did you mean:
standard_name
2011 May 06
1
read a netcdf file _Fill_value=-32768
....
1)
first calculate mean .
my data is like that
through ncdump -h test.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 = &q...
2017 Aug 28
3
Extracting subset from netCDF file using lat/lon and converting into .csv in R
...float prAdjust[lon,lat,time]
_FillValue: 1.00000002004088e+20
missing_value: 1.00000002004088e+20
comment: includes all types (rain, 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: degre...
2009 May 01
0
Copying ncdf dims and vars from one file to the other
..."lon lat";
:grid_mapping = "polar_stereographic";
:level_desc = "Height";
:grid_desc = "polar_stereographic";
float xc(xc=157);
:units = "m";
:long_name = "x-coordinate of polar-stereographic projection";
:standard_name = "projection_x_coordinate";
:axis = "X";
:coordinate_defines = "point";
:actual_range = 0.0, 390000.0; // double
:_CoordinateAxisType = "GeoX";
float yc(yc=211);
:units = "m";
:long_name = "y-coordinate of pol...
2017 Aug 28
0
Extracting subset from netCDF file using lat/lon and converting into .csv in R
...> _FillValue: 1.00000002004088e+20
> missing_value: 1.00000002004088e+20
> comment: includes all types (rain, 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
> lon...
2011 Sep 07
3
Editing the variables attributes section in the netCDF header of netCDF files created using the package ncdf.
...int time(time) ;
time:long_name = "time" ;
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 = &quo...
2011 Jun 17
0
Inconsistent results from var.get.nc in RNetCDF
...longitude, and a climate
variable).
Here is some of the output from print.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, mont...