- Timestamp:
- Apr 4, 2017, 7:34:59 PM (8 years ago)
- Location:
- trunk/tools
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/documentation/ncmanage/intro.html
r1490 r1494 82 82 <LI><SPAN CLASS="codetxt">ivattrs:</SPAN> Give all the attributes of a variable and its type</LI> 83 83 <LI><SPAN CLASS="codetxt">LMDZ_toCF:</SPAN> Function to pass a LMDZ original file to CF-conventions</LI> 84 <LI><SPAN CLASS="codetxt">maskvar:</SPAN> Function to mask a variable using a mask. It is assumed that mask[...,dimM,dimJ,dimK] and var[...,dimM,dimJ,dimK] share the last dimensions</LI>84 <LI><SPAN CLASS="codetxt">maskvar:</SPAN> Function to mask a variable using another variable to mask it. Only need to share at least 1 dimension with the same size (no need same name) </LI> 85 85 <LI><SPAN CLASS="codetxt">model_characteristics:</SPAN> Function to provide major characteristics of a given model output</LI> 86 86 <LI><SPAN CLASS="codetxt">ncreplace:</SPAN> Function to replace something from a netCDF file</LI> -
trunk/tools/documentation/ncmanage/ncmanage.html
r1484 r1494 11 11 <A CLASS="lc" HREF="field_stats.html" TARGET="value">field_stats</A><BR> 12 12 <A CLASS="lc" HREF="lonlat_polygon.html" TARGET="value">lonlat_polygon</A><BR> 13 <A CLASS="lc" HREF="maskvar.html" TARGET="value">maskvar</A><BR> 13 14 </DIV> 14 15 <DIV CLASS="valmenu"> -
trunk/tools/nc_var.py
r1490 r1494 10 10 11 11 ## e.g. # nc_var.py -o lonlat_polygon -f wrfout_d01_1995-01-01_00:00:00 -S star.dat -v XLONG,XLAT 12 ## e.g. # nc_var.py -o maskvar -f SouthAm_Climzones_masked.nc -S 'geo_em.d01.nc:LANDMASK:Time|0:0' -v region:lon,lat 12 13 13 14 ## e.g. ccrc468-17 # ./nc_var.py -v time -f 123/CCRC_NARCliM_Sydney_All_1990-1999_pr10max.nc -o out -S 1:-1 … … 106 107 # LMDZ_toCF: Function to pass a LMDZ original file to CF-conventions 107 108 # lonlat_polygon: Function to define a lon/lat region giving the coordinates of the vertexs of a given polygon 108 # maskvar: Function to mask a variable using a mask. It is assumed that mask[...,dimM,dimJ,dimK] and109 # maskvar: Function to mask a variable using another variable to mask it. Only need to share at least 1 dimension with the same size (no need same name) 109 110 # model_characteristics: Function to provide major characterisitcs of a given model output 110 111 # mthDYNAMICO_toCF: Function to pass a mthDYNAMICO original file to CF-conventions
Note: See TracChangeset
for help on using the changeset viewer.