The numpy tag has no wiki summary.
11
votes
0answers
203 views
How can I utilize NumPy arrays to optimize big data geoprocessing?
I'm interested in learning how to utilize NumPy arrays to optimize geoprocessing. Much of my work involves "big data", where geoprocessing often takes days to accomplish certain tasks. Needless to ...
2
votes
0answers
118 views
How do I use scipy.ndimage.gaussian_filter1d on an arbitrary axis?
I have a GDAL raster that looks like this:
And I would really like to blur this raster along an arbitrary transect.
I see that scipy.ndimage has a gaussian filter that allows me to blur the raster ...
1
vote
0answers
46 views
Averaging satellite data with missing values (using Python)
I am using sea surface temperature, chlorophyll, and other data parameters as covariants in a model, and I would like to average them over a particular time period.
I am currently doing this using a ...
1
vote
0answers
215 views
ValueError when reading a raster band as a numpy array
Here's the problem shown in Python shell:
In [32]: from osgeo import gdal
In [33]: geotiff = '/Users/calvin/work/luc/proj_public/media/GLO
...
