#[derive(Debug, Clone, Copy)]pubstructBBox{pubmin_lon:f64,
pubmax_lon:f64,
pubmin_lat:f64,
pubmax_lat:f64,
}implBBox{/// Surrey, BC — the default region of interest.
pubfnsurrey_bc()->Self{Self{
min_lon:-122.95,
max_lon:-122.65,
min_lat:49.05,
max_lat:49.35,}}}