Advertisement
Guest User

Untitled

a guest
Oct 13th, 2016
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 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. "automated": false,
  8. "track_files": false,
  9. "subset_correction": true,
  10. "insitu" : false
  11. },
  12. "input": {
  13. "coverage_id": "V2_monthly_cci_uncert_combined_beta_bounds_test",
  14. "paths": [
  15. "/data/datasets/CCI/v2.0-release/geographic/netcdf/monthly/chlor_a/**/*.nc"
  16. ]
  17. },
  18. "recipe": {
  19. "name": "general_coverage",
  20. "options": {
  21. "coverage": {
  22. "crs": "EPSG/0/4326@OGC/0/AnsiDate",
  23. "metadata": {
  24. "type": "xml",
  25. "global": {
  26. "Title": "'${netcdf:metadata:title}'",
  27. "Project": "'${netcdf:metadata:project}'",
  28. "Creator": "'${netcdf:metadata:creator_name}'"
  29. }
  30. },
  31. "slicer": {
  32. "type": "netcdf",
  33. "bands": [
  34. {
  35. "name": "chlor_a",
  36. "identifier": "chlor_a",
  37. "description": "Count of the number of observations from the SeaWiFS sensor contributing to this bin cell",
  38. "nilReason": "The nil value represents an error in the sensor.",
  39. "nilValue" : "-999999"
  40. },
  41. {
  42. "name" : "chlor_a_log10_bias",
  43. "identifier": "chlor_a_log10_bias",
  44. "description" : "Uncertainty lookups derived from file: /data/datasets/CCI/v2.0-production/stage09b-uncertainty_tables/chlor_a/cci_chla_bias.dat",
  45. "nilReason" : "The nil value represents an error in the sensor.",
  46. "nilValue" : "-999999"
  47. },
  48. {
  49. "name" : "chlor_a_log10_rmsd",
  50. "identifier": "chlor_a_log10_rmsd",
  51. "description" : "Uncertainty lookups derived from file: /data/datasets/CCI/v2.0-production/stage09b-uncertainty_tables/chlor_a/cci_chla_rmsd.dat",
  52. "nilReason" : "The nil value represents an error in the sensor.",
  53. "nilValue" : "-999999"
  54. }
  55. ],
  56. "axes": {
  57. "ansi": {
  58. "min": "datetime(${netcdf:variable:time:min} * 24 * 3600)",
  59. "max": "datetime(${netcdf:variable:time:max} * 24 * 3600)",
  60. "resolution": 1,
  61. "gridOrder": 0,
  62. "type": "ansidate",
  63. "irregular": true
  64. },
  65. "Long": {
  66. "min": "${netcdf:metadata:geospatial_lon_min}",
  67. "max": "${netcdf:metadata:geospatial_lon_max}",
  68. "gridOrder": 2,
  69. "resolution": "${netcdf:metadata:geospatial_lon_resolution}"
  70. },
  71. "Lat": {
  72. "min": "${netcdf:metadata:geospatial_lat_min}",
  73. "max": "${netcdf:metadata:geospatial_lat_max}",
  74. "gridOrder": 1,
  75. "resolution": "-${netcdf:metadata:geospatial_lat_resolution}"
  76. }
  77. }
  78. }
  79. },
  80. "tiling": "REGULAR [0:0, 0:1023, 0:1023]"
  81. }
  82. }
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement