Changeset 1494 in lmdz_wrf for trunk


Ignore:
Timestamp:
Apr 4, 2017, 7:34:59 PM (8 years ago)
Author:
lfita
Message:

Adding new `maskvar'

Location:
trunk/tools
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/documentation/ncmanage/intro.html

    r1490 r1494  
    8282        <LI><SPAN CLASS="codetxt">ivattrs:</SPAN> Give all the attributes of a variable and its type</LI>
    8383        <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>
    8585        <LI><SPAN CLASS="codetxt">model_characteristics:</SPAN> Function to provide major characteristics of a given model output</LI>
    8686        <LI><SPAN CLASS="codetxt">ncreplace:</SPAN> Function to replace something from a netCDF file</LI>
  • trunk/tools/documentation/ncmanage/ncmanage.html

    r1484 r1494  
    1111      <A CLASS="lc" HREF="field_stats.html" TARGET="value">field_stats</A><BR>
    1212      <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>
    1314    </DIV>
    1415    <DIV CLASS="valmenu">
  • trunk/tools/nc_var.py

    r1490 r1494  
    1010
    1111## 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
    1213
    1314## e.g. ccrc468-17 # ./nc_var.py -v time -f 123/CCRC_NARCliM_Sydney_All_1990-1999_pr10max.nc -o out -S 1:-1
     
    106107# LMDZ_toCF: Function to pass a LMDZ original file to CF-conventions
    107108# 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] and
     109# 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)
    109110# model_characteristics: Function to provide major characterisitcs of a given model output
    110111# mthDYNAMICO_toCF: Function to pass a mthDYNAMICO original file to CF-conventions
Note: See TracChangeset for help on using the changeset viewer.