[Thread Prev][Thread Next][Index]

[ferret_users] Fwd: Overlay of Unconnected Time Series Plots with Time Axis (in Days)



Dear Ferret User Group:

I am having a tough time looking (did search User Forum) for hints on how to overlay two time series (that are represented as unconnected
symbols on the same plot). I have tried various combinations for overlay (including using various PPL commands) and am obviously not doing
something properly. Any help is much appreciated.

For Instance I am trying to plot Column 4 (AMOD_mean_AOT0550img) of the attached ASCII file and ferret output (see attached GIF file) contains only data for the second
time series (for the second station). Please note that the ASCII text file is tab-delimited (not space so that there are only 4 Columns in the file separated
by tabs and the second column "2007-03-01 14:35:00" is actually one string and cannot be broken up. I am manipulating it as below)

I am using the following code snippet to read this file and set up the time axis for the station data for each case

!>>
LET var_year_1      = STRFLOAT( SUBSTRING(begindatetime, 1, 4) )
LET var_month_1   = STRFLOAT( SUBSTRING(begindatetime, 6, 2) )
LET var_day_1       = STRFLOAT( SUBSTRING(begindatetime, 9, 2) )
LET var_hour_1      = STRFLOAT( SUBSTRING(begindatetime, 12, 2) )
LET var_minute_1   = STRFLOAT( SUBSTRING(begindatetime, 15, 2) )

!<<

! Construct the Time Axis using Numeric Variables created above
LET days_2001_1     = DAYS1900(2001,1,1)
LET day_frac_1         = (var_hour_1 + var_minute_1/60 ) / 24
LET tstep_1              = DAYS1900(var_year_1,var_month_1,var_day_1) - days_2001_1 + day_frac_1

The plotting code snippet I am using is below between the !>>  !<<  symbols. new_var_1 and new_var_2 are the transformed variables from original time series
They are constructed using e.g commands like (note the UNIT=hours below does not give me the proper time-axis output but the UNIT=days at least gives the proper
output even if only for 1 station):

DEFINE axis/T/T0=1-jan-2001/UNIT=DAYS ttaxis_days_1=tstep_1[L=1:`nntime_1`]   ! nntime_1 is read from record 3 of attached ascii file
LET dummy_1   = t[GT=ttaxis_days_1]
LET new_var_1 = RESHAPE($3,dummy_1)                             ! $3 is an argument containing column name e.g  AMOD_mean_AOT0550img

DEFINE axis/T/T0=1-jan-2001/UNIT=DAYS ttaxis_days_2=tstep_2[L=1:`nntime_2`]  !nntime_2 is also read from record 3 of corresponding block of data file
LET dummy_2   = t[GT=ttaxis_days_2]
LET new_var_2 = RESHAPE($3,dummy_2)

The plotting code snippet I am using is

!>>>>>

! ppl commands with the first plot

  ! ppl commands with the first plot
    plot/symbol=19/size=.2/color=red/nolab/vlim=0:1/set_up new_var_1
    ppl plot
    plot/symbol=17/size=.2/color=green/nolab/over    new_var_2

  ! ppl commands with the second overlay plot
    plot/symbol=19/size=.2/color=red/nolab/vlim=0:1    new_var_1
    plot/symbol=17/size=.2/color=green/nolab/over/set_up   new_var_2
       ! insert ppl commands here
    ppl plot/over

!<<<<<

Thanks in advance for any pointers and for taking the time.

I did not have any luck using the overlapping viewports suggestions that I read somewhere. BTW is it possible to obtain horizontal and vertical gridlines
on the plot to make it more readable.

Sincerely
agdc2005

On Mon, Sep 28, 2009 at 1:38 PM, Ansley Manke <Ansley.B.Manke@xxxxxxxx> wrote:
Hi -
That depends on how you made the symbols. Are they done with PLOT/SYMBOL ?  If so, you'll get a basic plot key at the bottom of the plot, if they're done by first making a blank plot, and then overlaying each line on that.  Try this example:

!  Define some example variables.
yes? let xx = x[i=1:5]
yes? let variable_A =  xx-1
yes? let variable_B =  2*xx

! Plot the variables just to see what their x and y axis extent will be
yes? plot variable_a, variable_b

! Now use /HLIM and /VLIM and plot any variable with /NOLAB and /COLOR=white
! This makes a blank plot that the variables will fit into.
yes? plot/nolab/color=white/hlim=0:6/vlim=-1:11 variable_a

! PLOT/OVERLAY will make a basic key below the plot
yes? plot/over/sym=20/color=green/siz=0.12 variable_a
yes? plot/over/sym=18/color=red/siz=0.12 variable_b

If you want more ideas, maybe try sending this example to the Users List and ask if anyone has a scrip or ideas for making a nice key with symbols.  (I see that this could be made better in the internal Ferret code by just drawing one symbol for the key at the bottom, not three symbols!)

Ansley

ag wrote:
Thanks again for your help. I did a search of the User Archives to look for legend with symbols. But I could not find how to put a legend of symbols. Please see attached gif file. I was trying to put the respective symbols next to the station names on top right.

On Mon, Sep 28, 2009 at 12:26 PM, Ansley Manke <Ansley.B.Manke@xxxxxxxx> wrote:
Hi Ag,
Use one of the ASCII fonts, @AC or @AS

LABEL/NOUSER `my_xlen`, `my_ylen2`, 0, 0, 0.15  @AC(($dataprodname1)













Capo_Verde
Image_Optical_Depth_Land_And_Ocean/MYD04_L2
83
filename	begindatetime	location	AMOD_mean_AOT0550img
MYD04_L2.A2007060.1435.005.2007068222123.hdf	2007-03-01 14:35:00	Capo_Verde	
MYD04_L2.A2007061.1520.005.2007069010554.hdf	2007-03-02 15:20:00	Capo_Verde	0.463
MYD04_L2.A2007062.1425.005.2007069041716.hdf	2007-03-03 14:25:00	Capo_Verde	0.436
MYD04_L2.A2007063.1505.005.2007069185424.hdf	2007-03-04 15:05:00	Capo_Verde	
MYD04_L2.A2007064.1410.005.2007070001148.hdf	2007-03-05 14:10:00	Capo_Verde	0.942
MYD04_L2.A2007065.1455.005.2007070050705.hdf	2007-03-06 14:55:00	Capo_Verde	
MYD04_L2.A2007066.1535.005.2007070092459.hdf	2007-03-07 15:35:00	Capo_Verde	
MYD04_L2.A2007067.1440.005.2007070114641.hdf	2007-03-08 14:40:00	Capo_Verde	
MYD04_L2.A2007068.1525.005.2007070160649.hdf	2007-03-09 15:25:00	Capo_Verde	0.247
MYD04_L2.A2007069.1430.005.2007071071549.hdf	2007-03-10 14:30:00	Capo_Verde	
MYD04_L2.A2007070.1510.005.2007071192254.hdf	2007-03-11 15:10:00	Capo_Verde	1.482
MYD04_L2.A2007071.1415.005.2007073012946.hdf	2007-03-12 14:15:00	Capo_Verde	0.911
MYD04_L2.A2007072.1500.005.2007073220230.hdf	2007-03-13 15:00:00	Capo_Verde	0.507
MYD04_L2.A2007074.1450.005.2007080040711.hdf	2007-03-15 14:50:00	Capo_Verde	
MYD04_L2.A2007075.1530.005.2007076194242.hdf	2007-03-16 15:30:00	Capo_Verde	0.111
MYD04_L2.A2007076.1435.005.2007077183223.hdf	2007-03-17 14:35:00	Capo_Verde	
MYD04_L2.A2007077.1520.005.2007080152354.hdf	2007-03-18 15:20:00	Capo_Verde	0.318
MYD04_L2.A2007078.1425.005.2007081041141.hdf	2007-03-19 14:25:00	Capo_Verde	0.209
MYD04_L2.A2007079.1505.005.2007082201607.hdf	2007-03-20 15:05:00	Capo_Verde	
MYD04_L2.A2007080.1410.005.2007083094600.hdf	2007-03-21 14:10:00	Capo_Verde	0.395
MYD04_L2.A2007081.1455.005.2007083201942.hdf	2007-03-22 14:55:00	Capo_Verde	
MYD04_L2.A2007082.1535.005.2007085181333.hdf	2007-03-23 15:35:00	Capo_Verde	
MYD04_L2.A2007083.1440.005.2007086031038.hdf	2007-03-24 14:40:00	Capo_Verde	
MYD04_L2.A2007084.1525.005.2007086094751.hdf	2007-03-25 15:25:00	Capo_Verde	0.451
MYD04_L2.A2007085.1430.005.2007087044638.hdf	2007-03-26 14:30:00	Capo_Verde	
MYD04_L2.A2007086.1510.005.2007087193456.hdf	2007-03-27 15:10:00	Capo_Verde	0.438
MYD04_L2.A2007087.1415.005.2007089032523.hdf	2007-03-28 14:15:00	Capo_Verde	0.527
MYD04_L2.A2007088.1500.005.2007090142758.hdf	2007-03-29 15:00:00	Capo_Verde	
MYD04_L2.A2007090.1450.005.2007093102028.hdf	2007-03-31 14:50:00	Capo_Verde	
MYD04_L2.A2007091.1530.005.2007093182339.hdf	2007-04-01 15:30:00	Capo_Verde	0.275
MYD04_L2.A2007092.1435.005.2007094043850.hdf	2007-04-02 14:35:00	Capo_Verde	
MYD04_L2.A2007093.1520.005.2007095182314.hdf	2007-04-03 15:20:00	Capo_Verde	0.253
MYD04_L2.A2007094.1425.005.2007098183222.hdf	2007-04-04 14:25:00	Capo_Verde	0.247
MYD04_L2.A2007095.1505.005.2007099032843.hdf	2007-04-05 15:05:00	Capo_Verde	0.214
MYD04_L2.A2007097.1455.005.2007100002841.hdf	2007-04-07 14:55:00	Capo_Verde	
MYD04_L2.A2007098.1535.005.2007100082255.hdf	2007-04-08 15:35:00	Capo_Verde	0.196
MYD04_L2.A2007099.1440.005.2007101021004.hdf	2007-04-09 14:40:00	Capo_Verde	
MYD04_L2.A2007100.1525.005.2007102011956.hdf	2007-04-10 15:25:00	Capo_Verde	0.303
MYD04_L2.A2007101.1430.005.2007104045417.hdf	2007-04-11 14:30:00	Capo_Verde	
MYD04_L2.A2007102.1510.005.2007104143247.hdf	2007-04-12 15:10:00	Capo_Verde	0.273
MYD04_L2.A2007103.1415.005.2007105024539.hdf	2007-04-13 14:15:00	Capo_Verde	0.424
MYD04_L2.A2007104.1500.005.2007105193443.hdf	2007-04-14 15:00:00	Capo_Verde	
MYD04_L2.A2007106.1450.005.2007108062609.hdf	2007-04-16 14:50:00	Capo_Verde	
MYD04_L2.A2007107.1530.005.2007108215848.hdf	2007-04-17 15:30:00	Capo_Verde	
MYD04_L2.A2007108.1435.005.2007109230428.hdf	2007-04-18 14:35:00	Capo_Verde	
MYD04_L2.A2007109.1520.005.2007110194908.hdf	2007-04-19 15:20:00	Capo_Verde	0.283
MYD04_L2.A2007110.1425.005.2007112021416.hdf	2007-04-20 14:25:00	Capo_Verde	0.230
MYD04_L2.A2007111.1505.005.2007112171753.hdf	2007-04-21 15:05:00	Capo_Verde	0.204
MYD04_L2.A2007113.1455.005.2007115122329.hdf	2007-04-23 14:55:00	Capo_Verde	
MYD04_L2.A2007114.1535.005.2007116031435.hdf	2007-04-24 15:35:00	Capo_Verde	0.167
MYD04_L2.A2007115.1440.005.2007116184856.hdf	2007-04-25 14:40:00	Capo_Verde	
MYD04_L2.A2007116.1525.005.2007121122607.hdf	2007-04-26 15:25:00	Capo_Verde	0.271
MYD04_L2.A2007117.1430.005.2007122002311.hdf	2007-04-27 14:30:00	Capo_Verde	
MYD04_L2.A2007118.1510.005.2007122201550.hdf	2007-04-28 15:10:00	Capo_Verde	0.181
MYD04_L2.A2007119.1415.005.2007123040151.hdf	2007-04-29 14:15:00	Capo_Verde	0.234
MYD04_L2.A2007120.1500.005.2007123131719.hdf	2007-04-30 15:00:00	Capo_Verde	
MYD04_L2.A2007122.1450.005.2007124073729.hdf	2007-05-02 14:50:00	Capo_Verde	
MYD04_L2.A2007123.1530.005.2007126150253.hdf	2007-05-03 15:30:00	Capo_Verde	0.166
MYD04_L2.A2007124.1435.005.2007127012903.hdf	2007-05-04 14:35:00	Capo_Verde	
MYD04_L2.A2007125.1520.005.2007127140243.hdf	2007-05-05 15:20:00	Capo_Verde	0.233
MYD04_L2.A2007126.1425.005.2007128194220.hdf	2007-05-06 14:25:00	Capo_Verde	0.418
MYD04_L2.A2007127.1505.005.2007130110550.hdf	2007-05-07 15:05:00	Capo_Verde	0.313
MYD04_L2.A2007129.1455.005.2007132112056.hdf	2007-05-09 14:55:00	Capo_Verde	
MYD04_L2.A2007130.1535.005.2007133193256.hdf	2007-05-10 15:35:00	Capo_Verde	0.983
MYD04_L2.A2007131.1440.005.2007134014440.hdf	2007-05-11 14:40:00	Capo_Verde	
MYD04_L2.A2007132.1525.005.2007134064215.hdf	2007-05-12 15:25:00	Capo_Verde	0.284
MYD04_L2.A2007133.1430.005.2007136181302.hdf	2007-05-13 14:30:00	Capo_Verde	
MYD04_L2.A2007134.1510.005.2007136232453.hdf	2007-05-14 15:10:00	Capo_Verde	0.272
MYD04_L2.A2007135.1415.005.2007137035449.hdf	2007-05-15 14:15:00	Capo_Verde	0.251
MYD04_L2.A2007136.1500.005.2007138183437.hdf	2007-05-16 15:00:00	Capo_Verde	
MYD04_L2.A2007138.1450.005.2007141001420.hdf	2007-05-18 14:50:00	Capo_Verde	
MYD04_L2.A2007139.1530.005.2007142151310.hdf	2007-05-19 15:30:00	Capo_Verde	
MYD04_L2.A2007140.1435.005.2007143051920.hdf	2007-05-20 14:35:00	Capo_Verde	
MYD04_L2.A2007141.1520.005.2007148101123.hdf	2007-05-21 15:20:00	Capo_Verde	0.571
MYD04_L2.A2007142.1425.005.2007148173137.hdf	2007-05-22 14:25:00	Capo_Verde	0.433
MYD04_L2.A2007143.1505.005.2007149024654.hdf	2007-05-23 15:05:00	Capo_Verde	0.217
MYD04_L2.A2007145.1455.005.2007149205206.hdf	2007-05-25 14:55:00	Capo_Verde	
MYD04_L2.A2007146.1535.005.2007151024534.hdf	2007-05-26 15:35:00	Capo_Verde	0.374
MYD04_L2.A2007147.1440.005.2007151220213.hdf	2007-05-27 14:40:00	Capo_Verde	
MYD04_L2.A2007148.1525.005.2007152013711.hdf	2007-05-28 15:25:00	Capo_Verde	0.393
MYD04_L2.A2007149.1430.005.2007152113005.hdf	2007-05-29 14:30:00	Capo_Verde	
MYD04_L2.A2007150.1510.005.2007153070441.hdf	2007-05-30 15:10:00	Capo_Verde	0.658
MYD04_L2.A2007151.1415.005.2007153211702.hdf	2007-05-31 14:15:00	Capo_Verde	1.022

Barbados
Image_Optical_Depth_Land_And_Ocean/MYD04_L2
82
filename	begindatetime	location	AMOD_mean_AOT0550img
MYD04_L2.A2007060.1750.005.2007068224356.hdf	2007-03-01 17:50:00	Barbados	0.244
MYD04_L2.A2007061.1655.005.2007069012554.hdf	2007-03-02 16:55:00	Barbados	
MYD04_L2.A2007062.1740.005.2007069044713.hdf	2007-03-03 17:40:00	Barbados	0.206
MYD04_L2.A2007063.1645.005.2007069191444.hdf	2007-03-04 16:45:00	Barbados	0.239
MYD04_L2.A2007064.1725.005.2007070005441.hdf	2007-03-05 17:25:00	Barbados	
MYD04_L2.A2007064.1730.005.2007070005204.hdf	2007-03-05 17:30:00	Barbados	
MYD04_L2.A2007066.1715.005.2007070093627.hdf	2007-03-07 17:15:00	Barbados	
MYD04_L2.A2007067.1800.005.2007070115926.hdf	2007-03-08 18:00:00	Barbados	0.533
MYD04_L2.A2007068.1705.005.2007070161431.hdf	2007-03-09 17:05:00	Barbados	
MYD04_L2.A2007069.1745.005.2007071073735.hdf	2007-03-10 17:45:00	Barbados	0.335
MYD04_L2.A2007070.1650.005.2007071185132.hdf	2007-03-11 16:50:00	Barbados	0.278
MYD04_L2.A2007071.1735.005.2007073015055.hdf	2007-03-12 17:35:00	Barbados	0.314
MYD04_L2.A2007073.1720.005.2007082023726.hdf	2007-03-14 17:20:00	Barbados	
MYD04_L2.A2007074.1805.005.2007080042910.hdf	2007-03-15 18:05:00	Barbados	0.246
MYD04_L2.A2007075.1710.005.2007076195431.hdf	2007-03-16 17:10:00	Barbados	
MYD04_L2.A2007076.1750.005.2007077183019.hdf	2007-03-17 17:50:00	Barbados	0.307
MYD04_L2.A2007077.1655.005.2007080153352.hdf	2007-03-18 16:55:00	Barbados	0.159
MYD04_L2.A2007078.1740.005.2007081053742.hdf	2007-03-19 17:40:00	Barbados	
MYD04_L2.A2007079.1645.005.2007082203501.hdf	2007-03-20 16:45:00	Barbados	0.215
MYD04_L2.A2007080.1725.005.2007083104043.hdf	2007-03-21 17:25:00	Barbados	
MYD04_L2.A2007080.1730.005.2007083104127.hdf	2007-03-21 17:30:00	Barbados	
MYD04_L2.A2007082.1715.005.2007085185125.hdf	2007-03-23 17:15:00	Barbados	
MYD04_L2.A2007083.1800.005.2007086042132.hdf	2007-03-24 18:00:00	Barbados	0.180
MYD04_L2.A2007084.1705.005.2007086101421.hdf	2007-03-25 17:05:00	Barbados	
MYD04_L2.A2007085.1745.005.2007087030707.hdf	2007-03-26 17:45:00	Barbados	
MYD04_L2.A2007086.1650.005.2007087201906.hdf	2007-03-27 16:50:00	Barbados	
MYD04_L2.A2007087.1735.005.2007089035101.hdf	2007-03-28 17:35:00	Barbados	0.148
MYD04_L2.A2007089.1720.005.2007090211408.hdf	2007-03-30 17:20:00	Barbados	
MYD04_L2.A2007090.1805.005.2007093103904.hdf	2007-03-31 18:05:00	Barbados	0.121
MYD04_L2.A2007091.1710.005.2007093183715.hdf	2007-04-01 17:10:00	Barbados	
MYD04_L2.A2007092.1750.005.2007094074432.hdf	2007-04-02 17:50:00	Barbados	0.185
MYD04_L2.A2007093.1655.005.2007095190729.hdf	2007-04-03 16:55:00	Barbados	
MYD04_L2.A2007094.1740.005.2007098184913.hdf	2007-04-04 17:40:00	Barbados	
MYD04_L2.A2007095.1645.005.2007099015551.hdf	2007-04-05 16:45:00	Barbados	0.106
MYD04_L2.A2007096.1725.005.2007099082921.hdf	2007-04-06 17:25:00	Barbados	0.063
MYD04_L2.A2007098.1715.005.2007100084849.hdf	2007-04-08 17:15:00	Barbados	
MYD04_L2.A2007099.1800.005.2007101024034.hdf	2007-04-09 18:00:00	Barbados	0.408
MYD04_L2.A2007100.1705.005.2007102034123.hdf	2007-04-10 17:05:00	Barbados	0.153
MYD04_L2.A2007101.1745.005.2007104061810.hdf	2007-04-11 17:45:00	Barbados	0.221
MYD04_L2.A2007102.1650.005.2007104152357.hdf	2007-04-12 16:50:00	Barbados	0.212
MYD04_L2.A2007103.1735.005.2007105121948.hdf	2007-04-13 17:35:00	Barbados	0.279
MYD04_L2.A2007105.1720.005.2007108000401.hdf	2007-04-15 17:20:00	Barbados	0.134
MYD04_L2.A2007106.1805.005.2007108071222.hdf	2007-04-16 18:05:00	Barbados	0.239
MYD04_L2.A2007107.1710.005.2007108225224.hdf	2007-04-17 17:10:00	Barbados	
MYD04_L2.A2007108.1750.005.2007109233051.hdf	2007-04-18 17:50:00	Barbados	0.167
MYD04_L2.A2007109.1655.005.2007110165044.hdf	2007-04-19 16:55:00	Barbados	
MYD04_L2.A2007110.1740.005.2007112024557.hdf	2007-04-20 17:40:00	Barbados	0.230
MYD04_L2.A2007111.1645.005.2007112172250.hdf	2007-04-21 16:45:00	Barbados	0.285
MYD04_L2.A2007112.1725.005.2007113201354.hdf	2007-04-22 17:25:00	Barbados	
MYD04_L2.A2007114.1715.005.2007116033516.hdf	2007-04-24 17:15:00	Barbados	
MYD04_L2.A2007115.1800.005.2007116195146.hdf	2007-04-25 18:00:00	Barbados	0.162
MYD04_L2.A2007116.1705.005.2007121125042.hdf	2007-04-26 17:05:00	Barbados	
MYD04_L2.A2007117.1745.005.2007122013958.hdf	2007-04-27 17:45:00	Barbados	0.094
MYD04_L2.A2007118.1650.005.2007122204007.hdf	2007-04-28 16:50:00	Barbados	0.244
MYD04_L2.A2007119.1735.005.2007123055433.hdf	2007-04-29 17:35:00	Barbados	0.174
MYD04_L2.A2007121.1720.005.2007123195056.hdf	2007-05-01 17:20:00	Barbados	
MYD04_L2.A2007122.1805.005.2007124022646.hdf	2007-05-02 18:05:00	Barbados	0.152
MYD04_L2.A2007123.1710.005.2007126152531.hdf	2007-05-03 17:10:00	Barbados	0.185
MYD04_L2.A2007124.1750.005.2007127024735.hdf	2007-05-04 17:50:00	Barbados	0.140
MYD04_L2.A2007125.1655.005.2007127143435.hdf	2007-05-05 16:55:00	Barbados	
MYD04_L2.A2007126.1740.005.2007128210805.hdf	2007-05-06 17:40:00	Barbados	0.236
MYD04_L2.A2007127.1645.005.2007130105959.hdf	2007-05-07 16:45:00	Barbados	0.202
MYD04_L2.A2007128.1725.005.2007131041805.hdf	2007-05-08 17:25:00	Barbados	
MYD04_L2.A2007130.1715.005.2007133204108.hdf	2007-05-10 17:15:00	Barbados	
MYD04_L2.A2007131.1800.005.2007134021835.hdf	2007-05-11 18:00:00	Barbados	0.282
MYD04_L2.A2007132.1705.005.2007134065852.hdf	2007-05-12 17:05:00	Barbados	0.366
MYD04_L2.A2007133.1745.005.2007136185743.hdf	2007-05-13 17:45:00	Barbados	0.328
MYD04_L2.A2007134.1650.005.2007136234720.hdf	2007-05-14 16:50:00	Barbados	0.461
MYD04_L2.A2007135.1735.005.2007137050001.hdf	2007-05-15 17:35:00	Barbados	0.427
MYD04_L2.A2007137.1720.005.2007140094950.hdf	2007-05-17 17:20:00	Barbados	
MYD04_L2.A2007138.1805.005.2007141014829.hdf	2007-05-18 18:05:00	Barbados	0.551
MYD04_L2.A2007139.1710.005.2007142152942.hdf	2007-05-19 17:10:00	Barbados	
MYD04_L2.A2007140.1750.005.2007143071847.hdf	2007-05-20 17:50:00	Barbados	0.179
MYD04_L2.A2007141.1655.005.2007148104030.hdf	2007-05-21 16:55:00	Barbados	
MYD04_L2.A2007142.1740.005.2007148183219.hdf	2007-05-22 17:40:00	Barbados	0.191
MYD04_L2.A2007143.1645.005.2007149031329.hdf	2007-05-23 16:45:00	Barbados	0.188
MYD04_L2.A2007144.1725.005.2007149095508.hdf	2007-05-24 17:25:00	Barbados	
MYD04_L2.A2007146.1715.005.2007151035007.hdf	2007-05-26 17:15:00	Barbados	
MYD04_L2.A2007147.1800.005.2007151223804.hdf	2007-05-27 18:00:00	Barbados	0.183
MYD04_L2.A2007148.1705.005.2007152015725.hdf	2007-05-28 17:05:00	Barbados	
MYD04_L2.A2007149.1745.005.2007152122443.hdf	2007-05-29 17:45:00	Barbados	0.233
MYD04_L2.A2007150.1650.005.2007153074452.hdf	2007-05-30 16:50:00	Barbados	0.275


Attachment: time_days_2Stn1Data_new_2mean.gif
Description: GIF image


[Thread Prev][Thread Next][Index]

Contact Us
Dept of Commerce / NOAA / OAR / PMEL / TMAP

Privacy Policy | Disclaimer | Accessibility Statement