ee.Geometry.toGeoJSON
Returns a GeoJSON representation of the geometry.
Usage | Returns |
---|
Geometry.toGeoJSON() | GeoJSONGeometry |
Argument | Type | Details |
---|
this: geometry | Geometry | The Geometry instance. |
Examples
// Define a Geometry object.
var geometry = ee.Geometry({
'type': 'Polygon',
'coordinates':
[[[-122.081, 37.417],
[-122.086, 37.421],
[-122.084, 37.418],
[-122.089, 37.416]]]
});
// Apply the toGeoJSON method to the Geometry object.
var geometryToGeoJSON = geometry.toGeoJSON();
// Print the result to the console.
print('geometry.toGeoJSON(...) =', geometryToGeoJSON);
// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(geometry,
{'color': 'black'},
'Geometry [black]: geometry');
Python setup
See the
Python Environment page for information on the Python API and using
geemap
for interactive development.
import ee
import geemap.core as geemap
# Define a Geometry object.
geometry = ee.Geometry({
'type': 'Polygon',
'coordinates': [[
[-122.081, 37.417],
[-122.086, 37.421],
[-122.084, 37.418],
[-122.089, 37.416],
]],
})
# Apply the toGeoJSON method to the Geometry object.
geometry_to_geojson = geometry.toGeoJSON()
# Print the result.
display('geometry.toGeoJSON(...) =', geometry_to_geojson)
# Display relevant geometries on the map.
m = geemap.Map()
m.set_center(-122.085, 37.422, 15)
m.add_layer(geometry, {'color': 'black'}, 'Geometry [black]: geometry')
m
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 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["`toGeoJSON()` converts an Earth Engine Geometry object into a GeoJSON representation."],["This function takes a Geometry object as input and returns a GeoJSON Geometry object."],["The provided examples demonstrate how to use this function in JavaScript and Python."],["The GeoJSON output can be used for further processing or visualization in other geospatial tools."]]],["The core content details the `toGeoJSON()` method, which converts a Geometry object into a GeoJSON representation. It takes a Geometry instance as an argument and returns a GeoJSONGeometry. The provided examples demonstrate how to define a polygon Geometry, apply the `toGeoJSON()` method to it, and visualize the geometry on a map, using JavaScript and Python. Both examples print the GeoJSON to the console and display the original geometry on a map.\n"]]