Replace nearest-neighbour BFS flood fill with Delaunay triangulation (spade) + barycentric interpolation for smooth cloud boundaries. Add NaN-aware separable Gaussian blur (σ=8 px, rayon-parallelised) to remove triangulation facets. Switch colour scheme from blue bands to a continuous green-to-white opacity blend matching the DWD app style. Pixel interpolation loop is also parallelised with rayon. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
553 B
TOML
20 lines
553 B
TOML
[package]
|
|
name = "cloud_cover"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "cloud_cover"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
|
|
bzip2 = "0.4"
|
|
plotters = { version = "0.3", default-features = false, features = ["bitmap_backend", "bitmap_encoder"] }
|
|
font8x8 = "0.2"
|
|
clap = { version = "4", features = ["derive"] }
|
|
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
|
|
anyhow = "1"
|
|
spade = "2"
|
|
rayon = "1"
|