Rafael Schouten

Results 969 comments of Rafael Schouten

I mean did you get the right coordinates with the right syntax? The problem with your syntax is it only "works" by mistake, it's not doing what you think it...

Yes I will stop that syntax from working at all, its just the fallback function somehow ignoring the second argument.

Right, it's ignoring the dimension variables lat/lon but not the `coordinates` variable. So it takes the first of time and snowc. Will fix.

Ok right interesting use case. We should use the order from `DimSelectors` rather than the original. You can probably specifically set the order to Unordered : ```julia Vertical(A_locations; order=DimensionalData.Unordered()) ```...

Looks like this is no longer broken after the other changes that are coming, but by using `Vertical(NoLookup())`. But you probably really want it to return something with the dimension...

RasterDataSources has the same problem with WorldClim, which is also ucdavis. An email to someone involved in these projects at ucdavis might be a good strategy, hosting this many major...

No need for anything that complicated ;) StatsBase gives us the `sample` method that will work on any `AbstractArray`. But we need to remove missing values from it first. To...

It's probably no problem to convert, it's just `DataFrame(raster)`, just use `replace_missing` first for now. `DataFrame(replace_missing(raster))`. Then probably `sample` will work too. You may need to use `dropmissings` on the...