blue-chestnut-solar-expert 0.0.70 → 0.0.71
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/dist/stencil-library/{decoder-CuK4bYyT.js → decoder-DafVsihn.js} +3 -3
- package/dist/stencil-library/{decoder-CuK4bYyT.js.map → decoder-DafVsihn.js.map} +1 -1
- package/dist/stencil-library/{deflate-B_19Wwe5.js → deflate-BOWpTFAE.js} +3 -3
- package/dist/stencil-library/{deflate-B_19Wwe5.js.map → deflate-BOWpTFAE.js.map} +1 -1
- package/dist/stencil-library/{jpeg-BYwBjmYM.js → jpeg-DWgO3UMT.js} +3 -3
- package/dist/stencil-library/{jpeg-BYwBjmYM.js.map → jpeg-DWgO3UMT.js.map} +1 -1
- package/dist/stencil-library/{lerc-C23gVCZY.js → lerc-BQV9jxbc.js} +3 -3
- package/dist/stencil-library/{lerc-BrKFrpOl.js.map → lerc-BQV9jxbc.js.map} +1 -1
- package/dist/stencil-library/loading-widget.entry.js +1 -1
- package/dist/stencil-library/{lzw-Cv4Jzqw8.js → lzw-fGokKIJR.js} +3 -3
- package/dist/stencil-library/{lzw-Cv4Jzqw8.js.map → lzw-fGokKIJR.js.map} +1 -1
- package/dist/stencil-library/{map-draw-I6HehGjN.js → map-draw-DHsfxmE8.js} +19 -19
- package/dist/stencil-library/{map-draw-I6HehGjN.js.map → map-draw-DHsfxmE8.js.map} +1 -1
- package/dist/stencil-library/map-draw.entry.js +1 -1
- package/dist/stencil-library/{packbits-DYI_WQMn.js → packbits-vWMrdouf.js} +3 -3
- package/dist/stencil-library/{packbits-DYI_WQMn.js.map → packbits-vWMrdouf.js.map} +1 -1
- package/dist/stencil-library/{raw-DmgLt5Xw.js → raw-BZExdvHz.js} +3 -3
- package/dist/stencil-library/{raw-DmgLt5Xw.js.map → raw-BZExdvHz.js.map} +1 -1
- package/dist/stencil-library/solar-system-form.entry.esm.js.map +1 -1
- package/dist/stencil-library/solar-system-form.entry.js +141 -207
- package/dist/stencil-library/solar-system-form.entry.js.map +1 -1
- package/dist/stencil-library/stencil-library.esm.js +1 -1
- package/dist/stencil-library/{webimage-DjTbF9dC.js → webimage-DzcyYZ7I.js} +3 -3
- package/dist/stencil-library/{webimage-DjTbF9dC.js.map → webimage-DzcyYZ7I.js.map} +1 -1
- package/dist/types/components/solar-system-form/solar-system-form.d.ts +10 -6
- package/package.json +1 -1
- package/dist/stencil-library/decoder-DO85tL09.js +0 -39
- package/dist/stencil-library/decoder-DO85tL09.js.map +0 -1
- package/dist/stencil-library/deflate-BnZRAamW.js +0 -21
- package/dist/stencil-library/deflate-BnZRAamW.js.map +0 -1
- package/dist/stencil-library/jpeg-Carqigwf.js +0 -910
- package/dist/stencil-library/jpeg-Carqigwf.js.map +0 -1
- package/dist/stencil-library/lerc-BrKFrpOl.js +0 -2469
- package/dist/stencil-library/lerc-C23gVCZY.js.map +0 -1
- package/dist/stencil-library/lzw-CyjveJk_.js +0 -144
- package/dist/stencil-library/lzw-CyjveJk_.js.map +0 -1
- package/dist/stencil-library/map-draw-s4wyOrpW.js +0 -25568
- package/dist/stencil-library/map-draw-s4wyOrpW.js.map +0 -1
- package/dist/stencil-library/packbits-DZ08I0fK.js +0 -39
- package/dist/stencil-library/packbits-DZ08I0fK.js.map +0 -1
- package/dist/stencil-library/raw-DxHWSwjD.js +0 -20
- package/dist/stencil-library/raw-DxHWSwjD.js.map +0 -1
- package/dist/stencil-library/webimage-DpQLhKY4.js +0 -53
- package/dist/stencil-library/webimage-DpQLhKY4.js.map +0 -1
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
if (typeof global === "undefined") { var global = globalThis || window || self; }
|
|
3
|
-
import { a as BaseDecoder } from './map-draw-s4wyOrpW.js';
|
|
4
|
-
import './index-ICfDNUMe.js';
|
|
5
|
-
import './constants-hboFofU4.js';
|
|
6
|
-
import './tools-BNYKV5H5.js';
|
|
7
|
-
import './config-CWfV1nKn.js';
|
|
8
|
-
import './utils-BCUZxI9u.js';
|
|
9
|
-
import './store-CcqrFuBK.js';
|
|
10
|
-
|
|
11
|
-
class PackbitsDecoder extends BaseDecoder {
|
|
12
|
-
decodeBlock(buffer) {
|
|
13
|
-
const dataView = new DataView(buffer);
|
|
14
|
-
const out = [];
|
|
15
|
-
|
|
16
|
-
for (let i = 0; i < buffer.byteLength; ++i) {
|
|
17
|
-
let header = dataView.getInt8(i);
|
|
18
|
-
if (header < 0) {
|
|
19
|
-
const next = dataView.getUint8(i + 1);
|
|
20
|
-
header = -header;
|
|
21
|
-
for (let j = 0; j <= header; ++j) {
|
|
22
|
-
out.push(next);
|
|
23
|
-
}
|
|
24
|
-
i += 1;
|
|
25
|
-
} else {
|
|
26
|
-
for (let j = 0; j <= header; ++j) {
|
|
27
|
-
out.push(dataView.getUint8(i + j + 1));
|
|
28
|
-
}
|
|
29
|
-
i += header + 1;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
return new Uint8Array(out).buffer;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export { PackbitsDecoder as default };
|
|
37
|
-
//# sourceMappingURL=packbits-DZ08I0fK.js.map
|
|
38
|
-
|
|
39
|
-
//# sourceMappingURL=packbits-DZ08I0fK.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"packbits-DZ08I0fK.js","sources":["../../node_modules/geotiff/dist-module/compression/packbits.js"],"sourcesContent":["import BaseDecoder from './basedecoder.js';\n\nexport default class PackbitsDecoder extends BaseDecoder {\n decodeBlock(buffer) {\n const dataView = new DataView(buffer);\n const out = [];\n\n for (let i = 0; i < buffer.byteLength; ++i) {\n let header = dataView.getInt8(i);\n if (header < 0) {\n const next = dataView.getUint8(i + 1);\n header = -header;\n for (let j = 0; j <= header; ++j) {\n out.push(next);\n }\n i += 1;\n } else {\n for (let j = 0; j <= header; ++j) {\n out.push(dataView.getUint8(i + j + 1));\n }\n i += header + 1;\n }\n }\n return new Uint8Array(out).buffer;\n }\n}\n"],"names":[],"mappings":";;;;;;;;;;AAEe,MAAM,eAAe,SAAS,WAAW,CAAC;AACzD,EAAE,WAAW,CAAC,MAAM,EAAE;AACtB,IAAI,MAAM,QAAQ,GAAG,IAAI,QAAQ,CAAC,MAAM,CAAC;AACzC,IAAI,MAAM,GAAG,GAAG,EAAE;;AAElB,IAAI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,UAAU,EAAE,EAAE,CAAC,EAAE;AAChD,MAAM,IAAI,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC;AACtC,MAAM,IAAI,MAAM,GAAG,CAAC,EAAE;AACtB,QAAQ,MAAM,IAAI,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC;AAC7C,QAAQ,MAAM,GAAG,CAAC,MAAM;AACxB,QAAQ,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,MAAM,EAAE,EAAE,CAAC,EAAE;AAC1C,UAAU,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC;AACxB;AACA,QAAQ,CAAC,IAAI,CAAC;AACd,OAAO,MAAM;AACb,QAAQ,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,MAAM,EAAE,EAAE,CAAC,EAAE;AAC1C,UAAU,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;AAChD;AACA,QAAQ,CAAC,IAAI,MAAM,GAAG,CAAC;AACvB;AACA;AACA,IAAI,OAAO,IAAI,UAAU,CAAC,GAAG,CAAC,CAAC,MAAM;AACrC;AACA;;;;","x_google_ignoreList":[0]}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
if (typeof global === "undefined") { var global = globalThis || window || self; }
|
|
3
|
-
import { a as BaseDecoder } from './map-draw-I6HehGjN.js';
|
|
4
|
-
import './index-ICfDNUMe.js';
|
|
5
|
-
import './constants-hboFofU4.js';
|
|
6
|
-
import './tools-BNYKV5H5.js';
|
|
7
|
-
import './config-CWfV1nKn.js';
|
|
8
|
-
import './utils-BCUZxI9u.js';
|
|
9
|
-
import './store-CcqrFuBK.js';
|
|
10
|
-
|
|
11
|
-
class RawDecoder extends BaseDecoder {
|
|
12
|
-
decodeBlock(buffer) {
|
|
13
|
-
return buffer;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export { RawDecoder as default };
|
|
18
|
-
//# sourceMappingURL=raw-DxHWSwjD.js.map
|
|
19
|
-
|
|
20
|
-
//# sourceMappingURL=raw-DxHWSwjD.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"raw-DxHWSwjD.js","sources":["../../node_modules/geotiff/dist-module/compression/raw.js"],"sourcesContent":["import BaseDecoder from './basedecoder.js';\n\nexport default class RawDecoder extends BaseDecoder {\n decodeBlock(buffer) {\n return buffer;\n }\n}\n"],"names":[],"mappings":";;;;;;;;;;AAEe,MAAM,UAAU,SAAS,WAAW,CAAC;AACpD,EAAE,WAAW,CAAC,MAAM,EAAE;AACtB,IAAI,OAAO,MAAM;AACjB;AACA;;;;","x_google_ignoreList":[0]}
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
if (typeof global === "undefined") { var global = globalThis || window || self; }
|
|
3
|
-
import { a as BaseDecoder } from './map-draw-I6HehGjN.js';
|
|
4
|
-
import './index-ICfDNUMe.js';
|
|
5
|
-
import './constants-hboFofU4.js';
|
|
6
|
-
import './tools-BNYKV5H5.js';
|
|
7
|
-
import './config-CWfV1nKn.js';
|
|
8
|
-
import './utils-BCUZxI9u.js';
|
|
9
|
-
import './store-CcqrFuBK.js';
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* class WebImageDecoder
|
|
13
|
-
*
|
|
14
|
-
* This decoder uses the browsers image decoding facilities to read image
|
|
15
|
-
* formats like WebP when supported.
|
|
16
|
-
*/
|
|
17
|
-
class WebImageDecoder extends BaseDecoder {
|
|
18
|
-
constructor() {
|
|
19
|
-
super();
|
|
20
|
-
if (typeof createImageBitmap === 'undefined') {
|
|
21
|
-
throw new Error('Cannot decode WebImage as `createImageBitmap` is not available');
|
|
22
|
-
} else if (typeof document === 'undefined' && typeof OffscreenCanvas === 'undefined') {
|
|
23
|
-
throw new Error('Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available');
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
async decode(fileDirectory, buffer) {
|
|
28
|
-
const blob = new Blob([buffer]);
|
|
29
|
-
const imageBitmap = await createImageBitmap(blob);
|
|
30
|
-
|
|
31
|
-
let canvas;
|
|
32
|
-
if (typeof document !== 'undefined') {
|
|
33
|
-
canvas = document.createElement('canvas');
|
|
34
|
-
canvas.width = imageBitmap.width;
|
|
35
|
-
canvas.height = imageBitmap.height;
|
|
36
|
-
} else {
|
|
37
|
-
canvas = new OffscreenCanvas(imageBitmap.width, imageBitmap.height);
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
const ctx = canvas.getContext('2d');
|
|
41
|
-
ctx.drawImage(imageBitmap, 0, 0);
|
|
42
|
-
|
|
43
|
-
// TODO: check how many samples per pixel we have, and return RGB/RGBA accordingly
|
|
44
|
-
// it seems like GDAL always encodes via RGBA which does not require a translation
|
|
45
|
-
|
|
46
|
-
return ctx.getImageData(0, 0, imageBitmap.width, imageBitmap.height).data.buffer;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export { WebImageDecoder as default };
|
|
51
|
-
//# sourceMappingURL=webimage-DpQLhKY4.js.map
|
|
52
|
-
|
|
53
|
-
//# sourceMappingURL=webimage-DpQLhKY4.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"webimage-DpQLhKY4.js","sources":["../../node_modules/geotiff/dist-module/compression/webimage.js"],"sourcesContent":["import BaseDecoder from './basedecoder.js';\n\n/**\n * class WebImageDecoder\n *\n * This decoder uses the browsers image decoding facilities to read image\n * formats like WebP when supported.\n */\nexport default class WebImageDecoder extends BaseDecoder {\n constructor() {\n super();\n if (typeof createImageBitmap === 'undefined') {\n throw new Error('Cannot decode WebImage as `createImageBitmap` is not available');\n } else if (typeof document === 'undefined' && typeof OffscreenCanvas === 'undefined') {\n throw new Error('Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available');\n }\n }\n\n async decode(fileDirectory, buffer) {\n const blob = new Blob([buffer]);\n const imageBitmap = await createImageBitmap(blob);\n\n let canvas;\n if (typeof document !== 'undefined') {\n canvas = document.createElement('canvas');\n canvas.width = imageBitmap.width;\n canvas.height = imageBitmap.height;\n } else {\n canvas = new OffscreenCanvas(imageBitmap.width, imageBitmap.height);\n }\n\n const ctx = canvas.getContext('2d');\n ctx.drawImage(imageBitmap, 0, 0);\n\n // TODO: check how many samples per pixel we have, and return RGB/RGBA accordingly\n // it seems like GDAL always encodes via RGBA which does not require a translation\n\n return ctx.getImageData(0, 0, imageBitmap.width, imageBitmap.height).data.buffer;\n }\n}\n"],"names":[],"mappings":";;;;;;;;;;AAEA;AACA;AACA;AACA;AACA;AACA;AACe,MAAM,eAAe,SAAS,WAAW,CAAC;AACzD,EAAE,WAAW,GAAG;AAChB,IAAI,KAAK,EAAE;AACX,IAAI,IAAI,OAAO,iBAAiB,KAAK,WAAW,EAAE;AAClD,MAAM,MAAM,IAAI,KAAK,CAAC,gEAAgE,CAAC;AACvF,KAAK,MAAM,IAAI,OAAO,QAAQ,KAAK,WAAW,IAAI,OAAO,eAAe,KAAK,WAAW,EAAE;AAC1F,MAAM,MAAM,IAAI,KAAK,CAAC,qFAAqF,CAAC;AAC5G;AACA;;AAEA,EAAE,MAAM,MAAM,CAAC,aAAa,EAAE,MAAM,EAAE;AACtC,IAAI,MAAM,IAAI,GAAG,IAAI,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC;AACnC,IAAI,MAAM,WAAW,GAAG,MAAM,iBAAiB,CAAC,IAAI,CAAC;;AAErD,IAAI,IAAI,MAAM;AACd,IAAI,IAAI,OAAO,QAAQ,KAAK,WAAW,EAAE;AACzC,MAAM,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC;AAC/C,MAAM,MAAM,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK;AACtC,MAAM,MAAM,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM;AACxC,KAAK,MAAM;AACX,MAAM,MAAM,GAAG,IAAI,eAAe,CAAC,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC;AACzE;;AAEA,IAAI,MAAM,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC;AACvC,IAAI,GAAG,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC,EAAE,CAAC,CAAC;;AAEpC;AACA;;AAEA,IAAI,OAAO,GAAG,CAAC,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,WAAW,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,MAAM;AACpF;AACA;;;;","x_google_ignoreList":[0]}
|