linz / basemaps

NZ’s authoritative and open digital basemap service for LINZ and the public.
https://basemaps.linz.govt.nz
Other
92 stars 17 forks source link

feat(config): use shorter band names for band information #3162

Closed blacha closed 6 months ago

blacha commented 6 months ago

Motivation

We only care about names of bands, using common names as float32 or uint8 is more common in this codebase

Modification

Moves from a complex object for band type to just the datatype.

const band = { type: 'uint', bits: 8 } 
// to
const band = 'uint8'

Checklist

If not applicable, provide explanation of why.