@eodash/eodash 5.0.0-alpha.2.8 → 5.0.0-processing
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.
- package/README.md +1 -1
- package/core/client/App.vue +13 -1
- package/core/client/asWebComponent.js +13 -3
- package/core/client/components/DashboardLayout.vue +6 -2
- package/core/client/composables/DefineEodash.js +1 -1
- package/core/client/composables/EodashMap.js +349 -0
- package/core/client/composables/EodashProcess.js +575 -0
- package/core/client/composables/index.js +107 -24
- package/core/client/eodash.js +83 -10
- package/core/client/plugins/axios.js +8 -0
- package/core/client/plugins/index.js +2 -1
- package/core/client/store/Actions.js +63 -12
- package/core/client/store/States.js +19 -0
- package/core/client/store/stac.js +98 -8
- package/core/client/types.d.ts +25 -18
- package/core/client/utils/createLayers.js +313 -0
- package/core/client/utils/eodashSTAC.js +320 -170
- package/core/client/utils/helpers.js +369 -9
- package/core/client/utils/keys.js +2 -0
- package/core/client/utils/states.js +17 -0
- package/core/client/views/Dashboard.vue +17 -46
- package/core/client/vite-env.d.ts +1 -9
- package/dist/client/DashboardLayout-CVMJ4l8M.js +87 -0
- package/dist/client/DynamicWebComponent-Cv8n457T.js +88 -0
- package/dist/client/EodashDatePicker-VVkiPmpc.js +394 -0
- package/dist/client/EodashItemFilter-CugWNQ86.js +194 -0
- package/dist/client/EodashLayerControl-53WghA8G.js +110 -0
- package/dist/client/EodashMap-CQnOePpy.js +486 -0
- package/dist/client/EodashMapBtns-uaRwFtfB.js +66 -0
- package/dist/client/EodashProcess-cF0unIy8.js +1477 -0
- package/dist/client/ExportState-BT8MLAW7.js +644 -0
- package/dist/client/Footer-C6GUG84G.js +141 -0
- package/dist/client/Header-D2dtCWp8.js +437 -0
- package/dist/client/IframeWrapper-BgM9aU8f.js +28 -0
- package/dist/client/MobileLayout-BAo8Wr8T.js +1210 -0
- package/dist/client/PopUp-Bm01q7Ko.js +389 -0
- package/dist/client/VImg-B8AbetCE.js +384 -0
- package/dist/client/VMain-DnGlQUyr.js +43 -0
- package/dist/client/VOverlay-B8Qj7LRG.js +1453 -0
- package/dist/client/WidgetsContainer-CwXRRLS1.js +83 -0
- package/dist/client/asWebComponent-DUUoR7MZ.js +11621 -0
- package/dist/client/eo-dash.js +2 -6
- package/dist/client/forwardRefs-CZJhEAKW.js +245 -0
- package/dist/client/index-DlIO7sJ3.js +199 -0
- package/dist/client/ssrBoot-BP7SYRyC.js +22 -0
- package/dist/client/style.css +2 -2
- package/dist/client/transition-BiR8wMn1.js +37 -0
- package/dist/node/cli.js +4 -4
- package/dist/node/types.d.ts +2 -0
- package/dist/types/core/client/App.vue.d.ts +7 -0
- package/dist/types/core/client/asWebComponent.d.ts +9 -0
- package/dist/types/core/client/components/DashboardLayout.vue.d.ts +2 -0
- package/dist/types/core/client/components/DynamicWebComponent.vue.d.ts +18 -0
- package/dist/types/core/client/components/ErrorAlert.vue.d.ts +2 -0
- package/dist/types/core/client/components/Footer.vue.d.ts +2 -0
- package/dist/types/core/client/components/Header.vue.d.ts +2 -0
- package/dist/types/core/client/components/IframeWrapper.vue.d.ts +7 -0
- package/dist/types/core/client/components/Loading.vue.d.ts +2 -0
- package/dist/types/core/client/components/MobileLayout.vue.d.ts +2 -0
- package/dist/types/core/client/composables/DefineEodash.d.ts +2 -0
- package/dist/types/core/client/composables/DefineTemplate.d.ts +15 -0
- package/dist/types/core/client/composables/DefineWidgets.d.ts +14 -0
- package/dist/types/core/client/composables/EodashMap.d.ts +5 -0
- package/dist/types/core/client/composables/index.d.ts +30 -0
- package/dist/types/core/client/eodash.d.ts +8 -0
- package/dist/types/core/client/main.d.ts +2 -0
- package/dist/types/core/client/plugins/axios.d.ts +2 -0
- package/dist/types/core/client/plugins/index.d.ts +3 -0
- package/dist/types/core/client/plugins/vuetify.d.ts +82 -0
- package/dist/types/core/client/render.d.ts +1 -0
- package/dist/types/core/client/store/Actions.d.ts +12 -0
- package/dist/types/core/client/store/States.d.ts +22 -0
- package/dist/types/core/client/store/index.d.ts +2 -0
- package/dist/types/core/client/store/stac.d.ts +25 -0
- package/dist/types/core/client/types.d.ts +279 -0
- package/dist/types/core/client/utils/createLayers.d.ts +45 -0
- package/dist/types/core/client/utils/eodashSTAC.d.ts +82 -0
- package/dist/types/core/client/utils/helpers.d.ts +84 -0
- package/dist/types/core/client/utils/index.d.ts +2 -0
- package/dist/types/core/client/utils/keys.d.ts +6 -0
- package/dist/types/core/client/utils/states.d.ts +14 -0
- package/dist/types/core/client/views/Dashboard.vue.d.ts +9 -0
- package/dist/types/widgets/EodashDatePicker.vue.d.ts +7 -0
- package/dist/types/widgets/EodashItemFilter.vue.d.ts +42 -0
- package/dist/types/widgets/EodashLayerControl.vue.d.ts +11 -0
- package/dist/types/widgets/EodashLayoutSwitcher.vue.d.ts +9 -0
- package/dist/types/widgets/EodashMap.vue.d.ts +7 -0
- package/dist/types/widgets/EodashMapBtns.vue.d.ts +11 -0
- package/dist/types/widgets/EodashStacInfo.vue.d.ts +21 -0
- package/dist/types/widgets/EodashTools.vue.d.ts +15 -0
- package/dist/types/widgets/ExportState.vue.d.ts +7 -0
- package/dist/types/widgets/PopUp.vue.d.ts +22 -0
- package/dist/types/widgets/WidgetsContainer.vue.d.ts +7 -0
- package/package.json +58 -37
- package/widgets/EodashDatePicker.vue +128 -100
- package/widgets/EodashItemFilter.vue +149 -47
- package/widgets/EodashLayerControl.vue +98 -0
- package/widgets/EodashMap.vue +98 -122
- package/widgets/EodashMapBtns.vue +24 -7
- package/widgets/EodashProcess.vue +151 -0
- package/widgets/ExportState.vue +15 -11
- package/core/client/SuspensedDashboard.ce.vue +0 -105
- package/dist/client/DashboardLayout-CKOExc7r.js +0 -156
- package/dist/client/DynamicWebComponent-m1Zbbw6n.js +0 -57
- package/dist/client/EodashDatePicker-CGdJRGZJ.js +0 -252
- package/dist/client/EodashItemFilter-BjM_LHaE.js +0 -63
- package/dist/client/EodashMap-61UMC8sv.js +0 -86917
- package/dist/client/EodashMapBtns-DVITfAFx.js +0 -36
- package/dist/client/ExportState-DhpK09GR.js +0 -558
- package/dist/client/Footer-CIwjaddz.js +0 -115
- package/dist/client/Header-BcM-pZFi.js +0 -350
- package/dist/client/IframeWrapper-CAe6HPqe.js +0 -19
- package/dist/client/MobileLayout-DcZOQX8r.js +0 -945
- package/dist/client/PopUp-DCaITceG.js +0 -300
- package/dist/client/VImg-C-I_7puM.js +0 -291
- package/dist/client/VMain-Cd3P0YTG.js +0 -39
- package/dist/client/VOverlay-AcvFgk39.js +0 -967
- package/dist/client/WidgetsContainer-B0-q0EMO.js +0 -129
- package/dist/client/_commonjsHelpers-DaMA6jEr.js +0 -8
- package/dist/client/asWebComponent-zuKR9I1w.js +0 -20361
- package/dist/client/basedecoder-DHcBySSe-BmCFNFnw.js +0 -88
- package/dist/client/decoder-CP4lv0Kb-DdKalImK.js +0 -10
- package/dist/client/deflate-BXt-9JA_-CWfClgpK.js +0 -10
- package/dist/client/eodashSTAC-DGB50vNk.js +0 -2788
- package/dist/client/eox-itemfilter-TaBxgqq_.js +0 -7565
- package/dist/client/eox-stacinfo-l7ALSV90.js +0 -13969
- package/dist/client/forwardRefs-BnxE4iKQ.js +0 -185
- package/dist/client/index-hSIi5Ygk.js +0 -153
- package/dist/client/jpeg-BAgeD1d3-oeHbFPUL.js +0 -514
- package/dist/client/lerc-DzVumYtB-cTUap6k_.js +0 -1027
- package/dist/client/lzw-LAGDNbSC-DkP96qO9.js +0 -84
- package/dist/client/packbits-BlDR4Kj5-C66n1-zr.js +0 -24
- package/dist/client/pako.esm-CB1uQYY0-DB0PYm1P.js +0 -1081
- package/dist/client/raw-CMGvRjfu-BRi6E4i1.js +0 -9
- package/dist/client/ssrBoot-D3KF5Thc.js +0 -17
- package/dist/client/transition-D3a4tiJv.js +0 -34
- package/dist/client/webfontloader-qotgY98I.js +0 -435
- package/dist/client/webimage-BM_pbLN3-L2cGWK5l.js +0 -19
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
import { g as E } from "./basedecoder-DHcBySSe-BmCFNFnw.js";
|
|
2
|
-
const A = 9, y = 256, x = 257, b = 12;
|
|
3
|
-
function U(f, r, o) {
|
|
4
|
-
const i = r % 8, t = Math.floor(r / 8), d = 8 - i, g = r + o - (t + 1) * 8;
|
|
5
|
-
let u = 8 * (t + 2) - (r + o);
|
|
6
|
-
const w = (t + 2) * 8 - r;
|
|
7
|
-
if (u = Math.max(0, u), t >= f.length)
|
|
8
|
-
return console.warn("ran off the end of the buffer before finding EOI_CODE (end on input code)"), x;
|
|
9
|
-
let a = f[t] & 2 ** (8 - i) - 1;
|
|
10
|
-
a <<= o - d;
|
|
11
|
-
let s = a;
|
|
12
|
-
if (t + 1 < f.length) {
|
|
13
|
-
let l = f[t + 1] >>> u;
|
|
14
|
-
l <<= Math.max(0, o - w), s += l;
|
|
15
|
-
}
|
|
16
|
-
if (g > 8 && t + 2 < f.length) {
|
|
17
|
-
const l = (t + 3) * 8 - (r + o), e = f[t + 2] >>> l;
|
|
18
|
-
s += e;
|
|
19
|
-
}
|
|
20
|
-
return s;
|
|
21
|
-
}
|
|
22
|
-
function m(f, r) {
|
|
23
|
-
for (let o = r.length - 1; o >= 0; o--)
|
|
24
|
-
f.push(r[o]);
|
|
25
|
-
return f;
|
|
26
|
-
}
|
|
27
|
-
function $(f) {
|
|
28
|
-
const r = new Uint16Array(4093), o = new Uint8Array(4093);
|
|
29
|
-
for (let n = 0; n <= 257; n++)
|
|
30
|
-
r[n] = 4096, o[n] = n;
|
|
31
|
-
let i = 258, t = A, d = 0;
|
|
32
|
-
function g() {
|
|
33
|
-
i = 258, t = A;
|
|
34
|
-
}
|
|
35
|
-
function u(n) {
|
|
36
|
-
const h = U(n, d, t);
|
|
37
|
-
return d += t, h;
|
|
38
|
-
}
|
|
39
|
-
function w(n, h) {
|
|
40
|
-
return o[i] = h, r[i] = n, i++, i - 1;
|
|
41
|
-
}
|
|
42
|
-
function a(n) {
|
|
43
|
-
const h = [];
|
|
44
|
-
for (let p = n; p !== 4096; p = r[p])
|
|
45
|
-
h.push(o[p]);
|
|
46
|
-
return h;
|
|
47
|
-
}
|
|
48
|
-
const s = [];
|
|
49
|
-
g();
|
|
50
|
-
const l = new Uint8Array(f);
|
|
51
|
-
let e = u(l), c;
|
|
52
|
-
for (; e !== x; ) {
|
|
53
|
-
if (e === y) {
|
|
54
|
-
for (g(), e = u(l); e === y; )
|
|
55
|
-
e = u(l);
|
|
56
|
-
if (e === x)
|
|
57
|
-
break;
|
|
58
|
-
if (e > y)
|
|
59
|
-
throw new Error(`corrupted code at scanline ${e}`);
|
|
60
|
-
{
|
|
61
|
-
const n = a(e);
|
|
62
|
-
m(s, n), c = e;
|
|
63
|
-
}
|
|
64
|
-
} else if (e < i) {
|
|
65
|
-
const n = a(e);
|
|
66
|
-
m(s, n), w(c, n[n.length - 1]), c = e;
|
|
67
|
-
} else {
|
|
68
|
-
const n = a(c);
|
|
69
|
-
if (!n)
|
|
70
|
-
throw new Error(`Bogus entry. Not in dictionary, ${c} / ${i}, position: ${d}`);
|
|
71
|
-
m(s, n), s.push(n[n.length - 1]), w(c, n[n.length - 1]), c = e;
|
|
72
|
-
}
|
|
73
|
-
i + 1 >= 2 ** t && (t === b ? c = void 0 : t++), e = u(l);
|
|
74
|
-
}
|
|
75
|
-
return new Uint8Array(s);
|
|
76
|
-
}
|
|
77
|
-
class B extends E {
|
|
78
|
-
decodeBlock(r) {
|
|
79
|
-
return $(r).buffer;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
export {
|
|
83
|
-
B as default
|
|
84
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { g as s } from "./basedecoder-DHcBySSe-BmCFNFnw.js";
|
|
2
|
-
class c extends s {
|
|
3
|
-
decodeBlock(l) {
|
|
4
|
-
const o = new DataView(l), r = [];
|
|
5
|
-
for (let e = 0; e < l.byteLength; ++e) {
|
|
6
|
-
let t = o.getInt8(e);
|
|
7
|
-
if (t < 0) {
|
|
8
|
-
const n = o.getUint8(e + 1);
|
|
9
|
-
t = -t;
|
|
10
|
-
for (let f = 0; f <= t; ++f)
|
|
11
|
-
r.push(n);
|
|
12
|
-
e += 1;
|
|
13
|
-
} else {
|
|
14
|
-
for (let n = 0; n <= t; ++n)
|
|
15
|
-
r.push(o.getUint8(e + n + 1));
|
|
16
|
-
e += t + 1;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
return new Uint8Array(r).buffer;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
export {
|
|
23
|
-
c as default
|
|
24
|
-
};
|