Anshul Singhvi
Anshul Singhvi
Thanks! Could we get a version out with this? I can do the changelog/bump PR when I get to my hotel but it would be great to release a GeoMakie...
Hmm, that's an interesting question. Should `size(screen)` mean number of physical pixels or number of logical pixels? `size(scene)` currently means logical pixels, and it should probably stay that way, but...
In that last case you can use minorticks for the grid lines and make major ticks invisible. No need for hacks - and you can build this into the theme...
OffsetArrays is already pulled in by the image ecosystem, so there's no point removing it. Distributions and Unitful could possibly go into extensions though, especially since the Unitful support seems...
Docs failures are unrelated - it seems like `git push` failed.
Bump - this would be pretty useful to have!
Do people think this is the right approach to take? I can also change what I'm doing here, but some feedback would be nice.
Pretty much, the idea is to pass e.g `heatmap(sky_data; colorrange = zscale)` for astronomers, or `heatmap(random_unbalanced_data; colorrange = ScaledAbout(0))`.
Zscale is basically an algorithm to ignore outliers, pretty useful in imaging where a burnt out pixel always returns the maximum value.
This would be one part of the whole - I would imagine some form of colormap wrapper type like `ScaledAbout(colormap, value)` which intercepts the process in `numbers_to_colors` or so. That...