Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ Getting metadata from tabular or grid data:
.. autosummary::
:toctree: generated

GMTDataArrayAccessor
info
grdinfo

Expand All @@ -202,6 +201,7 @@ Xarray Integration
:toctree: generated

GMTBackendEntrypoint
GMTDataArrayAccessor

Enums
-----
Expand Down
3 changes: 1 addition & 2 deletions pygmt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
# Import modules to make the high-level GMT Python API
from pygmt import datasets
from pygmt._show_versions import __commit__, __version__, show_versions
from pygmt.accessors import GMTDataArrayAccessor
from pygmt.figure import Figure, set_display
from pygmt.io import load_dataarray
from pygmt.session_management import begin as _begin
Expand Down Expand Up @@ -65,7 +64,7 @@
x2sys_init,
xyz2grd,
)
from pygmt.xarray import GMTBackendEntrypoint
from pygmt.xarray import GMTBackendEntrypoint, GMTDataArrayAccessor

# Start our global modern mode session
_begin()
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions pygmt/xarray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
PyGMT integration with Xarray accessors and backends.
"""

from pygmt.xarray.accessor import GMTDataArrayAccessor
from pygmt.xarray.backend import GMTBackendEntrypoint
File renamed without changes.
Loading