geetools-code-editor
geetools-code-editor copied to clipboard
A set of tools to use in Google Earth Engine Code Editor (JavaScript)
I am new in GEE and I want to work on NDVI time series, but before doing this I want to preprocess Sentinel-2A images using a cloud mask based on...
Hi, I was trying to use `batch.ImageCollection.toDrive` and I received the error: ``` In users/fitoprincipe/geetools:batch Line 133: collection.size is not a function ``` Here is my code: ``` var batch...
Hi, I was trying to use `batch.ImageCollection.toDrive` and I received the error: ``` Cannot read property 'toDrive' of undefined ``` I tried running the code directly from source and it...
Hello, thanks for your useful code. I'm exporting an image collection to drive using your code. But I encountered an error when I try to use `name` in the parameter...
Hi People, I'm trying to model some soil parameters using random forest in google earth engine. However I am having a problem going past this error code in my work:...
When using the Landsat datasets now, they ask to migrate the workflows from Landsat Collection 1 to Collection 2. I think they have changed the name of some bands or...
// Define the feature names (modify as needed) var features = ['Excellent', 'Good', 'Moderate', 'Fair', 'Poor']; // Define the image collections with a list (replace with your actual collections) var...
var storico = ee.FeatureCollection('users/username'); print(storico) var batch = require('users/fitoprincipe/geetools:batch'); var Polygon = ee.Geometry.Polygon([ [ [14.956, 37.892], [15.151, 37.892], [15.151, 37.755], [14.956, 37.755] ] ]); var setGeometry = function(feature) { return...