We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 753bd94 commit cde1a15Copy full SHA for cde1a15
pygmt/tests/test_datasets_tutorial.py
@@ -2,6 +2,7 @@
2
Test basic functionality for loading datasets for tutorials.
3
"""
4
from pygmt.datasets import (
5
+ load_fractures_compilation,
6
load_japan_quakes,
7
load_ocean_ridge_points,
8
load_sample_bathymetry,
@@ -58,3 +59,11 @@ def test_usgs_quakes():
58
59
60
data = load_usgs_quakes()
61
assert data.shape == (1197, 22)
62
+
63
64
+def fractures_compilation():
65
+ """
66
+ Check that the dataset loads without errors.
67
68
+ data = load_fractures_compilation()
69
+ assert data.shape == (360, 2)
0 commit comments