ry-vue-map 0.6.0 → 0.6.2

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 (56) hide show
  1. package/README.MD +1 -1
  2. package/lib/ryui.common.0.js +625 -794
  3. package/lib/ryui.common.0.js.gz +0 -0
  4. package/lib/ryui.common.2.js +125 -125
  5. package/lib/ryui.common.2.js.gz +0 -0
  6. package/lib/ryui.common.3.js +125 -125
  7. package/lib/ryui.common.4.js +5 -5
  8. package/lib/ryui.common.5.js +21 -21
  9. package/lib/ryui.common.6.js +5 -5
  10. package/lib/ryui.common.7.js +47 -47
  11. package/lib/ryui.common.7.js.gz +0 -0
  12. package/lib/ryui.common.8.js +3 -3
  13. package/lib/ryui.common.8.js.gz +0 -0
  14. package/lib/ryui.common.9.js +3 -3
  15. package/lib/ryui.common.js +78394 -105881
  16. package/lib/ryui.common.js.gz +0 -0
  17. package/lib/ryui.css +1 -1
  18. package/lib/ryui.css.gz +0 -0
  19. package/lib/ryui.umd.0.js +625 -794
  20. package/lib/ryui.umd.0.js.gz +0 -0
  21. package/lib/ryui.umd.2.js +125 -125
  22. package/lib/ryui.umd.2.js.gz +0 -0
  23. package/lib/ryui.umd.3.js +125 -125
  24. package/lib/ryui.umd.4.js +5 -5
  25. package/lib/ryui.umd.5.js +21 -21
  26. package/lib/ryui.umd.6.js +5 -5
  27. package/lib/ryui.umd.7.js +47 -47
  28. package/lib/ryui.umd.7.js.gz +0 -0
  29. package/lib/ryui.umd.8.js +3 -3
  30. package/lib/ryui.umd.8.js.gz +0 -0
  31. package/lib/ryui.umd.9.js +3 -3
  32. package/lib/ryui.umd.js +78394 -105881
  33. package/lib/ryui.umd.js.gz +0 -0
  34. package/lib/ryui.umd.min.0.js +3 -3
  35. package/lib/ryui.umd.min.0.js.gz +0 -0
  36. package/lib/ryui.umd.min.2.js +1 -1
  37. package/lib/ryui.umd.min.2.js.gz +0 -0
  38. package/lib/ryui.umd.min.3.js +1 -1
  39. package/lib/ryui.umd.min.4.js +1 -1
  40. package/lib/ryui.umd.min.5.js +1 -1
  41. package/lib/ryui.umd.min.6.js +1 -1
  42. package/lib/ryui.umd.min.7.js +2 -2
  43. package/lib/ryui.umd.min.7.js.gz +0 -0
  44. package/lib/ryui.umd.min.8.js +1 -1
  45. package/lib/ryui.umd.min.8.js.gz +0 -0
  46. package/lib/ryui.umd.min.9.js +1 -1
  47. package/lib/ryui.umd.min.js +6 -8
  48. package/lib/ryui.umd.min.js.gz +0 -0
  49. package/package.json +2 -2
  50. package/src/components/maps/models/ryLines/ryLines.js +6 -0
  51. package/src/components/maps/models/ryMapTool/mapTool.js +7 -2
  52. package/src/components/maps/ryLines/src/index.vue +43 -1
  53. package/src/components/maps/ryMap/src/index.vue +4 -6
  54. package/src/components/maps/ryMapTool/src/index.vue +85 -67
  55. package/src/utils/lMapServices.js +13 -4
  56. package/src/views/map/index.vue +1006 -216
Binary file
@@ -1,135 +1,12 @@
1
1
  ((typeof self !== 'undefined' ? self : this)["webpackJsonpryui"] = (typeof self !== 'undefined' ? self : this)["webpackJsonpryui"] || []).push([[2],{
2
2
 
3
- /***/ "2915":
4
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
5
-
6
- "use strict";
7
-
8
- // EXPORTS
9
- __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ basedecoder_BaseDecoder; });
10
-
11
- // CONCATENATED MODULE: ./node_modules/.store/geotiff@2.0.4/node_modules/geotiff/dist-module/predictor.js
12
- function decodeRowAcc(row, stride) {
13
- let length = row.length - stride;
14
- let offset = 0;
15
- do {
16
- for (let i = stride; i > 0; i--) {
17
- row[offset + stride] += row[offset];
18
- offset++;
19
- }
20
-
21
- length -= stride;
22
- } while (length > 0);
23
- }
24
-
25
- function decodeRowFloatingPoint(row, stride, bytesPerSample) {
26
- let index = 0;
27
- let count = row.length;
28
- const wc = count / bytesPerSample;
29
-
30
- while (count > stride) {
31
- for (let i = stride; i > 0; --i) {
32
- row[index + stride] += row[index];
33
- ++index;
34
- }
35
- count -= stride;
36
- }
37
-
38
- const copy = row.slice();
39
- for (let i = 0; i < wc; ++i) {
40
- for (let b = 0; b < bytesPerSample; ++b) {
41
- row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];
42
- }
43
- }
44
- }
45
-
46
- function applyPredictor(block, predictor, width, height, bitsPerSample,
47
- planarConfiguration) {
48
- if (!predictor || predictor === 1) {
49
- return block;
50
- }
51
-
52
- for (let i = 0; i < bitsPerSample.length; ++i) {
53
- if (bitsPerSample[i] % 8 !== 0) {
54
- throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');
55
- }
56
- if (bitsPerSample[i] !== bitsPerSample[0]) {
57
- throw new Error('When decoding with predictor, all samples must have the same size.');
58
- }
59
- }
60
-
61
- const bytesPerSample = bitsPerSample[0] / 8;
62
- const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;
63
-
64
- for (let i = 0; i < height; ++i) {
65
- // Last strip will be truncated if height % stripHeight != 0
66
- if (i * stride * width * bytesPerSample >= block.byteLength) {
67
- break;
68
- }
69
- let row;
70
- if (predictor === 2) { // horizontal prediction
71
- switch (bitsPerSample[0]) {
72
- case 8:
73
- row = new Uint8Array(
74
- block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,
75
- );
76
- break;
77
- case 16:
78
- row = new Uint16Array(
79
- block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,
80
- );
81
- break;
82
- case 32:
83
- row = new Uint32Array(
84
- block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,
85
- );
86
- break;
87
- default:
88
- throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);
89
- }
90
- decodeRowAcc(row, stride, bytesPerSample);
91
- } else if (predictor === 3) { // horizontal floating point
92
- row = new Uint8Array(
93
- block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,
94
- );
95
- decodeRowFloatingPoint(row, stride, bytesPerSample);
96
- }
97
- }
98
- return block;
99
- }
100
-
101
- // CONCATENATED MODULE: ./node_modules/.store/geotiff@2.0.4/node_modules/geotiff/dist-module/compression/basedecoder.js
102
-
103
-
104
- class basedecoder_BaseDecoder {
105
- async decode(fileDirectory, buffer) {
106
- const decoded = await this.decodeBlock(buffer);
107
- const predictor = fileDirectory.Predictor || 1;
108
- if (predictor !== 1) {
109
- const isTiled = !fileDirectory.StripOffsets;
110
- const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;
111
- const tileHeight = isTiled ? fileDirectory.TileLength : (
112
- fileDirectory.RowsPerStrip || fileDirectory.ImageLength
113
- );
114
- return applyPredictor(
115
- decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,
116
- fileDirectory.PlanarConfiguration,
117
- );
118
- }
119
- return decoded;
120
- }
121
- }
122
-
123
-
124
- /***/ }),
125
-
126
- /***/ "5630":
3
+ /***/ "2624":
127
4
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
128
5
 
129
6
  "use strict";
130
7
  __webpack_require__.r(__webpack_exports__);
131
8
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return JpegDecoder; });
132
- /* harmony import */ var _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("2915");
9
+ /* harmony import */ var _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b3f7");
133
10
 
134
11
 
135
12
  /* -*- tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- /
@@ -1029,6 +906,129 @@ class JpegDecoder extends _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__[/* defaul
1029
906
  }
1030
907
 
1031
908
 
909
+ /***/ }),
910
+
911
+ /***/ "b3f7":
912
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
913
+
914
+ "use strict";
915
+
916
+ // EXPORTS
917
+ __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ basedecoder_BaseDecoder; });
918
+
919
+ // CONCATENATED MODULE: ./node_modules/geotiff/dist-module/predictor.js
920
+ function decodeRowAcc(row, stride) {
921
+ let length = row.length - stride;
922
+ let offset = 0;
923
+ do {
924
+ for (let i = stride; i > 0; i--) {
925
+ row[offset + stride] += row[offset];
926
+ offset++;
927
+ }
928
+
929
+ length -= stride;
930
+ } while (length > 0);
931
+ }
932
+
933
+ function decodeRowFloatingPoint(row, stride, bytesPerSample) {
934
+ let index = 0;
935
+ let count = row.length;
936
+ const wc = count / bytesPerSample;
937
+
938
+ while (count > stride) {
939
+ for (let i = stride; i > 0; --i) {
940
+ row[index + stride] += row[index];
941
+ ++index;
942
+ }
943
+ count -= stride;
944
+ }
945
+
946
+ const copy = row.slice();
947
+ for (let i = 0; i < wc; ++i) {
948
+ for (let b = 0; b < bytesPerSample; ++b) {
949
+ row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];
950
+ }
951
+ }
952
+ }
953
+
954
+ function applyPredictor(block, predictor, width, height, bitsPerSample,
955
+ planarConfiguration) {
956
+ if (!predictor || predictor === 1) {
957
+ return block;
958
+ }
959
+
960
+ for (let i = 0; i < bitsPerSample.length; ++i) {
961
+ if (bitsPerSample[i] % 8 !== 0) {
962
+ throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');
963
+ }
964
+ if (bitsPerSample[i] !== bitsPerSample[0]) {
965
+ throw new Error('When decoding with predictor, all samples must have the same size.');
966
+ }
967
+ }
968
+
969
+ const bytesPerSample = bitsPerSample[0] / 8;
970
+ const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;
971
+
972
+ for (let i = 0; i < height; ++i) {
973
+ // Last strip will be truncated if height % stripHeight != 0
974
+ if (i * stride * width * bytesPerSample >= block.byteLength) {
975
+ break;
976
+ }
977
+ let row;
978
+ if (predictor === 2) { // horizontal prediction
979
+ switch (bitsPerSample[0]) {
980
+ case 8:
981
+ row = new Uint8Array(
982
+ block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,
983
+ );
984
+ break;
985
+ case 16:
986
+ row = new Uint16Array(
987
+ block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,
988
+ );
989
+ break;
990
+ case 32:
991
+ row = new Uint32Array(
992
+ block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,
993
+ );
994
+ break;
995
+ default:
996
+ throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);
997
+ }
998
+ decodeRowAcc(row, stride, bytesPerSample);
999
+ } else if (predictor === 3) { // horizontal floating point
1000
+ row = new Uint8Array(
1001
+ block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,
1002
+ );
1003
+ decodeRowFloatingPoint(row, stride, bytesPerSample);
1004
+ }
1005
+ }
1006
+ return block;
1007
+ }
1008
+
1009
+ // CONCATENATED MODULE: ./node_modules/geotiff/dist-module/compression/basedecoder.js
1010
+
1011
+
1012
+ class basedecoder_BaseDecoder {
1013
+ async decode(fileDirectory, buffer) {
1014
+ const decoded = await this.decodeBlock(buffer);
1015
+ const predictor = fileDirectory.Predictor || 1;
1016
+ if (predictor !== 1) {
1017
+ const isTiled = !fileDirectory.StripOffsets;
1018
+ const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;
1019
+ const tileHeight = isTiled ? fileDirectory.TileLength : (
1020
+ fileDirectory.RowsPerStrip || fileDirectory.ImageLength
1021
+ );
1022
+ return applyPredictor(
1023
+ decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,
1024
+ fileDirectory.PlanarConfiguration,
1025
+ );
1026
+ }
1027
+ return decoded;
1028
+ }
1029
+ }
1030
+
1031
+
1032
1032
  /***/ })
1033
1033
 
1034
1034
  }]);
Binary file
@@ -1,135 +1,12 @@
1
1
  ((typeof self !== 'undefined' ? self : this)["webpackJsonpryui"] = (typeof self !== 'undefined' ? self : this)["webpackJsonpryui"] || []).push([[3],{
2
2
 
3
- /***/ "2915":
4
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
5
-
6
- "use strict";
7
-
8
- // EXPORTS
9
- __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ basedecoder_BaseDecoder; });
10
-
11
- // CONCATENATED MODULE: ./node_modules/.store/geotiff@2.0.4/node_modules/geotiff/dist-module/predictor.js
12
- function decodeRowAcc(row, stride) {
13
- let length = row.length - stride;
14
- let offset = 0;
15
- do {
16
- for (let i = stride; i > 0; i--) {
17
- row[offset + stride] += row[offset];
18
- offset++;
19
- }
20
-
21
- length -= stride;
22
- } while (length > 0);
23
- }
24
-
25
- function decodeRowFloatingPoint(row, stride, bytesPerSample) {
26
- let index = 0;
27
- let count = row.length;
28
- const wc = count / bytesPerSample;
29
-
30
- while (count > stride) {
31
- for (let i = stride; i > 0; --i) {
32
- row[index + stride] += row[index];
33
- ++index;
34
- }
35
- count -= stride;
36
- }
37
-
38
- const copy = row.slice();
39
- for (let i = 0; i < wc; ++i) {
40
- for (let b = 0; b < bytesPerSample; ++b) {
41
- row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];
42
- }
43
- }
44
- }
45
-
46
- function applyPredictor(block, predictor, width, height, bitsPerSample,
47
- planarConfiguration) {
48
- if (!predictor || predictor === 1) {
49
- return block;
50
- }
51
-
52
- for (let i = 0; i < bitsPerSample.length; ++i) {
53
- if (bitsPerSample[i] % 8 !== 0) {
54
- throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');
55
- }
56
- if (bitsPerSample[i] !== bitsPerSample[0]) {
57
- throw new Error('When decoding with predictor, all samples must have the same size.');
58
- }
59
- }
60
-
61
- const bytesPerSample = bitsPerSample[0] / 8;
62
- const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;
63
-
64
- for (let i = 0; i < height; ++i) {
65
- // Last strip will be truncated if height % stripHeight != 0
66
- if (i * stride * width * bytesPerSample >= block.byteLength) {
67
- break;
68
- }
69
- let row;
70
- if (predictor === 2) { // horizontal prediction
71
- switch (bitsPerSample[0]) {
72
- case 8:
73
- row = new Uint8Array(
74
- block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,
75
- );
76
- break;
77
- case 16:
78
- row = new Uint16Array(
79
- block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,
80
- );
81
- break;
82
- case 32:
83
- row = new Uint32Array(
84
- block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,
85
- );
86
- break;
87
- default:
88
- throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);
89
- }
90
- decodeRowAcc(row, stride, bytesPerSample);
91
- } else if (predictor === 3) { // horizontal floating point
92
- row = new Uint8Array(
93
- block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,
94
- );
95
- decodeRowFloatingPoint(row, stride, bytesPerSample);
96
- }
97
- }
98
- return block;
99
- }
100
-
101
- // CONCATENATED MODULE: ./node_modules/.store/geotiff@2.0.4/node_modules/geotiff/dist-module/compression/basedecoder.js
102
-
103
-
104
- class basedecoder_BaseDecoder {
105
- async decode(fileDirectory, buffer) {
106
- const decoded = await this.decodeBlock(buffer);
107
- const predictor = fileDirectory.Predictor || 1;
108
- if (predictor !== 1) {
109
- const isTiled = !fileDirectory.StripOffsets;
110
- const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;
111
- const tileHeight = isTiled ? fileDirectory.TileLength : (
112
- fileDirectory.RowsPerStrip || fileDirectory.ImageLength
113
- );
114
- return applyPredictor(
115
- decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,
116
- fileDirectory.PlanarConfiguration,
117
- );
118
- }
119
- return decoded;
120
- }
121
- }
122
-
123
-
124
- /***/ }),
125
-
126
- /***/ "fe7a":
3
+ /***/ "852f":
127
4
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
128
5
 
129
6
  "use strict";
130
7
  __webpack_require__.r(__webpack_exports__);
131
8
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return LZWDecoder; });
132
- /* harmony import */ var _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("2915");
9
+ /* harmony import */ var _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b3f7");
133
10
 
134
11
 
135
12
  const MIN_BITS = 9;
@@ -263,6 +140,129 @@ class LZWDecoder extends _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__[/* default
263
140
  }
264
141
 
265
142
 
143
+ /***/ }),
144
+
145
+ /***/ "b3f7":
146
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
147
+
148
+ "use strict";
149
+
150
+ // EXPORTS
151
+ __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ basedecoder_BaseDecoder; });
152
+
153
+ // CONCATENATED MODULE: ./node_modules/geotiff/dist-module/predictor.js
154
+ function decodeRowAcc(row, stride) {
155
+ let length = row.length - stride;
156
+ let offset = 0;
157
+ do {
158
+ for (let i = stride; i > 0; i--) {
159
+ row[offset + stride] += row[offset];
160
+ offset++;
161
+ }
162
+
163
+ length -= stride;
164
+ } while (length > 0);
165
+ }
166
+
167
+ function decodeRowFloatingPoint(row, stride, bytesPerSample) {
168
+ let index = 0;
169
+ let count = row.length;
170
+ const wc = count / bytesPerSample;
171
+
172
+ while (count > stride) {
173
+ for (let i = stride; i > 0; --i) {
174
+ row[index + stride] += row[index];
175
+ ++index;
176
+ }
177
+ count -= stride;
178
+ }
179
+
180
+ const copy = row.slice();
181
+ for (let i = 0; i < wc; ++i) {
182
+ for (let b = 0; b < bytesPerSample; ++b) {
183
+ row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];
184
+ }
185
+ }
186
+ }
187
+
188
+ function applyPredictor(block, predictor, width, height, bitsPerSample,
189
+ planarConfiguration) {
190
+ if (!predictor || predictor === 1) {
191
+ return block;
192
+ }
193
+
194
+ for (let i = 0; i < bitsPerSample.length; ++i) {
195
+ if (bitsPerSample[i] % 8 !== 0) {
196
+ throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');
197
+ }
198
+ if (bitsPerSample[i] !== bitsPerSample[0]) {
199
+ throw new Error('When decoding with predictor, all samples must have the same size.');
200
+ }
201
+ }
202
+
203
+ const bytesPerSample = bitsPerSample[0] / 8;
204
+ const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;
205
+
206
+ for (let i = 0; i < height; ++i) {
207
+ // Last strip will be truncated if height % stripHeight != 0
208
+ if (i * stride * width * bytesPerSample >= block.byteLength) {
209
+ break;
210
+ }
211
+ let row;
212
+ if (predictor === 2) { // horizontal prediction
213
+ switch (bitsPerSample[0]) {
214
+ case 8:
215
+ row = new Uint8Array(
216
+ block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,
217
+ );
218
+ break;
219
+ case 16:
220
+ row = new Uint16Array(
221
+ block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,
222
+ );
223
+ break;
224
+ case 32:
225
+ row = new Uint32Array(
226
+ block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,
227
+ );
228
+ break;
229
+ default:
230
+ throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);
231
+ }
232
+ decodeRowAcc(row, stride, bytesPerSample);
233
+ } else if (predictor === 3) { // horizontal floating point
234
+ row = new Uint8Array(
235
+ block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,
236
+ );
237
+ decodeRowFloatingPoint(row, stride, bytesPerSample);
238
+ }
239
+ }
240
+ return block;
241
+ }
242
+
243
+ // CONCATENATED MODULE: ./node_modules/geotiff/dist-module/compression/basedecoder.js
244
+
245
+
246
+ class basedecoder_BaseDecoder {
247
+ async decode(fileDirectory, buffer) {
248
+ const decoded = await this.decodeBlock(buffer);
249
+ const predictor = fileDirectory.Predictor || 1;
250
+ if (predictor !== 1) {
251
+ const isTiled = !fileDirectory.StripOffsets;
252
+ const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;
253
+ const tileHeight = isTiled ? fileDirectory.TileLength : (
254
+ fileDirectory.RowsPerStrip || fileDirectory.ImageLength
255
+ );
256
+ return applyPredictor(
257
+ decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,
258
+ fileDirectory.PlanarConfiguration,
259
+ );
260
+ }
261
+ return decoded;
262
+ }
263
+ }
264
+
265
+
266
266
  /***/ })
267
267
 
268
268
  }]);
@@ -1,12 +1,12 @@
1
1
  ((typeof self !== 'undefined' ? self : this)["webpackJsonpryui"] = (typeof self !== 'undefined' ? self : this)["webpackJsonpryui"] || []).push([[4],{
2
2
 
3
- /***/ "1028":
3
+ /***/ "45bf":
4
4
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
5
5
 
6
6
  "use strict";
7
7
  __webpack_require__.r(__webpack_exports__);
8
8
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return PackbitsDecoder; });
9
- /* harmony import */ var _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("2915");
9
+ /* harmony import */ var _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b3f7");
10
10
 
11
11
 
12
12
  class PackbitsDecoder extends _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"] {
@@ -37,7 +37,7 @@ class PackbitsDecoder extends _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__[/* de
37
37
 
38
38
  /***/ }),
39
39
 
40
- /***/ "2915":
40
+ /***/ "b3f7":
41
41
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
42
42
 
43
43
  "use strict";
@@ -45,7 +45,7 @@ class PackbitsDecoder extends _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__[/* de
45
45
  // EXPORTS
46
46
  __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ basedecoder_BaseDecoder; });
47
47
 
48
- // CONCATENATED MODULE: ./node_modules/.store/geotiff@2.0.4/node_modules/geotiff/dist-module/predictor.js
48
+ // CONCATENATED MODULE: ./node_modules/geotiff/dist-module/predictor.js
49
49
  function decodeRowAcc(row, stride) {
50
50
  let length = row.length - stride;
51
51
  let offset = 0;
@@ -135,7 +135,7 @@ function applyPredictor(block, predictor, width, height, bitsPerSample,
135
135
  return block;
136
136
  }
137
137
 
138
- // CONCATENATED MODULE: ./node_modules/.store/geotiff@2.0.4/node_modules/geotiff/dist-module/compression/basedecoder.js
138
+ // CONCATENATED MODULE: ./node_modules/geotiff/dist-module/compression/basedecoder.js
139
139
 
140
140
 
141
141
  class basedecoder_BaseDecoder {
@@ -1,6 +1,24 @@
1
1
  ((typeof self !== 'undefined' ? self : this)["webpackJsonpryui"] = (typeof self !== 'undefined' ? self : this)["webpackJsonpryui"] || []).push([[5],{
2
2
 
3
- /***/ "2915":
3
+ /***/ "9a7b":
4
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
5
+
6
+ "use strict";
7
+ __webpack_require__.r(__webpack_exports__);
8
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return RawDecoder; });
9
+ /* harmony import */ var _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b3f7");
10
+
11
+
12
+ class RawDecoder extends _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"] {
13
+ decodeBlock(buffer) {
14
+ return buffer;
15
+ }
16
+ }
17
+
18
+
19
+ /***/ }),
20
+
21
+ /***/ "b3f7":
4
22
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
5
23
 
6
24
  "use strict";
@@ -8,7 +26,7 @@
8
26
  // EXPORTS
9
27
  __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ basedecoder_BaseDecoder; });
10
28
 
11
- // CONCATENATED MODULE: ./node_modules/.store/geotiff@2.0.4/node_modules/geotiff/dist-module/predictor.js
29
+ // CONCATENATED MODULE: ./node_modules/geotiff/dist-module/predictor.js
12
30
  function decodeRowAcc(row, stride) {
13
31
  let length = row.length - stride;
14
32
  let offset = 0;
@@ -98,7 +116,7 @@ function applyPredictor(block, predictor, width, height, bitsPerSample,
98
116
  return block;
99
117
  }
100
118
 
101
- // CONCATENATED MODULE: ./node_modules/.store/geotiff@2.0.4/node_modules/geotiff/dist-module/compression/basedecoder.js
119
+ // CONCATENATED MODULE: ./node_modules/geotiff/dist-module/compression/basedecoder.js
102
120
 
103
121
 
104
122
  class basedecoder_BaseDecoder {
@@ -121,24 +139,6 @@ class basedecoder_BaseDecoder {
121
139
  }
122
140
 
123
141
 
124
- /***/ }),
125
-
126
- /***/ "fb26":
127
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
128
-
129
- "use strict";
130
- __webpack_require__.r(__webpack_exports__);
131
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return RawDecoder; });
132
- /* harmony import */ var _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("2915");
133
-
134
-
135
- class RawDecoder extends _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"] {
136
- decodeBlock(buffer) {
137
- return buffer;
138
- }
139
- }
140
-
141
-
142
142
  /***/ })
143
143
 
144
144
  }]);
@@ -1,6 +1,6 @@
1
1
  ((typeof self !== 'undefined' ? self : this)["webpackJsonpryui"] = (typeof self !== 'undefined' ? self : this)["webpackJsonpryui"] || []).push([[6],{
2
2
 
3
- /***/ "2915":
3
+ /***/ "b3f7":
4
4
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
5
5
 
6
6
  "use strict";
@@ -8,7 +8,7 @@
8
8
  // EXPORTS
9
9
  __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ basedecoder_BaseDecoder; });
10
10
 
11
- // CONCATENATED MODULE: ./node_modules/.store/geotiff@2.0.4/node_modules/geotiff/dist-module/predictor.js
11
+ // CONCATENATED MODULE: ./node_modules/geotiff/dist-module/predictor.js
12
12
  function decodeRowAcc(row, stride) {
13
13
  let length = row.length - stride;
14
14
  let offset = 0;
@@ -98,7 +98,7 @@ function applyPredictor(block, predictor, width, height, bitsPerSample,
98
98
  return block;
99
99
  }
100
100
 
101
- // CONCATENATED MODULE: ./node_modules/.store/geotiff@2.0.4/node_modules/geotiff/dist-module/compression/basedecoder.js
101
+ // CONCATENATED MODULE: ./node_modules/geotiff/dist-module/compression/basedecoder.js
102
102
 
103
103
 
104
104
  class basedecoder_BaseDecoder {
@@ -123,13 +123,13 @@ class basedecoder_BaseDecoder {
123
123
 
124
124
  /***/ }),
125
125
 
126
- /***/ "8107":
126
+ /***/ "ee5b":
127
127
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
128
128
 
129
129
  "use strict";
130
130
  __webpack_require__.r(__webpack_exports__);
131
131
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return WebImageDecoder; });
132
- /* harmony import */ var _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("2915");
132
+ /* harmony import */ var _basedecoder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b3f7");
133
133
 
134
134
 
135
135
  /**