Skip to content
Open
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5b9f18b
add another dimension
clarasb Jan 13, 2026
bcb0ed2
add another dimension - persisted state
clarasb Jan 13, 2026
819adaa
make DimensionSelect invisible if selectedVariable has another dimension
clarasb Jan 13, 2026
8157e2f
add DimensionSlider
clarasb Jan 15, 2026
4936063
Merge branch 'main' into clarasb-239-add_additional_dimension
clarasb Jan 28, 2026
5b550f5
work specifically with depth as an additional dimension and integrate…
clarasb Jan 29, 2026
eac0a44
add player for depth dimension
clarasb Jan 30, 2026
ecf5d55
instead of timeAnimationInterval and depthAnimationInterval store ani…
clarasb Jan 30, 2026
d6bd7b7
rename controlSelector related to additional dimension
clarasb Feb 2, 2026
0e0e23d
update tooltips
clarasb Mar 5, 2026
b0cea1a
Merge branch 'main' into clarasb-239-add_additional_dimension
clarasb Apr 8, 2026
f6c34e7
update
clarasb Apr 24, 2026
37ee364
generalize non-spatial dimension handling
clarasb May 20, 2026
b27edd2
update statistics
clarasb May 22, 2026
91cfc08
update time series
clarasb May 22, 2026
d9f1d62
Merge branch 'main' into clarasb/239-generalized_multidimensionality
clarasb Jun 5, 2026
378ec6f
styling
clarasb Jun 8, 2026
da09a7e
set selectedDimensionValues for all dims of a variable when selecting…
clarasb Jun 8, 2026
a056569
show no DimensionSelect if count of non-spatial dims <=1
clarasb Jun 8, 2026
aa9f8d5
remove depth related code
clarasb Jun 8, 2026
6abe0b6
extend list of available state properties
clarasb Jun 8, 2026
cb2c5d6
update dataset.ts
clarasb Jun 10, 2026
694cd74
fix spelling in userSettings.ts
clarasb Jun 10, 2026
947f74d
add 2nd display mode for dimension selectors
clarasb Jun 16, 2026
7b46cd1
update docs
clarasb Jun 19, 2026
209c155
Merge branch 'main' into clarasb/239-generalized_multidimensionality
clarasb Jun 22, 2026
e931417
Merge branch 'main' into clarasb/239-generalized_multidimensionality
clarasb Jun 23, 2026
4b4c750
addressing change suggestion
clarasb Jul 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changes in version 1.7.4 (in development)

### Improvements

* Add support for multiple non-spatial dataset dimensions (e.g. time, depth). Selectors are displayed either for only one dimension or for
all dimensions at once, this can be configured in the settings.(#239)

### Other changes

* Updated dependencies. Now using
Expand Down
Binary file modified docs/assets/images/datamanagement_dataset.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/images/datamanagement_variables.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/select_dimension.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/select_dimension_control.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/select_dimension_mode1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/select_dimension_mode2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 19 additions & 14 deletions docs/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ application instance. One of the available datasets is the viewer's

A _variable_ provides n-dimensional, gridded, geospatial data.
Every variable has a name, a numeric data type, and two spatial dimensions.
Usually, variables are 3-D and also have a time dimension that can be of
variable length. Each time step along the dimension determines an individual
2-D spatial image of the 3-D variable and is associated with a given timestamp.
Usually, variables are 3-D and also have one or multiple non-spatial dimensions
(e.g. time, depth, scenario) that can be of variable length. Each time step
along the dimension determines an individual 2-D spatial image of the 3-D
variable and is associated with a given timestamp.

### Places and Place Groups

Expand All @@ -53,18 +54,17 @@ or CSV files.
### Selected Dataset

The selected dataset determines the set of selectable [variables](#variable)
and the possible range of the currently [selected time](#selected-time).
and the possible range of the currently [selected non-spatial dimensions values](#selected-non-spatial-dimension-values).
Only one dataset can be selected at the same time.
The selected dataset's time coverage limits the possible values for the
[selected time](#selected-time).
If the dataset selection changes, the [selected variable](#selected-variable)
and the [selected time](#selected-time) may be adjusted if their current values
are not applicable to the newly selected dataset. In this case:
and the [selected non-spatial dimension values](#selected-time) may be adjusted
if their current values are not applicable to the newly selected dataset.
In this case:

* The newly [selected variable](#selected-variable) will be the first
variable of the selected dataset.
* The [selected time](#selected-time) will be the latest time stamp
of the selected dataset.
* The [selected non-spatial dimension values](#selected-time) will be the latest time
stamp or last value of the dimension.

### Selected Variable

Expand All @@ -88,11 +88,16 @@ One of the available [places](#places-and-place-groups) can be selected by point
at it on the map. A selected place is required, for example, to compute time-series
and statistics. Only one place can be selected at the same time.

### Selected Time
### Selected Non-spatial Dimension

The _selected time_ determines the current time step for datasets with a
time dimension. For such datasets, the selected time is required, for example,
to compute statistics.
The _selected non-spatial dimension_ determines the currently selected dimension,
of which the value can be changed.

### Selected Non-spatial Dimension Values

The _selected non-spatial dimension values_ determines the current values for
dimensions of a datasets with that dimensions. For such datasets,
the selected dimension values are required, for example, to compute statistics.

## Layers

Expand Down
Loading
Loading