Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename tutorial.py to samples.py #1110

Merged
merged 4 commits into from
Mar 23, 2021
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 pygmt/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Load sample data included with GMT (downloaded from the GMT cache server).

from pygmt.datasets.earth_relief import load_earth_relief
from pygmt.datasets.tutorial import (
from pygmt.datasets.samples import (
load_japan_quakes,
load_ocean_ridge_points,
load_sample_bathymetry,
Expand Down
2 changes: 1 addition & 1 deletion pygmt/datasets/tutorial.py → pygmt/datasets/samples.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Functions to load sample data from the GMT tutorials.
Functions to load sample data.
"""
import pandas as pd
from pygmt.src import which
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Test basic functionality for loading datasets for tutorials.
Test basic functionality for loading sample datasets.
"""
from pygmt.datasets import (
load_japan_quakes,
Expand Down