source: trunk/src/get_olr.sh

Last change on this file was 203, checked in by pinsard, 10 years ago

fix thanks to coding rules

  • Property svn:keywords set to Id URL
File size: 1.3 KB
Line 
1#! /bin/sh
2#+
3#
4# .. program:: get_olr.sh
5#
6# .. _get_olr.sh:
7#
8# ==========
9# get_olr.sh
10# ==========
11#
12# SYNOPSIS
13# ========
14#
15# .. code-block:: bash
16#
17#    get_olr.sh
18#
19# DESCRIPTION
20# ===========
21#
22# ``get_olr.sh`` get OLR interpolated reference file
23#
24# SEE ALSO
25# ========
26#
27# :ref:`data_in_olr`
28#
29# :ref:`get_olrnint.sh`
30#
31# TODO
32# ====
33#
34# homogenize with get_oaflux.sh for trace, environnement and so on
35#
36# coding rules
37#
38# check if we can use OpenDAP file cited
39# in http://www.esrl.noaa.gov/psd/data/gridded/data.interp_OLR.html
40# cf. http://www.esrl.noaa.gov/psd/thredds/dodsC/Datasets/interp_OLR/catalog.html?dataset=PSDgriddedData/interp_OLR/olr.day.mean.nc
41#
42# it might be dangerous because modification with became less visible
43# but at least we will be sure to use the most recent one !
44#
45# EVOLUTIONS
46# ==========
47#
48# $Id$
49#
50# $URL$
51#
52# - fplod 20110812T092412Z aedon.locean-ipsl.upmc.fr (Darwin)
53#
54#   * usage of ${PROJECT_ID}
55#
56# - fplod 20101213T155858Z aedon.locean-ipsl.upmc.fr (Darwin)
57#
58#   * minimal header
59#
60# - jv 2008
61#
62#   * creation
63#
64#-
65
66wget  --tries=1 --no-verbose -P ${PROJECT_ID} \
67ftp://ftp.cdc.noaa.gov/Datasets/interp_OLR/olr.day.mean.nc
68
69#ftp -n <<@DELIM
70#  open ftp.cdc.noaa.gov
71#  user anonymous jv@locean-ipsl.upmc.fr
72#  bin
73#  prompt
74#  cd /Datasets/interp_OLR/
75#  mget QS_XWGRD3_${yea}*.gz
76#  quit
77#@DELIM
78
79exit 0
Note: See TracBrowser for help on using the repository browser.