Changeset 30 for trunk/adm


Ignore:
Timestamp:
01/06/11 17:47:53 (13 years ago)
Author:
pinsard
Message:

first plot with ferret

Location:
trunk/adm
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/adm/guides/data_content.rst

    r22 r30  
    6363^^^^^^^^^^^^^ 
    6464 
    65 :file:`/Users/jv/data/OAFLUX/mask_oaflux_30N30S.nc` 
     65:file:`${TROPFLUX_ID}/mask_oaflux_30N30S.nc` 
    6666 
    6767size < 100 Ko 
     
    7070^^^^^ 
    7171 
    72 :ref:`get_oaflux.sh` 
    73  
    74 :ref:`oaflux_mask_30N30S.pro` 
    75  
    76 :ref:`TropFlux_19890101_20091231.pro` 
    77 :ref:`interp_erai_dewt_1989_2009.pro` 
    78 :ref:`interp_erai_lwr_1989_2009.pro` 
    79 :ref:`interp_erai_sst_1989_2009.pro` 
    80 :ref:`interp_erai_t2m_1989_2009.pro` 
    81 :ref:`interp_erai_ws_1989_2009.pro` 
    82 :ref:`interp_olr_30n30s_1989_2009.pro` 
     72 - :ref:`get_oaflux.sh` 
     73 
     74 - :ref:`oaflux_mask_30N30S.pro` 
     75 
     76 - :ref:`TropFlux_19890101_20091231.pro` 
     77 
     78 - :ref:`interp_erai_dewt_1989_2009.pro` 
     79 - :ref:`interp_erai_lwr_1989_2009.pro` 
     80 - :ref:`interp_erai_sst_1989_2009.pro` 
     81 - :ref:`interp_erai_t2m_1989_2009.pro` 
     82 - :ref:`interp_erai_ws_1989_2009.pro` 
     83 - :ref:`interp_olr_30n30s_1989_2009.pro` 
    8384 
    8485.. _data_in_erai: 
     
    8889 
    8990Between 1989-now 
    90   
     91 
    9192http://climserv.ipsl.polytechnique.fr/fr/donnees/era-interim.html 
    9293 
  • trunk/adm/makefile

    r25 r30  
    1818# IDL and matlab in man_troff 
    1919# 
     20# pb with automodule for python path 
     21# 
    2022# EVOLUTIONS 
    2123# ========== 
     24# 
     25# - fplod 20110106T135021Z aedon.locean-ipsl.upmc.fr (Darwin) 
     26# 
     27#   * add matlab, ferret files 
    2228# 
    2329# - fplod 20101223T083725Z aedon.locean-ipsl.upmc.fr (Darwin) 
     
    94100        sed -e "s+$(DIRSRC)+$(DIRTMP)/sphinx_tmpdir/manuals/+g" \ 
    95101            -e "s+\.pro+.pro.rst+g") 
     102 
     103LIST_SRCMATLAB = \ 
     104$(DIRSRC)/test/$(PRODUCT)_startup.m \ 
     105$(DIRSRC)/test/read.m 
     106 
     107LIST_SRCMATLAB_RST = \ 
     108$(shell echo "$(LIST_SRCMATLAB)" | \ 
     109        sed -e "s+$(DIRSRC)/test/+$(DIRTMP)/sphinx_tmpdir/manuals/+g" \ 
     110            -e "s+\.m+.m.rst+g") 
     111 
     112LIST_SRCFERRET = \ 
     113$(DIRSRC)/test/read.jnl 
     114 
     115LIST_SRCFERRET_RST = \ 
     116$(shell echo "$(LIST_SRCFERRET)" | \ 
     117        sed -e "s+$(DIRSRC)/test/+$(DIRTMP)/sphinx_tmpdir/manuals/+g" \ 
     118            -e "s+\.jnl+.jnl.rst+g") 
     119 
     120LIST_SRCPYTHON = \ 
     121$(DIRSRC)/test/read.py 
    96122 
    97123.PHONY : \ 
     
    199225$(DIRTMP)/sphinx_tmpdir/index_manuals.rst \ 
    200226$(LIST_SRCSH_RST) \ 
    201 $(LIST_SRCIDL_RST) 
     227$(LIST_SRCIDL_RST) \ 
     228$(LIST_SRCMATLAB_RST) \ 
     229$(LIST_SRCFERRET_RST) \ 
     230$(LIST_SRCPYTHON) 
    202231        @sphinx-build -b man -c $(DIRADM)/sphinx \ 
    203232            -d $(DIRTMP)/sphinx_tmpdir/doctrees/ \ 
     
    219248$(LIST_RST_GUIDES) \ 
    220249$(LIST_SRCSH_RST) \ 
    221 $(LIST_SRCIDL_RST) 
     250$(LIST_SRCIDL_RST) \ 
     251$(LIST_SRCMATLAB_RST) \ 
     252$(LIST_SRCFERRET_RST) \ 
     253$(LIST_SRCPYTHON) 
    222254        @cp $(DIRADM)/index.rst $(DIRTMP)/sphinx_tmpdir/ 
    223255        @cp $(DIRADM)/index_guides.rst $(DIRTMP)/sphinx_tmpdir/ 
    224256        @cp $(LIST_RST_GUIDES) $(DIRTMP)/sphinx_tmpdir/guides/ 
    225257        @cp $(LIST_INVENTORY) $(DIRTMP)/sphinx_tmpdir/ 
     258        @cp $(LIST_SRCPYTHON) $(DIRTMP)/sphinx_tmpdir/manuals/ 
    226259        @sphinx-build -b html -c $(DIRADM)/sphinx \ 
    227260            -d $(DIRTMP)/sphinx_tmpdir/doctrees \ 
     
    238271$(LIST_RST_GUIDES) \ 
    239272$(LIST_SRCSH_RST) \ 
    240 $(LIST_SRCIDL_RST) 
     273$(LIST_SRCIDL_RST) \ 
     274$(LIST_SRCMATLAB_RST) \ 
     275$(LIST_SRCFERRET_RST) \ 
     276$(LIST_SRCPYTHON) 
    241277        @cp $(DIRADM)/index.rst $(DIRTMP)/sphinx_tmpdir/ 
    242278        @cp $(DIRADM)/index_guides.rst $(DIRTMP)/sphinx_tmpdir/ 
     
    260296$(LIST_RST_GUIDES) \ 
    261297$(LIST_SRCSH_RST) \ 
    262 $(LIST_SRCIDL_RST) 
     298$(LIST_SRCIDL_RST) \ 
     299$(LIST_SRCMATLAB_RST) \ 
     300$(LIST_SRCFERRET_RST) \ 
     301$(LIST_SRCPYTHONS) 
    263302        @cp $(DIRADM)/index.rst $(DIRTMP)/sphinx_tmpdir/ 
    264303        @cp $(DIRADM)/index_guides.rst $(DIRTMP)/sphinx_tmpdir/ 
     
    308347        done >> $@ 
    309348        @echo " " >> $@ 
     349        @echo "MATLAB scripts" >> $@ 
     350        @echo "MATLAB scripts" | tr [:print:] = >> $@ 
     351        @echo ".. toctree::" >> $@ 
     352        @echo "   :maxdepth: 1" 1>> $@ 
     353        @echo "   :glob:" 1>> $@ 
     354        @echo " " >> $@ 
     355        @for file in $(LIST_SRCMATLAB); \ 
     356        do \ 
     357           echo "   manuals/$$(basename $${file})"; \ 
     358        done >> $@ 
     359        @echo " " >> $@ 
     360        @echo "FERRET scripts" >> $@ 
     361        @echo "FERRET scripts" | tr [:print:] = >> $@ 
     362        @echo ".. toctree::" >> $@ 
     363        @echo "   :maxdepth: 1" 1>> $@ 
     364        @echo "   :glob:" 1>> $@ 
     365        @echo " " >> $@ 
     366        @for file in $(LIST_SRCFERRET); \ 
     367        do \ 
     368           echo "   manuals/$$(basename $${file})"; \ 
     369        done >> $@ 
     370        @echo " " >> $@ 
     371        @echo "PYTHON scripts" >> $@ 
     372        @echo "PYTHON scripts" | tr [:print:] = >> $@ 
     373        @echo ".. toctree::" >> $@ 
     374        @echo "   :maxdepth: 1" 1>> $@ 
     375        @echo "   :glob:" 1>> $@ 
     376        @echo " " >> $@ 
     377        @for file in $(LIST_SRCPYTHON); \ 
     378        do \ 
     379           echo "   .. automodule:: $$(basename $${file})"; \ 
     380        done >> $@ 
     381        @echo "    .. automodule::" 1>> $@ 
     382        @echo "       :members:" 1>> $@ 
     383        @echo " " >> $@ 
    310384 
    311385html_src_browser_doxygen : \ 
     
    325399        @$(DIRADM)/extract_rst.sh -i $< -l IDL -o $@ 
    326400 
    327 $(DIRTMP)/sphinx_tmpdir/manuals/%.m.rst : $(DIRSRC)/%.m $(DIRADM)/extract_rst.sh 
     401$(DIRTMP)/sphinx_tmpdir/manuals/%.m.rst : $(DIRSRC)/test/%.m $(DIRADM)/extract_rst.sh 
    328402        @$(DIRADM)/extract_rst.sh -i $< -l matlab -o $@ 
    329403 
    330 $(DIRTMP)/sphinx_tmpdir/manuals/%.jnl.rst : $(DIRSRC)/%.jnl  $(DIRADM)/extract_rst.sh 
     404$(DIRTMP)/sphinx_tmpdir/manuals/%.jnl.rst : $(DIRSRC)/test/%.jnl  $(DIRADM)/extract_rst.sh 
    331405        @$(DIRADM)/extract_rst.sh -i $< -l ferret -o $@ 
    332406 
  • trunk/adm/sphinx/conf.py

    r25 r30  
    2323# intersphinx_mapping with saxo 
    2424# 
     25# make autodoc work for test/read.py 
     26# 
    2527# EVOLUTIONS 
    2628# ========== 
     29# 
     30# - fplod 20110106T151836Z aedon.locean-ipsl.upmc.fr (Darwin) 
     31# 
     32#   * add autodoc extension 
    2733# 
    2834# - fplod 20101223T083524Z aedon.locean-ipsl.upmc.fr (Darwin) 
     
    7581# Add any Sphinx extension module names here, as strings. They can be extensions 
    7682# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. 
    77 extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath', 'sphinx.ext.ifconfig','sphinx.ext.graphviz'] 
     83extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath', 'sphinx.ext.ifconfig','sphinx.ext.graphviz','sphinx.ext.autodoc'] 
    7884 
    7985 
Note: See TracChangeset for help on using the changeset viewer.