From 9059dcd22f48a18496d0a48885e22ab45b41f6a4 Mon Sep 17 00:00:00 2001 From: Google Earth Engine Authors Date: Fri, 24 May 2024 11:14:31 -0700 Subject: [PATCH] Document that features returned from `computeFeatures` are reprojected. PiperOrigin-RevId: 636977728 --- python/ee/data.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/ee/data.py b/python/ee/data.py index 4353bc8e1..1bf0069df 100644 --- a/python/ee/data.py +++ b/python/ee/data.py @@ -990,7 +990,8 @@ def computeFeatures(params: Dict[str, Any]) -> Any: A Pandas DataFrame, GeoPandas GeoDataFrame, or a dictionary containing: - "type": always "FeatureCollection" marking this object as a GeoJSON feature collection. - - "features": a list of GeoJSON features. + - "features": a list of GeoJSON features reprojected to EPSG:4326 with + planar edges. - "next_page_token": A token to retrieve the next page of results in a subsequent call to this function. """