Skip to main content

Crate oxigdal_jupyter

Crate oxigdal_jupyter 

Source
Expand description

Jupyter integration for OxiGDAL

This crate provides Jupyter kernel implementation with rich display capabilities, interactive widgets, and magic commands for geospatial data analysis.

§Features

  • Custom Jupyter kernel for OxiGDAL
  • Rich display (images, maps, tables)
  • Interactive widgets
  • Magic commands (%load_raster, %plot, etc.)
  • Integration with plotters for visualization

§Example

use oxigdal_jupyter::kernel::OxiGdalKernel;

// Create and start kernel
let kernel = OxiGdalKernel::new()?;
// kernel.run()?;

Re-exports§

pub use display::DisplayData;
pub use display::RichDisplay;
pub use kernel::OxiGdalKernel;
pub use magic::MagicCommand;
pub use widgets::MapWidget;
pub use widgets::Widget;

Modules§

display
Rich display support for Jupyter
kernel
Jupyter kernel implementation for OxiGDAL
magic
Magic commands for Jupyter
plotting
Plotting utilities for Jupyter
widgets
Interactive widgets for Jupyter

Enums§

JupyterError
Error types for Jupyter integration

Type Aliases§

Result
Result type for Jupyter operations