diff --git a/config/services.yml b/config/services.yml index f80bc9e6d..077281034 100644 --- a/config/services.yml +++ b/config/services.yml @@ -348,7 +348,7 @@ https://cmr.earthdata.nasa.gov: 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. + and output to NetCDF4 or COG. 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' @@ -370,8 +370,6 @@ https://cmr.earthdata.nasa.gov: output_formats: - application/x-netcdf4 - image/tiff - - image/png - - image/gif reprojection: true steps: - image: !Env ${QUERY_CMR_IMAGE} @@ -929,7 +927,7 @@ https://cmr.uat.earthdata.nasa.gov: 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. + and output to NetCDF4 or COG. 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' @@ -951,8 +949,6 @@ https://cmr.uat.earthdata.nasa.gov: output_formats: - application/x-netcdf4 - image/tiff - - image/png - - image/gif reprojection: true steps: - image: !Env ${QUERY_CMR_IMAGE} diff --git a/services/harmony/test/collection-capabilities.ts b/services/harmony/test/collection-capabilities.ts index 55becbd31..973f44629 100644 --- a/services/harmony/test/collection-capabilities.ts +++ b/services/harmony/test/collection-capabilities.ts @@ -74,7 +74,7 @@ describe('Testing collection capabilities', function () { it('sets the outputFormats field correctly', function () { const capabilities = JSON.parse(this.res.text); const expectedFormats = [ - 'application/x-netcdf4', 'image/tiff', 'image/png', 'image/gif', 'application/x-zarr', + 'application/x-netcdf4', 'image/tiff', 'application/x-zarr', 'image/png', 'image/gif', ]; expect(capabilities.outputFormats).to.eql(expectedFormats); }); @@ -235,7 +235,7 @@ describe('Testing collection capabilities', function () { it('sets the outputFormats field correctly in the version 1 response', function () { const capabilities = JSON.parse(this.res.text); const expectedFormats = [ - 'application/x-netcdf4', 'image/tiff', 'image/png', 'image/gif', 'application/x-zarr', + 'application/x-netcdf4', 'image/tiff', 'application/x-zarr', 'image/png', 'image/gif', ]; expect(capabilities.outputFormats).to.eql(expectedFormats); }); @@ -274,4 +274,4 @@ describe('Testing collection capabilities', function () { }); }); }); -}); \ No newline at end of file +});