@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
|
@@ -2542,7 +2542,7 @@ function applyLevel3StormRelativeToFrame(frame, stormSpeedMs, stormDirectionDeg)
|
|
|
2542
2542
|
}
|
|
2543
2543
|
|
|
2544
2544
|
// src/nexrad/nexradArchiveCache.ts
|
|
2545
|
-
var NEXRAD_ARCHIVE_LEVEL2_BASE_URL = "https://d3dc62msmxkrd7.cloudfront.net/level-2";
|
|
2545
|
+
var NEXRAD_ARCHIVE_LEVEL2_BASE_URL = "https://d3dc62msmxkrd7.cloudfront.net/level-2-new";
|
|
2546
2546
|
var NEXRAD_ARCHIVE_LEVEL3_BASE_URL = "https://unidata-nexrad-level3.s3.amazonaws.com";
|
|
2547
2547
|
var MAX_ARCHIVE_CACHE_ENTRIES = 400;
|
|
2548
2548
|
var MAX_ARCHIVE_CACHE_BYTES = 180 * 1024 * 1024;
|
|
@@ -2623,6 +2623,7 @@ function objectKeyFromArchiveUrlString(url) {
|
|
|
2623
2623
|
try {
|
|
2624
2624
|
const u = new URL(url);
|
|
2625
2625
|
const p = u.pathname.replace(/^\/+/, "");
|
|
2626
|
+
if (p.startsWith("level-2-new/")) return p.slice("level-2-new/".length);
|
|
2626
2627
|
if (p.startsWith("level-2/")) return p.slice("level-2/".length);
|
|
2627
2628
|
return p || null;
|
|
2628
2629
|
} catch {
|
|
@@ -4996,7 +4997,7 @@ function createRadarDecodeWorker() {
|
|
|
4996
4997
|
type: "module"
|
|
4997
4998
|
});
|
|
4998
4999
|
}
|
|
4999
|
-
var LEVEL2_BASE_URL = "https://d3dc62msmxkrd7.cloudfront.net/level-2";
|
|
5000
|
+
var LEVEL2_BASE_URL = "https://d3dc62msmxkrd7.cloudfront.net/level-2-new";
|
|
5000
5001
|
var LEVEL3_BASE_URL = "https://unidata-nexrad-level3.s3.amazonaws.com";
|
|
5001
5002
|
var DECODE_WORKER_POOL_SIZE = 2;
|
|
5002
5003
|
var PREFETCH_WORKER_START_INDEX = 1;
|
|
@@ -6410,17 +6411,17 @@ async function fetchAndParseArchive(url, objectKey, radarVariable, groupId, rada
|
|
|
6410
6411
|
return promise;
|
|
6411
6412
|
}
|
|
6412
6413
|
export { fetchAndParseArchive, objectKeyToUrl, setNexradArchiveApiKey, setNexradArchiveBundleId, setNexradArchiveSiteOrigin, setNexradSitesFetchAuth, setNexradSitesJsonUrl };
|
|
6413
|
-
/*! Bundled license information:
|
|
6414
|
-
|
|
6415
|
-
ieee754/index.js:
|
|
6416
|
-
(*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
6417
|
-
|
|
6418
|
-
buffer/index.js:
|
|
6419
|
-
(*!
|
|
6420
|
-
* The buffer module from node.js, for the browser.
|
|
6421
|
-
*
|
|
6422
|
-
* @author Feross Aboukhadijeh <https://feross.org>
|
|
6423
|
-
* @license MIT
|
|
6424
|
-
*)
|
|
6414
|
+
/*! Bundled license information:
|
|
6415
|
+
|
|
6416
|
+
ieee754/index.js:
|
|
6417
|
+
(*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
6418
|
+
|
|
6419
|
+
buffer/index.js:
|
|
6420
|
+
(*!
|
|
6421
|
+
* The buffer module from node.js, for the browser.
|
|
6422
|
+
*
|
|
6423
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
6424
|
+
* @license MIT
|
|
6425
|
+
*)
|
|
6425
6426
|
*/
|
|
6426
6427
|
//# sourceMappingURL=radarArchiveCore.bundled.js.map
|