Pyspatialml
Pyspatialml copied to clipboard
Machine learning modelling for spatial data
I think that adding a function to estimate the Area of Applicability will be useful. Here is the function included in CAST package in R https://search.r-project.org/CRAN/refmans/CAST/html/aoa.html
Hi @stevenpawley, I really appreciate this nice library. I found multiplication between rasters works. but is there any way to multiply a raster (RasterLayer object) by a constant? Because I...
I tried to mask a tif file of 6gb on a pc of 64gb ram and the memory usage kept increasing till it reached about 97% then I cancelled it....
Hi Steven, FYI, did this last year to use your work with NGBoost, finally got around to updating.
Scikit learn can allow transformers to use column names instead of indexes, which is more convenient in some cases, e.g., ColumnTransformer. Currently, the use of names is not compatible with...
Hi @stevenpawley, thanks for this nice library! I am having an issue with the `extract_vector` function Issue ``` df_points = stack.extract_vector(training_pt) # error output UnboundLocalError Traceback (most recent call last)...
Hi Steven, I was just wondering about this today ... what would you do, stick a check in and if there is a list there, extract all the positive probabilities...
As [venka-foss4g](https://github.com/venka-foss4g) suggested, I have modified line 2563 of `raster.py` to: `pixel_indices = np.zeros(0, dtype=np.int_)` As numpy.int has been removed in NumPy >= 1.24 https://stackoverflow.com/questions/74946845/attributeerror-module-numpy-has-no-attribute-int and also edited the grammatical...
Line 2563 of raster.py need be edited From: # pixel_indices = np.zeros(0, dtype=np.int) To: pixel_indices = np.zeros(0, dtype=np.int_) As numpy.int was has been removed in NumPy >= 1.24 https://stackoverflow.com/questions/74946845/attributeerror-module-numpy-has-no-attribute-int
Hey Steven, first of all, thanks a lot for your package...it's such a great help! I followed along your Multi-Target Spatial Prediction using the Meuse Dataset tutorial to modify it...