Skip to content

Commit d067e7b

Browse files
authored
Bump version and cleanup (#141)
* Bump version and cleanup * changed text
1 parent a02b06c commit d067e7b

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.1.1] - 2023-10-17
4+
5+
- Updates to `@geoarrow/deck.gl-layers` version 0.2.0:
6+
- Fixed MultiPolygon rendering
7+
- Fixed rendering of polygons with holes.
8+
- Polygon rendering is roughly 35% faster.
9+
310
## [0.1.0] - 2023-10-17
411

512
- Initial public release.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "lonboard"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Extremely fast geospatial data visualization in Python."
55
authors = ["Kyle Barron <[email protected]>"]
66
license = "MIT"

src/parquet.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ export function parseParquet(dataView: DataView): arrow.Table {
2828
console.time("readParquet");
2929

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

3436
console.timeEnd("readParquet");

src/path-layer.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ function App() {
7272
}
7373
controller={true}
7474
layers={layers}
75-
height={300}
76-
// ContextProvider={MapContext.Provider}
7775
>
7876
<Map mapStyle={MAP_STYLE} />
7977
</DeckGL>

src/solid-polygon-layer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ function App() {
6666
}
6767
controller={true}
6868
layers={layers}
69-
// ContextProvider={MapContext.Provider}
7069
>
7170
<Map mapStyle={MAP_STYLE} />
7271
</DeckGL>

0 commit comments

Comments
 (0)