Josiah Parry

Results 91 comments of Josiah Parry

``` acs % mutate(fips = as.character(fips), across(.cols = c(med_house_income, by_pub_trans, bach), ~replace_na(.x, median(.x, na.rm = TRUE)))) acs_sf

Thanks! Can you please provide a reproducible example? Or known output for a dataset you can share? On Thu, Oct 6, 2022 at 11:30 JoseLastra ***@***.***> wrote: > > https://github.com/JosiahParry/sfdep/blob/7e5cddbf9be70911644d31cb0367a69d6a077a74/R/point-pattern-centers.R#L38...

regarding minimum spanning tree this can be accomplished using spdep and sfdep. here's an example of creating an sfnetwork using an mstree. ``` r library(sf) library(dplyr) library(sfdep) library(sfnetworks) geo select(geometry)...

Creating an sfnetwork using spdep + sfdep for delaunay triangulation and gabriel neighbors ``` r # spdep ------------------------------------------------------------------- library(sf) #> Linking to GEOS 3.9.1, GDAL 3.2.3, PROJ 7.2.1; sf_use_s2() is...

Thanks for pointing that out @edzer. That's actually rather helpful. This is a bit out of my expertise but I'll make my best guess work. Following this [SO](https://stackoverflow.com/questions/7716460/fully-cover-a-rectangle-with-minimum-amount-of-fixed-radius-circles) thread's answer...

Proposed: ``` @param cellsize The diameter of the square or hexagon used to create a grid in the same units as the provided object. ```

I think diameter would be the better parameter name. That could conceivable introduce breaking changes, however. I suspect my suggestion at https://github.com/r-spatial/sf/issues/1505#issuecomment-705718407 would suffice?

Same issue. I'm trying to learn what shuup is and it seems the only way to get an idea is by running the service from the docker image which has...

I am presently running into this issue and I have no idea how to find my way out.

Adding a vote for making --out-dir a safe operation. It is nice to be able to specify where the final artifact will be placed. Currently opting for a subsequent `cp`...