@eodash/eodash 5.7.0 → 5.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/core/client/components/EodashOverlay.vue +27 -4
  2. package/core/client/composables/DefineEodash.js +0 -1
  3. package/core/client/composables/DefineWidgets.js +3 -1
  4. package/core/client/eodashSTAC/EodashCollection.js +87 -24
  5. package/core/client/eodashSTAC/cql.js +64 -0
  6. package/core/client/eodashSTAC/createLayers.js +353 -187
  7. package/core/client/eodashSTAC/helpers.js +694 -110
  8. package/core/client/eodashSTAC/mosaic.js +422 -0
  9. package/core/client/plugins/axios.js +31 -1
  10. package/core/client/store/actions.js +1 -1
  11. package/core/client/store/stac.js +54 -4
  12. package/core/client/store/states.js +20 -2
  13. package/core/client/types.ts +152 -28
  14. package/core/client/utils/bands-editor/exampleSchema.json +50 -50
  15. package/core/client/utils/states.js +10 -0
  16. package/dist/client/{DashboardLayout-kRsmsNW5.js → DashboardLayout-DEs4f_Vy.js} +2 -2
  17. package/dist/client/{DynamicWebComponent-CnKhYo0K.js → DynamicWebComponent-PvnV88BA.js} +1 -1
  18. package/dist/client/EodashChart-D-3AGKZY.js +260 -0
  19. package/dist/client/{EodashDatePicker-CMPDT-ce.js → EodashDatePicker-Dm_goZzs.js} +3 -3
  20. package/dist/client/{EodashItemFilter-BpdA8QQa.js → EodashItemFilter-CJy3zYzD.js} +2 -1
  21. package/dist/client/{EodashLayerControl-BHpDA4_0.js → EodashLayerControl-rL8UnpkA.js} +55 -33
  22. package/dist/client/{EodashLayoutSwitcher-B1fRUt7G.js → EodashLayoutSwitcher-ZRlESI9O.js} +3 -3
  23. package/dist/client/{EodashMapBtns-Cpned0tc.js → EodashMapBtns-CG7u2Aq8.js} +227 -112
  24. package/dist/client/EodashStacInfo-CJhhxthD.js +169 -0
  25. package/dist/client/{EodashTools-1zHz26gv.js → EodashTools-CWyK8QJT.js} +4 -4
  26. package/dist/client/{ExportState-DbOm8hBI.js → ExportState-BXhy5TOU.js} +20 -174
  27. package/dist/client/{Footer-BKg-VVkj.js → Footer-DZPvnhcT.js} +1 -1
  28. package/dist/client/{Header-DCrwCvmY.js → Header-CiGsDE_a.js} +2 -2
  29. package/dist/client/{MobileLayout-vWSHpluo.js → MobileLayout-BJHW7x5V.js} +2 -2
  30. package/dist/client/{PopUp-9uimfK49.js → PopUp-7_XnhvCc.js} +4 -168
  31. package/dist/client/{ProcessList-CTTIZa06.js → ProcessList-LL_UCbvc.js} +5 -5
  32. package/dist/client/VDivider-DWYM0WUr.js +168 -0
  33. package/dist/client/{VImg-CrmB76ZY.js → VImg-B75dgw2K.js} +2 -2
  34. package/dist/client/{VMain-OKZNpcEG.js → VMain-DvMmOL4f.js} +1 -1
  35. package/dist/client/{VTooltip-CJw2FyWk.js → VTooltip-ClWHUmWL.js} +2 -2
  36. package/dist/client/{WidgetsContainer-BaWOnE5R.js → WidgetsContainer-BqaWs4ch.js} +1 -1
  37. package/dist/client/{asWebComponent-BHWpMuE3.js → asWebComponent-IZanwL-A.js} +677 -379
  38. package/dist/client/{async-DSKj6g1f.js → async-CiNIOBVz.js} +31 -29
  39. package/dist/client/{create-layers-config-CBoYedqB.js → create-layers-config-3S3y_kZg.js} +17 -17
  40. package/dist/client/dialog-transition-c4ZSnzac.js +170 -0
  41. package/dist/client/eo-dash.js +1 -1
  42. package/dist/client/{forwardRefs-DH51zPUr.js → forwardRefs-B-c1_6yo.js} +8 -87
  43. package/dist/client/{handling-BrcDDlgS.js → handling-NvY8Csry.js} +3 -4
  44. package/dist/client/{helpers-DjZVl_WF.js → helpers-BFuh19CP.js} +1094 -194
  45. package/dist/client/{index-1JKE68n3.js → index-1wMAyuNL.js} +219 -67
  46. package/dist/client/{index-CSG_JoOA.js → index-B8jGJSTA.js} +62 -56
  47. package/dist/client/{index-Cu3-13Xg.js → index-BKQQJkhy.js} +167 -61
  48. package/dist/client/index-D0jUyol8.js +3167 -0
  49. package/dist/client/{index-CUjl-ZsI.js → index-KGxz5Egv.js} +2 -2
  50. package/dist/client/mosaic-vHvSuih6.js +459 -0
  51. package/dist/client/templates.js +251 -121
  52. package/dist/client/{transition-OHcz5Qq1.js → transition-BkyUsZh_.js} +1 -1
  53. package/dist/node/cli.js +5 -5
  54. package/dist/node/types.d.ts +4 -0
  55. package/dist/types/core/client/composables/DefineEodash.d.ts +1 -1
  56. package/dist/types/core/client/eodashSTAC/EodashCollection.d.ts +57 -25
  57. package/dist/types/core/client/eodashSTAC/cql.d.ts +15 -0
  58. package/dist/types/core/client/eodashSTAC/createLayers.d.ts +42 -23
  59. package/dist/types/core/client/eodashSTAC/helpers.d.ts +118 -19
  60. package/dist/types/core/client/eodashSTAC/mosaic.d.ts +56 -0
  61. package/dist/types/core/client/store/stac.d.ts +38 -8
  62. package/dist/types/core/client/store/states.d.ts +24 -2
  63. package/dist/types/core/client/types.d.ts +128 -24
  64. package/dist/types/core/client/utils/states.d.ts +12 -0
  65. package/dist/types/templates/baseConfig.d.ts +1 -100
  66. package/dist/types/templates/compare.d.ts +32 -3
  67. package/dist/types/templates/expert.d.ts +18 -0
  68. package/dist/types/templates/explore.d.ts +10 -1
  69. package/dist/types/templates/lite.d.ts +11 -0
  70. package/dist/types/widgets/EodashChart.vue.d.ts +5 -3
  71. package/dist/types/widgets/EodashItemCatalog/index.vue.d.ts +129 -2
  72. package/dist/types/widgets/EodashItemCatalog/methods/filters.d.ts +28 -6
  73. package/dist/types/widgets/EodashItemCatalog/methods/handlers.d.ts +17 -4
  74. package/dist/types/widgets/EodashItemCatalog/methods/map.d.ts +16 -4
  75. package/dist/types/widgets/EodashLayerControl.vue.d.ts +35 -16
  76. package/dist/types/widgets/EodashMap/EodashMapBtns.vue.d.ts +14 -10
  77. package/dist/types/widgets/EodashMap/index.vue.d.ts +86 -37
  78. package/dist/types/widgets/EodashMap/methods/create-layers-config.d.ts +1 -1
  79. package/dist/types/widgets/EodashMap/methods/index.d.ts +5 -1
  80. package/dist/types/widgets/EodashMap/methods/use-map-loading.d.ts +1 -0
  81. package/dist/types/widgets/EodashProcess/index.vue.d.ts +5 -3
  82. package/dist/types/widgets/EodashProcess/methods/custom-endpoints/layers/eoxhub-workspaces-endpoint.d.ts +1 -1
  83. package/dist/types/widgets/EodashProcess/states.d.ts +1 -1
  84. package/dist/types/widgets/EodashStacInfo.vue.d.ts +20 -0
  85. package/dist/types/widgets/EodashTimeSlider/index.vue.d.ts +20 -0
  86. package/dist/types/widgets/EodashTimeSlider/methods/index.d.ts +3 -8
  87. package/dist/types/widgets/EodashTimeSlider/types.d.ts +6 -16
  88. package/dist/types/widgets/EodashTools.vue.d.ts +5 -5
  89. package/package.json +34 -34
  90. package/templates/baseConfig.js +37 -6
  91. package/templates/compare.js +61 -7
  92. package/templates/expert.js +24 -2
  93. package/templates/explore.js +12 -5
  94. package/templates/lite.js +13 -0
  95. package/widgets/EodashChart.vue +162 -21
  96. package/widgets/EodashItemCatalog/index.vue +363 -35
  97. package/widgets/EodashItemCatalog/methods/filters.js +134 -70
  98. package/widgets/EodashItemCatalog/methods/handlers.js +113 -19
  99. package/widgets/EodashItemCatalog/methods/map.js +141 -28
  100. package/widgets/EodashLayerControl.vue +51 -25
  101. package/widgets/EodashMap/EodashMapBtns.vue +109 -48
  102. package/widgets/EodashMap/index.vue +91 -105
  103. package/widgets/EodashMap/methods/btns.js +64 -31
  104. package/widgets/EodashMap/methods/create-layers-config.js +16 -16
  105. package/widgets/EodashMap/methods/index.js +71 -8
  106. package/widgets/EodashMap/methods/use-map-loading.js +58 -0
  107. package/widgets/EodashProcess/index.vue +136 -16
  108. package/widgets/EodashProcess/methods/composables.js +13 -0
  109. package/widgets/EodashProcess/methods/outputs.js +0 -1
  110. package/widgets/EodashProcess/methods/utils.js +29 -27
  111. package/widgets/EodashProcess/states.js +1 -1
  112. package/widgets/EodashStacInfo.vue +64 -2
  113. package/widgets/EodashTimeSlider/index.vue +58 -2
  114. package/widgets/EodashTimeSlider/methods/index.js +5 -48
  115. package/widgets/EodashTimeSlider/types.ts +7 -17
  116. package/widgets/ExportState.vue +13 -4
  117. package/dist/client/EodashChart-CLDqE93C.js +0 -144
  118. package/dist/client/EodashStacInfo-BQspAHKH.js +0 -107
  119. package/dist/client/index-5Jhsa8Xe.js +0 -570
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @module Configuration
3
+ */
4
+
1
5
  /** @group Eodash */
2
6
  export interface WebComponentProps {
3
7
  /**
@@ -11,7 +15,8 @@ export interface WebComponentProps {
11
15
  * ```
12
16
  *
13
17
  * ::: warning
14
- * import maps are not available in runtime config
18
+ * Importing by package name only works when a bundler resolves it (build-time configs,
19
+ * or runtime configs bundled into your app). Otherwise import by URL.
15
20
  * :::
16
21
  */
17
22
  link?: string | (() => Promise<unknown>);
@@ -93,7 +98,7 @@ export interface WebComponentWidget {
93
98
  type: "web-component";
94
99
  }
95
100
  // Internal Widget Interfaces
96
- /** @group Widgets */
101
+ /** @group Widget Config */
97
102
  export interface TEodashMap {
98
103
  name: "EodashMap";
99
104
  properties?: InstanceType<
@@ -101,7 +106,7 @@ export interface TEodashMap {
101
106
  >["$props"];
102
107
  }
103
108
 
104
- /** @group Widgets */
109
+ /** @group Widget Config */
105
110
  export interface TEodashDatePicker {
106
111
  name: "EodashDatePicker";
107
112
  properties?: InstanceType<
@@ -109,7 +114,7 @@ export interface TEodashDatePicker {
109
114
  >["$props"];
110
115
  }
111
116
 
112
- /** @group Widgets */
117
+ /** @group Widget Config */
113
118
  export interface TEodashTimeSlider {
114
119
  name: "EodashTimeSlider";
115
120
  properties?: InstanceType<
@@ -117,7 +122,7 @@ export interface TEodashTimeSlider {
117
122
  >["$props"];
118
123
  }
119
124
 
120
- /** @group Widgets */
125
+ /** @group Widget Config */
121
126
  export interface TEodashItemFilter {
122
127
  name: "EodashItemFilter";
123
128
  properties?: InstanceType<
@@ -125,7 +130,7 @@ export interface TEodashItemFilter {
125
130
  >["$props"];
126
131
  }
127
132
 
128
- /** @group Widgets */
133
+ /** @group Widget Config */
129
134
  export interface TEodashLayerControl {
130
135
  name: "EodashLayerControl";
131
136
  properties?: InstanceType<
@@ -133,7 +138,7 @@ export interface TEodashLayerControl {
133
138
  >["$props"];
134
139
  }
135
140
 
136
- /** @group Widgets */
141
+ /** @group Widget Config */
137
142
  export interface TEodashStacInfo {
138
143
  name: "EodashStacInfo";
139
144
  properties?: InstanceType<
@@ -141,7 +146,7 @@ export interface TEodashStacInfo {
141
146
  >["$props"];
142
147
  }
143
148
 
144
- /** @group Widgets */
149
+ /** @group Widget Config */
145
150
  export interface TEodashProcess {
146
151
  name: "EodashProcess";
147
152
  properties?: InstanceType<
@@ -149,7 +154,7 @@ export interface TEodashProcess {
149
154
  >["$props"];
150
155
  }
151
156
 
152
- /** @group Widgets */
157
+ /** @group Widget Config */
153
158
  export interface TEodashChart {
154
159
  name: "EodashChart";
155
160
  properties?: InstanceType<
@@ -157,15 +162,7 @@ export interface TEodashChart {
157
162
  >["$props"];
158
163
  }
159
164
 
160
- /** @group Widgets */
161
- export interface TEodashMapBtns {
162
- name: "EodashMapBtns";
163
- properties?: InstanceType<
164
- typeof import("^/EodashMapBtns.vue").default
165
- >["$props"];
166
- }
167
-
168
- /** @group Widgets */
165
+ /** @group Widget Config */
169
166
  export interface TEodashTools {
170
167
  name: "EodashTools";
171
168
  properties?: InstanceType<
@@ -173,13 +170,14 @@ export interface TEodashTools {
173
170
  >["$props"];
174
171
  }
175
172
 
176
- /** @group Widgets */
173
+ /** @group Widget Config */
177
174
  export interface TEodashLayoutSwitcher {
178
175
  name: "EodashLayoutSwitcher";
179
176
  properties?: InstanceType<
180
177
  typeof import("^/EodashLayoutSwitcher.vue").default
181
178
  >["$props"];
182
179
  }
180
+ /** @group Widget Config */
183
181
  export interface TEodashItemCatalog {
184
182
  name: "EodashItemCatalog";
185
183
  properties?: InstanceType<
@@ -187,7 +185,7 @@ export interface TEodashItemCatalog {
187
185
  >["$props"];
188
186
  }
189
187
 
190
- /** @group Widgets */
188
+ /** @group Widget Config */
191
189
  export interface TExportState {
192
190
  name: "ExportState";
193
191
  properties?: InstanceType<
@@ -195,23 +193,30 @@ export interface TExportState {
195
193
  >["$props"];
196
194
  }
197
195
 
198
- /** @group Widgets */
196
+ /** @group Widget Config */
199
197
  export interface TPopUp {
200
198
  name: "PopUp";
201
199
  properties?: InstanceType<typeof import("^/PopUp.vue").default>["$props"];
202
200
  }
203
- /** @group Widgets */
201
+ /** @group Widget Config */
204
202
  export interface TWidgetsContainer {
205
203
  name: "WidgetsContainer";
206
204
  properties?: InstanceType<
207
205
  typeof import("^/WidgetsContainer.vue").default
208
206
  >["$props"];
209
207
  }
208
+ export interface TEodashLayoutSwitcher {
209
+ name: "EodashLayoutSwitcher";
210
+ properties?: InstanceType<
211
+ typeof import("^/EodashLayoutSwitcher.vue").default
212
+ >["$props"];
213
+ }
214
+
210
215
  /**
211
216
  * Internal Vue Components inside the
212
217
  * [widgets](https://github.com/eodash/eodash/tree/main/widgets) folder.
213
218
  * Referenced using their name without the .vue extention
214
- * @group Widgets
219
+ * @group Widget Config
215
220
  */
216
221
  export type ComponentWidget =
217
222
  | TEodashMap
@@ -221,13 +226,13 @@ export type ComponentWidget =
221
226
  | TEodashStacInfo
222
227
  | TEodashProcess
223
228
  | TEodashChart
224
- | TEodashMapBtns
225
229
  | TEodashTools
226
230
  | TEodashLayoutSwitcher
227
231
  | TEodashItemCatalog
228
232
  | TExportState
229
233
  | TPopUp
230
234
  | TWidgetsContainer
235
+ | TEodashLayoutSwitcher
231
236
  | TEodashTimeSlider;
232
237
  /**
233
238
  * Widget type: `internal` API. Internal widgets are Vue components provided by
@@ -331,7 +336,10 @@ export type StacEndpoint =
331
336
  api?: boolean;
332
337
  rasterEndpoint?: string;
333
338
  vectorEndpoint?: string;
334
- supportedUpscalingEndpoints?: string[];
339
+ supportedUpscalingEndpoints?: Array<
340
+ string | { url: string; titilerVersion?: 1 | 2 }
341
+ >;
342
+ colormapRegistry?: string | Record<string, string[]>;
335
343
  };
336
344
 
337
345
  /** @group Eodash */
@@ -355,6 +363,13 @@ export type Eodash = {
355
363
  /** Object containing potential special configuration options */
356
364
  options?: {
357
365
  useSubCode?: boolean;
366
+ /**
367
+ * TiTiler render presets, keyed by collection id then render name,
368
+ * following the STAC `renders` extension shape. Used to render a
369
+ * collection's raster data when the collection itself does not expose
370
+ * `renders`.
371
+ */
372
+ renders?: Record<string, Record<string, Render>>;
358
373
  };
359
374
  /** Root STAC catalog endpoint */
360
375
  stacEndpoint: StacEndpoint;
@@ -474,10 +489,20 @@ export declare const store: typeof import("@/store").default;
474
489
 
475
490
  /////
476
491
 
477
- export * from "./main.js";
478
492
  /**
493
+ * Creates an eodash instance configuration. Accepts a config object directly,
494
+ * or an async factory that receives the eodash store and returns the config.
495
+ *
479
496
  * @group Eodash
480
497
  */
498
+ export { createEodash } from "./main.js";
499
+ /**
500
+ * eodash flat style: an OpenLayers flat style extended with interactive
501
+ * `variables`, a `jsonform`, a `legend`, and `tooltip` configuration.
502
+ *
503
+ * @group STAC
504
+ * @see [eodash Flat Styles](/STAC#eodash-flat-styles)
505
+ */
481
506
  export type EodashStyleJson = import("ol/style/flat").FlatStyleLike & {
482
507
  variables?: Record<string, string | number | boolean | null | undefined>;
483
508
  legend?: import("@eox/layercontrol/src/components/layer-config.js").EOxLayerControlLayerConfig["layerConfig"]["legend"];
@@ -489,6 +514,9 @@ export type EodashStyleJson = import("ol/style/flat").FlatStyleLike & {
489
514
  decimals?: number;
490
515
  }[];
491
516
  };
517
+ /**
518
+ * @ignore
519
+ */
492
520
  export type EodashRasterJSONForm = {
493
521
  jsonform: Record<string, any>;
494
522
  legend?: import("@eox/layercontrol/src/components/layer-config.js").EOxLayerControlLayerConfig["layerConfig"]["legend"];
@@ -520,10 +548,84 @@ export interface SearchParams {
520
548
  /** Maximum number of results to return */
521
549
  limit?: number;
522
550
  }
551
+ /**
552
+ * @ignore
553
+ */
523
554
  export interface StacItemsAPIResponse {
524
555
  type: "FeatureCollection";
525
556
  features: import("stac-ts").StacItem[];
526
557
  }
558
+
559
+ export interface AggregationCollection {
560
+ type: "AggregationCollection";
561
+ aggregations?: Array<{
562
+ key?: string;
563
+ interval?: string;
564
+ buckets?: Array<{
565
+ key: string;
566
+ value: number;
567
+ }>;
568
+ }>;
569
+ }
570
+
571
+ /** Itemfilter filter kind emitted in filter events. */
572
+ export type ItemFilterFilterType =
573
+ | "range"
574
+ | "multiselect"
575
+ | "select"
576
+ | "text"
577
+ | "spatial";
578
+
579
+ export interface ItemFilterBase {
580
+ key: string;
581
+ title?: string;
582
+ expanded?: boolean;
583
+ dirty?: boolean;
584
+ stringifiedState?: string;
585
+ }
586
+
587
+ export interface ItemFilterRange extends ItemFilterBase {
588
+ type: "range";
589
+ min?: number;
590
+ max?: number;
591
+ step?: number;
592
+ state?: {
593
+ min?: number;
594
+ max?: number;
595
+ };
596
+ }
597
+
598
+ export interface ItemFilterSelect extends ItemFilterBase {
599
+ type: "select";
600
+ state?: Record<string, string | number | boolean | null | undefined>;
601
+ }
602
+
603
+ export interface ItemFilterMultiSelect extends ItemFilterBase {
604
+ type: "multiselect";
605
+ state?: Record<string, string | number | boolean | null | undefined>;
606
+ }
607
+
608
+ export interface ItemFilterText extends ItemFilterBase {
609
+ type: "text";
610
+ state?: Record<string, string | number | boolean | null | undefined>;
611
+ }
612
+
613
+ export interface ItemFilterSpatial extends ItemFilterBase {
614
+ type: "spatial";
615
+ state?: Record<string, string | number | boolean | null | undefined>;
616
+ }
617
+
618
+ /** Normalized filter object emitted by `eox-itemfilter` in filter events. */
619
+ export type ItemFilterFilter =
620
+ | ItemFilterRange
621
+ | ItemFilterSelect
622
+ | ItemFilterMultiSelect
623
+ | ItemFilterText
624
+ | ItemFilterSpatial;
625
+
626
+ /** Itemfilter filter map keyed by filter key. */
627
+ export type ItemFilterFilters = Record<string, ItemFilterFilter>;
628
+
527
629
  /** @ignore */
528
630
  export interface Render {
529
631
  /** REQUIRED. Array of asset keys referencing the assets that are used to make the rendering */
@@ -546,6 +648,10 @@ export interface Render {
546
648
  expression?: string;
547
649
  /** Zoom levels range applicable for the visualization */
548
650
  minmax_zoom?: number[];
651
+ /** Band indexes to apply the rendering to. */
652
+ bidx?: number[];
653
+ /** Tile size to request from the tile server. */
654
+ tilesize?: number;
549
655
  }
550
656
  /** @ignore */
551
657
  export interface TitilerSTACParameters {
@@ -612,8 +718,8 @@ export interface GeoJsonFeatureCollection<
612
718
  /**
613
719
  * Partial STAC Authentication Extension v1.1.0
614
720
  * Generated from https://stac-extensions.github.io/authentication/v1.1.0/schema.json
721
+ * @ignore
615
722
  */
616
-
617
723
  export interface AuthScheme {
618
724
  /** Scheme keyword, e.g. http, s3, signedUrl, oauth2, apiKey, openIdConnect */
619
725
  type:
@@ -637,6 +743,9 @@ export interface AuthScheme {
637
743
  openIdConnectUrl?: string;
638
744
  }
639
745
 
746
+ /**
747
+ * @ignore
748
+ */
640
749
  export interface OAuth2Flow {
641
750
  authorizationUrl?: string;
642
751
  tokenUrl?: string;
@@ -644,7 +753,10 @@ export interface OAuth2Flow {
644
753
  scopes: Record<string, string>;
645
754
  }
646
755
 
647
- /** Signed URL flow configuration */
756
+ /**
757
+ * Signed URL flow configuration
758
+ * @ignore
759
+ */
648
760
  export interface SignedUrlFlow {
649
761
  authorizationApi: string;
650
762
  method: string;
@@ -660,6 +772,9 @@ export interface SignedUrlFlow {
660
772
  >;
661
773
  }
662
774
 
775
+ /**
776
+ * @ignore
777
+ */
663
778
  export interface ApiKeyAuthScheme extends AuthScheme {
664
779
  type: "apiKey";
665
780
  name: string;
@@ -667,14 +782,23 @@ export interface ApiKeyAuthScheme extends AuthScheme {
667
782
  }
668
783
 
669
784
  import { StacItem, StacLink, StacAsset } from "stac-ts";
785
+ /**
786
+ * @ignore
787
+ */
670
788
  export interface StacAuthItem extends StacItem {
671
789
  "auth:schemes": {
672
790
  [key: string]: AuthScheme;
673
791
  };
674
792
  }
793
+ /**
794
+ * @ignore
795
+ */
675
796
  export interface StacAuthLink extends StacLink {
676
797
  "auth:refs": [string];
677
798
  }
799
+ /**
800
+ * @ignore
801
+ */
678
802
  export interface StacAuthAsset extends StacAsset {
679
803
  "auth:refs": [string];
680
804
  }
@@ -2,7 +2,7 @@
2
2
  "jsonform": {
3
3
  "properties": {},
4
4
  "options": {
5
- "removeProperties": ["bidx", "variables"],
5
+ "removeProperties": ["bidx", "variables", "color_formula"],
6
6
  "no_additional_properties": true
7
7
  },
8
8
  "oneOf": [
@@ -26,18 +26,18 @@
26
26
  "items": {
27
27
  "type": "string",
28
28
  "enum": [
29
- "/measurements/reflectance/r60m:b01",
30
- "/measurements/reflectance/r60m:b02",
31
- "/measurements/reflectance/r60m:b03",
32
- "/measurements/reflectance/r60m:b04",
33
- "/measurements/reflectance/r60m:b05",
34
- "/measurements/reflectance/r60m:b06",
35
- "/measurements/reflectance/r60m:b07",
36
- "/measurements/reflectance/r10m:b08",
37
- "/measurements/reflectance/r60m:b8a",
38
- "/measurements/reflectance/r60m:b09",
39
- "/measurements/reflectance/r60m:b11",
40
- "/measurements/reflectance/r60m:b12"
29
+ "/measurements/reflectance/b01",
30
+ "/measurements/reflectance/b02",
31
+ "/measurements/reflectance/b03",
32
+ "/measurements/reflectance/b04",
33
+ "/measurements/reflectance/b05",
34
+ "/measurements/reflectance/b06",
35
+ "/measurements/reflectance/b07",
36
+ "/measurements/reflectance/b08",
37
+ "/measurements/reflectance/b8a",
38
+ "/measurements/reflectance/b09",
39
+ "/measurements/reflectance/b11",
40
+ "/measurements/reflectance/b12"
41
41
  ],
42
42
  "options": {
43
43
  "enum_titles": [
@@ -114,21 +114,21 @@
114
114
  "type": "string",
115
115
  "format": "bands-arithmetic",
116
116
  "formulaTemplate": "({{X}}-{{Y}})/({{X}}+{{Y}})",
117
- "default": "(/measurements/reflectance/r60m:b8a−/measurements/reflectance/r60m:b04)/(/measurements/reflectance/r60m:b8a+/measurements/reflectance/r60m:b04)",
117
+ "default": "(/measurements/reflectance/b8a−/measurements/reflectance/b04)/(/measurements/reflectance/b8a+/measurements/reflectance/b04)",
118
118
  "title": "Band Arithmetic Expression",
119
119
  "enum": [
120
- "/measurements/reflectance/r60m:b01",
121
- "/measurements/reflectance/r60m:b02",
122
- "/measurements/reflectance/r60m:b03",
123
- "/measurements/reflectance/r60m:b04",
124
- "/measurements/reflectance/r60m:b05",
125
- "/measurements/reflectance/r60m:b06",
126
- "/measurements/reflectance/r60m:b07",
127
- "/measurements/reflectance/r10m:b08",
128
- "/measurements/reflectance/r60m:b8a",
129
- "/measurements/reflectance/r60m:b09",
130
- "/measurements/reflectance/r60m:b11",
131
- "/measurements/reflectance/r60m:b12"
120
+ "/measurements/reflectance/b01",
121
+ "/measurements/reflectance/b02",
122
+ "/measurements/reflectance/b03",
123
+ "/measurements/reflectance/b04",
124
+ "/measurements/reflectance/b05",
125
+ "/measurements/reflectance/b06",
126
+ "/measurements/reflectance/b07",
127
+ "/measurements/reflectance/b08",
128
+ "/measurements/reflectance/b8a",
129
+ "/measurements/reflectance/b09",
130
+ "/measurements/reflectance/b11",
131
+ "/measurements/reflectance/b12"
132
132
  ],
133
133
  "options": {
134
134
  "enum_titles": [
@@ -213,18 +213,18 @@
213
213
  "formulaTemplate": "({{A}})/({{B}})",
214
214
  "title": "Band Arithmetic Expression",
215
215
  "enum": [
216
- "/measurements/reflectance/r60m:b01",
217
- "/measurements/reflectance/r60m:b02",
218
- "/measurements/reflectance/r60m:b03",
219
- "/measurements/reflectance/r60m:b04",
220
- "/measurements/reflectance/r60m:b05",
221
- "/measurements/reflectance/r60m:b06",
222
- "/measurements/reflectance/r60m:b07",
223
- "/measurements/reflectance/r10m:b08",
224
- "/measurements/reflectance/r60m:b8a",
225
- "/measurements/reflectance/r60m:b09",
226
- "/measurements/reflectance/r60m:b11",
227
- "/measurements/reflectance/r60m:b12"
216
+ "/measurements/reflectance/b01",
217
+ "/measurements/reflectance/b02",
218
+ "/measurements/reflectance/b03",
219
+ "/measurements/reflectance/b04",
220
+ "/measurements/reflectance/b05",
221
+ "/measurements/reflectance/b06",
222
+ "/measurements/reflectance/b07",
223
+ "/measurements/reflectance/b08",
224
+ "/measurements/reflectance/b8a",
225
+ "/measurements/reflectance/b09",
226
+ "/measurements/reflectance/b11",
227
+ "/measurements/reflectance/b12"
228
228
  ],
229
229
  "options": {
230
230
  "enum_titles": [
@@ -270,18 +270,18 @@
270
270
  "definitions": {
271
271
  "bandOptions": {
272
272
  "enum": [
273
- "/measurements/reflectance/r60m:b01",
274
- "/measurements/reflectance/r60m:b02",
275
- "/measurements/reflectance/r60m:b03",
276
- "/measurements/reflectance/r60m:b04",
277
- "/measurements/reflectance/r60m:b05",
278
- "/measurements/reflectance/r60m:b06",
279
- "/measurements/reflectance/r60m:b07",
280
- "/measurements/reflectance/r10m:b08",
281
- "/measurements/reflectance/r60m:b8a",
282
- "/measurements/reflectance/r60m:b09",
283
- "/measurements/reflectance/r60m:b11",
284
- "/measurements/reflectance/r60m:b12"
273
+ "/measurements/reflectance/b01",
274
+ "/measurements/reflectance/b02",
275
+ "/measurements/reflectance/b03",
276
+ "/measurements/reflectance/b04",
277
+ "/measurements/reflectance/b05",
278
+ "/measurements/reflectance/b06",
279
+ "/measurements/reflectance/b07",
280
+ "/measurements/reflectance/b08",
281
+ "/measurements/reflectance/b8a",
282
+ "/measurements/reflectance/b09",
283
+ "/measurements/reflectance/b11",
284
+ "/measurements/reflectance/b12"
285
285
  ],
286
286
  "options": {
287
287
  "enum_titles": [
@@ -146,3 +146,13 @@ export const dataThemesBrands = {
146
146
  color: "#8d845cff",
147
147
  },
148
148
  };
149
+
150
+ /** @type {Map<string, import("stac-ts").StacItem[]>} */
151
+ export const itemsCache = new Map();
152
+ /**
153
+ * Split items cache stores items with their time range metadata
154
+ * @type {Map<string, {items: import("stac-ts").StacItem[], minTime: number, maxTime: number}>}
155
+ */
156
+ export const splitItemsCache = new Map();
157
+
158
+ export const timesliderUpdateRef = ref(0);
@@ -1,7 +1,7 @@
1
1
  import { openBlock, createBlock, withCtx, createElementVNode, unref, createElementBlock, normalizeStyle, Suspense, resolveDynamicComponent, mergeProps, createCommentVNode, Fragment, renderList, Transition } from 'vue';
2
2
  import '@eox/layout';
3
- import { _ as _export_sfc, u as useDefineTemplate } from './asWebComponent-BHWpMuE3.js';
4
- import { V as VMain } from './VMain-OKZNpcEG.js';
3
+ import { _ as _export_sfc, u as useDefineTemplate } from './asWebComponent-IZanwL-A.js';
4
+ import { V as VMain } from './VMain-DvMmOL4f.js';
5
5
 
6
6
  const _style_0 = ".panel[data-v-f357e3a7]{position:relative;overflow:auto;z-index:1;pointer-events:none}.pointer[data-v-f357e3a7]{pointer-events:all}.bg-panel[data-v-f357e3a7]{z-index:0;border-radius:0!important}.fade-enter-active[data-v-f357e3a7],.fade-leave-active[data-v-f357e3a7]{transition:opacity .25s ease}.fade-enter-from[data-v-f357e3a7],.fade-leave-to[data-v-f357e3a7]{opacity:0}.bg-surface[data-v-f357e3a7],.bg-primary[data-v-f357e3a7]{backdrop-filter:blur(10px)!important;border-radius:8px;border:none;box-shadow:0 0 1px #18274b38,0 6px 12px -6px #18274b1f,0 8px 24px -4px #18274b14;max-height:100%;overflow:auto;scrollbar-color:rgba(var(--v-theme-on-surface),.2) transparent;scrollbar-width:thin}.bg-surface[data-v-f357e3a7]{background-color:rgba(var(--v-theme-surface),var(--v-surface-opacity, .8))!important}.bg-primary[data-v-f357e3a7]{background-color:rgba(var(--v-theme-primary),var(--v-primary-opacity, .8))!important}";
7
7
 
@@ -1,5 +1,5 @@
1
1
  import { withAsyncContext, ref, onMounted, onUnmounted, openBlock, createElementBlock, createBlock, resolveDynamicComponent, mergeProps } from 'vue';
2
- import { H as useSTAcStore } from './asWebComponent-BHWpMuE3.js';
2
+ import { H as useSTAcStore } from './asWebComponent-IZanwL-A.js';
3
3
 
4
4
  const _hoisted_1 = { class: "d-flex flex-column fill-height overflow-auto" };
5
5