├── .gitattributes ├── .github └── workflows │ ├── debug.yml │ ├── pullFromGEE.yaml │ └── pushToGEE.yml ├── .gitignore ├── Algorithms ├── MODIS │ └── terrainShadow ├── Sentinel1 │ └── removeS1BlackBorders └── Sentinel2 │ └── cloudfree ├── Array ├── dtwDistance └── matrixUnit ├── DarftNewFunction ├── Date ├── sunPosition └── sunRiseSet ├── Element └── addTimeProperties ├── Export ├── Image │ ├── toAsset │ └── toDrive ├── ImageCollection │ ├── asImageToAsset │ ├── create │ ├── toAsset │ └── toDrive └── loadIfExistElseExport ├── Feature └── asLabel ├── FeatureCollection └── fromList ├── Filter └── asymmetricMaxDifference ├── Geometry ├── fromText └── geometryWorldwide ├── Image ├── arrayDTW ├── arrayMatrixUnit ├── inverseDistanceInterpolation ├── kriging ├── propertyAsBand └── semivariogram ├── ImageCollection ├── OtsuThreshold ├── SavatskyGolayFilter ├── enhancingCollection ├── fromSingleImage ├── medoid ├── movingWindow └── toArrayPerBandWithMask ├── Map ├── mapshot ├── scaleLayer ├── scaleWidget └── symbol ├── Python ├── require └── run ├── data └── deleteImageCollection ├── debug └── Terminal ├── genearteOpenEEL.py ├── internal ├── loadAll ├── loadAll4py ├── loadAllSF ├── plotly ├── barChart ├── directDraw ├── donutChart ├── hist2D ├── histogram ├── plot ├── sankeyDiagram └── scatter └── util └── addTimePrototype /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/.github/workflows/debug.yml -------------------------------------------------------------------------------- /.github/workflows/pullFromGEE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/.github/workflows/pullFromGEE.yaml -------------------------------------------------------------------------------- /.github/workflows/pushToGEE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/.github/workflows/pushToGEE.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | loadAll 4 | -------------------------------------------------------------------------------- /Algorithms/MODIS/terrainShadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Algorithms/MODIS/terrainShadow -------------------------------------------------------------------------------- /Algorithms/Sentinel1/removeS1BlackBorders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Algorithms/Sentinel1/removeS1BlackBorders -------------------------------------------------------------------------------- /Algorithms/Sentinel2/cloudfree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Algorithms/Sentinel2/cloudfree -------------------------------------------------------------------------------- /Array/dtwDistance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Array/dtwDistance -------------------------------------------------------------------------------- /Array/matrixUnit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Array/matrixUnit -------------------------------------------------------------------------------- /DarftNewFunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/DarftNewFunction -------------------------------------------------------------------------------- /Date/sunPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Date/sunPosition -------------------------------------------------------------------------------- /Date/sunRiseSet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Date/sunRiseSet -------------------------------------------------------------------------------- /Element/addTimeProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Element/addTimeProperties -------------------------------------------------------------------------------- /Export/Image/toAsset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Export/Image/toAsset -------------------------------------------------------------------------------- /Export/Image/toDrive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Export/Image/toDrive -------------------------------------------------------------------------------- /Export/ImageCollection/asImageToAsset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Export/ImageCollection/asImageToAsset -------------------------------------------------------------------------------- /Export/ImageCollection/create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Export/ImageCollection/create -------------------------------------------------------------------------------- /Export/ImageCollection/toAsset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Export/ImageCollection/toAsset -------------------------------------------------------------------------------- /Export/ImageCollection/toDrive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Export/ImageCollection/toDrive -------------------------------------------------------------------------------- /Export/loadIfExistElseExport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Export/loadIfExistElseExport -------------------------------------------------------------------------------- /Feature/asLabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Feature/asLabel -------------------------------------------------------------------------------- /FeatureCollection/fromList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/FeatureCollection/fromList -------------------------------------------------------------------------------- /Filter/asymmetricMaxDifference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Filter/asymmetricMaxDifference -------------------------------------------------------------------------------- /Geometry/fromText: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Geometry/fromText -------------------------------------------------------------------------------- /Geometry/geometryWorldwide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Geometry/geometryWorldwide -------------------------------------------------------------------------------- /Image/arrayDTW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Image/arrayDTW -------------------------------------------------------------------------------- /Image/arrayMatrixUnit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Image/arrayMatrixUnit -------------------------------------------------------------------------------- /Image/inverseDistanceInterpolation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Image/inverseDistanceInterpolation -------------------------------------------------------------------------------- /Image/kriging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Image/kriging -------------------------------------------------------------------------------- /Image/propertyAsBand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Image/propertyAsBand -------------------------------------------------------------------------------- /Image/semivariogram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Image/semivariogram -------------------------------------------------------------------------------- /ImageCollection/OtsuThreshold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/ImageCollection/OtsuThreshold -------------------------------------------------------------------------------- /ImageCollection/SavatskyGolayFilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/ImageCollection/SavatskyGolayFilter -------------------------------------------------------------------------------- /ImageCollection/enhancingCollection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/ImageCollection/enhancingCollection -------------------------------------------------------------------------------- /ImageCollection/fromSingleImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/ImageCollection/fromSingleImage -------------------------------------------------------------------------------- /ImageCollection/medoid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/ImageCollection/medoid -------------------------------------------------------------------------------- /ImageCollection/movingWindow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/ImageCollection/movingWindow -------------------------------------------------------------------------------- /ImageCollection/toArrayPerBandWithMask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/ImageCollection/toArrayPerBandWithMask -------------------------------------------------------------------------------- /Map/mapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Map/mapshot -------------------------------------------------------------------------------- /Map/scaleLayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Map/scaleLayer -------------------------------------------------------------------------------- /Map/scaleWidget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Map/scaleWidget -------------------------------------------------------------------------------- /Map/symbol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Map/symbol -------------------------------------------------------------------------------- /Python/require: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Python/require -------------------------------------------------------------------------------- /Python/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/Python/run -------------------------------------------------------------------------------- /data/deleteImageCollection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/data/deleteImageCollection -------------------------------------------------------------------------------- /debug/Terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/debug/Terminal -------------------------------------------------------------------------------- /genearteOpenEEL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/genearteOpenEEL.py -------------------------------------------------------------------------------- /internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/internal -------------------------------------------------------------------------------- /loadAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/loadAll -------------------------------------------------------------------------------- /loadAll4py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/loadAll4py -------------------------------------------------------------------------------- /loadAllSF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/loadAllSF -------------------------------------------------------------------------------- /plotly/barChart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/plotly/barChart -------------------------------------------------------------------------------- /plotly/directDraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/plotly/directDraw -------------------------------------------------------------------------------- /plotly/donutChart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/plotly/donutChart -------------------------------------------------------------------------------- /plotly/hist2D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/plotly/hist2D -------------------------------------------------------------------------------- /plotly/histogram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/plotly/histogram -------------------------------------------------------------------------------- /plotly/plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/plotly/plot -------------------------------------------------------------------------------- /plotly/sankeyDiagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/plotly/sankeyDiagram -------------------------------------------------------------------------------- /plotly/scatter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/plotly/scatter -------------------------------------------------------------------------------- /util/addTimePrototype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-geocomputing/OpenEarthEngineLibrary/HEAD/util/addTimePrototype --------------------------------------------------------------------------------