@@ -38,10 +38,10 @@ class GMTRemoteDataset(NamedTuple):
38
38
39
39
Attributes
40
40
----------
41
- kind
42
- The kind of the dataset source. Valid values are ``"grid"`` and ``"image"``.
43
41
description
44
42
The name assigned as an attribute to the DataArray.
43
+ kind
44
+ The kind of the dataset source. Valid values are ``"grid"`` and ``"image"``.
45
45
units
46
46
The units of the values in the DataArray.
47
47
resolutions
@@ -50,17 +50,17 @@ class GMTRemoteDataset(NamedTuple):
50
50
A dictionary of extra or unique attributes of the dataset.
51
51
"""
52
52
53
- kind : Literal ["grid" , "image" ]
54
53
description : str
54
+ kind : Literal ["grid" , "image" ]
55
55
units : str | None
56
56
resolutions : dict [str , Resolution ]
57
57
extra_attributes : dict [str , Any ]
58
58
59
59
60
60
datasets = {
61
61
"earth_age" : GMTRemoteDataset (
62
- kind = "grid" ,
63
62
description = "EarthByte Earth seafloor crustal age" ,
63
+ kind = "grid" ,
64
64
units = "Myr" ,
65
65
extra_attributes = {"horizontal_datum" : "WGS84" },
66
66
resolutions = {
@@ -78,8 +78,8 @@ class GMTRemoteDataset(NamedTuple):
78
78
},
79
79
),
80
80
"earth_day" : GMTRemoteDataset (
81
- kind = "image" ,
82
81
description = "NASA Day Images" ,
82
+ kind = "image" ,
83
83
units = None ,
84
84
extra_attributes = {"long_name" : "blue_marble" , "horizontal_datum" : "WGS84" },
85
85
resolutions = {
@@ -99,6 +99,7 @@ class GMTRemoteDataset(NamedTuple):
99
99
),
100
100
"earth_dist" : GMTRemoteDataset (
101
101
description = "GSHHG Earth distance to shoreline" ,
102
+ kind = "grid" ,
102
103
units = "kilometers" ,
103
104
extra_attributes = {"horizontal_datum" : "WGS84" },
104
105
resolutions = {
@@ -117,6 +118,7 @@ class GMTRemoteDataset(NamedTuple):
117
118
),
118
119
"earth_edefl" : GMTRemoteDataset (
119
120
description = "IGPP Earth east-west deflection" ,
121
+ kind = "grid" ,
120
122
units = "micro-radians" ,
121
123
extra_attributes = {"horizontal_datum" : "WGS84" },
122
124
resolutions = {
@@ -134,8 +136,8 @@ class GMTRemoteDataset(NamedTuple):
134
136
},
135
137
),
136
138
"earth_faa" : GMTRemoteDataset (
137
- kind = "grid" ,
138
139
description = "IGPP Earth free-air anomaly" ,
140
+ kind = "grid" ,
139
141
units = "mGal" ,
140
142
extra_attributes = {"horizontal_datum" : "WGS84" },
141
143
resolutions = {
@@ -154,6 +156,7 @@ class GMTRemoteDataset(NamedTuple):
154
156
),
155
157
"earth_faaerror" : GMTRemoteDataset (
156
158
description = "IGPP Earth free-air anomaly errors" ,
159
+ kind = "grid" ,
157
160
units = "mGal" ,
158
161
extra_attributes = {"horizontal_datum" : "WGS84" },
159
162
resolutions = {
@@ -171,8 +174,8 @@ class GMTRemoteDataset(NamedTuple):
171
174
},
172
175
),
173
176
"earth_gebco" : GMTRemoteDataset (
174
- kind = "grid" ,
175
177
description = "GEBCO Earth relief" ,
178
+ kind = "grid" ,
176
179
units = "meters" ,
177
180
extra_attributes = {"vertical_datum" : "EGM96" , "horizontal_datum" : "WGS84" },
178
181
resolutions = {
@@ -194,8 +197,8 @@ class GMTRemoteDataset(NamedTuple):
194
197
},
195
198
),
196
199
"earth_geoid" : GMTRemoteDataset (
197
- kind = "grid" ,
198
200
description = "EGM2008 Earth geoid" ,
201
+ kind = "grid" ,
199
202
units = "meters" ,
200
203
extra_attributes = {"horizontal_datum" : "WGS84" },
201
204
resolutions = {
@@ -213,8 +216,8 @@ class GMTRemoteDataset(NamedTuple):
213
216
},
214
217
),
215
218
"earth_igpp" : GMTRemoteDataset (
216
- kind = "grid" ,
217
219
description = "IGPP Earth relief" ,
220
+ kind = "grid" ,
218
221
units = "meters" ,
219
222
extra_attributes = {"vertical_datum" : "EGM96" , "horizontal_datum" : "WGS84" },
220
223
resolutions = {
@@ -236,8 +239,8 @@ class GMTRemoteDataset(NamedTuple):
236
239
},
237
240
),
238
241
"earth_mag" : GMTRemoteDataset (
239
- kind = "grid" ,
240
242
description = "EMAG2 Earth Magnetic Anomaly Model" ,
243
+ kind = "grid" ,
241
244
units = "nT" ,
242
245
extra_attributes = {"horizontal_datum" : "WGS84" },
243
246
resolutions = {
@@ -254,8 +257,8 @@ class GMTRemoteDataset(NamedTuple):
254
257
},
255
258
),
256
259
"earth_mask" : GMTRemoteDataset (
257
- kind = "grid" ,
258
260
description = "GSHHG Earth mask" ,
261
+ kind = "grid" ,
259
262
units = None ,
260
263
extra_attributes = {"horizontal_datum" : "WGS84" },
261
264
resolutions = {
@@ -276,6 +279,7 @@ class GMTRemoteDataset(NamedTuple):
276
279
),
277
280
"earth_mss" : GMTRemoteDataset (
278
281
description = "CNES Earth mean sea surface" ,
282
+ kind = "grid" ,
279
283
units = "meters" ,
280
284
extra_attributes = {"horizontal_datum" : "WGS84" },
281
285
resolutions = {
@@ -293,8 +297,8 @@ class GMTRemoteDataset(NamedTuple):
293
297
},
294
298
),
295
299
"earth_night" : GMTRemoteDataset (
296
- kind = "image" ,
297
300
description = "NASA Night Images" ,
301
+ kind = "image" ,
298
302
units = None ,
299
303
extra_attributes = {"long_name" : "black_marble" , "horizontal_datum" : "WGS84" },
300
304
resolutions = {
@@ -314,6 +318,7 @@ class GMTRemoteDataset(NamedTuple):
314
318
),
315
319
"earth_mdt" : GMTRemoteDataset (
316
320
description = "CNES Earth mean dynamic topography" ,
321
+ kind = "grid" ,
317
322
units = "meters" ,
318
323
extra_attributes = {"horizontal_datum" : "WGS84" },
319
324
resolutions = {
@@ -327,6 +332,7 @@ class GMTRemoteDataset(NamedTuple):
327
332
),
328
333
"earth_ndefl" : GMTRemoteDataset (
329
334
description = "IGPP Earth north-south deflection" ,
335
+ kind = "grid" ,
330
336
units = "micro-radians" ,
331
337
extra_attributes = {"horizontal_datum" : "WGS84" },
332
338
resolutions = {
@@ -344,8 +350,8 @@ class GMTRemoteDataset(NamedTuple):
344
350
},
345
351
),
346
352
"earth_vgg" : GMTRemoteDataset (
347
- kind = "grid" ,
348
353
description = "IGPP Earth vertical gravity gradient" ,
354
+ kind = "grid" ,
349
355
units = "Eotvos" ,
350
356
extra_attributes = {"horizontal_datum" : "WGS84" },
351
357
resolutions = {
@@ -363,8 +369,8 @@ class GMTRemoteDataset(NamedTuple):
363
369
},
364
370
),
365
371
"earth_wdmam" : GMTRemoteDataset (
366
- kind = "grid" ,
367
372
description = "WDMAM World Digital Magnetic Anomaly Map" ,
373
+ kind = "grid" ,
368
374
units = "nT" ,
369
375
extra_attributes = {"horizontal_datum" : "WGS84" },
370
376
resolutions = {
@@ -380,8 +386,8 @@ class GMTRemoteDataset(NamedTuple):
380
386
},
381
387
),
382
388
"mars_relief" : GMTRemoteDataset (
383
- kind = "grid" ,
384
389
description = "NASA Mars (MOLA) relief" ,
390
+ kind = "grid" ,
385
391
units = "meters" ,
386
392
extra_attributes = {},
387
393
resolutions = {
@@ -402,8 +408,8 @@ class GMTRemoteDataset(NamedTuple):
402
408
},
403
409
),
404
410
"moon_relief" : GMTRemoteDataset (
405
- kind = "grid" ,
406
411
description = "USGS Moon (LOLA) relief" ,
412
+ kind = "grid" ,
407
413
units = "meters" ,
408
414
extra_attributes = {},
409
415
resolutions = {
@@ -424,8 +430,8 @@ class GMTRemoteDataset(NamedTuple):
424
430
},
425
431
),
426
432
"mercury_relief" : GMTRemoteDataset (
427
- kind = "grid" ,
428
433
description = "USGS Mercury relief" ,
434
+ kind = "grid" ,
429
435
units = "meters" ,
430
436
extra_attributes = {},
431
437
resolutions = {
@@ -444,8 +450,8 @@ class GMTRemoteDataset(NamedTuple):
444
450
},
445
451
),
446
452
"pluto_relief" : GMTRemoteDataset (
447
- kind = "grid" ,
448
453
description = "USGS Pluto relief" ,
454
+ kind = "grid" ,
449
455
units = "meters" ,
450
456
extra_attributes = {},
451
457
resolutions = {
@@ -464,8 +470,8 @@ class GMTRemoteDataset(NamedTuple):
464
470
},
465
471
),
466
472
"venus_relief" : GMTRemoteDataset (
467
- kind = "grid" ,
468
473
description = "NASA Magellan Venus relief" ,
474
+ kind = "grid" ,
469
475
units = "meters" ,
470
476
extra_attributes = {},
471
477
resolutions = {
0 commit comments