-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
%YAML 1.1 | ||
--- | ||
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01" | ||
id: "asdf://dkist.nso.edu/schemas/dataset-1.2.0" | ||
|
||
title: | | ||
A DKIST Level 1 Dataset object. | ||
description: | ||
The container for a distributed dataset object. | ||
|
||
type: object | ||
properties: | ||
data: | ||
tag: "asdf://dkist.nso.edu/tags/file_manager-1.0.0" | ||
|
||
wcs: | ||
description: The coordinate system for the complete dataset. | ||
tag: "tag:stsci.edu:gwcs/wcs-1.*" | ||
|
||
mask: | ||
tag: "tag:stsci.edu:asdf/core/ndarray-1.*" | ||
|
||
unit: | ||
tag: "tag:stsci.edu:asdf/unit/unit-1.*" | ||
|
||
meta: | ||
description: Dataset metadata, describing the whole dataset. | ||
type: object | ||
properties: | ||
headers: | ||
description: A table of all the headers for the constituent files. | ||
anyOf: | ||
- tag: "tag:astropy.org:astropy/table/table-1.*" | ||
- null: true | ||
|
||
quality: | ||
description: A copy of the quality report of these observations. | ||
type: object | ||
|
||
inventory: | ||
description: A copy of the inventory record for this dataset. | ||
type: object | ||
|
||
required: [headers, inventory] | ||
additionalProperties: true | ||
|
||
required: [data, wcs, unit] | ||
additionalProperties: true | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
%YAML 1.1 | ||
--- | ||
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01" | ||
id: "asdf://dkist.nso.edu/schemas/tiled_dataset-1.1.0" | ||
|
||
title: | | ||
A DKIST Tiled Dataset object. | ||
description: | ||
The container for a set of Dataset objects. | ||
|
||
type: object | ||
properties: | ||
datasets: | ||
description: A nested structure of Dataset objects | ||
type: array | ||
items: | ||
type: array | ||
items: | ||
- tag: "asdf://dkist.nso.edu/tags/dataset-1.*" | ||
inventory: | ||
description: A copy of the inventory record for this dataset. | ||
type: object | ||
headers: | ||
description: A table of all the headers for the constituent files. | ||
tag: "tag:astropy.org:astropy/table/table-1.*" | ||
|
||
required: [datasets, inventory, headers] | ||
additionalProperties: false | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters