You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,9 +20,23 @@ Python library for extremely fast geospatial vector data visualization in Jupyte
20
20
## Install
21
21
22
22
```
23
-
pip install --pre lonboard
23
+
pip install lonboard
24
24
```
25
25
26
+
## Get Started
27
+
28
+
For the simplest rendering, pass geospatial data into the top-level [`viz` function](https://developmentseed.org/lonboard/api/top-level/#lonboard.viz.viz).
29
+
30
+
```py
31
+
import geopandas as gpd
32
+
from lonboard import viz
33
+
34
+
gdf = gpd.GeoDataFrame(...)
35
+
viz(gdf)
36
+
```
37
+
38
+
Under the hood, this delegates to a `ScatterplotLayer`, `PathLayer`, or `SolidPolygonLayer`. Refer to the [documentation](https://developmentseed.org/lonboard/) and [examples](https://developmentseed.org/lonboard/examples/internet-speeds/) for more control over rendering.
39
+
26
40
## Documentation
27
41
28
42
Refer to the documentation at [developmentseed.org/lonboard](https://developmentseed.org/lonboard/).
0 commit comments