Michel Kuhlmann

Results 10 comments of Michel Kuhlmann

I came up with the following. But the pattern-match seems to be a bit tedious; isn't there something easier? Do you want me, to make a PR? ```rust use clap::{AppSettings,...

I'm also not into those topics and couldn't tell anything about best-practices. Maybe the raster::interpolate function could also be used for that.

https://geocompr.robinlovelace.net/geometric-operations.html#simplification mentions `rmapshaper::ms_simplify`, where topology is preserved in the simplification process. Maybe this could also inspire smoothing where topology is preserved.

anton-k, I like the idea; had something similar in mind, when writing a technical report recently. File-extension-dependent inclusion would be a nice `pandoc`-extension for markdown. Another idea related to that:...

I opened a seperate issure [#656](https://github.com/jgm/pandoc/issues/656) for it.

I would like to convert a TIN into a raster. Would you accept PRs, where I move some functionality out of the `TINGridding::run`-method to a location where it is accessible?...

I have an existing TIN and would like to convert that into a raster.

I would like to patat behave like tmux or vim when doing a vertical split. This would need information about the terminal width. I'm not sure if this is easy...

In the [csv-library](https://docs.rs/csv/1.0.0/csv/tutorial/index.html#reading-with-serde) it is possible to define the Record-type: ```rust //tutorial-read-serde-03.rs use std::collections::HashMap; // This introduces a type alias so that we can conveniently reference our // record type....