forked from nasa/harmony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.yml
1282 lines (1220 loc) · 44.8 KB
/
services.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Order for each CMR endpoint in this file will reflect precedence of the service when
# multiple services handle a collection
# Default turbo configuration
x-turbo-config: &default-turbo-config
name: turbo
params: &default-turbo-params
env: &default-turbo-env
USE_LOCALSTACK: !Env ${USE_LOCALSTACK}
LOCALSTACK_HOST: !Env ${BACKEND_HOST}
AWS_DEFAULT_REGION: us-west-2
STAGING_BUCKET: !Env ${STAGING_BUCKET}
TEXT_LOGGER: !Env ${TEXT_LOGGER}
BACKEND_HOST: !Env ${BACKEND_HOST}
EDL_USERNAME: !Env ${EDL_USERNAME}
EDL_PASSWORD: !Env ${EDL_PASSWORD}
OAUTH_UID: !Env ${OAUTH_UID}
OAUTH_PASSWORD: !Env ${OAUTH_PASSWORD}
OAUTH_HOST: !Env ${OAUTH_HOST}
OAUTH_CLIENT_ID: !Env ${OAUTH_CLIENT_ID}
OAUTH_REDIRECT_URI: !Env ${OAUTH_REDIRECT_URI}
FALLBACK_AUTHN_ENABLED: !Env ${FALLBACK_AUTHN_ENABLED}
https://cmr.earthdata.nasa.gov:
- name: harmony/download
description: Service that performs no processing, it only returns download links for all of the matched granules from the CMR.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/harmony/download
maximum_sync_granules: 0
capabilities:
subsetting:
bbox: false
variable: false
multiple_variable: false
reprojection: false
concatenation: false
all_collections: true
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- name: gesdisc/giovanni
description: |
A service to compose the Giovanni URL and invoke Giovanni service to produce output file to visualize, analyze,
and access vast amounts of Earth science remote sensing data without having to download the data.
data_operation_version: '0.19.0'
has_granule_limit: false
# Replace the next two lines to default to synchronous once bearer tokens are supported by Giovanni
# default_sync: true
maximum_sync_granules: -1
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/gesdisc/giovanni
umm_s: S2739607260-GES_DISC
collections:
- id: C1598621093-GES_DISC
variables:
- V2548642027-GES_DISC
capabilities:
subsetting:
temporal: true
variable: true
multiple_variable: false
output_formats:
- text/csv
steps:
- image: !Env ${GIOVANNI_ADAPTER_IMAGE}
operations: ['variableSubset', 'temporalSubset']
- name: podaac/l2-subsetter
description: |
Implementation of the L2 swath subsetter based on python, xarray and netcdf4.
* Works with Trajectory (1D) and Along track/across track data.
* Works with NetCDF and HDF5 inputfiles
* Variable subsetting supported
* works with hierarchical groups
Outputs netcdf4.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/podaac/l2-subsetter
umm_s: S1962070864-POCLOUD
capabilities:
subsetting:
temporal: true
bbox: true
variable: true
shape: true
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${PODAAC_L2_SUBSETTER_IMAGE}
- name: podaac/concise
description: |
Service capabale of "concatenating" multiple netCDF files into a single netCDF files.
The resulting file has an extra dimension with size equal to the number of input files where each slice in that dimension corresponds to the data from one of the inputs.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/podaac/concise
umm_s: S2153799015-POCLOUD
capabilities:
concatenation: true
concatenate_by_default: true
subsetting:
bbox: false
variable: false
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${PODAAC_CONCISE_IMAGE}
is_batched: true
operations: ['concatenate']
- name: podaac/l2-subsetter-concise
description: |
### Chained Service of the PODAAC L2 swath subsetter and PODAAC concise services.
#### PODAAC L2 swath subsetter
* Works with Trajectory (1D) and Along track/across track data.
* Works with NetCDF and HDF5 inputfiles
* Variable subsetting supported
* works with hierarchical groups
Outputs netcdf4.
#### PODAAC concise services
Service capabale of "concatenating" multiple netCDF files into a single netCDF files.
The resulting file has an extra dimension with size equal to the number of input files where each slice in that dimension corresponds to the data from one of the inputs.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/podaac/l2-subsetter-concise
umm_s: S2800188133-POCLOUD
capabilities:
concatenation: true
concatenate_by_default: true
subsetting:
temporal: true
bbox: true
variable: true
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${PODAAC_L2_SUBSETTER_IMAGE}
operations: ['spatialSubset', 'variableSubset', 'temporalSubset']
conditional:
exists: ['spatialSubset', 'variableSubset', 'temporalSubset']
- image: !Env ${PODAAC_CONCISE_IMAGE}
is_batched: true
operations: ['concatenate']
conditional:
exists: ['concatenate']
- name: sds/trajectory-subsetter
description: |
A service that supports L2 segmented trajectory (**not swath**) data.
Currently uses the same C++ binary as is on-premises in SDPS, to offer variable, temporal, bounding box spatial and polygon spatial subsetting.
**This subsetter also ensures valid segment indices and sizes following transformation.**
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/sds/trajectory-subsetter
umm_s: S2836723123-XYZ_PROV
capabilities:
subsetting:
temporal: true
bbox: true
shape: true
variable: true
output_formats:
- application/x-hdf
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${TRAJECTORY_SUBSETTER_IMAGE}
operations: ['variableSubset', 'spatialSubset', 'shapefileSubset', 'temporalSubset']
- name: sds/HOSS-geographic
description: |
A service that currently supports L3/L4 geographically gridded collections, offering variable, temporal, named dimension, bounding box spatial and shape file spatial subsetting.
Accesses NetCDF-4 files hosted in Hyrax cloud service (OPeNDAP), and retrieves the requested list of variables,
plus all those that are required to support meaningful downstream operations upon those data (e.g. associated coordinate variables).
This service is currently operated from the same Docker image as the sds/variable-subsetter service.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/sds/HOSS-geographic
umm_s: S2164732315-XYZ_PROV
capabilities:
subsetting:
temporal: true
bbox: true
dimension: true
shape: true
variable: true
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${HOSS_IMAGE}
operations: ['variableSubset', 'spatialSubset', 'dimensionSubset', 'shapefileSubset', 'temporalSubset']
- image: !Env ${SDS_MASKFILL_IMAGE}
operations: ['shapefileSubset']
conditional:
exists: ['shapefileSubset']
- name: sds/HOSS-projection-gridded
description: |
A service that currently supports L3/L4 projection-gridded collections, offering variable, temporal, named dimension, bounding box spatial and shape file spatial subsetting.
Accesses NetCDF-4 files hosted in Hyrax cloud service (OPeNDAP), and retrieves the requested list of variables,
plus all those that are required to support meaningful downstream operations upon those data (e.g. associated coordinate variables).
This service is currently operated from the same Docker image as the sds/variable-subsetter service.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/sds/HOSS-projection-gridded
umm_s: S2300730272-XYZ_PROV
capabilities:
subsetting:
temporal: true
bbox: true
dimension: true
shape: true
variable: true
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${HOSS_IMAGE}
operations: ['variableSubset', 'spatialSubset', 'dimensionSubset', 'shapefileSubset', 'temporalSubset']
- image: !Env ${SDS_MASKFILL_IMAGE}
operations: ['shapefileSubset', 'spatialSubset']
conditional:
exists: ['shapefileSubset', 'spatialSubset']
- name: ldds/geoloco
description: |
Service capable of reprojecting, resampling, regridding, and spatial and SDS subsetting HDF4/HDF-EOS2 SDS variables.
The wrapper also retrieves the geolocation file name from the input file Core Metadata and downloads it from S3.
Works with L1B-L4 granules (L1B and L2 granule SDSs are automatically regridded with default setting granule resolution
and geographic projection).
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/ldds/geoloco
umm_s: S2951645688-LAADS
maximum_sync_granules: 0
capabilities:
subsetting:
bbox: true
variable: true
multiple_variable: true
output_formats:
- application/x-hdf
reprojection: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${GEOLOCO_IMAGE}
- name: net2cog
description: |
Converts NetCDF files to COG. Includes extension for running in NASA Harmony. https://github.com/podaac/net2cog
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/harmony/net2cog
umm_s: S3177988677-POCLOUD
capabilities:
subsetting:
variable: true
output_formats:
# According to https://github.com/opengeospatial/CloudOptimizedGeoTIFF/issues/1 "image/tiff; application=geotiff; profile=cloud-optimized" is the media type that should be used for COG.
# pystac agrees https://pystac.readthedocs.io/en/stable/api/media_type.html
# Harmony only matches on the part before the first semi-colon
- image/tiff
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${NET2COG_IMAGE}
- name: nasa/harmony-gdal-adapter
description: |
Service translating Harmony operations to GDAL commands.
Supports spatial bounding box, temporal, variable, and shapefile, reprojection,
and output to NetCDF4, COG, PNG, and GIF.
Operates on input file types supported by GDAL (most EOSDIS data).
Most operations assume L3 data, though it is likely that some work on L2.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/nasa/harmony-gdal-adapter
umm_s: S2606110201-XYZ_PROV
capabilities:
subsetting:
temporal: true
shape: true
bbox: true
variable: true
multiple_variable: true
output_formats:
- application/x-netcdf4
- image/tiff
- image/png
- image/gif
reprojection: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${HARMONY_GDAL_ADAPTER_IMAGE}
- name: sds/HyBIG
description: |
The Harmony Browse Image Generator (HyBIG) supports the conversion of
GeoTIFF inputs to Global Imagery Browse Services (GIBS) compatible PNG or
JPEG outputs. This includes, where necessary, conversion to a GIBS
supported Coordinate Reference System (CRS). Other projections can be
requested, but will not be compatible with GIBS.
data_operation_version: '0.18.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/sds/hybig
umm_s: S2697183066-XYZ_PROV
capabilities:
subsetting:
bbox: false
shape: false
temporal: false
output_formats:
- image/png
- image/jpeg
reprojection: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
- image: !Env ${HYBIG_IMAGE}
- name: harmony/netcdf-to-zarr
description: |
Converts NetCDF4 files to the Zarr format as faithfully as possible, preserving metadata.
The service attempts to optimize chunking in both time and space via heuristic algorithm in the output Zarr store.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/harmony/netcdf-to-zarr
umm_s: S2839491596-XYZ_PROV
maximum_sync_granules: 0
capabilities:
concatenation: true
concatenate_by_default: false
subsetting:
variable: false
output_formats:
- application/x-zarr
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${HARMONY_NETCDF_TO_ZARR_IMAGE}
is_batched: false
operations: ['reformat', 'concatenate']
- name: l2-subsetter-batchee-stitchee-concise
description: |
### Subsetter And Multi-dimensional Batched Aggregation in Harmony (SAMBAH)
Chained Service of the L2-subsetter, Batchee, STITCHEE, and CONCISE services.
Additional documentation [here](https://stitchee.readthedocs.io/en/latest/sambah_readme/).
#### L2 swath subsetter (L2-subsetter)
* Works with trajectory (1D) and along track/across track data.
* Works with netCDF and HDF5 input files.
* Supports variable subsetting.
* Supports temporal subsetting.
* Supports shape subsetting
* Works with hierarchical groups.
* Outputs netCDF4.
#### Batchee
* Service groups together filenames so that further operations (such as concatenation) can be performed separately on each group of files.
#### STITCH by Extending a dimEnsion (Stitchee)
* Service concatenates a group of netCDF data files along an existing dimension.
#### CONCatenation SErvice (CONCISE)
* Service capable of "concatenating" multiple netCDF files into a single netCDF file.
The resulting file has an extra dimension with size equal to the number of input files, where each slice in that dimension corresponds to the data from one of the input files.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/asdc-trade/l2-subsetter-batchee-stitchee-concise
umm_s: S2940253910-LARC_CLOUD
capabilities:
concatenation: true
concatenate_by_default: false
extend: true
default_extend_dimensions: ['mirror_step']
subsetting:
bbox: true
variable: true
temporal: true
shape: true
output_formats:
- application/netcdf4
reprojection: false
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${PODAAC_L2_SUBSETTER_IMAGE}
operations: ['spatialSubset', 'shapefileSubset', 'variableSubset', 'temporalSubset']
conditional:
exists: ['spatialSubset', 'shapefileSubset', 'variableSubset', 'temporalSubset']
extra_args:
cut: false
- image: !Env ${BATCHEE_IMAGE}
operations: ['concatenate']
conditional:
exists: ['concatenate']
- image: !Env ${STITCHEE_IMAGE}
operations: ['extend']
conditional:
exists: ['concatenate']
- image: !Env ${PODAAC_CONCISE_IMAGE}
is_batched: true
operations: ['concatenate']
conditional:
exists: ['concatenate']
- name: harmony/service-example
description: |
Reference service that can be used to perform most operations supported by Harmony.
Useful for testing new API features end-to-end on example data but not meant for production use.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/harmony/service-example
umm_s: S2685815868-XYZ_PROV
capabilities:
subsetting:
bbox: true
variable: true
multiple_variable: true
output_formats:
- image/tiff
- image/png
- image/gif
reprojection: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${HARMONY_SERVICE_EXAMPLE_IMAGE}
https://cmr.uat.earthdata.nasa.gov:
- name: harmony/download
description: Service that performs no processing, it only returns download links for all of the matched granules from the CMR.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/harmony/download
maximum_sync_granules: 0
capabilities:
subsetting:
bbox: false
variable: false
multiple_variable: false
reprojection: false
concatenation: false
all_collections: true
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- name: ldds/geoloco
description: |
Service capable of reprojecting, resampling, regridding, and spatial and SDS subsetting HDF4/HDF-EOS2 SDS variables.
The wrapper also retrieves the geolocation file name from the input file Core Metadata and downloads it from S3.
Works with L1B-L4 granules (L1B and L2 granule SDSs are automatically regridded with default setting granule resolution
and geographic projection).
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/ldds/geoloco
umm_s: S1259233619-LAADSCDUAT
maximum_sync_granules: 0
capabilities:
subsetting:
bbox: true
variable: true
multiple_variable: true
output_formats:
- application/x-hdf
reprojection: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${GEOLOCO_IMAGE}
- name: ldds/subset-band-name
description: |
Subset by Band and Name service capable of subsetting HDF4/HDF-EOS2 SDS variables by name and band.
data_operation_version: '0.18.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/ldds/subset-band-name
umm_s: S1261503923-LAADSCDUAT
maximum_sync_granules: 0
capabilities:
subsetting:
variable: true
multiple_variable: true
output_formats:
- application/x-hdf
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${SUBSET_BAND_NAME_IMAGE}
- name: gesdisc/giovanni
description: |
A service to compose the Giovanni URL and invoke Giovanni service to produce output file to visualize, analyze,
and access vast amounts of Earth science remote sensing data without having to download the data.
data_operation_version: '0.19.0'
has_granule_limit: false
# Replace the next two lines to default to synchronous once bearer tokens are supported by Giovanni
# default_sync: true
maximum_sync_granules: -1
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/gesdisc/giovanni
umm_s: S1258984104-GES_DISC
collections:
- id: C1225808238-GES_DISC
variables:
- V1256306287-GES_DISC
capabilities:
subsetting:
temporal: true
variable: true
multiple_variable: false
output_formats:
- text/csv
steps:
- image: !Env ${GIOVANNI_ADAPTER_IMAGE}
operations: ['variableSubset', 'temporalSubset']
- name: podaac/l2-subsetter
description: |
Implementation of the L2 swath subsetter based on python, xarray and netcdf4.
* Works with Trajectory (1D) and Along track/across track data.
* Works with NetCDF and HDF5 inputfiles
* Variable subsetting supported
* works with hierarchical groups
Outputs netcdf4.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/podaac/l2-subsetter
umm_s: S1234899453-POCLOUD
capabilities:
subsetting:
temporal: true
bbox: true
variable: true
shape: true
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${PODAAC_L2_SUBSETTER_IMAGE}
- name: podaac/concise
description: |
Service capabale of "concatenating" multiple netCDF files into a single netCDF files.
The resulting file has an extra dimension with size equal to the number of input files where each slice in that dimension corresponds to the data from one of the inputs.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/podaac/concise
umm_s: S1242328818-POCLOUD
capabilities:
concatenation: true
concatenate_by_default: true
subsetting:
bbox: false
variable: false
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${PODAAC_CONCISE_IMAGE}
is_batched: true
operations: ['concatenate']
- name: podaac/l2-subsetter-concise
description: |
### Chained Service of the PODAAC L2 swath subsetter and PODAAC concise services.
#### PODAAC L2 swath subsetter
* Works with Trajectory (1D) and Along track/across track data.
* Works with NetCDF and HDF5 inputfiles
* Variable subsetting supported
* works with hierarchical groups
Outputs netcdf4.
#### PODAAC concise service
Service capabale of "concatenating" multiple netCDF files into a single netCDF files.
The resulting file has an extra dimension with size equal to the number of input files where each slice in that dimension corresponds to the data from one of the inputs.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/podaac/l2-subsetter-concise
umm_s: S1261068840-POCLOUD
capabilities:
concatenation: true
concatenate_by_default: true
subsetting:
temporal: true
bbox: true
variable: true
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${PODAAC_L2_SUBSETTER_IMAGE}
operations: ['spatialSubset', 'variableSubset', 'temporalSubset']
conditional:
exists: ['spatialSubset', 'variableSubset', 'temporalSubset']
- image: !Env ${PODAAC_CONCISE_IMAGE}
is_batched: true
operations: ['concatenate']
conditional:
exists: ['concatenate']
- name: sds/swath-projector
description: |
Takes NetCDF-4 input files and projects input swath variables to an output grid.
Target CRS, output grid dimensions, extents and/or resolutions can be specified in the Harmony request.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/sds/swath-projector
umm_s: S1237974711-EEDTEST
capabilities:
subsetting:
bbox: false
variable: false
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
reprojection: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${SWATH_PROJECTOR_IMAGE}
- name: sds/harmony-regridder
description: |
The Harmony Regridding Service for L3/L4 collections
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/sds/harmony-regridder
umm_s: S1256563664-EEDTEST
capabilities:
subsetting:
bbox: false
shape: false
variable: false
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
reprojection: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${HARMONY_REGRIDDER_IMAGE}
- name: sds/variable-subsetter
description: |
The Variable Subsetter provides _only_ variable subsetting.
Accesses NetCDF-4 files hosted in Hyrax cloud service (OPeNDAP), and retrieves the requested list of variables,
plus all those that are required to support meaningful downstream operations upon those data (e.g. associated coordinate variables).
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/sds/variable-subsetter
umm_s: S1237976118-EEDTEST
capabilities:
subsetting:
bbox: false
shape: false
variable: true
output_formats:
- application/netcdf # Incorrect mime-type, remove when no longer needed
- application/x-netcdf4
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${HOSS_IMAGE}
operations: ['variableSubset']
- name: sds/maskfill
description: |
The service takes input HDF-5 or GeoTIFF file and GeoJSON shape file,
masks science (non-coordinate) variables such that pixel values outside of the GeoJSON shape are set to a fill value.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/sds/maskfill
umm_s: S1240151795-EEDTEST
capabilities:
subsetting:
shape: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${SDS_MASKFILL_IMAGE}
- name: sds/trajectory-subsetter
description: |
A service that supports L2 segmented trajectory (**not swath**) data.
Currently uses the same C++ binary as is on-premises in SDPS, to offer variable, temporal, bounding box spatial and polygon spatial subsetting.
**This subsetter also ensures valid segment indices and sizes following transformation.**
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/sds/trajectory-subsetter
umm_s: S1242315633-EEDTEST
capabilities:
subsetting:
temporal: true
bbox: true
shape: true
variable: true
output_formats:
- application/x-hdf
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${TRAJECTORY_SUBSETTER_IMAGE}
operations: ['variableSubset', 'spatialSubset', 'shapefileSubset', 'temporalSubset']
# This is an example service and backend from example/http-backend.js mounted by
# the frontend callback server.
# EOSS Example: curl -Lnbj 'http://localhost:3000/C1104-PVC_TS2/eoss/0.2.0/items/G1216319051-PVC_TS2'
- name: harmony/example
description: |
An example service for testing harmony http service integration. This service isn't docker-based or make GDAL calls - it does not actually do anything with the data files.
data_operation_version: '0.19.0'
enabled: !Env ${EXAMPLE_SERVICES}
type:
name: http
params:
url: http://127.0.0.1:4000/example/harmony
umm_s: S1233603903-EEDTEST
capabilities:
subsetting:
variable: true
bbox: true
output_formats:
- image/tiff
reprojection: true
- name: net2cog
description: |
Converts NetCDF files to COG. Includes extension for running in NASA Harmony. https://github.com/podaac/net2cog
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/harmony/net2cog
umm_s: S1268612173-POCLOUD
capabilities:
subsetting:
variable: true
output_formats:
# According to https://github.com/opengeospatial/CloudOptimizedGeoTIFF/issues/1 "image/tiff; application=geotiff; profile=cloud-optimized" is the media type that should be used for COG.
# pystac agrees https://pystac.readthedocs.io/en/stable/api/media_type.html
# Harmony only matches on the part before the first semi-colon
- image/tiff
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${NET2COG_IMAGE}
- name: nasa/harmony-gdal-adapter
description: |
Service translating Harmony operations to GDAL commands.
Supports spatial bounding box, temporal, variable, and shapefile, reprojection,
and output to NetCDF4, COG, PNG, and GIF.
Operates on input file types supported by GDAL (most EOSDIS data).
Most operations assume L3 data, though it is likely that some work on L2.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/nasa/harmony-gdal-adapter
umm_s: S1245787332-EEDTEST
capabilities:
subsetting:
temporal: true
shape: true
bbox: true
variable: true
multiple_variable: true
output_formats:
- application/x-netcdf4
- image/tiff
- image/png
- image/gif
reprojection: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${HARMONY_GDAL_ADAPTER_IMAGE}
- name: sds/HyBIG
description: |
The Harmony Browse Image Generator (HyBIG) supports the conversion of
GeoTIFF inputs to Global Imagery Browse Services (GIBS) compatible PNG or
JPEG outputs. This includes, where necessary, conversion to a GIBS
supported Coordinate Reference System (CRS). Other projections can be
requested, but will not be compatible with GIBS.
data_operation_version: '0.19.0'
type:
<<: *default-turbo-config
params:
<<: *default-turbo-params
env:
<<: *default-turbo-env
STAGING_PATH: public/sds/hybig
umm_s: S1257776354-EEDTEST
capabilities:
subsetting:
bbox: false
shape: false
temporal: false
output_formats:
- image/png
- image/jpeg
reprojection: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${HYBIG_IMAGE}
# CHAINED SERVICES BELOW HERE
- name: sds/HOSS-geographic
description: |
A service that currently supports L3/L4 geographically gridded collections, offering variable, temporal, named dimension, bounding box spatial and shape file spatial subsetting.
Accesses NetCDF-4 files hosted in Hyrax cloud service (OPeNDAP), and retrieves the requested list of variables,
plus all those that are required to support meaningful downstream operations upon those data (e.g. associated coordinate variables).
This service is currently operated from the same Docker image as the sds/variable-subsetter service.