Skip to content

Commit

Permalink
Bump version and cleanup (#141)
Browse files Browse the repository at this point in the history
* Bump version and cleanup

* changed text
  • Loading branch information
kylebarron authored Oct 23, 2023
1 parent 6e180fb commit f682a9f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.1.1] - 2023-10-17

- 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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "lonboard"
version = "0.1.0"
version = "0.1.1"
description = "Extremely fast geospatial data visualization in Python."
authors = ["Kyle Barron <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 3 additions & 1 deletion src/parquet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ export function parseParquet(dataView: DataView): arrow.Table {
console.time("readParquet");

// TODO: use arrow-js-ffi for more memory-efficient wasm --> js transfer
const arrowIPCBuffer = readParquet(new Uint8Array(dataView.buffer)).intoIPC();
const arrowIPCBuffer = readParquet(
new Uint8Array(dataView.buffer)
).intoIPCStream();
const arrowTable = arrow.tableFromIPC(arrowIPCBuffer);

console.timeEnd("readParquet");
Expand Down
2 changes: 0 additions & 2 deletions src/path-layer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ function App() {
}
controller={true}
layers={layers}
height={300}
// ContextProvider={MapContext.Provider}
>
<Map mapStyle={MAP_STYLE} />
</DeckGL>
Expand Down
1 change: 0 additions & 1 deletion src/solid-polygon-layer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ function App() {
}
controller={true}
layers={layers}
// ContextProvider={MapContext.Provider}
>
<Map mapStyle={MAP_STYLE} />
</DeckGL>
Expand Down

0 comments on commit f682a9f

Please sign in to comment.