Visualization¶
The visualize module provides interactive map visualization for field boundaries, displaying predicted polygons overlaid on satellite basemaps. Uses leafmap for single-layer display (show_boundaries) and folium for multi-layer comparison maps (show_comparison) with stable layer toggling and HTML legend.
visualize ¶
Interactive map visualization for field boundaries.
Displays predicted field boundary polygons overlaid on satellite basemaps using leafmap. Supports static plots and interactive HTML maps.
show_boundaries ¶
show_boundaries(boundaries: GeoDataFrame, basemap: str = 'Esri.WorldImagery', style: dict[str, Any] | None = None, satellite_tif: str | None = None, output_html: str | None = None, center: tuple[float, float] | None = None, zoom: int | None = None, width: str = '100%', height: str = '600px', layer_name: str = 'Field Boundaries') -> Any
Display field boundaries on an interactive satellite basemap.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
boundaries
|
GeoDataFrame
|
Field boundary polygons to display. |
required |
basemap
|
str
|
Basemap tile layer name (default |
'Esri.WorldImagery'
|
style
|
dict or None
|
Polygon styling dict with keys like |
None
|
satellite_tif
|
str or None
|
Path to a local GeoTIFF to overlay instead of the web basemap. |
None
|
output_html
|
str or None
|
If provided, saves the map as a standalone HTML file. |
None
|
center
|
tuple[float, float] or None
|
Map center |
None
|
zoom
|
int or None
|
Initial zoom level. If None, auto-fit to data bounds. |
None
|
width
|
str
|
Map width CSS value (default |
'100%'
|
height
|
str
|
Map height CSS value (default |
'600px'
|
layer_name
|
str
|
Name for the polygon layer in the layer control. |
'Field Boundaries'
|
Returns:
| Type | Description |
|---|---|
Map
|
Interactive leafmap Map object (displayable in Jupyter). |
Examples:
>>> import agribound
>>> gdf = agribound.delineate(...)
>>> m = agribound.show_boundaries(gdf)
>>> m # displays in Jupyter
Source code in agribound/visualize.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | |
show_comparison ¶
show_comparison(boundaries_list: list[GeoDataFrame], labels: list[str] | None = None, basemap: str = 'Esri.WorldImagery', output_html: str | None = None) -> Any
Display multiple sets of field boundaries for comparison.
Useful for comparing results from different engines or years.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
boundaries_list
|
list[GeoDataFrame]
|
List of boundary GeoDataFrames to compare. |
required |
labels
|
list[str] or None
|
Labels for each set (e.g., engine names or years). |
None
|
basemap
|
str
|
Basemap tile layer name. |
'Esri.WorldImagery'
|
output_html
|
str or None
|
If provided, saves the map as HTML. |
None
|
Returns:
| Type | Description |
|---|---|
Map
|
Interactive map with toggle-able layers. |
Source code in agribound/visualize.py
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 | |