Rasters.jl icon indicating copy to clipboard operation
Rasters.jl copied to clipboard

Raster manipulation for the Julia language

Results 79 Rasters.jl issues
Sort by recently updated
recently updated
newest added

This is a preliminary edit to update the reading and writing docs. I'm hoping to get help getting the NCDatasets and HDF5 examples working that are located at the end...

We could quite easily support line and polygon lookups here where `Near` and `Contains` selectors do RTree lookups using libspatialindex, and supsettimg with extents. This is useful for when other...

enhancement

We should propagate metadata about the operations that have been done on a Raster/RasterStack, what function created it etc. - `aggregate` should make lookups `Sampled` `Intervals`. They should probably error...

Consider ``` ras = Raster(rand(Int32, X(25:1:30), Y(25:1:30)), missingval=-1.5) ``` Is allowing the type of `missingval` not being a subtype of the eltype useful for anything? The reason I came across...

And maybe we shouldn't export in GeoFormatTypes itself? ```julia julia> using Rasters julia> GeoJSON GeoJSON julia> using GeoJSON WARNING: using GeoJSON.GeoJSON in module Main conflicts with an existing identifier. ERROR:...

SRTM is a new dataset in [RasterDataSources.jl](https://github.com/EcoJulia/RasterDataSources.jl). The `SRTM` type needs to be added to [src/sources/rasterdatasources.jl](https://github.com/rafaqz/Rasters.jl/blob/master/src/sources/rasterdatasources.jl) to support the following interface: ```julia Raster(SRTM; crs=..., bounds=(...)) ``` ### Details: - `getraster(SRTM,...

People may want to rasterize into dimensions other than X/Y. We can provide a keyword that uses X/Y by defualt but allows other combinations.

When the write command errors it still sometimes construct a broken file on disk. This change should make sure, that the write function would tidy up these broken files after...

When I try to combine multiple large files that are loaded lazily into a RasterSeries into a new Raster this kills my Julia process. I suspect, that the views load...