I have time series for tide data:
2013-06-01 00:00 1.6980
2013-06-01 00:10 1.6880
2013-06-01 00:20 1.6850
2013-06-01 00:30 1.6900
2013-06-01 00:40 1.7030
2013-06-01 00:50 1.7230
2013-06-01 01:00 1.7510
2013-06-01 01:10 1.7870
2013-06-01 01:20 1.8290
2013-06-01 01:30 1.8790
2013-06-01 01:40 1.9350
2013-06-01 01:50 1.9970
2013-06-01 02:00 2.0650
2013-06-01 02:10 2.1380
2013-06-01 02:20 2.2160
2013-06-01 02:30 2.2990
2013-06-01 02:40 2.3860
2013-06-01 02:50 2.4760
etc ...
Question:
How to put a marker on the line if I know the Day of Year and time (hh mm)
(for example: let say I want to put marker on DoY 165 00 00)
So for I can only plot this time series. Here is my script:
set term png size 600,180 font "Helvetica" 10
set style fill transparent solid 0.5 noborder
set output "time_series.png"
set xdata time
set timefmt "%Y-%m-%d %H:%M"
set xrange ["2013-06-09":"2013-06-20"]
set xtics format "%j"
set style line 2 lc rgb 'red' pt 7 # circle
plot "Tide_Obsv.txt" u 1:3 w lines ls 2 notitle
The result that I want is something like this:
Any helps would be greatly appreciated.
Thanks guys.

