Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.68 KB | None | 0 0
  1. {
  2.   "config": {
  3.     "service_url": "http://localhost:8080/rasdaman/ows",
  4.     "tmp_directory": "/tmp/",
  5.     "crs_resolver": "http://localhost:8080/def/",
  6.     "default_crs": "http://localhost:8080/def/OGC/0/Index2D",
  7.     "mock": false,
  8.     "automated": false,
  9.     "track_files": false,
  10.     "subset_correction": false,
  11.     "insitu": true
  12.   },
  13.   "input": {
  14.     "coverage_id": "metre_temperature_surface_ctest_test_3",
  15.     "paths": [
  16.       "mars_retrieve_test.grib"
  17.       ]
  18.   },
  19.   "recipe": {
  20.     "name": "general_coverage",
  21.     "options": {
  22.       "coverage": {
  23.         "crs": "EPSG/0/4326@OGC/0/AnsiDate",
  24.         "metadata": {
  25.           "type": "json",
  26.           "global": {
  27.             "Originating_or_generating_Center": "'${grib:centreDescription}'",
  28.             "GRIB_table_version": "'${grib:marsParam}'",
  29.             "Grib1_Parameter_name": "'${grib:parameterName}'",
  30.             "Grib1_Parameter_id": "'${grib:paramId}'",
  31.             "MARS type": "'${grib:marsType}'",
  32.             "Type of level": "'${grib:typeOfLevel}'"
  33.           }
  34.         },
  35.         "slicer": {
  36.           "type": "grib",
  37.           "pixelIsPoint": true,
  38.           "bands": [
  39.             {
  40.               "name": "2_metre_temperature_surface",
  41.               "identifier": "'${grib:cfVarName}'",
  42.           "description": "'{grib:marsClass}'",
  43.               "nilReason": "Nil value represents missing values.",
  44.               "nilValue": "'${grib:missingValue}'"
  45.             }
  46.           ],
  47.           "axes": {
  48.             "ansi": {
  49.           "min": "grib_datetime(${grib:dataDate}, ${grib:dataTime})",
  50.           "max": "grib_datetime(${grib:dataDate}, ${grib:dataTime})",
  51.               "gridOrder": 0,
  52.               "type": "ansidate",
  53.               "irregular": true,
  54.               "directPositions": "${grib:axis:ansi}",
  55.               "dataBound" : true
  56.             },
  57.             "Long": {
  58.               "min": "${grib:longitudeOfFirstGridPointInDegrees}",
  59.               "max": "${grib:longitudeOfLastGridPointInDegrees}",
  60.               "gridOrder": 1,
  61.               "dataBound" : true,
  62.               "resolution": "-${grib:iDirectionIncrementInDegrees} if bool(${grib:iScansNegatively}) else ${grib:iDirectionIncrementInDegrees}"
  63.             },
  64.             "Lat": {
  65.               "min": "${grib:latitudeOfLastGridPointInDegrees}",
  66.               "max": "${grib:latitudeOfFirstGridPointInDegrees}",
  67.               "gridOrder": 2,
  68.               "dataBound" : true,
  69.               "resolution": "${grib:jDirectionIncrementInDegrees} if bool(${grib:jScansPositively}) else -${grib:jDirectionIncrementInDegrees}"
  70.             }
  71.           }
  72.         }
  73.       },
  74.       "tiling": "ALIGNED [0:0, 0:179, 0:90]"
  75.     }
  76.   }
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement