@nika-js/onlymap 0.5.3 → 0.5.7
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/README.md +20 -7
- package/THIRD-PARTY-LICENSES.md +120 -0
- package/dist/{Arrow.dom-BNjbQ9jb.js → Arrow.dom-BFGShwSA.js} +854 -1427
- package/dist/{LercDecode.es-S6KKhkuA.js → LercDecode.es-Bp2rG98n.js} +1 -1
- package/dist/{basemap-BSCq9hHZ.js → basemap-CfOA0HWY.js} +1 -1
- package/dist/builder-CqJZRFaq.js +580 -0
- package/dist/data-layer.d.ts +4 -0
- package/dist/date-format.d.ts +18 -0
- package/dist/flatgeobuf-Cx0IwxhV.js +6332 -0
- package/dist/full.esm-Cl_Dig1y.js +1467 -0
- package/dist/geoparquet-kW7KUrwB.js +35 -0
- package/dist/geoparquet.d.ts +33 -0
- package/dist/image-overlay.d.ts +83 -0
- package/dist/{index-BCgjJcZn.js → index-BLy1eTWe.js} +1 -1
- package/dist/index-BYbMtNVH.js +2301 -0
- package/dist/{index-BoAq5XsU.js → index-CUKgoX_E.js} +13291 -12728
- package/dist/index-CgPV7QlM.js +4019 -0
- package/dist/{index-D1swbykc.js → index-CnY_rdB8.js} +1 -1
- package/dist/{index-DfNGlG_k.js → index-MRS7UAHr.js} +1 -1
- package/dist/{index-BTcRCrfX.js → index-wZ6n6ggy.js} +2 -2
- package/dist/index.d.ts +5 -1
- package/dist/ir-snapshot.d.ts +3 -1
- package/dist/ir.d.ts +18 -0
- package/dist/layer-registry.d.ts +2 -0
- package/dist/{lerc-n0GaWEmL.js → lerc-DWbkmLYR.js} +2 -2
- package/dist/onlymap.standalone.js +59664 -44945
- package/dist/onlymapjs.js +76 -74
- package/dist/{raster-DO-Ex2Lb.js → raster-5jEwGISN.js} +2 -2
- package/dist/validation.d.ts +1 -1
- package/dist/version.d.ts +1 -1
- package/docs/3d-assets.md +1 -1
- package/docs/image-overlays.md +75 -0
- package/llms.txt +7 -4
- package/onlymapjs.html-data.json +147 -86
- package/package.json +5 -1
- package/skills/onlymapjs/SKILL.md +4 -1
- package/skills/onlymapjs/references/syntax.md +120 -19
- package/skills/onlymapjs/references/testing.md +11 -2
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
|
|
35
35
|
That's a complete app: a no-token MapLibre basemap, data-driven colors and sizes, a legend, and a click-for-details popup. Edit any attribute on the live DOM and the map updates — the manifest *is* the state.
|
|
36
36
|
|
|
37
|
-
It's also designed to be written **by AI agents**: HTML is a reliable generation target, [`llms.txt`](llms.txt) teaches the format, and `OmMap.validate()` returns structured errors with actionable fixes — a real feedback loop instead of a blank canvas.
|
|
37
|
+
It's also designed to be written **by AI agents**: HTML is a reliable generation target, [`llms.txt`](llms.txt) teaches the format, and `OmMap.validate()` returns structured errors **and warnings** with actionable fixes — a real feedback loop instead of a blank canvas (heed both: an "unknown attribute" warning means a prop is being silently dropped).
|
|
38
38
|
|
|
39
39
|
> ⚠️ **Status: v0.2.** Proprietary — free for non-commercial use with attribution; commercial licensing terms are in [LICENSE.md](LICENSE.md). APIs may still move before 1.0.
|
|
40
40
|
|
|
@@ -46,7 +46,7 @@ deck.gl is the best WebGL data-visualization engine there is — and OnlyMapJS i
|
|
|
46
46
|
|---|---|---|
|
|
47
47
|
| Setup | `new Deck({...})`, canvas + basemap sync wiring | one `<om-map>` element (or `<OmMap>` in React) |
|
|
48
48
|
| State | your reducers/stores drive `setProps` | the manifest **is** the state — edit an attribute, the map reconciles; undo/redo built in |
|
|
49
|
-
| Data loading | fetch + parse + reload yourself | `data="…"` — GeoJSON, CSV, Arrow/GeoArrow, Shapefile, KML, CityJSON, WebSocket streams, polled REST, tiled XYZ/vector (`TileLayer`/`MVTLayer`); GeoTIFF/COG rasters via `
|
|
49
|
+
| Data loading | fetch + parse + reload yourself | `data="…"` — GeoJSON, CSV, Arrow/GeoArrow, Shapefile, KML, GPX, FlatGeobuf, GeoParquet, CityJSON, WebSocket streams, polled REST, tiled XYZ/vector (`TileLayer`/`MVTLayer`); GeoTIFF/COG rasters via `COGLayer`; geotagged drone JPEGs via `ImageOverlay` |
|
|
50
50
|
| Accessors | JS functions + `updateTriggers` bookkeeping | `get-*` expressions; update triggers derived automatically |
|
|
51
51
|
| UI | build legends/popups/filters from scratch | built-in widgets, overlays, behaviors — declarative |
|
|
52
52
|
| Testing | mock WebGL or ship untested | `OmMap.validate`, IR snapshots, headless behavioral harness |
|
|
@@ -69,7 +69,7 @@ Or with no build step at all, straight from a CDN:
|
|
|
69
69
|
|
|
70
70
|
The bare package URL serves `dist/onlymap.standalone.js`, a single-file bundle built for exactly this (jsDelivr too). Use a CDN that serves the package's raw files — **not** a rebundling CDN like esm.sh, which re-splits the bundle into duplicate copies of the deck.gl/luma.gl runtime and breaks every layer's shader compilation.
|
|
71
71
|
|
|
72
|
-
Then `npx @nika-js/onlymap init` wires up VS Code IntelliSense and `!`-prefixed manifest snippets for your project. The library ships with
|
|
72
|
+
Then `npx @nika-js/onlymap init` wires up VS Code IntelliSense and `!`-prefixed manifest snippets for your project. The library ships with 664 unit/behavioral tests and 58 Playwright GPU tests.
|
|
73
73
|
|
|
74
74
|
The [examples](https://github.com/NikaGeospatial/onlymapjs/tree/main/examples) are the best tour: widgets, behaviors & overlays, basemaps, columnar/Arrow data, manual drawing, 3D models, scene lighting (with the native lighting widget), DEM terrain, a live WebSocket ship feed, and a polled driver fleet.
|
|
75
75
|
|
|
@@ -80,7 +80,7 @@ A handful of elements, one rule: **attributes are kebab-case versions of deck.gl
|
|
|
80
80
|
| Element | Role |
|
|
81
81
|
|---|---|
|
|
82
82
|
| `<om-map>` | The map. `center`, `zoom`, `pitch`, `bearing`; `basemap` takes a free preset (`positron`, `liberty`, `dark-matter`, `osm`, …), a style URL, or `"none"` (standalone canvas) — and switches **live**; `validate` for a live on-page error panel. Give it a height: a custom element is `display:inline` by default, so the library injects a `display:block` default (fills a sized parent, else a 400px floor) to keep a bare map visible, but set an explicit height (`om-map { height: 100vh }`) for real layout — any height you set wins outright, including one below the floor. A map that still collapses warns in the console; `hidden` and `display:none` maps stay hidden and stay quiet. |
|
|
83
|
-
| `<om-layer>` | Any of **
|
|
83
|
+
| `<om-layer>` | Any of **35 layer types** by name — all of deck.gl's core, geo, aggregation, and mesh layers (Scatterplot, GeoJson, Arc, Path, Heatmap, Hexagon, Trips, Tile, Tile3D, Scenegraph, …) plus `PopupLayer`, the native `COGLayer` for GeoTIFF rasters, and `ImageOverlay` for georeferenced drone JPEGs. `id` required; `label`/`color` feed the legend. |
|
|
84
84
|
| `<om-widget>` | UI panels. Built-ins: `legend` (symbology-aware: color scales render as gradient ramps or class ranges, categorical ternaries as discrete palettes), `layer-switcher`, `basemap-switcher`, `lighting`, `zoom-controls`, `undo-redo`, `scale-bar` (metric/imperial/nautical `units`), `attribution`, `filter`, `draw`, `measure` (geodesic distance + area — live labels, `units` toggle, an `om-measure` readout event), `vega-lite` (live charts). Or write your own inline with HTML + a `<script type="om/widget">`. Adjacent compact button widgets (`zoom-controls`, `undo-redo`, `widgets-toggle`) **auto-cluster** into one control group (opt out per widget with `cluster="false"`), and `<om-map widgets-hidden>` / the `set-widgets-visible` action / `<om-widget type="widgets-toggle">` hide all authored chrome without destroying it — provider attribution and the license badge never hide. **Placement is managed**: `position` takes one of 8 logical, RTL-aware slots (`top-start`, `top-center`, `top-end`, `center-start`, `center-end`, `bottom-start`, `bottom-center`, `bottom-end`; legacy corner names alias) — same-slot widgets stack with flush edges and a shared gap, `order` sets in-slot ordering, and `position="manual"` opts out entirely (a plain block you style yourself, even outside the map). At map widths ≤640px, managed widgets automatically move into accessible top/end/bottom/start drawers; `fold="never"` keeps an essential control out, `widgets-fold="off"` disables folding, and `--om-widget-fold-breakpoint` changes the map-width threshold. Provider attribution is an in-flow member of `bottom-end` and the license badge of `bottom-start`, so neither covers a widget. A slot dims automatically while an open popup covers it (`widgets-dim="off"` to disable), except slots containing required chrome. Themeable from plain page CSS via custom properties: `om-map { --om-widget-bg: #111827; --om-widget-fg: #f9fafb; }` (also `-muted`, `-border`, `-hover-bg`, `-accent`), plus layout tokens (`--om-widget-inset-x/-y`, `--om-widget-gap-x/-y`, `--om-widget-opacity`, `--om-widget-radius`) or the no-CSS sugar `<om-map widget-style="gap:10 opacity:0.9">`. |
|
|
85
85
|
| `<om-overlay>` | Rich HTML anchored to a map location — a static `anchor="[lng, lat]"`, the current selection, or a feature's own geometry via `anchor-layer`/`anchor-feature-id`. `{{field}}` interpolates the picked feature, HTML-escaped by default. |
|
|
86
86
|
| `<om-behavior>` | Declarative interactions: `on="click|hover|drag|load|data-loaded"` → a named action. |
|
|
@@ -96,9 +96,21 @@ get-position="[$lon, $lat]"
|
|
|
96
96
|
get-radius="$population * 0.001"
|
|
97
97
|
get-fill-color="$value > 100 ? [255,0,0] : [0,128,255]"
|
|
98
98
|
get-fill-color="scale($depth, sequential, ['#ffffcc','#800026'], domain=[0,700])"
|
|
99
|
+
get-text="formatDate($time, 'datetime', 'UTC')"
|
|
99
100
|
```
|
|
100
101
|
|
|
101
|
-
Built-ins: `scale()` (types: `sequential`, `diverging`, `threshold`, `sqrt`, `log`, `pow` — explicit `domain=` required), `colorRamp()`, `clamp()`, `lerp()`, and `Math.*`. Multi-line accessors go in a `<script type="om/accessors">` block; genuinely arbitrary JS needs an explicit `js` opt-in on the layer. Untrusted (agent-written) expressions are safe by construction: the compiler is an AST whitelist, not an eval.
|
|
102
|
+
Built-ins: `scale()` (types: `sequential`, `diverging`, `threshold`, `sqrt`, `log`, `pow` — explicit `domain=` required), `colorRamp()`, `clamp()`, `lerp()`, `formatDate()`, and `Math.*`. `formatDate(value, style?, timeZone?)` turns epoch-millisecond or ISO values into readable labels; styles are `date`, `datetime` (default), `time`, and `iso`, with `UTC` as the default zone (`local` or an IANA zone such as `Asia/Singapore` are explicit alternatives). Multi-line accessors go in a `<script type="om/accessors">` block; genuinely arbitrary JS needs an explicit `js` opt-in on the layer. Untrusted (agent-written) expressions are safe by construction: the compiler is an AST whitelist, not an eval.
|
|
103
|
+
|
|
104
|
+
Date-valued filter sliders use the same contract without a custom widget:
|
|
105
|
+
|
|
106
|
+
```html
|
|
107
|
+
<om-layer id="quakes" type="GeoJsonLayer" data="./quakes.geojson"
|
|
108
|
+
filter-field="time" filter-range="[1782889284760,1785480717910]"></om-layer>
|
|
109
|
+
<om-widget type="filter" layer="quakes" field="time"
|
|
110
|
+
format="date" date-style="datetime" time-zone="UTC"></om-widget>
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Numeric timestamps are always epoch **milliseconds**, never guessed as seconds. Invalid date values render as an empty label rather than crashing an accessor or widget.
|
|
102
114
|
|
|
103
115
|
### Data sources
|
|
104
116
|
|
|
@@ -113,6 +125,7 @@ Built-ins: `scale()` (types: `sequential`, `diverging`, `threshold`, `sqrt`, `lo
|
|
|
113
125
|
| **KML** | `data="./tour.kml"` | placemarks → GeoJSON features; other formats plug in via `OmMap.registerFormat` |
|
|
114
126
|
| **CityJSON / CityJSONSeq** | `data="./tile.city.json"` + `extruded get-elevation="$roof_height"` | semantic 3D city models (3DBAG, PLATEAU) → extruded footprints with derived `roof_height`/`eaves_height`/`ridge_height`/`roof_area`; national grids reprojected automatically (NL/CH/DE/JP/AT/SG); `.city.jsonl` streams in as it downloads; lazy chunk — see [docs/3d-assets.md](docs/3d-assets.md#semantic-city-models-cityjson) |
|
|
115
127
|
| **GeoTIFF / COG raster** | `<om-layer type="COGLayer" src="./dem.tif" min="0" max="1900" colormap="viridis">` | Cloud-Optimized GeoTIFFs stream tiles by Range request (lazy chunk); min/max restretch + colormap swaps are GPU uniforms, nodata → transparent, legend ramp derives automatically; plain 8-bit RGB COGs need no attributes at all |
|
|
128
|
+
| **Drone JPEG image overlay** | `<om-layer type="ImageOverlay" src="./survey.jpg" georeference="exif">` | Reads GPS, relative altitude, camera, focal length, and DJI gimbal XMP; computes a WGS84 footprint, bakes yaw/roll into the pixels, and renders through `BitmapLayer`. Persist the processed image plus returned bounds for reloads — see [docs/image-overlays.md](docs/image-overlays.md) |
|
|
116
129
|
| **WebSocket stream** | `data="wss://feed" key="id" flush="250ms" source="myFormat"` | upsert-by-key, burst coalescing, auto-reconnect; decode any format via `OmMap.registerSource` |
|
|
117
130
|
| **Polled REST snapshot** | `data="/api/fleet.json" refresh="5s"` | full-snapshot replace per poll; outages keep the last good data |
|
|
118
131
|
| **Tiled layer (XYZ / vector)** | `<om-layer type="TileLayer" data="…/{z}/{x}/{y}.png">` or `type="MVTLayer"` | a `{z}/{x}/{y}` `data` template is deck's tile URL — passed through, never fetched as rows; raster `TileLayer` gets a built-in `BitmapLayer` renderer, `MVTLayer` self-renders vector tiles (`get-*` accessors apply to tile features) |
|
|
@@ -256,7 +269,7 @@ Plus `OmMap.snapshotIR(html)` to lock down what a manifest *means* in a snapshot
|
|
|
256
269
|
|
|
257
270
|
## Programmatic surface
|
|
258
271
|
|
|
259
|
-
- **`OmMap.*`** — `validate`, `snapshotIR`, `registerLayer`, `registerWidget`, `registerAction`, `registerSource`, `registerFormat`, `registerBasemap`, `configureBasemap`, `configureData`, `configureTelemetry`, `configureLicense`, `getLayerSchema`
|
|
272
|
+
- **`OmMap.*`** — `validate`, `snapshotIR`, `resolveImageOverlay`, `registerLayer`, `registerWidget`, `registerAction`, `registerSource`, `registerFormat`, `registerBasemap`, `configureBasemap`, `configureData`, `configureTelemetry`, `configureLicense`, `getLayerSchema`
|
|
260
273
|
- **`@nika-js/onlymap/deck`** — the bundled deck.gl classes (`CompositeLayer`, `TileLayer`, …) for building custom layer types: shims must extend the same class hierarchy the core renders with, not a second installed deck.gl copy. Recipe: [docs/custom-layers.md](docs/custom-layers.md)
|
|
261
274
|
- **On a `<om-map>` element** — `ready` (promise), `flyTo(coords, zoom?)`, `setLayerVisible(id, bool)`, `getLayers()`, `emit(action, payload)`, `snapshot(opts?)` (canvas-only PNG of basemap + layers at device pixels — DOM widgets/overlays and provider attribution are NOT captured, so exports must render credits themselves; `{as: "blob"}` for files, default dataURL); the `om-view-changed` event fires once the camera settles (debounced; `detail` = `{longitude, latitude, zoom, pitch, bearing, origin}`, where `origin` is `"user"` for gesture-driven bursts vs `"programmatic"` for API/story moves — the echo-suppression signal for state sync) — the camera-persistence hook; the `om-map-point` event (`detail = {coordinate: [lng,lat]|null, kind: "click"|"hover"}`) fires on every click/hover with the map coordinate, including empty-map clicks picks discard — the hook for custom capture tools the built-in draw widget doesn't cover; the `om-tileset-load` event (`detail = {layerId, tileset}`) surfaces a `Tile3DLayer`'s live deck `Tileset3D` for tools that need the real tileset (e.g. region export), not the IR; `document.querySelector("om-map")` is fully typed
|
|
262
275
|
- **`MapController`** — the framework-grade programmatic front-end (typed `LayerDescriptor`s → the same reconcile core, no DOM manifest): `setLayers`, `watch`, `emit`, camera methods, `injectPick`, `ready`, `snapshot`, an `onViewChange(view, origin)` option (the `om-view-changed` twin), plus `onMapPoint` / `onTilesetLoad` options (the `om-map-point` / `om-tileset-load` twins). The React adapter rides it; usable directly from vanilla TS or other frameworks
|
|
@@ -290,6 +303,6 @@ Mapbox GL basemaps, depth-interleaved 3D compositing, globe projection, SSE tran
|
|
|
290
303
|
|
|
291
304
|
| | |
|
|
292
305
|
|---|---|
|
|
293
|
-
| [docs/react.md](docs/react.md) · [docs/basemaps.md](docs/basemaps.md) · [docs/testing.md](docs/testing.md) · [docs/live-data.md](docs/live-data.md) · [docs/3d-assets.md](docs/3d-assets.md) · [docs/stories.md](docs/stories.md) · [docs/telemetry.md](docs/telemetry.md) | Consumer guides |
|
|
306
|
+
| [docs/react.md](docs/react.md) · [docs/basemaps.md](docs/basemaps.md) · [docs/testing.md](docs/testing.md) · [docs/live-data.md](docs/live-data.md) · [docs/image-overlays.md](docs/image-overlays.md) · [docs/3d-assets.md](docs/3d-assets.md) · [docs/stories.md](docs/stories.md) · [docs/telemetry.md](docs/telemetry.md) | Consumer guides |
|
|
294
307
|
| [llms.txt](llms.txt) | The agent-facing quick reference |
|
|
295
308
|
| `skills/onlymapjs` | Installable LLM skill for OnlyMapJS authoring |
|
package/THIRD-PARTY-LICENSES.md
CHANGED
|
@@ -80,6 +80,7 @@ hand.
|
|
|
80
80
|
| @probe.gl/env | 4.1.1 | MIT |
|
|
81
81
|
| @probe.gl/log | 4.1.1 | MIT |
|
|
82
82
|
| @probe.gl/stats | 4.1.1 | MIT |
|
|
83
|
+
| @repeaterjs/repeater | 3.0.6 | MIT |
|
|
83
84
|
| @swc/helpers | 0.5.23 | Apache-2.0 |
|
|
84
85
|
| @tmcw/togeojson | 4.7.0 | BSD-2-Clause |
|
|
85
86
|
| @turf/boolean-clockwise | 5.1.5 | MIT |
|
|
@@ -127,17 +128,22 @@ hand.
|
|
|
127
128
|
| deep-strict-equal | 0.2.0 | MIT |
|
|
128
129
|
| draco3d | 1.5.7 | Apache-2.0 |
|
|
129
130
|
| earcut | 2.2.4 | ISC |
|
|
131
|
+
| exifr | 7.1.3 | MIT |
|
|
130
132
|
| fast-xml-builder | 1.2.0 | MIT |
|
|
131
133
|
| fast-xml-parser | 5.9.3 | MIT |
|
|
132
134
|
| fflate | 0.7.4 | MIT |
|
|
133
135
|
| find-replace | 5.0.2 | MIT |
|
|
134
136
|
| flatbuffers | 25.9.23 | Apache-2.0 |
|
|
135
137
|
| flatbush | 4.6.2 | ISC |
|
|
138
|
+
| flatgeobuf | 4.4.0 | BSD-3-Clause |
|
|
136
139
|
| flatqueue | 3.1.0 | ISC |
|
|
137
140
|
| fzstd | 0.1.1 | MIT |
|
|
138
141
|
| gl-matrix | 3.4.4 | MIT |
|
|
139
142
|
| h3-js | 4.5.0 | Apache-2.0 |
|
|
140
143
|
| has-flag | 4.0.0 | MIT |
|
|
144
|
+
| hyparquet | 1.27.1 | MIT |
|
|
145
|
+
| hyparquet-compressors | 1.1.1 | MIT |
|
|
146
|
+
| hysnappy | 1.0.0 | MIT |
|
|
141
147
|
| iconv-lite | 0.4.24 | MIT |
|
|
142
148
|
| ieee754 | 1.2.1 | BSD-3-Clause |
|
|
143
149
|
| image-size | 0.7.5 | MIT |
|
|
@@ -177,6 +183,7 @@ hand.
|
|
|
177
183
|
| safe-buffer | 5.1.2 | MIT |
|
|
178
184
|
| safer-buffer | 2.1.2 | MIT |
|
|
179
185
|
| setimmediate | 1.0.5 | MIT |
|
|
186
|
+
| slice-source | 0.4.1 | BSD-3-Clause |
|
|
180
187
|
| snappyjs | 0.6.1 | MIT |
|
|
181
188
|
| sprintf-js | 1.0.3 | BSD-3-Clause |
|
|
182
189
|
| string_decoder | 1.1.1 | MIT |
|
|
@@ -3431,6 +3438,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
3431
3438
|
THE SOFTWARE.
|
|
3432
3439
|
```
|
|
3433
3440
|
|
|
3441
|
+
## @repeaterjs/repeater@3.0.6 (MIT)
|
|
3442
|
+
|
|
3443
|
+
```
|
|
3444
|
+
License: MIT (no license file shipped in the package)
|
|
3445
|
+
```
|
|
3446
|
+
|
|
3434
3447
|
## @swc/helpers@0.5.23 (Apache-2.0)
|
|
3435
3448
|
|
|
3436
3449
|
```
|
|
@@ -5002,6 +5015,32 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
|
5002
5015
|
THIS SOFTWARE.
|
|
5003
5016
|
```
|
|
5004
5017
|
|
|
5018
|
+
## exifr@7.1.3 (MIT)
|
|
5019
|
+
|
|
5020
|
+
```
|
|
5021
|
+
MIT License
|
|
5022
|
+
|
|
5023
|
+
Copyright (c) 2020 Mike Kovařík, Mutiny.cz
|
|
5024
|
+
|
|
5025
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5026
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5027
|
+
in the Software without restriction, including without limitation the rights
|
|
5028
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5029
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5030
|
+
furnished to do so, subject to the following conditions:
|
|
5031
|
+
|
|
5032
|
+
The above copyright notice and this permission notice shall be included in all
|
|
5033
|
+
copies or substantial portions of the Software.
|
|
5034
|
+
|
|
5035
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5036
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5037
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5038
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5039
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5040
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5041
|
+
SOFTWARE.
|
|
5042
|
+
```
|
|
5043
|
+
|
|
5005
5044
|
## fast-xml-builder@1.2.0 (MIT)
|
|
5006
5045
|
|
|
5007
5046
|
```
|
|
@@ -5332,6 +5371,20 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
|
5332
5371
|
THIS SOFTWARE.
|
|
5333
5372
|
```
|
|
5334
5373
|
|
|
5374
|
+
## flatgeobuf@4.4.0 (BSD-3-Clause)
|
|
5375
|
+
|
|
5376
|
+
```
|
|
5377
|
+
Copyright (c) 2018, Björn Harrtell
|
|
5378
|
+
|
|
5379
|
+
Redistribution and use in source and binary forms, with or without
|
|
5380
|
+
modification, are permitted provided that the following conditions are met:
|
|
5381
|
+
|
|
5382
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
5383
|
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
5384
|
+
|
|
5385
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5386
|
+
```
|
|
5387
|
+
|
|
5335
5388
|
## flatqueue@3.1.0 (ISC)
|
|
5336
5389
|
|
|
5337
5390
|
```
|
|
@@ -5622,6 +5675,42 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
5622
5675
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5623
5676
|
```
|
|
5624
5677
|
|
|
5678
|
+
## hyparquet@1.27.1 (MIT)
|
|
5679
|
+
|
|
5680
|
+
```
|
|
5681
|
+
The MIT License (MIT)
|
|
5682
|
+
|
|
5683
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
5684
|
+
|
|
5685
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
5686
|
+
|
|
5687
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5688
|
+
```
|
|
5689
|
+
|
|
5690
|
+
## hyparquet-compressors@1.1.1 (MIT)
|
|
5691
|
+
|
|
5692
|
+
```
|
|
5693
|
+
The MIT License (MIT)
|
|
5694
|
+
|
|
5695
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
5696
|
+
|
|
5697
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
5698
|
+
|
|
5699
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5700
|
+
```
|
|
5701
|
+
|
|
5702
|
+
## hysnappy@1.0.0 (MIT)
|
|
5703
|
+
|
|
5704
|
+
```
|
|
5705
|
+
The MIT License (MIT)
|
|
5706
|
+
|
|
5707
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
5708
|
+
|
|
5709
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
5710
|
+
|
|
5711
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5712
|
+
```
|
|
5713
|
+
|
|
5625
5714
|
## iconv-lite@0.4.24 (MIT)
|
|
5626
5715
|
|
|
5627
5716
|
```
|
|
@@ -7476,6 +7565,37 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
7476
7565
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
7477
7566
|
```
|
|
7478
7567
|
|
|
7568
|
+
## slice-source@0.4.1 (BSD-3-Clause)
|
|
7569
|
+
|
|
7570
|
+
```
|
|
7571
|
+
Copyright (c) 2016, Michael Bostock
|
|
7572
|
+
All rights reserved.
|
|
7573
|
+
|
|
7574
|
+
Redistribution and use in source and binary forms, with or without
|
|
7575
|
+
modification, are permitted provided that the following conditions are met:
|
|
7576
|
+
|
|
7577
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
7578
|
+
list of conditions and the following disclaimer.
|
|
7579
|
+
|
|
7580
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
7581
|
+
this list of conditions and the following disclaimer in the documentation
|
|
7582
|
+
and/or other materials provided with the distribution.
|
|
7583
|
+
|
|
7584
|
+
* The name Michael Bostock may not be used to endorse or promote products
|
|
7585
|
+
derived from this software without specific prior written permission.
|
|
7586
|
+
|
|
7587
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
7588
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
7589
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
7590
|
+
DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT,
|
|
7591
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
7592
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
7593
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
7594
|
+
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
7595
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
7596
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7597
|
+
```
|
|
7598
|
+
|
|
7479
7599
|
## snappyjs@0.6.1 (MIT)
|
|
7480
7600
|
|
|
7481
7601
|
```
|