ee.data.createAsset
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Crée un élément à partir d'une valeur JSON. Pour créer une collection ou un dossier d'images vides, transmettez un objet "value" avec une clé "type" dont la valeur est l'une des valeurs ee.data.AssetType.* (par exemple, "ImageCollection" ou "Folder").
Renvoie une description de l'élément enregistré, y compris un ID généré, ou null si un rappel est spécifié.
Utilisation | Renvoie |
---|
ee.data.createAsset(value, path, force, properties, callback) | Objet |
Argument | Type | Détails |
---|
value | Objet | Objet décrivant l'asset à créer. |
path | Chaîne, facultative | ID souhaité facultatif, y compris le chemin d'accès complet. |
force | Booléen, facultatif | Forcer l'écrasement. |
properties | Objet, facultatif | Clés et valeurs des propriétés à définir |
callback | Fonction, facultatif | Un rappel facultatif. Si ce paramètre n'est pas spécifié, l'appel est effectué de manière synchrone. |
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/26 (UTC).
[null,null,["Dernière mise à jour le 2025/07/26 (UTC)."],[[["\u003cp\u003eGenerates an Earth Engine asset from a JSON object, enabling the creation of image collections, folders, or other asset types.\u003c/p\u003e\n"],["\u003cp\u003eAllows specification of an asset ID, optional overwriting, and custom properties during asset creation.\u003c/p\u003e\n"],["\u003cp\u003eReturns asset details including a generated ID or utilizes a callback function for asynchronous operations.\u003c/p\u003e\n"],["\u003cp\u003eSupports creating empty image collections and folders by providing a JSON value with the specific "type" key.\u003c/p\u003e\n"]]],["The function `ee.data.createAsset` creates an asset from a JSON value. It accepts a `value` object describing the asset and an optional `path` for the asset ID. The `force` argument allows overwriting, and `properties` sets asset metadata. A `callback` enables asynchronous operation. Without a callback, it returns an object describing the asset, including the ID. An empty image collection or folder can be created by using the values from ee.data.AssetType.\n"],null,["# ee.data.createAsset\n\n\u003cbr /\u003e\n\nCreates an asset from a JSON value. To create an empty image collection or folder, pass in a \"value\" object with a \"type\" key whose value is one of ee.data.AssetType.\\* (i.e. \"ImageCollection\" or \"Folder\").\n\n\u003cbr /\u003e\n\nReturns a description of the saved asset, including a generated ID, or null if a callback is specified.\n\n| Usage | Returns |\n|------------------------------------------------------------------------------------|---------|\n| `ee.data.createAsset(value, `*path* `, `*force* `, `*properties* `, `*callback*`)` | Object |\n\n| Argument | Type | Details |\n|--------------|--------------------|------------------------------------------------------------------------|\n| `value` | Object | An object describing the asset to create. |\n| `path` | String, optional | An optional desired ID, including full path. |\n| `force` | Boolean, optional | Force overwrite. |\n| `properties` | Object, optional | The keys and values of the properties to set |\n| `callback` | Function, optional | An optional callback. If not supplied, the call is made synchronously. |"]]