File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed
Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " lonboard"
3- version = " 0.1.0 "
3+ version = " 0.1.1 "
44description = " Extremely fast geospatial data visualization in Python."
55authors = [
" Kyle Barron <[email protected] >" ]
66license = " MIT"
Original file line number Diff line number Diff 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" ) ;
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments