JuliaEarth / GeoStats.jl

An extensible framework for geospatial data science and geostatistical modeling fully written in Julia
https://juliaearth.github.io/GeoStatsDocs/stable/
MIT License
506 stars 61 forks source link

Use more efficient Makie functions for Grid domains #374

Closed juliohm closed 8 months ago

juliohm commented 9 months ago

The maximum performance is obtained with the following functions:

  1. CartesianGrid --> Makie.image
  2. RectilinearGrid --> Makie.heatmap
  3. StructuredGrid --> Makie.surface
  4. TransformedGrid --> Makie.image + Makie.rotate!, Makie.translate!, Makie.scale!
juliohm commented 8 months ago

Fixed on master.