Source code for geetools.batch

"""Missing docstring."""
import ee

from . import featurecollection, imagecollection
from . import image as batchimage


[docs] class Export(ee.batch.Export): """Missing docstring."""
[docs] class table(ee.batch.Export.table): """TODO missing docstring."""
[docs] toAsset = featurecollection.toAsset
[docs] toDriveShapefile = featurecollection.toDriveShapefile
[docs] class imagecollection(object): """TODO missing docstring."""
[docs] toDrive = imagecollection.toDrive
[docs] toAsset = imagecollection.toAsset
[docs] toCloudStorage = imagecollection.toCloudStorage
[docs] class image(ee.batch.Export.image): """TODO missing docstring."""
[docs] toAsset = batchimage.toAsset # overwrite original
[docs] toDriveByFeature = batchimage.toDriveByFeature
[docs] class Download(object): """TODO missing docstring."""
[docs] class table(object): """TODO missing docstring."""
[docs] toGeoJSON = featurecollection.toGeoJSON
[docs] toCSV = featurecollection.toCSV
[docs] toLocal = featurecollection.toLocal
[docs] class imagecollection(object): """TODO missing docstring."""
[docs] toQGIS = imagecollection.toQGIS
[docs] class image(object): """TODO missing docstring."""
[docs] toLocal = batchimage.toLocal
[docs] toQGIS = batchimage.toQGIS
[docs] class Convert(object): """TODO missing docstring."""
[docs] class table(object): """TODO missing docstring."""
[docs] toDict = featurecollection.toDict
[docs] class imagecollection(object): """TODO missing docstring.""" pass
[docs] class image(object): """TODO missing docstring.""" pass
[docs] class Import(object): """TODO missing docstring."""
[docs] class table(object): """TODO missing docstring."""
[docs] fromGeoJSON = featurecollection.fromGeoJSON
[docs] fromShapefile = featurecollection.fromShapefile
[docs] fromKML = featurecollection.fromKML
[docs] class imagecollection(object): """TODO missing docstring.""" pass
[docs] class image(object): """TODO missing docstring.""" pass