Josiah Parry
Josiah Parry
The example at https://symbolixau.github.io/jsonify/index.html#what-do-you-mean-by-available-at-the-source does not work. DESCRIPTION file contains ``` LinkingTo: Rcpp, jsonify ``` And in `src/jsonify-testing.cpp` contains ```c++ // [[Rcpp::depends(jsonify)]] #include "jsonify/jsonify.hpp" Rcpp::StringVector my_json( Rcpp::DataFrame df ) {...
```` ```{extendrsrc macro} macro_rules! make_heck_fn { ($fn_name:ident) => { #[extendr] /// @export fn $fn_name(x: Strings) -> Strings { x.into_iter() .map(|xi| match xi.is_na() { true => Rstr::na(), false => Rstr::from(xi.as_str().$fn_name()), })...
At present, when a new extendr project is created using `rextendr::use_extendr()`, the Cargo.toml file does not specify the version of `extendr-api` ```toml [dependencies] extendr-api = '*' ``` I think it...
The GHA release workflow used by polars builds binaries and stores them in the GH releases which allows users to download / install directly from github without compilation. This is...
There are some common things that should be capture in a PR Template check list to reduce overhead and burden (guilty!!!). Some of these are: - [ ] checking the...
The default package version for an R package using usethis is 0.0.0.9000 and the default package version for the rust source library is 0.1.0. Maintaining versioning between the source and...
`cli_vec()` is very helpful when informing uses that they should choose one of a set of values. Using `vec-last` is great because it allows us to say ` or {last-item}`...
- [x] I agree to follow the project's [code of conduct](https://github.com/georust/geo/blob/main/CODE_OF_CONDUCT.md). - [x] I added an entry to `CHANGES.md` if knowledge of this change could be valuable to users. ---...
I like using constructive to create code to use in tests and I'll need to copy the output of the print method and paste it into another file. I'd suggest...
The REST API can return geojson directly. Try setting `f=pgeojson`. https://github.com/openaddresses/pyesridump/blob/769cea60f06ddc4f383c3219bf45b129be28d326/esridump/dumper.py#L124