@aguacerowx/react-native 0.0.49 → 0.0.50
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/lib/commonjs/nexrad/radarArchiveCore.bundled.js +15 -14
- package/lib/commonjs/nexrad/radarArchiveCore.bundled.js.map +1 -1
- package/lib/module/nexrad/radarArchiveCore.bundled.js +15 -14
- package/lib/module/nexrad/radarArchiveCore.bundled.js.map +1 -1
- package/lib/typescript/nexrad/radarArchiveCore.bundled.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/nexrad/radarArchiveCore.bundled.js +7085 -7084
|
@@ -2555,7 +2555,7 @@ function applyLevel3StormRelativeToFrame(frame, stormSpeedMs, stormDirectionDeg)
|
|
|
2555
2555
|
}
|
|
2556
2556
|
|
|
2557
2557
|
// src/nexrad/nexradArchiveCache.ts
|
|
2558
|
-
var NEXRAD_ARCHIVE_LEVEL2_BASE_URL = "https://d3dc62msmxkrd7.cloudfront.net/level-2";
|
|
2558
|
+
var NEXRAD_ARCHIVE_LEVEL2_BASE_URL = "https://d3dc62msmxkrd7.cloudfront.net/level-2-new";
|
|
2559
2559
|
var NEXRAD_ARCHIVE_LEVEL3_BASE_URL = "https://unidata-nexrad-level3.s3.amazonaws.com";
|
|
2560
2560
|
var MAX_ARCHIVE_CACHE_ENTRIES = 400;
|
|
2561
2561
|
var MAX_ARCHIVE_CACHE_BYTES = 180 * 1024 * 1024;
|
|
@@ -2636,6 +2636,7 @@ function objectKeyFromArchiveUrlString(url) {
|
|
|
2636
2636
|
try {
|
|
2637
2637
|
const u = new URL(url);
|
|
2638
2638
|
const p = u.pathname.replace(/^\/+/, "");
|
|
2639
|
+
if (p.startsWith("level-2-new/")) return p.slice("level-2-new/".length);
|
|
2639
2640
|
if (p.startsWith("level-2/")) return p.slice("level-2/".length);
|
|
2640
2641
|
return p || null;
|
|
2641
2642
|
} catch {
|
|
@@ -5009,7 +5010,7 @@ function createRadarDecodeWorker() {
|
|
|
5009
5010
|
type: "module"
|
|
5010
5011
|
});
|
|
5011
5012
|
}
|
|
5012
|
-
var LEVEL2_BASE_URL = "https://d3dc62msmxkrd7.cloudfront.net/level-2";
|
|
5013
|
+
var LEVEL2_BASE_URL = "https://d3dc62msmxkrd7.cloudfront.net/level-2-new";
|
|
5013
5014
|
var LEVEL3_BASE_URL = "https://unidata-nexrad-level3.s3.amazonaws.com";
|
|
5014
5015
|
var DECODE_WORKER_POOL_SIZE = 2;
|
|
5015
5016
|
var PREFETCH_WORKER_START_INDEX = 1;
|
|
@@ -6423,17 +6424,17 @@ async function fetchAndParseArchive(url, objectKey, radarVariable, groupId, rada
|
|
|
6423
6424
|
return promise;
|
|
6424
6425
|
}
|
|
6425
6426
|
|
|
6426
|
-
/*! Bundled license information:
|
|
6427
|
-
|
|
6428
|
-
ieee754/index.js:
|
|
6429
|
-
(*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
6430
|
-
|
|
6431
|
-
buffer/index.js:
|
|
6432
|
-
(*!
|
|
6433
|
-
* The buffer module from node.js, for the browser.
|
|
6434
|
-
*
|
|
6435
|
-
* @author Feross Aboukhadijeh <https://feross.org>
|
|
6436
|
-
* @license MIT
|
|
6437
|
-
*)
|
|
6427
|
+
/*! Bundled license information:
|
|
6428
|
+
|
|
6429
|
+
ieee754/index.js:
|
|
6430
|
+
(*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
6431
|
+
|
|
6432
|
+
buffer/index.js:
|
|
6433
|
+
(*!
|
|
6434
|
+
* The buffer module from node.js, for the browser.
|
|
6435
|
+
*
|
|
6436
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
6437
|
+
* @license MIT
|
|
6438
|
+
*)
|
|
6438
6439
|
*/
|
|
6439
6440
|
//# sourceMappingURL=radarArchiveCore.bundled.js.map
|