Skip to content

Commit

Permalink
Merge pull request #177 from ocefpaf/add_similar_proj_list
Browse files Browse the repository at this point in the history
add list of projects that use erddapy and that are similar to it
  • Loading branch information
ocefpaf authored Apr 10, 2021
2 parents 9653982 + 260349f commit 3fc05b3
Showing 1 changed file with 30 additions and 16 deletions.
46 changes: 30 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,27 +87,27 @@ from erddapy import ERDDAP


e = ERDDAP(
server='https://gliders.ioos.us/erddap',
protocol='tabledap',
server="https://gliders.ioos.us/erddap",
protocol="tabledap",
)

e.response = 'csv'
e.dataset_id = 'whoi_406-20160902T1700'
e.response = "csv"
e.dataset_id = "whoi_406-20160902T1700"
e.constraints = {
'time>=': '2016-07-10T00:00:00Z',
'time<=': '2017-02-10T00:00:00Z',
'latitude>=': 38.0,
'latitude<=': 41.0,
'longitude>=': -72.0,
'longitude<=': -69.0,
"time>=": "2016-07-10T00:00:00Z",
"time<=": "2017-02-10T00:00:00Z",
"latitude>=": 38.0,
"latitude<=": 41.0,
"longitude>=": -72.0,
"longitude<=": -69.0,
}
e.variables = [
'depth',
'latitude',
'longitude',
'salinity',
'temperature',
'time',
"depth",
"latitude",
"longitude",
"salinity",
"temperature",
"time",
]

df = e.to_pandas()
Expand All @@ -118,6 +118,20 @@ df = e.to_pandas()

Report bugs, suggest features or view the source code on [GitHub](https://github.com/ioos/erddapy/issues).

## Projects using erddapy

- [argopy](https://github.com/euroargodev/argopy)
- [gliderpy](https://github.com/ioos/gliderpy)
- [gdutils](https://github.com/kerfoot/gdutils)
- [colocate](https://github.com/ioos/colocate)
- [intake-erddap](https://github.com/jmunroe/intake-erddap)
- [ioos_qc](https://github.com/ioos/ioos_qc)

## Similar projects

- [rerddap](https://cran.r-project.org/web/packages/rerddap) implements a nice client for R that performs searches on a curated set of servers instead of a query per server like erddapy.

- [erddap-python](https://github.com/hmedrano/erddap-python) 99% of the same functionality as erddapy but with a JavaScript-like API.

## License and copyright

Expand Down

0 comments on commit 3fc05b3

Please sign in to comment.