Changeset 1223 in lmdz_wrf for trunk/tools
- Timestamp:
- Oct 20, 2016, 1:55:36 PM (8 years ago)
- Location:
- trunk/tools/documentation
- Files:
-
- 4 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/documentation/PyNCplot.css
r1216 r1223 34 34 font-size:0.9em;font-family:"Courier New";} 35 35 36 /* Definitions */ 37 /* From: http://www.codingforums.com/html-and-css/22962-setting-variables-html.html 38 <SCRIPT> 39 var ind = " "; 40 </SCRIPT> 41 */ 42 36 43 /* Resources of the introduction */ 37 44 … … 39 46 body.genintro{color:rgb(240,240,240);font-size:1.1em;text-indent:38px} 40 47 48 p.explain{text-align:left;text-indent:38px} 41 49 p.genintro{color:rgb(240,240,240);font-size:1.1em;text-indent:38px} 50 42 51 .codetxt {font-family:"monospace";font-weight:bold;} 43 52 -
trunk/tools/documentation/index.html
r1216 r1223 2 2 <HEAD> 3 3 <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 4 7 <TITLE>PyNCplot: python based tool to manage and plot netCDF files</TITLE> 5 8 <LINK REL="stylesheet" TYPE="text/css" HREF="PyNCplot.css"/> … … 12 15 </DIV> 13 16 <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> 17 21 </DIV> 18 22 <DIV CLASS="hvalmenu"> -
trunk/tools/documentation/intro.html
r1216 r1223 20 20 <LI>Manage of netCDF files (<A CLASS="la" HREF="nctransform/nctransform.html" TARGET="hmenu">netCDF transformation</A>)</LI> 21 21 <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> 22 23 <LI>Compute diagnostics (<!--A CLASS="la" HREF="other/other.html" TARGET="hmenu"-->other<!--/A-->)</LI> 23 24 <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 14 14 $ python nc_var.py -o [operation] -f [file(or files)] -S [values] -v [variables] 15 15 </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> 16 19 One can obtain all the list of operations and their instructions by demanding to the script: 17 20 <PRE><CODE> … … 21 24 <PRE><CODE> 22 25 $ 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.' 23 30 </CODE></PRE> 24 31 The netcdf-managing script has two steps: -
trunk/tools/documentation/plotting/intro.html
r1216 r1223 16 16 </CODE></PRE> 17 17 <!--/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> 18 21 One can obtain all the list of plots and their instructions by demanding to the script: 19 22 <PRE><CODE> … … 23 26 <PRE><CODE> 24 27 $ 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.' 25 32 </CODE></PRE> 26 33 The plotting script has two steps:
Note: See TracChangeset
for help on using the changeset viewer.