Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#282 Composite Time Tiles, Time Tiles with range #283

Merged
merged 1 commit into from
Dec 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
59 changes: 44 additions & 15 deletions config/js/config.js

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion docs/pages/Configure/Formats/Time_Tiles/Time_Tiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,20 @@ Examples:

Additionally `{t}` may be appended with a name. The `time` is accessed by splitting on the new delimiter `Z-` and taking the first element.

Example:
Examples:

- /Missions/MSL/Layers/ExampleTimeTiles/2022-09-07T00_00_00Z-LosAngeles/16/57776/31916.png
- /Missions/MSL/Layers/ExampleTimeTiles/2022-10-07T00_00_00Z-NewYork/16/57776/31916.png
- /Missions/MSL/Layers/ExampleTimeTiles/2022-11-07T00_00_00Z-London/16/57776/31916.png

Time ranges are supported as well. Join start and ending times with `-to-`.

Examples:

- /Missions/MSL/Layers/ExampleTimeTiles/2022-09-07T00_00_00-to-2022-10-01T00_00_00/16/57776/31916.png
- /Missions/MSL/Layers/ExampleTimeTiles/2022-10-07T00_00_00-to-2022-11-01T00_00_00/16/57776/31916.png
- /Missions/MSL/Layers/ExampleTimeTiles/2022-11-07T00_00_00-to-2022-12-01T00_00_00Z-London/16/57776/31916.png

## Configuration

For a tile layer in the Layers Tab, simply:
Expand Down
6 changes: 6 additions & 0 deletions docs/pages/Configure/Layers/Tile/Tile.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,9 @@ Whether the layer should use global time values or function independently with i

_type:_ string _optional_
The string format to be used in the URL for `{time}`. Defaults to `%Y-%m-%dT%H:%M:%SZ`.

#### Composited Time Tile

_type:_ boolean

When using MMGIS-served time tiles (time enabled, `{t}` in the url, tiles served under /Missions in the format described in Time_Tiles), whether to composite/merge each tile with with the other tiles are the same location across the time query. This is useful when Time Tile data is sparse. It is a more expensive operation. If your Time Tiles are complete (no alpha in a tile), leave this False as merging tiles historically would have no effect.
Loading