Skip to content

Commit

Permalink
Update "PyData Ecosystem" to "Scientific Python Ecosystem" (#3447)
Browse files Browse the repository at this point in the history
  • Loading branch information
yvonnefroehlich authored Sep 23, 2024
1 parent 2454aa6 commit a5dbc13
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ widely used across the Earth, Ocean, and Planetary sciences and beyond.
- Build a Pythonic API for GMT.
- Interface with the GMT C API directly using ctypes (no system calls).
- Support for rich display in the Jupyter notebook.
- Integration with the [PyData ecosystem](https://pydata.org/): `numpy.ndarray` or `pandas.DataFrame` for
data tables, `xarray.DataArray` for grids, and `geopandas.GeoDataFrame` for geographical data.
- Integration with the [scientific Python ecosystem](https://scientific-python.org/): `numpy.ndarray` or
`pandas.DataFrame` for data tables, `xarray.DataArray` for grids, and `geopandas.GeoDataFrame` for geographical data.

## Quickstart

Expand Down
8 changes: 4 additions & 4 deletions examples/tutorials/advanced/date_time_charts.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,10 @@
#
# In this example, instead of using a list of :class:`pandas.DatetimeIndex` objects,
# ``x`` is initialized as an :class:`xarray.DataArray` object. This object provides a
# wrapper around regular PyData formats. It also allows the data to have labeled
# dimensions while supporting operations that use various pieces of metadata. The
# following code uses :func:`pandas.date_range` to fill the DataArray with data, but
# this is not essential for the creation of a valid DataArray.
# wrapper around numpy ndarrays. It also allows the data to have labeled dimensions
# while supporting operations that use various pieces of metadata. The following code
# uses :func:`pandas.date_range` to fill the DataArray with data, but this is not
# essential for the creation of a valid DataArray.

x = xr.DataArray(data=pd.date_range(start="2020-01-01", periods=4, freq="Q"))
y = [4, 7, 5, 6]
Expand Down
4 changes: 2 additions & 2 deletions pygmt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
publication-quality maps and figures. It provides a Pythonic interface for the Generic
Mapping Tools (GMT), a command-line program widely used across the Earth, Ocean, and
Planetary sciences and beyond. Besides making GMT more accessible to new users, PyGMT
aims to provide integration with the PyData ecosystem as well as support for rich
display in Jupyter notebooks.
aims to provide integration with the scientific Python ecosystem as well as support for
rich display in Jupyter notebooks.
Main Features
-------------
Expand Down

0 comments on commit a5dbc13

Please sign in to comment.