AI-generated Key Takeaways
-
Earth Engine projects are managed through a cloud-based configuration system represented in JSON format.
-
Project configurations encompass crucial details like registration state, concurrent export limits, and billing account export capacity.
-
Projects have different registration states including: unspecified, not registered, registered for commercial use, and registered for non-commercial use.
-
Concurrent export limits can be defined for individual projects and are capped by the billing account's overall capacity.
Information about a Cloud-based Earth Engine project. https://developers.google.com/earth-engine/cloud/projects.
JSON representation |
---|
{
"name": string,
"registrationState": enum ( |
Fields | |
---|---|
name |
Required. The project config name, of the format "projects/*/config". |
registrationState |
Output only. The project registration state. |
maxConcurrentExports |
Optional. The maximum number of concurrent exports that the project can run. |
planMaxConcurrentExports |
Optional. Output only. The maximum number of concurrent exports that can be run under the project's billing account. This number is greater than or equal to the max concurrent exports for the project. |
RegistrationState
Registration state.
Enums | |
---|---|
REGISTRATION_STATE_UNSPECIFIED |
Unspecified. |
NOT_REGISTERED |
Project is not registered. |
REGISTERED_COMMERCIALLY |
Project is registered for commercial use. |
REGISTERED_NOT_COMMERCIALLY |
Project is registered for non-commercial use. |