Changeset 1223 in lmdz_wrf for trunk/tools


Ignore:
Timestamp:
Oct 20, 2016, 1:55:36 PM (8 years ago)
Author:
lfita
Message:

Adding `generic'
Fixing some issues

Location:
trunk/tools/documentation
Files:
4 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/documentation/PyNCplot.css

    r1216 r1223  
    3434  font-size:0.9em;font-family:"Courier New";}
    3535
     36/* Definitions */
     37/* From: http://www.codingforums.com/html-and-css/22962-setting-variables-html.html
     38<SCRIPT>
     39var ind = "  ";
     40</SCRIPT>
     41*/
     42
    3643/* Resources of the introduction */
    3744
     
    3946body.genintro{color:rgb(240,240,240);font-size:1.1em;text-indent:38px}
    4047
     48p.explain{text-align:left;text-indent:38px}
    4149p.genintro{color:rgb(240,240,240);font-size:1.1em;text-indent:38px}
     50
    4251.codetxt {font-family:"monospace";font-weight:bold;}
    4352
  • trunk/tools/documentation/index.html

    r1216 r1223  
    22  <HEAD>
    33    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8"/>
     4    <META NAME="description" CONTENT="All purposes python tool for netCDF files">
     5    <META NAME="keywords" CONTENT="python, netCDF, manage, plotting, atmosphere, climate">
     6
    47    <TITLE>PyNCplot: python based tool to manage and plot netCDF files</TITLE>
    58    <LINK REL="stylesheet" TYPE="text/css" HREF="PyNCplot.css"/>
     
    1215    </DIV>
    1316    <DIV CLASS="hcolmenu">
    14       <A CLASS="lc" HREF="nctransform/nctransform.html" TARGET="hmenu">Netcdf transformation</A> |
    15       <A CLASS="lc" HREF="plotting/plotting.html" TARGET="hmenu">Plotting</A> |
    16       <A CLASS="lc" HREF="other/other.html" TARGET="hmenu">Other</A>
     17      <A CLASS="lc" HREF="nctransform/nctransform.html" TARGET="hmenu">netCDF transformation</A> |
     18      <A CLASS="lc" HREF="plotting/plotting.html" TARGET="hmenu">plotting</A> |
     19      <A CLASS="lc" HREF="generic/generic.html" TARGET="hmenu">generic</A> |
     20      <A CLASS="lc" HREF="other/other.html" TARGET="hmenu">other</A>
    1721    </DIV>
    1822    <DIV CLASS="hvalmenu">
  • trunk/tools/documentation/intro.html

    r1216 r1223  
    2020      <LI>Manage of netCDF files (<A CLASS="la" HREF="nctransform/nctransform.html" TARGET="hmenu">netCDF transformation</A>)</LI>
    2121      <LI>Plot figures (<A CLASS="la" HREF="plotting/plotting.html" TARGET="hmenu">plotting</A>)</LI>
     22      <LI>General all purposes tools (<A CLASS="la" HREF="generic/generic.html" TARGET="hmenu">generic</A>)</LI>
    2223      <LI>Compute diagnostics (<!--A CLASS="la" HREF="other/other.html" TARGET="hmenu"-->other<!--/A-->)</LI>
    2324      <LI>NetCDF creation from ASCII observation files (<A CLASS="la" HREF="other/other.html" TARGET="hmenu">other</A>)</LI>
  • trunk/tools/documentation/nctransform/intro.html

    r1216 r1223  
    1414        $ python nc_var.py -o [operation] -f [file(or files)] -S [values] -v [variables]
    1515      </CODE></PRE>
     16      In most of the cases <SPAN CLASS="codetxt">[values]</SPAN> is a string which contains a list of values separated by a character <SPAN CLASS="codetxt">[sep]</SPAN>, becomming the value as:
     17      <PRE><CODE>
     18      [values]=[val1][sep][val2][sep][...[valN]]</CODE></PRE>
    1619      One can obtain all the list of operations and their instructions by demanding to the script:
    1720      <PRE><CODE>
     
    2124      <PRE><CODE>
    2225        $ python nc_var.py -o [operation] -S h
     26      </CODE></PRE>
     27      One should be able to obtain an example of execution by
     28      <PRE><CODE>
     29        $ cat nc_var.py | grep [operation] | grep 'e.g.'
    2330      </CODE></PRE>
    2431      The netcdf-managing script has two steps:
  • trunk/tools/documentation/plotting/intro.html

    r1216 r1223  
    1616      </CODE></PRE>
    1717      <!--/DIV-->
     18      In most of the cases <SPAN CLASS="codetxt">[values]</SPAN> is a string which contains a list of values separated by a character <SPAN CLASS="codetxt">[sep]</SPAN>, becomming the value as:
     19      <PRE><CODE>
     20      [values]=[val1][sep][val2][sep][...[valN]]</CODE></PRE>
    1821      One can obtain all the list of plots and their instructions by demanding to the script:
    1922      <PRE><CODE>
     
    2326      <PRE><CODE>
    2427        $ python drawing.py -o [figure] -S h
     28      </CODE></PRE>
     29      One should be able to obtain an example of execution by
     30      <PRE><CODE>
     31        $ cat drawing.py | grep [figure] | grep 'e.g.'
    2532      </CODE></PRE>
    2633      The plotting script has two steps:
Note: See TracChangeset for help on using the changeset viewer.