source: trunk/src/get_olr.sh @ 79

Last change on this file since 79 was 50, checked in by pinsard, 13 years ago

replace TROPFLUX by PROJECT

File size: 1021 bytes
Line 
1#! /bin/sh
2#+
3#
4# .. program:: get_olr.sh
5#
6# .. _get_olr.sh:
7#
8# =================================================
9# get_olr.sh -- get OLR interpolated reference file
10# =================================================
11#
12# SYNOPSIS
13# ========
14#
15# ::
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:`guide data OLR <data_in_olr>`
28#
29# :ref:`get_olrnint.sh`
30#
31# TODO
32# ====
33#
34# trace
35#
36# hard coded directory - usage of ${PROJECT_ID}
37#
38# coding rules
39#
40# EVOLUTIONS
41# ==========
42#
43# - fplod 20101213T155858Z aedon.locean-ipsl.upmc.fr (Darwin)
44#
45#   * minimal header
46#
47# - jv 2008
48#
49#   * creation
50#
51#-
52DIR_DATA='/Users/jv/data/OLR/'
53
54cd $DIR_DATA
55
56mv olr.day.mean.nc olr.day.mean.nc.old
57
58wget ftp://ftp.cdc.noaa.gov/Datasets/interp_OLR/olr.day.mean.nc
59
60#ftp -n <<@DELIM
61#  open ftp.cdc.noaa.gov
62#  user anonymous jv@locean-ipsl.upmc.fr
63#  bin
64#  prompt
65#  cd /Datasets/interp_OLR/
66#  mget QS_XWGRD3_${yea}*.gz
67#  quit
68#@DELIM
69
70ls -l
71
Note: See TracBrowser for help on using the repository browser.