tp_lib_core/io.rs
1//! Input/output module for CSV, GeoJSON, and Arrow formats
2
3pub mod arrow;
4pub mod csv;
5pub mod geojson;
6
7pub use csv::{parse_gnss_csv, parse_trainpath_csv, write_csv, write_trainpath_csv};
8pub use geojson::{
9 parse_gnss_geojson, parse_netrelations_geojson, parse_network_geojson, parse_trainpath_geojson,
10 write_geojson, write_trainpath_geojson,
11};