You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| nodata | number | Pixel values used to identify pixels that are nodata in the assets .|
38
+
| nodata | number | Pixel values used to identify pixels that are nodata in the band . |
39
39
| sampling | string | One of `area` or `point`. Indicates whether a pixel value should be assumed to represent a sampling over the region of the pixel or a point sample at the center of the pixel. |
40
-
| data_type | string | The data type of the band. One of the [data types as described above](#data-types).|
40
+
| data_type | string | The data type of the pixels in the band. One of the [data types as described above](#data-types). |
41
41
| bits_per_sample | number | The actual number of bits used for this band. Normally only present when the number of bits is non-standard for the `datatype`, such as when a 1 bit TIFF is represented as byte |
42
42
| spatial_resolution | number | Average spatial resolution (in meters) of the pixels in the band. |
43
43
| statistics |[Statistics Object](#statistics-object)| Statistics of all the pixels in the band |
44
44
| unit | string | unit denomination of the pixel value |
45
45
| scale | number | multiplicator factor of the pixel value to transform into the value (i.e. translate digital number to reflectance). |
46
46
| offset | number | number to be added to the pixel value (after scaling) to transform into the value (i.e. translate digital number to reflectance). |
47
-
| histogram |[Histogram Object](#histogram-object)| Histogram distribution information of the pixels values in the band |
47
+
| histogram |[Histogram Object](#histogram-object)| Histogram distribution information of the pixels values in the band |
48
48
49
49
`scale` and `offset` defines parameters to compute another value. Next paragraphs describe some use cases.
50
50
@@ -150,6 +150,7 @@ In the following value definition example, 185 meters must be substracted from t
150
150
### Histogram Object
151
151
152
152
The histogram object provides with distribution of pixel values in the band. Those values are sampled in buckets.
153
+
An histogram object is atomic and all fields are **REQUIRED**.
0 commit comments