Enrico Spinielli

Results 27 comments of Enrico Spinielli

I love Cahill's three variants at once! Cutting Antartica, requires an extra pass for the additional face, but what IMHO would be nicer, is to add Antartica without removing it...

I found a solution see dgrtwo/gganimate#47 You have to use ImageMagick internal filename globbing by quoting your filenames (note the quoted `"*.png"`): ``` convert "*.png" -delay 3 -loop 0 binom.gif...

Here is the relevant info out of a restarted session: ``` > library(sergeant) > library(tidyverse) ── Attaching packages ───────────────────────────────────────────────────────── tidyverse 1.2.1 ── ✔ ggplot2 3.1.0 ✔ purrr 0.2.5 ✔ tibble...

I ended up doing like that because I was always hitting out of memory...

Do you have some examples and benchmarks on your proposal? I recently tried `fuzzyjoin` on a _small_ (31k and 19700) dataset, exact matching on 1 column, one = match, but...

Thanks for this. I am using the fix in a local copy of the function. Any chance to have it in next CRAN version? (If I can ask, when? :smile:...

Maybe this will do ``` > dgquakes %>% dplyr::mutate(cell_id = dgGEO_to_SEQNUM(dggs, .$lon, .$lat)$seqnum) %>% bind_cols(dgSEQNUM_to_GEO(dggs, .$cell_id)) %>% as_tibble() # A tibble: 19,914 x 7 time lat lon mag cell_id lon_deg...

You cannot tile the sphere with only hexagons (starting from an icosahedron). See "Grid" section of the vignette. Also [wikipedia page](https://en.wikipedia.org/wiki/Truncated_icosahedron)

Could you please post the code you used?

this does not work: `dggs_50` is unknown. Please provide a [reproducible example](https://reprex.tidyverse.org/) piece of code.