Skip to content

Commit

Permalink
Update mapping with symbology
Browse files Browse the repository at this point in the history
  • Loading branch information
Robinlovelace committed Aug 29, 2023
1 parent afd626f commit 943cf6e
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions 09-mapping.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ gpd.GeoSeries(nz.unary_union, crs=nz.crs) \
nz_height.to_crs(nz_elev.crs).plot(ax=ax, color='yellow');
```

### Palettes
### Symbology

To complete...

Expand Down Expand Up @@ -168,7 +168,6 @@ To complete...

## Interactive maps


### GeoPandas explore


Expand All @@ -179,7 +178,16 @@ nz.explore()

### Layers

...
To add multiple layers, one on top of another, with `explore()`, use the `m` argument, which stands for the previous map.

```{python}
m = nz.explore()
nz_height.explore(m = m, color="red")
m
```

### Symbology


### Publishing interactive maps

Expand Down

0 comments on commit 943cf6e

Please sign in to comment.