Announcement: All noncommercial projects registered to use Earth Engine before
April 15, 2025 must
verify noncommercial eligibility to maintain Earth Engine access.
Expression
Stay organized with collections
Save and categorize content based on your preferences.
Specifies an arbitrary expression, of an arbitrary type. The context in which it is used determines the type of the response.
JSON representation |
{
"values": {
string: {
object (ValueNode )
},
...
},
"result": string
} |
Fields |
values |
map (key: string, value: object (ValueNode ))
All intermediate values in the computation. The directed graph these form must be acyclic. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" } .
|
result |
string
Which of the ValueNodes in "values" is the final result of the computation.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-06-05 UTC.
[null,null,["Last updated 2024-06-05 UTC."],[[["\u003cp\u003eDefines an expression with a flexible type, adaptable to its usage context.\u003c/p\u003e\n"],["\u003cp\u003eUtilizes a JSON structure containing "values" and a "result" to represent the expression.\u003c/p\u003e\n"],["\u003cp\u003e"Values" holds intermediate computational values in a directed acyclic graph format.\u003c/p\u003e\n"],["\u003cp\u003e"Result" indicates the final output value within the "values" field.\u003c/p\u003e\n"]]],[],null,["# Expression\n\nSpecifies an arbitrary expression, of an arbitrary type. The context in which it is used determines the type of the response.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------|\n| ``` { \"values\": { string: { object (`ValueNode`) }, ... }, \"result\": string } ``` |\n\n| Fields ||\n|----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `values` | `map (key: string, value: object (``ValueNode``))` All intermediate values in the computation. The directed graph these form must be acyclic. An object containing a list of `\"key\": value` pairs. Example: `{ \"name\": \"wrench\", \"mass\": \"1.3kg\", \"count\": \"3\" }`. |\n| `result` | `string` Which of the ValueNodes in \"values\" is the final result of the computation. |"]]