Skip to content

Commit

Permalink
Merge pull request #481 from NeurodataWithoutBorders/fix/imageseries2
Browse files Browse the repository at this point in the history
Make ImageSeries/data required
  • Loading branch information
oruebel authored Aug 5, 2021
2 parents 345d022 + 477f921 commit 81cee96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/nwb.image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ groups:
- null
- null
- null
doc: Binary data representing images across frames.
quantity: '?'
doc: Binary data representing images across frames. If data are stored in an external
file, this should be an empty 3D array.
- name: dimension
dtype: int32
dims:
Expand Down
4 changes: 4 additions & 0 deletions docs/format/source/format_release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Release Notes
- Fix incorrect dtype for electrodes table column "filtering" (float -> text)
- Remove "quantity: *" from the type definitions of ``OptogeneticStimulusSite`` and ``ImagingPlane``.
This change improves clarity of the schema to follow best practices. It has no functional effect on the schema.
- Require the "data" dataset in ``ImageSeries``. Since ``ImageSeries`` is a ``TimeSeries`` and ``TimeSeries`` requires
the "data" dataset, ``ImageSeries`` should also require the "data" dataset. Otherwise this creates problems for
inheritance and validation. If ``ImageSeries`` data are stored in an external file, then "data" should be set to
an empty 3D array.
2.3.0 (May 12, 2021)
---------------------
Expand Down

0 comments on commit 81cee96

Please sign in to comment.