Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.13 KB

File metadata and controls

49 lines (36 loc) · 1.13 KB

GdalMetadataNetCdfCf

Meta data for 4D NetCDF CF datasets

Properties

Name Type
type string
resultDescriptor RasterResultDescriptor
params GdalDatasetParameters
start number
end number
step TimeStep
bandOffset number
cacheTtl number

Example

import type { GdalMetadataNetCdfCf } from '@geoengine/api-client'

// TODO: Update the object below with actual values
const example = {
  "type": null,
  "resultDescriptor": null,
  "params": null,
  "start": null,
  "end": null,
  "step": null,
  "bandOffset": null,
  "cacheTtl": null,
} satisfies GdalMetadataNetCdfCf

console.log(example)

// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)

// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as GdalMetadataNetCdfCf
console.log(exampleParsed)

[Back to top] [Back to API list] [Back to Model list] [Back to README]