Skip to content

Changelog

[0.10.3] - 2024-10-15

Fixes 🐛

[0.10.2] - 2024-10-10

Fixes 🐛

  • Fix using TripsLayer.from_movingpandas with numpy v2.

[0.10.1] - 2024-10-08

Fixes 🐛

  • Fix import when pandas not installed.

[0.10.0] - 2024-10-07

New! ✨

Breaking Changes 🔨

  • The tooltip shown on hover was replaced with a side panel. You now must click on a geometry to view its attributes. By @vgeorge in developmentseed/lonboard!636

Fixes 🐛

  • We've switched from storing list objects to storing tuple objects (e.g. the list of layers in a Map). The immutability of the tuple ensures that a any changes in the sequence of layers will be propagated to the frontend.Fixed in developmentseed/lonboard!620
  • A class of bugs was fixed when using Arrow input, where the chunking structure of the main table did not match the chunking of accessors. Fixed in developmentseed/lonboard!644
  • Fix reading from DuckDB with only geometry column by @kylebarron in developmentseed/lonboard!625
  • Fix attribution by @vgeorge in developmentseed/lonboard!561

New Contributors

Full Changelog: github.com/developmentseed/lonboard/compare/v0.9.3...v0.10.0

[0.9.3] - 2024-05-27

Fixes 🐛

Full Changelog: github.com/developmentseed/lonboard/compare/v0.9.2...v0.9.3

[0.9.2] - 2024-05-14

Fixes 🐛

What's Changed

New Contributors

Full Changelog: github.com/developmentseed/lonboard/compare/v0.9.1...v0.9.2

[0.9.1] - 2024-05-07

Fixes 🐛

Full Changelog: github.com/developmentseed/lonboard/compare/v0.9.0...v0.9.1

[0.9.0] - 2024-05-06

New! ✨

Fixes 🐛

New Contributors

Full Changelog: github.com/developmentseed/lonboard/compare/v0.8.0...v0.9.0

[0.8.0] - 2024-04-05

New! ✨

Fixes 🐛

Full Changelog: github.com/developmentseed/lonboard/compare/v0.7.1...v0.8.0

[0.7.1] - 2024-03-22

Fixes 🐛

Full Changelog: github.com/developmentseed/lonboard/compare/v0.7.0...v0.7.1

[0.7.0] - 2024-03-21

New! ✨

  • There's a new command-line interface (CLI)! Use the lonboard command to quickly visualize one or more data files readable by GDAL! For example: lonboard admins.geojson features.gpkg. By @kylebarron in developmentseed/lonboard!379
  • Type hinting for constructors and from_geopandas method. This should make it easier to pass the correct parameters into layers. This has been tested to work in IDEs like VSCode, but unfortunately appears not to work in JupyterLab. By @kylebarron in developmentseed/lonboard!399

Type hints are now supported in constructors.

Fixes 🐛

Other changes

New Contributors

Full Changelog: github.com/developmentseed/lonboard/compare/v0.6.0...v0.7.0

[0.6.0] - 2024-02-13

New! ✨

Fixes 🐛

New Contributors

Full Changelog: github.com/developmentseed/lonboard/compare/v0.5.0...v0.6.0

[0.5.0] - 2023-12-01

New Features

Full Changelog: github.com/developmentseed/lonboard/compare/v0.4.2...v0.5.0

[0.4.2] - 2023-11-13

Fixed

Full Changelog: github.com/developmentseed/lonboard/compare/v0.4.1...v0.4.2

[0.4.1] - 2023-11-13

Fixed

Full Changelog: github.com/developmentseed/lonboard/compare/v0.4.0...v0.4.1

[0.4.0] - 2023-11-10

New Features

  • New HeatmapLayer
  • New experimental module, with new layers (ArcLayer, TextLayer) and "layer extensions" (BrushingExtension, CollisionFilterExtension).
  • New "migration" notebook using the experimental ArcLayer.

Fixed

This should error when the JS files have not been included when packaging.

Full Changelog: github.com/developmentseed/lonboard/compare/v0.3.0...v0.4.0

[0.3.0] - 2023-11-07

New Features

Fixed

Full Changelog: github.com/developmentseed/lonboard/compare/v0.2.0...v0.3.0

[0.2.0] - 2023-11-01

Breaking Changes

  • Layers no longer render a map object. Instead, pass one or more layer instances into a lonboard.Map and display that.

New Features

  • Support multiple layers on a single map.
  • Tooltip with data information on hover.
  • Allow hex string color input to ColorAccessor.
  • Versioned documentation website
  • New examples
  • Experimental API to change map height

Fixed

New Contributors

Full Changelog: github.com/developmentseed/lonboard/compare/v0.1.2...v0.2.0

[0.1.2] - 2023-10-24

  • Actually update @geoarrow/deck.gl-layers to version 0.2.0, whoops 😅

[0.1.1] - 2023-10-23

  • Updates to @geoarrow/deck.gl-layers version 0.2.0:
  • Fixed MultiPolygon rendering
  • Fixed rendering of polygons with holes.
  • Polygon rendering is roughly 35% faster.

[0.1.0] - 2023-10-17

  • Initial public release.
  • Initial support for ScatterplotLayer, PathLayer, and SolidPolygonLayer.