-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.TXT
64 lines (54 loc) · 1.26 KB
/
README.TXT
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
Storm Data Format Instructions
This file explains the format for uploading storm data to the Kaypro Hurricane Tracker program.
File Format
Each storm data file should be a plain text file with the following structure:
First line: Number of days of data (integer, 2-20)
Subsequent lines: Data for each day, with 6 values per day, one value per line
Data values for each day:
Storm direction in degrees (0-360)
Storm speed in knots
Latitude (positive for North, negative for South)
Longitude (positive for East, negative for West)
Central pressure in millibars
Maximum sustained wind speed in knots
Example
Here's an example of a properly formatted storm data file:
5
315
14
24.1
-83.3
1005
40
290
14
20.9
-76.6
1012
25
290
14
21.4
-78.3
1012
25
285
12
21.4
-79.7
1010
25
285
14
22.0
-80.7
1009
25
This example represents 5 days of storm data.
Notes
Ensure each value is on a new line
Use decimal points for fractional values (e.g., 24.1 for latitude)
Use negative values for South latitude and West longitude
The file should have no empty lines between values
Save the file with a .DAT extension (e.g., STORM.DAT)
When loading data in the program, enter the filename exactly as it is saved, including the .DAT extension.