forked from sd18spring/InteractiveProgramming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSVFiles.csv
More file actions
We can't make this file beautiful and searchable because it's too large.
12862 lines (12862 loc) · 967 KB
/
CSVFiles.csv
File metadata and controls
12862 lines (12862 loc) · 967 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
HEADER
/pub/ibtracs/v03r10/all/csv/storm/Storm.1842298N11080.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1845336N10074.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1848011S09079.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1848011S09080.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1848011S15057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1848011S16057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1848061S12075.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1848062S13069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1848112S07084.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1848112S07444.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851080S15062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851080S15063.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851080S21060.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851080S21420.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851175N26270.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851181N19275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851187N22262.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851192N12300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851214N14321.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851228N13313.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851241N27280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851250N20278.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851254N34316.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851256N26265.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851256N33287.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851260N32298.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851283N24298.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851289N29282.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851305S08089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1851309N19282.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852001S12077.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852001S13076.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852021S14075.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852232N21293.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852242N34279.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852247N14309.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852247N32318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852249N17296.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852264N13309.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852266N17274.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852270N20295.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852271N15328.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852273N11295.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852278N14293.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1852331N24274.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853216N26294.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853218N33291.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853223N12300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853228N14322.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853238N18281.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853239N11302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853242N12336.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853245N34311.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853251N24274.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853251N37307.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853253N41303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853264N20268.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853265N20265.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853268N27293.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853269N26298.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853270N14327.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853272N15323.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853291N32280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1853318N21288.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854032S17059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854039S18060.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854060S15069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854060S16069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854176N26268.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854207N28267.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854236N33305.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854246N25300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854253N14303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854254N36281.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854258N13329.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854259N24266.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854261N28266.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854279N12297.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854287N18296.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854293N25292.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854303N14072.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854305S10073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854309N22294.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1854325S10073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855021S14076.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855021S15057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855121S08073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855131S08073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855206N22263.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855215N30272.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855219N22262.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855222N44318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855224N13277.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855236N12304.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855244N12319.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855252N20274.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855263N24306.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855270N33309.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1855308N24311.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856032S17058.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856092S16060.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856092S16420.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856221N25277.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856224N14330.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856226N11308.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856232N33285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856235N13302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856235N23278.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856246N35285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856254N09333.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856262N32311.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856272N11336.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1856287N31319.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857021S17058.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857021S17059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857032S15066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857039S15066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857174N26274.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857181N34286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857185N25277.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857229N16276.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857230N10315.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857249N27286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857251N13300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857261N16301.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857265N33287.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857267N16305.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857279N18282.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857290N32325.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857313N17300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857335S15062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857335S15422.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857355S06086.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1857355S07085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858011S09058.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858052S12061.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858060S12078.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858060S12079.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858091S12048.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858091S12408.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858162N17283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858164N19275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858218N45320.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858224N27287.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858254N22273.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858257N15325.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858257N25275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858260N18319.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858263N25299.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858266N22286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858289N24311.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858291N21287.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858305S26053.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858319N12280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858325S25052.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858345S08093.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1858345S08094.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859021S14077.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859021S14078.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859042S32050.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859046S32051.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859060S08057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859060S09057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859070S05088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859070S05448.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859101S10091.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859101S10451.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859152S05087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859162S04088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859172N18275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859183N22263.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859224N28287.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859234N24275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859236N13337.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859245N17300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859249N11324.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859253N21275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859272N15322.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859273N17289.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859275N18285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859284N19293.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859289N25285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859297N20267.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859312N13278.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859335S05090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859335S05091.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859335S14043.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1859335S14403.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860011S13068.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860011S14067.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860011S15076.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860011S15436.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860021S16057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860039S17057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860042S17057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860052S10081.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860052S12105.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860052S14057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860061S13085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860061S13445.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860081S14069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860081S14429.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860112S11085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860112S11086.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860122S07087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860122S07447.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860208N11301.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860221N28276.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860227N25311.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860227N26291.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860232N25291.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860237N28283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860245N21333.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860247N13298.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860252N18284.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860256N40310.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860258N14336.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860259N27296.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860262N22294.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860267N12318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860269N20266.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860289N14290.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860336S08087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1860336S09086.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861011S17051.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861011S17411.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861021S13086.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861021S13446.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861039S10077.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861042S10077.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861042S16062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861046S16062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861052S08069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861070S11100.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861070S12100.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861091S07085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861091S07445.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861101S09083.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861101S09084.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861185N15303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861202N37285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861210N15276.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861221N13316.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861226N21290.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861237N35296.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861254N19314.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861255N14337.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861261N29310.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861266N20269.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861270N29283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861275N19299.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861277N15320.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861279N20314.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861281N35285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861290N25292.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861304N25267.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861305N26278.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861305S10085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861315S10085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861355S05087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861355S06087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1861355S11068.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862001S12081.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862001S12082.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862001S12104.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862001S13103.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862011S21051.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862021S12055.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862052S08080.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862052S23092.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862060S19101.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862070S15063.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862070S15423.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862080S09082.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862080S09442.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862147N28285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862166N32284.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862189N28275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862198N27264.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862229N24294.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862237N24265.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862247N15326.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862251N15325.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862255N26286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862274S04058.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862275N12308.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862279N13299.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862284S04059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862287N33290.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862305S12062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862315S12062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862326N11280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862345S07089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1862345S07090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863011S11055.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863011S12055.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863032S12059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863032S13061.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863032S14058.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863039S13061.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863042S15073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863046S15073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863111S13081.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863111S13441.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863121S07089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863141S07089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863145N27272.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863217N35284.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863220N38309.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863228N26299.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863230N39302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863231N27293.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863239N31281.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863248N11308.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863255N15300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863259N25280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863262N23264.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863270N21267.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863270N31290.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863279N21300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863305S12086.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863325S12086.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863335S17067.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1863335S17427.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864011S06081.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864011S07080.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864052S14079.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864052S15067.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864102S07069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864102S07429.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864112S09075.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864112S10075.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864197N35285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864198N31284.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864206N32286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864208N24271.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864239N15306.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864240N33319.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864243N15338.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864246N17315.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864249N33288.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864283N18290.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864294N15326.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1864296N29288.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865011S14057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865011S14058.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865021S32056.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865021S32057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865042S12095.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865046S12094.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865052S13058.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865080S11085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865080S11086.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865101S09076.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865150N13280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865182N26263.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865232N30282.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865239N24282.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865247N13318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865250N30268.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865252N15319.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865254N24277.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865267N20287.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865272N26291.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865274N20278.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865282N19289.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865287N11303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865298N30282.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865335S13061.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1865335S13421.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866001S13066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866032S19072.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866032S20072.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866060S13091.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866080S14080.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866080S14440.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866091S11082.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866101S07089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866101S13073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866101S14051.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866101S15051.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866101S15060.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866101S16054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866101S16060.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866153N29270.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866193N27271.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866225N14298.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866242N14307.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866247N33292.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866260N12333.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866262N15331.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866263N36292.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866264N11342.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866265N40298.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866270N25284.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866295N28326.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866302N30284.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866302N33285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866305S09073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1866305S09433.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867011S11072.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867032S15081.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867032S15441.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867042S15071.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867046S15071.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867121S13069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867121S13070.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867172N28280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867200N19268.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867209N19303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867215N14283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867223N24278.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867242N12333.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867243N31288.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867243N33283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867247N12340.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867252N17302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867259N27269.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867268N18278.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867268N30303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867270N36291.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867272N30286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867281N14301.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867283N18297.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867300N19310.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1867345S19059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868001S17055.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868001S18055.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868011S17062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868011S18061.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868032S17081.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868032S17441.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868071S15066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868071S15426.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868161N30281.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868193N13303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868240N16327.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868250N31323.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868275N25265.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868275N27265.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868278N14280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868288N16291.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868289N26287.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868304N27304.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868306S08077.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1868316S08077.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869021S21053.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869039S19053.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869042S18054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869042S20072.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869046S20071.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869052S19084.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869091S11073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869091S11433.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869222N30285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869224N41313.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869226N20276.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869239N33313.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869239N34314.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869244N28287.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869245N20288.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869247N26271.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869250N27286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869251N18326.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869253N10328.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869258N16317.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869270N18308.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869275N17293.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869276N13300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869305S06092.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869305S06452.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869345S18073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1869345S18074.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870001S31048.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870001S32049.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870021S10057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870021S11056.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870042S15066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870046S16066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870052S20109.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870101S07108.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870101S07468.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870101S09087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870101S09447.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870211N28272.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870212N31272.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870214N13340.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870238N14310.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870242N13338.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870252N13315.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870252N24296.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870260N30292.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870264N11332.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870278N18286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870278N20280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870280N10331.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870290N15279.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870296N20288.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870297N12331.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870300N14283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870303N17275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870310N28324.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1870324N19317.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871001S12088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871001S12089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871001S16061.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871001S16421.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871021S09087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871052S11095.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871080S15108.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871080S15468.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871080S16068.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871080S16428.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871152N24279.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871159N23270.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871182S04095.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871192S04095.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871224N26291.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871228N31312.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871229N11329.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871237N18325.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871239N24298.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871243N19317.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871247N28277.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871249N16318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871259N17273.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871266N11315.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871271N19269.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871276N11281.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871278N11329.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871283N23302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871289N15294.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871305S04100.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1871305S04460.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872021S18054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872021S19053.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872032S12085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872032S15074.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872032S15434.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872039S12085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872042S13104.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872046S13104.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872071S05087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872071S05088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872071S17051.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872092S23053.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872092S24053.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872122S14066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872122S14426.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872191N25268.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872233N14334.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872241N36296.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872244N30299.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872250N12338.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872253N13301.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872273N12335.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872274N13328.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872275S14070.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872275S14430.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872280N18291.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872296N23271.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1872306S15069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873001S16058.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873001S17058.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873021S17053.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873021S18054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873032S12076.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873032S12436.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873042S14056.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873046S15056.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873060S16067.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873070S10088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873070S10448.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873152N24281.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873223N11332.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873225N14335.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873231N35306.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873236N34292.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873256N13296.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873265N22274.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873269N13303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873275N16340.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1873290N30314.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874011S14064.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874011S15064.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874021S19055.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874023S24054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874042S13080.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874046S13079.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874070S14045.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874080S13072.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874080S13073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874183N26275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874215N25306.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874215N37287.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874236N29292.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874240N13326.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874241N14326.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874245N20265.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874245N25271.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874251N26289.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874258N34313.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874268N18274.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1874304N14283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875011S13061.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875011S14076.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875060S17081.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875060S17082.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875060S17088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875060S17448.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875228N31284.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875239N37308.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875243N14330.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875246N12333.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875259N33318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875267N23267.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875277N19297.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875280N24292.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875285N27285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875355S19065.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1875355S19425.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876001S17061.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876002S18059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876032S17059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876032S17419.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876046S18062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876052S14066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876052S18062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876071S16083.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876071S16443.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876200N16293.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876213N32288.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876227N26295.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876231N14303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876239N25295.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876247N14325.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876253N39299.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876254N15320.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876257N14319.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876260N19302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876268N12300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876273N12301.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876273N14301.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876285N11279.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876313N24310.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1876336S15075.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877001S12055.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877001S13054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877009S13054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877039S19059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877041S20059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877042S14078.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877042S18059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877046S12079.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877101S15062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877111S15063.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877111S15064.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877121S07090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877129S08088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877131S07090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877135N10083.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877192N21090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877213N23288.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877214N29286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877218N21090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877220N22092.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877226N21089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877230N20091.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877237N30302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877241N20088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877247N14341.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877249N20088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877257N22268.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877259N26310.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877260N17327.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877267N21292.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877276N34329.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877286N27312.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877297N25266.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877300N31313.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877307N18091.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1877332N23284.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878010S19054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878011S18054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878011S19054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878100S12066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878101S10066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878101S10067.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878182N25273.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878188N18299.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878202N18087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878215N20086.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878218N20089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878220N15300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878229N32286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878231N36300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878236N25280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878237N25283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878244N09306.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878246N21312.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878248N13322.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878253N14324.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878256N19090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878257N19269.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878261N18090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878266N14299.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878267N15288.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878273N27290.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878282N11326.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878282N24269.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878283N18342.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878283N27288.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878286N17324.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878287N16084.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878287N19283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878296N24332.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878301N15084.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878308N16084.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878329N15310.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878329N17310.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878339N17087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878344S11071.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878345S09072.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1878345S09432.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879011S24062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879021S24062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879021S24422.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879043S13058.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879052S11057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879070S11063.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879080S11064.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879140N13081.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879141N12073.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879149N21087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879220N21088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879220N31284.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879225N13302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879228N13341.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879228N15307.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879231N18277.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879241N24272.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879252N33283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879254N14300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879256N21090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879265N20089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879266N37286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879276N15282.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879279N25266.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879282N14304.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879284N19092.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879285N11308.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879297N20275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879299N20092.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879305N15097.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879309N21332.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879322N13081.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879322N22287.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879344S16059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879345S15060.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879345S16054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879345S16059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879355S15054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1879355S15055.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880001S08060.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880043S13088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880052S11089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880153N20089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880161N17274.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880173N27274.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880177N19088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880196N20089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880214N20088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880217N16300.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880218N13302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880228N14301.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880230N15342.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880233N21089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880235N13333.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880242N18340.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880248N22283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880250N24271.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880254N19267.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880257N19089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880265N20088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880267N21088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880271N13322.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880271N23317.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880275N35327.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880279N18275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880284N24295.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880287N17085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880289N31301.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880295N27285.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880325N10082.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880345S15067.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880346S15068.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1880346S15428.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881001S10084.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881011S15057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881021S14057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881039S12084.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881041S13082.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881042S12085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881069S22053.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881070S21053.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881070S21413.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881101S07089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881111S05089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881111S05449.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881121S06095.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881121S06096.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881129S07094.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881146N14067.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881146N20090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881154N20089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881157N21088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881165N21089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881183N21088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881194N21090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881208N35286.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881213N23275.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881214N20087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881223N13333.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881223N16329.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881224N26271.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881228N20273.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881228N28277.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881230N21089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881233N17303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881236N15323.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881239N14301.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881247N13306.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881254N20089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881256N32318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881261N35292.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881277N17085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881289N25284.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881290N12318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881313N20303.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881315N11082.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1881341N14313.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882001S16080.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882001S17079.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882009S17079.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882039S14069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882041S15068.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882042S13071.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882042S14069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882042S14070.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882043S16078.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882046S14071.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882052S16079.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882069S15062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882070S14063.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882070S15062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882101S08092.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882111S06093.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882111S07093.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882192N21089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882199N21089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882204N20089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882212N20088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882213N36313.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882231N21089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882233N22294.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882236N38308.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882244N19296.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882246N21268.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882249N20090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882255N19269.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882257N18087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882264N29283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882266N23302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882267N30283.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882269N16092.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882278N11279.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882285N13085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882288N29318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882298N20312.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882300N11089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882325N09089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1882332N10087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883011S26054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883021S22057.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883021S26054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883039S09088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883041S10089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883042S09087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883070S11093.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883070S16053.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883080S07088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883080S10093.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883080S10453.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883080S15054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883080S15414.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883165N21087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883177N20089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883183N22068.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883184N21090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883187N20089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883193N19089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883196N22068.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883207N21090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883228N16309.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883230N19312.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883233N12318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883234N18088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883236N23302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883245N10328.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883247N14302.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883260N13332.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883260N19280.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883280N27301.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883295N28282.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883314N11095.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883335S16060.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883335S16061.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883338N17086.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883343N23304.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883343S17059.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883344S14094.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883345S13095.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1883345S14095.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884011S10063.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884021S10063.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884032S14078.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884039S14078.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884041S15075.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884070S17067.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884071S11091.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884071S17068.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884071S17428.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884081S10091.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884081S10092.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884135N11090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884171N20088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884177N17124.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884182N21089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884186N16125.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884191N15126.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884191N21089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884197N20088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884200N21089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884201N18128.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884208N13126.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884215N13129.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884215N21088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884231N11128.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884236N14127.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884242N29294.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884243N15129.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884245N39298.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884247N15324.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884250N15128.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884251N20089.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884253N27282.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884259N14338.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884261N17088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884263N16125.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884272N15318.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884280N12281.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884290N10082.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884298N16085.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884305N19090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884306S07095.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884310N11082.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884314S07094.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884316S06095.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884318N11125.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884322N14126.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884325N13083.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884343N14124.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1884349N08083.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885010S17062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885011S16075.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885011S17062.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885011S17063.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885021S16075.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885021S16076.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885032S16077.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885040S16075.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885043S14054.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885043S15069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885052S13055.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885052S14070.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885060S15069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885068S15069.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885101S08087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885111S07088.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885111S07448.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885115N11127.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885121S13066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885129S14065.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885131S13066.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885150N13061.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885156N12071.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885167N22090.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885177N21087.ibtracs_all.v03r10.csv
/pub/ibtracs/v03r10/all/csv/storm/Storm.1885181N20130.ibtracs_all.v03r10.csv