view(đ.domain, LinearIndices(size(A))[ismissing.(A)])
đ
is a Tables.jl table. So you could find the missing rows with some table filtering operation instead of using the LinearIndices
hack above.
] update
in your environment or ] update GeoStatsBase
to only update the package.
sol = solve(prob, solver);
Hello everyone, I have a question about exporting/writing spatial data. After doing simulations with GeoStats.jl, I got data with the data structure "GeoData{CartesianGrid{2,Float64},TypedTables.Table{NamedTuple{(:X1,),Tuple{Float64}},1,NamedTuple{(:X1,),Tuple{Array{Float64,1}}}}}". How to export it as raster data?
I tried NCDatasets.jl, but seems like they don't provide a method to convert GeoData to netCDF? Do you happen to know the best package to export the simulation results of GeoStats.jl? Thanks!