Spatial Plots¶
SpatialPlot
¶
Bases: BasePlot
A base class for creating spatial plots with cartopy.
This class provides a high-level interface for geospatial plots, handling the setup of cartopy axes and the addition of common map features like coastlines, states, and gridlines.
Attributes¶
resolution : str The resolution of the cartopy features (e.g., '50m').
Source code in src/monet_plots/plots/spatial.py
25 26 27 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 145 146 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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 | |
__init__(*, projection=ccrs.PlateCarree(), fig=None, ax=None, figsize=None, subplot_kw=None, **kwargs)
¶
Initialize the spatial plot and draw map features.
This constructor sets up the matplotlib Figure and cartopy GeoAxes, and provides a single interface to draw common map features like coastlines and states.
Parameters¶
projection : ccrs.Projection, optional
The cartopy projection for the map, by default ccrs.PlateCarree().
fig : plt.Figure | None, optional
An existing matplotlib Figure object. If None, a new one is
created, by default None.
ax : plt.Axes | None, optional
An existing matplotlib Axes object. If None, a new one is created,
by default None.
figsize : tuple[float, float] | None, optional
Width, height in inches. If not provided, the matplotlib default
will be used.
subplot_kw : dict[str, Any] | None, optional
Keyword arguments passed to fig.add_subplot, by default None.
The 'projection' is added to these keywords automatically.
**kwargs : Any
Keyword arguments for map features, passed to add_features.
Common options include coastlines, states, countries,
ocean, land, lakes, rivers, borders, gridlines,
extent, and resolution.
Attributes¶
fig : plt.Figure The matplotlib Figure object. ax : plt.Axes The matplotlib Axes (or GeoAxes) object. resolution : str The default resolution for cartopy features.
Source code in src/monet_plots/plots/spatial.py
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 | |
add_features(**kwargs)
¶
Add and style cartopy features on the map axes.
This method provides a flexible, data-driven interface to add common
map features. Features can be enabled with a boolean flag (e.g.,
coastlines=True) or styled with a dictionary of keyword arguments
(e.g., states=dict(linewidth=2, edgecolor='red')).
The extent keyword is also supported to set the map boundaries.
Parameters¶
**kwargs : Any
Keyword arguments controlling the features to add and their
styles. Common options include coastlines, states,
countries, ocean, land, lakes, rivers, borders,
and gridlines.
Returns¶
dict[str, Any] A dictionary of the keyword arguments that were not used for adding features. This can be useful for passing remaining arguments to other functions.
Source code in src/monet_plots/plots/spatial.py
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 | |
SpatialTrack
¶
Bases: SpatialPlot
Plot a trajectory from an xarray.DataArray on a map.
This class provides an xarray-native interface for visualizing paths, such as flight trajectories or pollutant tracks, where a variable (e.g., altitude, concentration) is plotted along the path.
It inherits from :class:SpatialPlot to provide the underlying map canvas.
Attributes¶
data : xr.DataArray The trajectory data being plotted. lon_coord : str The name of the longitude coordinate in the DataArray. lat_coord : str The name of the latitude coordinate in the DataArray.
Source code in src/monet_plots/plots/spatial.py
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | |
__init__(data, *, lon_coord='lon', lat_coord='lat', **kwargs)
¶
Initialize the SpatialTrack plot.
This constructor validates the input data and sets up the map canvas
by initializing the parent SpatialPlot and adding map features.
Parameters¶
data : xr.DataArray
The input trajectory data. Must be an xarray DataArray with
coordinates for longitude and latitude.
lon_coord : str, optional
Name of the longitude coordinate in the DataArray, by default 'lon'.
lat_coord : str, optional
Name of the latitude coordinate in the DataArray, by default 'lat'.
**kwargs : Any
Keyword arguments passed to :class:SpatialPlot. These control
the map projection, figure size, and cartopy features. For example:
projection=ccrs.LambertConformal(), figsize=(10, 8),
states=True, extent=[-125, -70, 25, 50].
Source code in src/monet_plots/plots/spatial.py
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | |
plot(**kwargs)
¶
Plot the trajectory on the map.
The track is rendered as a scatter plot, where each point is colored
according to the data values.
Parameters¶
**kwargs : Any
Keyword arguments passed to matplotlib.pyplot.scatter.
Common options include cmap, s (size), and alpha.
A transform keyword (e.g., transform=ccrs.PlateCarree())
is highly recommended for geospatial accuracy.
The cmap argument can be a string, a Colormap object, or a
(colormap, norm) tuple from the scaling tools in colorbars.py.
Map features (e.g., coastlines=True) can also be passed here.
Returns¶
plt.Artist
The scatter plot artist created by ax.scatter.
Source code in src/monet_plots/plots/spatial.py
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | |
SpatialTrack¶
Bases: SpatialPlot
Plot a trajectory from an xarray.DataArray on a map.
This class provides an xarray-native interface for visualizing paths, such as flight trajectories or pollutant tracks, where a variable (e.g., altitude, concentration) is plotted along the path.
It inherits from :class:SpatialPlot to provide the underlying map canvas.
Attributes¶
data : xr.DataArray The trajectory data being plotted. lon_coord : str The name of the longitude coordinate in the DataArray. lat_coord : str The name of the latitude coordinate in the DataArray.
Source code in src/monet_plots/plots/spatial.py
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | |
__init__(data, *, lon_coord='lon', lat_coord='lat', **kwargs)
¶
Initialize the SpatialTrack plot.
This constructor validates the input data and sets up the map canvas
by initializing the parent SpatialPlot and adding map features.
Parameters¶
data : xr.DataArray
The input trajectory data. Must be an xarray DataArray with
coordinates for longitude and latitude.
lon_coord : str, optional
Name of the longitude coordinate in the DataArray, by default 'lon'.
lat_coord : str, optional
Name of the latitude coordinate in the DataArray, by default 'lat'.
**kwargs : Any
Keyword arguments passed to :class:SpatialPlot. These control
the map projection, figure size, and cartopy features. For example:
projection=ccrs.LambertConformal(), figsize=(10, 8),
states=True, extent=[-125, -70, 25, 50].
Source code in src/monet_plots/plots/spatial.py
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | |
plot(**kwargs)
¶
Plot the trajectory on the map.
The track is rendered as a scatter plot, where each point is colored
according to the data values.
Parameters¶
**kwargs : Any
Keyword arguments passed to matplotlib.pyplot.scatter.
Common options include cmap, s (size), and alpha.
A transform keyword (e.g., transform=ccrs.PlateCarree())
is highly recommended for geospatial accuracy.
The cmap argument can be a string, a Colormap object, or a
(colormap, norm) tuple from the scaling tools in colorbars.py.
Map features (e.g., coastlines=True) can also be passed here.
Returns¶
plt.Artist
The scatter plot artist created by ax.scatter.
Source code in src/monet_plots/plots/spatial.py
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | |
Example¶
import numpy as np
from monet_plots.plots import SpatialTrack
# Create sample data
lon = np.linspace(-120, -80, 100)
lat = np.linspace(30, 40, 100)
data = np.random.rand(100)
# Create the plot
plot = SpatialTrack(lon, lat, data)
plot.plot()
SpatialContourPlot
¶
Bases: SpatialPlot
Create a contour plot on a map with an optional discrete colorbar.
This class provides an xarray-native interface for visualizing spatial data with continuous values. It supports both Track A (publication-quality static plots) and Track B (interactive exploration).
Source code in src/monet_plots/plots/spatial_contour.py
20 21 22 23 24 25 26 27 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 145 146 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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | |
__init__(modelvar, gridobj=None, date=None, discrete=True, ncolors=None, dtype='int', col=None, row=None, col_wrap=None, size=None, aspect=None, **kwargs)
¶
Initialize the spatial contour plot.
Parameters¶
modelvar : Any
The input data to contour. Preferred format is an xarray DataArray.
gridobj : Any, optional
Object with LAT and LON variables to determine extent, by default None.
date : datetime, optional
Date/time for the plot title, by default None.
discrete : bool, optional
If True, use a discrete colorbar, by default True.
ncolors : int, optional
Number of discrete colors for the colorbar, by default None.
dtype : str, optional
Data type for colorbar tick labels, by default "int".
col : str, optional
Dimension name to facet by columns. Aligns with Xarray.
row : str, optional
Dimension name to facet by rows. Aligns with Xarray.
col_wrap : int, optional
Number of columns before wrapping. Aligns with Xarray.
size : float, optional
Height (in inches) of each facet. Aligns with Xarray.
aspect : float, optional
Aspect ratio of each facet. Aligns with Xarray.
**kwargs : Any
Keyword arguments passed to :class:SpatialPlot for map features
and projection.
Source code in src/monet_plots/plots/spatial_contour.py
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 145 146 147 148 149 150 151 152 | |
__new__(modelvar, gridobj=None, date=None, **kwargs)
¶
Redirect to SpatialFacetGridPlot if faceting is requested.
This enables a unified interface for both single-panel and multi-panel spatial plots, following Xarray's plotting conventions.
Parameters¶
modelvar : Any
The input data to contour.
gridobj : Any, optional
Object with LAT and LON variables, by default None.
date : Any, optional
Date/time for the plot title, by default None.
**kwargs : Any
Additional keyword arguments. If faceting arguments (e.g., col,
row, or col_wrap) are provided, redirects to SpatialFacetGridPlot.
Returns¶
Any An instance of SpatialContourPlot or SpatialFacetGridPlot.
Source code in src/monet_plots/plots/spatial_contour.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 | |
hvplot(**kwargs)
¶
Generate an interactive spatial contour plot using hvPlot (Track B).
Parameters¶
**kwargs : Any
Keyword arguments passed to hvplot.contourf.
Common options include cmap, levels, title, and alpha.
Returns¶
holoviews.core.layout.Layout The interactive hvPlot object.
Source code in src/monet_plots/plots/spatial_contour.py
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | |
plot(**kwargs)
¶
Generate a static publication-quality spatial contour plot (Track A).
Parameters¶
**kwargs : Any
Keyword arguments passed to matplotlib.pyplot.contourf.
Common options include cmap, levels, vmin, vmax, and alpha.
Map features (e.g., coastlines=True) can also be passed here.
Returns¶
matplotlib.axes.Axes The matplotlib axes object containing the plot.
Source code in src/monet_plots/plots/spatial_contour.py
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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 | |
SpatialBiasScatterPlot
¶
Bases: SpatialPlot
Create a spatial scatter plot showing bias between model and observations.
The scatter points are colored by the difference (model - observations) and sized by the absolute magnitude of this difference, making larger biases more visible. This class supports both Track A (publication) and Track B (interactive) visualization.
Source code in src/monet_plots/plots/spatial_bias_scatter.py
18 19 20 21 22 23 24 25 26 27 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 145 146 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 | |
__init__(data, col1, col2, vmin=None, vmax=None, ncolors=15, fact=1.5, cmap='RdBu_r', **kwargs)
¶
Initialize the plot with data and map projection.
Parameters¶
data : Any
Input data. Preferred format is xarray.Dataset or xarray.DataArray
with 'latitude' and 'longitude' (or 'lat' and 'lon') coordinates.
col1 : str
Name of the first variable (e.g., observations).
col2 : str
Name of the second variable (e.g., model). Bias is calculated
as col2 - col1.
vmin : float, optional
Minimum for colorscale, by default None.
vmax : float, optional
Maximum for colorscale, by default None.
ncolors : int, optional
Number of discrete colors, by default 15.
fact : float, optional
Scaling factor for point sizes, by default 1.5.
cmap : str, optional
Colormap for bias values, by default "RdBu_r".
**kwargs : Any
Additional keyword arguments for map creation, passed to
:class:monet_plots.plots.spatial.SpatialPlot.
Source code in src/monet_plots/plots/spatial_bias_scatter.py
27 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 | |
hvplot(**kwargs)
¶
Generate an interactive spatial bias scatter plot using hvPlot (Track B).
Parameters¶
**kwargs : Any
Keyword arguments passed to hvplot.points.
Common options include cmap, title, and alpha.
rasterize=True is used by default for high performance.
Returns¶
holoviews.core.layout.Layout The interactive hvPlot object.
Source code in src/monet_plots/plots/spatial_bias_scatter.py
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 | |
plot(**kwargs)
¶
Generate a static publication-quality spatial bias scatter plot (Track A).
Parameters¶
**kwargs : Any
Keyword arguments passed to matplotlib.pyplot.scatter.
Map features (e.g., coastlines=True) can also be passed here.
Returns¶
matplotlib.axes.Axes The matplotlib axes object containing the plot.
Source code in src/monet_plots/plots/spatial_bias_scatter.py
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 145 146 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 | |