Skip to content

Commit 6445242

Browse files
author
Favio Medrano
committed
refactor name
1 parent 72158b3 commit 6445242

37 files changed

+238
-165
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## About
44

5-
pyerddap is a API implementation for the ERDDAP server.
5+
erddap-python is a python API implementation for the ERDDAP server.
66

77
ERDDAP is a data server that gives you a simple, consistent way to download subsets of gridded and tabular scientific datasets in common file formats and make graphs and maps.
88

@@ -12,13 +12,13 @@ ERDDAP is a data server that gives you a simple, consistent way to download subs
1212
Using pip:
1313

1414
```
15-
$ pip install pyerddap
15+
$ pip install erddap-python
1616
```
1717

1818
## Usage
1919

2020
```
21-
from pyerddap import ERDDAP_Tabledap
21+
from erddapClient import ERDDAP_Tabledap
2222
2323
url = 'https://coastwatch.pfeg.noaa.gov/erddap'
2424
datasetid = 'cwwcNDBCMet'

erddapClient/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from erddapClient.erddap_server import ERDDAP
2+
from erddapClient.erddap_dataset import ERDDAP_Dataset
3+
from erddapClient.erddap_tabledap import ERDDAP_Tabledap
4+
from erddapClient.erddap_griddap import ERDDAP_Griddap
5+
6+
__all__ = ["ERRDAP", "ERDDAP_Dataset", "ERDDAP_Tabledap", "ERDDAP_Griddap"]
475 Bytes
Binary file not shown.
454 Bytes
Binary file not shown.
5.57 KB
Binary file not shown.
5.51 KB
Binary file not shown.
1.09 KB
Binary file not shown.
1.09 KB
Binary file not shown.
6.1 KB
Binary file not shown.
6.12 KB
Binary file not shown.

0 commit comments

Comments
 (0)