Announcement: On
November 13, 2024, all users will need to
use a Cloud project in order to access Earth Engine. After this date, continued individual access without a Cloud project will require
an exception.
Feature
A GeoJSON feature object (see RFC 7946) containing the string "Feature" in a field named "type", the geometry in a field named "geometry", and key/value properties in a field named "properties".
JSON representation |
{
"type": string,
"geometry": value,
"properties": value
} |
Fields |
type |
string
This string is always present and equal to "Feature".
|
geometry |
value (Value format)
The geometry of the feature. This will contain a google.protobuf.Struct if geometry is present for this feature. Otherwise, it will hold a google.protobuf.NullValue .
|
properties |
value (Value format)
The properties of the feature. This will contain a google.protobuf.Struct if properties are present for this feature. Otherwise, it will hold a google.protobuf.NullValue .
|
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-09-27 UTC.
[null,null,["Last updated 2024-09-27 UTC."],[[["The data structure represents geographical features using the GeoJSON standard."],["It includes three main fields: \"type\", \"geometry\", and \"properties\"."],["\"type\" is always \"Feature\", while \"geometry\" and \"properties\" can contain geographical data and feature attributes, respectively, or be null if not applicable."],["Both geometry and properties are formatted using Google Protocol Buffers' `Value` format, which can be a `Struct` if data is present or `NullValue` if not."]]],[]]