Andy Ferris

Results 378 comments of Andy Ferris

Here's 4 unit packages that I'm aware of: - https://github.com/ajkeller34/Unitful.jl - https://github.com/dhoegh/EngUnits.jl - https://github.com/Keno/SIUnits.jl - https://github.com/timholy/Units.jl Not sure what is best for a simple conversion (most of these aim to...

@yeesian Yes, we are currently working on Proj4.jl so that it is based on the new Geodesy.jl, so for me it's OK at looking at transferring it over when it...

@yeesian Cool, I'll be coming to Juliacon also and it would be great to discuss.

The alternative of course would be to add a check for empty closed intervals in `hash` (and update `isless` accordingly). However, I think performance of `Dict` and `sort` might be...

OK. This seems consistent with how we treat empty ranges, arrays, etc.

Similarly, what is `2 in 1..missing`?

I kind of think of intervals as non-iterable sets, where `in` would be a Boolean-valued function and would rely on `isequal` semantics for implementation like in `Set`.

(If `in` wasn’t Boolean... then we can’t use `if a in b; ...; end` and the pun of `for a in b; ...; end` is a little confusing).

> I can’t imagine a case where you want that to work Sorry, which to work, exactly? I think my point of view could be expressed like this: I don't...