Skip to content

Commit d442ab9

Browse files
Merge pull request #1372 from rouault/cfloat16
Add 'cfloat16' as a valid data_type value
2 parents 8ba4e47 + 58827c9 commit d442ab9

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1111
### Added
1212

1313
- Clarify that keys to `item.assets` should be a finite (and preferably consistent) static set of values within a Collection.
14+
- Add ``cfloat16`` for 16-bit complex float as an allowed `data_type` value.
1415

1516
### Changed
1617

commons/common-metadata.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ The allowed values for `data_type` are:
336336
- `float64`: 64-big float
337337
- `cint16`: 16-bit complex integer
338338
- `cint32`: 32-bit complex integer
339+
- `cfloat16`: 16-bit complex float
339340
- `cfloat32`: 32-bit complex float
340341
- `cfloat64`: 64-bit complex float
341342
- `other`: Other data type than the ones listed above (e.g. boolean, string, higher precision numbers)

item-spec/json-schema/data-values.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"float64",
2222
"cint16",
2323
"cint32",
24+
"cfloat16",
2425
"cfloat32",
2526
"cfloat64",
2627
"other"
@@ -81,4 +82,4 @@
8182
"type": "string"
8283
}
8384
}
84-
}
85+
}

0 commit comments

Comments
 (0)