@@ -22,15 +22,15 @@ def list_sample_data():
22
22
load_sample_data : Load an example dataset from the GMT server.
23
23
"""
24
24
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" ,
27
25
"bathymetry" : "Table of ship bathymetric observations off Baja California" ,
28
- "usgs_quakes" : "Table of global earthquakes from the USGS" ,
29
26
"fractures" : "Table of hypothetical fracture lengths and azimuths" ,
30
27
"hotspots" : "Table of locations, names, and symbol sizes of hotpots from "
31
28
" Mueller et al., 1993" ,
29
+ "japan_quakes" : "Table of earthquakes around Japan from NOAA NGDC database" ,
32
30
"mars_shape" : "Table of topographic signature of the hemispheric dichotomy of "
33
31
" 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" ,
34
34
}
35
35
return names
36
36
@@ -64,13 +64,13 @@ def load_sample_data(name):
64
64
raise GMTInvalidInput (f"Invalid dataset name '{ name } '." )
65
65
66
66
load_func = {
67
- "japan_quakes" : load_japan_quakes ,
68
- "ocean_ridge_points" : load_ocean_ridge_points ,
69
67
"bathymetry" : load_sample_bathymetry ,
70
- "usgs_quakes" : load_usgs_quakes ,
71
68
"fractures" : load_fractures_compilation ,
72
69
"hotspots" : load_hotspots ,
70
+ "japan_quakes" : load_japan_quakes ,
73
71
"mars_shape" : load_mars_shape ,
72
+ "ocean_ridge_points" : load_ocean_ridge_points ,
73
+ "usgs_quakes" : load_usgs_quakes ,
74
74
}
75
75
76
76
data = load_func [name ](suppress_warning = True )
0 commit comments