Skip to content

Commit 6af2e32

Browse files
committed
change pics links
1 parent 57cfb79 commit 6af2e32

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ https://www.ncdc.noaa.gov/ibtracs/
1919

2020
| RSMC | WNP | NEP | NAT | NIO | SIO | WSP | SAT |
2121
| :----: | ---:| :--: | -- | --- | ---:| :--: |--- |
22-
| JTWC | ¡Ì | | | ¡Ì | ¡Ì | ¡Ì | |
23-
| CMA | ¡Ì | | | | | | |
24-
| JMA | ¡Ì | | | | | | |
25-
| NHC | | ¡Ì | ¡Ì | | | | |
26-
| IBTrACS | ¡Ì | ¡Ì | ¡Ì | ¡Ì | ¡Ì | | ¡Ì |
22+
| JTWC | X | | | X | X | X | |
23+
| CMA | X | | | | | | |
24+
| JMA | X | | | | | | |
25+
| NHC | | X | X | | | | |
26+
| IBTrACS | X | X | X | X | X | | X |
2727

2828

29-
Unfortunately, different agencies use different data formats. This python-based project **`besttracks`**, aims to provide a unified interface to access these datasets in different formats, and organizes them into a unified data structure called TCSet and TC, which are based on `pandas.DataFrame` that are convient for python users. Simple plot of track and intensity is also easy and some basic statistics are also provided.
29+
Unfortunately, different agencies use different data formats. This python-based project **`besttracks`**, aims to provide a unified interface to access these datasets in different formats, and organizes them into a unified data structure called **`TCSet`** and **`TC`**, which are based on `pandas.DataFrame` that are convient for python users. Simple plot of track and intensity is also easy and some basic statistics are also provided.
3030

3131
Up to now, the datasets from the above agencies are supported. It would be good to add more agencies and more formats. We also provide the parser function for CMA operational forecast data (BABJ format), which is also popular in China.
3232

@@ -46,12 +46,12 @@ git clone https://github.com/miniufo/besttracks.git
4646

4747
## 3. Examples
4848
### 3.1 Best-track datasets manipulations
49-
Parsing best-track dataset **IBTrACS** into `TCSet` would be as simple as:
49+
Parsing best-track dataset **CMA** into `TCSet` would be as simple as:
5050
```python
51-
from besttracks import parse_TC
51+
from besttracks import parse_TCs
5252

5353
# parse dataset from CMA
54-
TCs_CMA = parse_TC('./CH*.txt', agency='CMA')
54+
TCs_CMA = parse_TCs('./CH*.txt', agency='CMA')
5555

5656
# Brief describe the dataset
5757
print(TCs_CMA)

0 commit comments

Comments
 (0)