Skip to content

Commit 31807e7

Browse files
author
Meghan Jones
committed
Alphabetize keys
1 parent 1209764 commit 31807e7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pygmt/datasets/samples.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ def list_sample_data():
2222
load_sample_data : Load an example dataset from the GMT server.
2323
"""
2424
names = {
25-
"japan_quakes": "Table of earthquakes around Japan from NOAA NGDC database",
26-
"ocean_ridge_points": "Table of ocean ridge points for the entire world",
2725
"bathymetry": "Table of ship bathymetric observations off Baja California",
28-
"usgs_quakes": "Table of global earthquakes from the USGS",
2926
"fractures": "Table of hypothetical fracture lengths and azimuths",
3027
"hotspots": "Table of locations, names, and symbol sizes of hotpots from "
3128
" Mueller et al., 1993",
29+
"japan_quakes": "Table of earthquakes around Japan from NOAA NGDC database",
3230
"mars_shape": "Table of topographic signature of the hemispheric dichotomy of "
3331
" Mars from Smith and Zuber (1996)",
32+
"ocean_ridge_points": "Table of ocean ridge points for the entire world",
33+
"usgs_quakes": "Table of global earthquakes from the USGS",
3434
}
3535
return names
3636

@@ -64,13 +64,13 @@ def load_sample_data(name):
6464
raise GMTInvalidInput(f"Invalid dataset name '{name}'.")
6565

6666
load_func = {
67-
"japan_quakes": load_japan_quakes,
68-
"ocean_ridge_points": load_ocean_ridge_points,
6967
"bathymetry": load_sample_bathymetry,
70-
"usgs_quakes": load_usgs_quakes,
7168
"fractures": load_fractures_compilation,
7269
"hotspots": load_hotspots,
70+
"japan_quakes": load_japan_quakes,
7371
"mars_shape": load_mars_shape,
72+
"ocean_ridge_points": load_ocean_ridge_points,
73+
"usgs_quakes": load_usgs_quakes,
7474
}
7575

7676
data = load_func[name](suppress_warning=True)

0 commit comments

Comments
 (0)