@aguacerowx/mapsgl 0.0.58 → 0.0.59
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/index.js +45 -45
- package/package.json +31 -31
- package/src/GridRenderLayer.js +1387 -1387
- package/src/MapManager.js +197 -197
- package/src/NexradSitesOverlay.js +148 -148
- package/src/NexradWeatherController.js +523 -523
- package/src/SatelliteShaderManager.js +1000 -1000
- package/src/WorkerPool.js +340 -340
- package/src/defaultBasisBaseUrl.js +11 -11
- package/src/nexrad/MapboxRadarLayer.ts +783 -783
- package/src/nexrad/PreprocessedSweepParser.ts +225 -225
- package/src/nexrad/buildRadarRayGeometry.ts +97 -97
- package/src/nexrad/level3StormRelative.ts +116 -116
- package/src/nexrad/loadNexradSites.ts +119 -119
- package/src/nexrad/nexradArchiveDiag.ts +26 -26
- package/src/nexrad/nexradCrossSectionSampleAtLatLon.ts +121 -121
- package/src/nexrad/nexradMapboxFrameOpts.ts +126 -126
- package/src/nexrad/nexradSitesDefault.json +1699 -1699
- package/src/nexrad/radarArchiveCore.bundled.js +4 -2
- package/src/nexrad/radarArchiveCore.ts +1987 -1985
- package/src/nexrad/radarDecode.worker.ts +25 -25
- package/src/nexrad/radarDecodeSlot.ts +195 -195
- package/src/nexrad/radarFrameGpuMatch.ts +111 -111
- package/src/satelliteDefaultColormaps.js +37 -37
- package/src/satelliteKtxWorker.js +232 -232
- package/src/satelliteShader.js +17 -17
- package/src/style-applicator.js +112 -112
- package/src/style-layer-map.js +26 -26
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* jsDelivr serves the `basis/` folder from the published npm package (no `public/basis/` copy).
|
|
3
|
-
* Use when you consume `@aguacerowx/mapsgl` from the registry and do not host transcoder assets yourself.
|
|
4
|
-
*/
|
|
5
|
-
export const JSDELIVR_BASIS_BASE_URL = `https://cdn.jsdelivr.net/npm/@aguacerowx/mapsgl/basis/`;
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Default to the jsDelivr CDN so users don't have to host the files themselves.
|
|
9
|
-
* You can override this by passing `basisBaseUrl` to `WeatherLayerManager`.
|
|
10
|
-
*/
|
|
11
|
-
export const DEFAULT_BASIS_BASE_URL = JSDELIVR_BASIS_BASE_URL;
|
|
1
|
+
/**
|
|
2
|
+
* jsDelivr serves the `basis/` folder from the published npm package (no `public/basis/` copy).
|
|
3
|
+
* Use when you consume `@aguacerowx/mapsgl` from the registry and do not host transcoder assets yourself.
|
|
4
|
+
*/
|
|
5
|
+
export const JSDELIVR_BASIS_BASE_URL = `https://cdn.jsdelivr.net/npm/@aguacerowx/mapsgl/basis/`;
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Default to the jsDelivr CDN so users don't have to host the files themselves.
|
|
9
|
+
* You can override this by passing `basisBaseUrl` to `WeatherLayerManager`.
|
|
10
|
+
*/
|
|
11
|
+
export const DEFAULT_BASIS_BASE_URL = JSDELIVR_BASIS_BASE_URL;
|