From 1506955c4d0197de544a619bfb1722ef1e95bc3a Mon Sep 17 00:00:00 2001 From: The Google Earth Engine Community Authors Date: Wed, 23 Oct 2024 14:20:06 -0700 Subject: [PATCH] Add missing [] around sources in image manifest examples PiperOrigin-RevId: 689100606 --- guides/linked/Earth_Engine_asset_from_cloud_geotiff.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guides/linked/Earth_Engine_asset_from_cloud_geotiff.ipynb b/guides/linked/Earth_Engine_asset_from_cloud_geotiff.ipynb index 3a75541ca..ee3cd5830 100644 --- a/guides/linked/Earth_Engine_asset_from_cloud_geotiff.ipynb +++ b/guides/linked/Earth_Engine_asset_from_cloud_geotiff.ipynb @@ -134,7 +134,7 @@ " 'imageManifest': {\n", " 'name': f'projects/{ee_project}/assets/cogdemo1',\n", " 'tilesets': [\n", - " { 'id': '0', 'sources': { 'uris': ['gs://ee-docs-demos/COG_demo.tif'] } }\n", + " { 'id': '0', 'sources': [ { 'uris': ['gs://ee-docs-demos/COG_demo.tif'] } ] }\n", " ],\n", " 'properties': {\n", " 'source': 'https://code.earthengine.google.com/d541cf8b268b2f9d8f834c255698201d'\n", @@ -178,8 +178,8 @@ " 'name': f'projects/{ee_project}/assets/cogdemo2',\n", " 'uriPrefix': 'gs://ee-docs-demos/external_image_demo/',\n", " 'tilesets': [\n", - " { 'id': '0', 'sources': { 'uris': ['b4b3b2.tif'] } },\n", - " { 'id': '1', 'sources': { 'uris': ['b5b6b7.tif'] } },\n", + " { 'id': '0', 'sources': [ { 'uris': ['b4b3b2.tif'] } ] },\n", + " { 'id': '1', 'sources': [ { 'uris': ['b5b6b7.tif'] } ] },\n", " ],\n", " 'bands': [\n", " { 'id': 'red', 'tilesetId': '0', 'tilesetBandIndex': 0 },\n",