Changeset 1210 in lmdz_wrf
- Timestamp:
- Oct 19, 2016, 3:48:49 PM (8 years ago)
- Location:
- trunk/tools/documentation
- Files:
-
- 3 edited
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/documentation/PyNCplot.css
r1205 r1210 22 22 23 23 div.valimg{width:40%;height:85%;text-align:center;position:absolute;top:5%;left:0%;background-color:rgb(255,255,255);} 24 div.valhelp{width:60%;height:85%;text-align: center;position:absolute;top:5%;left:40%;background-color:rgb(240,240,240);24 div.valhelp{width:60%;height:85%;text-align:left;position:absolute;top:5%;left:40%;background-color:rgb(240,240,240); 25 25 font-size:0.9em;overflow-y:auto} 26 26 div.valins{width:100%;height:10%;text-align:left;position:absolute;bottom:10%;left:0%;background-color:rgb(192,192,192); 27 font-size:0.9em;font-family:" Courier New";overflow-x:auto}27 font-size:0.9em;font-family:"monospace";overflow-x:auto} 28 28 29 29 /* Environments */ … … 31 31 font-size:0.9em;font-family:"Courier New";} 32 32 33 /* Resources of the introduction */ 34 33 35 /* Fonts */ 34 p.genintro{color:rgb(240,240,240);font-size:3em;}36 body.genintro{color:rgb(240,240,240);font-size:1.1em;text-indent:38px} 35 37 36 /* Link lhc*/ 37 a.lhc:link {color:rgb(128,0,0);text-decoration:none;font-size:1em;} 38 a.lhc:visited {color:rgb(192,0,0);text-decoration:none;font-size:1em;} 39 a.lhc:hover {color:rgb(128,0,0);text-decoration:none;font-weight:bold;font-size:1em;} 40 a.lhc:active {color:rgb(128,0,0);text-decoration:none;font-size:1em;} 38 p.genintro{color:rgb(240,240,240);font-size:1.1em;text-indent:38px} 39 .codetxt {font-family:"monospace";font-weight:bold;} 40 41 /* Link la*/ 42 a.la:link {color:rgb(128,128,128);text-decoration:none;} 43 a.la:visited {color:rgb(128,128,128);text-decoration:none;} 44 a.la:hover {color:rgb(192,192,192);text-decoration:none;font-weight:bold;} 45 a.la:active {color:rgb(128,128,128);text-decoration:none;} 46 47 /* lists intro */ 48 ol.roman {list-style-type: lower-roman;} 49 50 /* Resources of the different sub-menus */ 41 51 42 52 /* Link lc*/ 43 a.lc:link {color:rgb(1 28,0,0);text-decoration:none;}53 a.lc:link {color:rgb(192,0,0);text-decoration:none;} 44 54 a.lc:visited {color:rgb(192,0,0);text-decoration:none;} 45 55 a.lc:hover {color:rgb(128,0,0);text-decoration:none;font-weight:bold;} 46 a.lc:active {color:rgb(128,0,0);text-decoration:none;} 56 a.lc:active {color:rgb(192,0,0);text-decoration:none;} 57 -
trunk/tools/documentation/index.html
r1205 r1210 12 12 </DIV> 13 13 <DIV CLASS="hcolmenu"> 14 <A CLASS="l hc" HREF="nctransform.html" TARGET="hmenu">Netcdf transformation</A> |15 <A CLASS="l hc" HREF="plotting.html" TARGET="hmenu">Plotting</A> |16 <A CLASS="l hc" HREF="other.html" TARGET="hmenu">Other</A>14 <A CLASS="lc" HREF="nctransform/nctransform.html" TARGET="hmenu">Netcdf transformation</A> | 15 <A CLASS="lc" HREF="plotting.html" TARGET="hmenu">Plotting</A> | 16 <A CLASS="lc" HREF="other.html" TARGET="hmenu">Other</A> 17 17 </DIV> 18 18 <DIV CLASS="hvalmenu"> -
trunk/tools/documentation/intro.html
r1205 r1210 5 5 </HEAD> 6 6 7 <BODY STYLE="color:rgb(240,240,240);font-size:1em;"> 8 Python scripts to manage netCDF files and to plot different styles of data kept in netCDF files (or not) 7 <!--BODY STYLE="color:rgb(240,240,240);font-size:1em;"--> 8 <BODY CLASS="genintro"> 9 <A CLASS="la" HREF="https://www.python.org" TARGET="_blank">Python</A> scripts (2.x) to manage netCDF files and to plot different kinds of figures using data kept in netCDF files.<BR> 10 <BR> 11 Scripts use python's <A CLASS="la" HREF="http://matplotlib.org" TARGET="_blank">matplotlib</A> and <A CLASS="la" HREF="https://pypi.python.org/pypi/netCDF4" TARGET="_blank">netCDF4</A> libraries. Additionally some functions use some specific Fortran based libraries developed on purpose for the case. <BR> 12 <BR> 13 It attempts to facilitate the research throughout two main goals: 14 <OL CLASS="roman"> 15 <LI>Manage all day-base needs for netCDF files from an unique platform, in this case, python based</LI> 16 <LI>Obtain an 'easy' to use tool to plot figures, in this case, python based</LI> 17 </OL> 18 It encompass different capabilities for different tasks: 19 <UL> 20 <LI>Manage of netCDF files (<!--A CLASS="la" HREF="nctransform.html" TARGET="hmenu"-->netCDF transformation<!--/A-->)</LI> 21 <LI>Plot figures (<A CLASS="la" HREF="plotting.html" TARGET="hmenu">plotting</A>)</LI> 22 <LI>Compute diagnostics (<!--A CLASS="la" HREF="other.html" TARGET="hmenu"-->other<!--/A-->)</LI> 23 <LI>Perform files/figures for model inter-comparison (<!--A CLASS="la" HREF="other.html" TARGET="hmenu"-->other<!--/A-->)</LI> 24 <LI>NetCDF creation from ASCII observation files (<!--A CLASS="la" HREF="other.html" TARGET="hmenu"-->other<!--/A-->)</LI> 25 </UL> 9 26 </BODY> 10 27 </HTML> -
trunk/tools/documentation/plotting/intro.html
r1207 r1210 16 16 </CODE></PRE> 17 17 <!--/DIV--> 18 Available funtions: 18 One can obtain all the list of plots and their instructions by demanding to the script: 19 <PRE><CODE> 20 $ python drawing.py -o list_grahics 21 </CODE></PRE> 22 For almost all figures, one can obtain all the help of a specific plot by: 23 <PRE><CODE> 24 $ python drawing.py -o [figure] -S h 25 </CODE></PRE> 26 The plotting script has two steps: 27 <OL> 28 <LI><SPAN CLASS="codetxt">drawing.py:</SPAN> Main script which gets the data from files 29 <LI><SPAN CLASS="codetxt">drawing_tools.py:</SPAN> Script which draw the figure and its used by <SPAN CLASS="codetxt">drawing.py</SPAN> 30 <LI><SPAN CLASS="codetxt">generic_tools.py:</SPAN> Script which contains generic operations and it is used by both scripts</LI> 31 </OL> 32 Available plots: 19 33 <UL> 20 34 <LI> create_movie: Function to create a movie assuming ImageMagick installed! </LI>
Note: See TracChangeset
for help on using the changeset viewer.