Skip to content

Commit

Permalink
Add missing [] around sources in image manifest examples
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 689100606
  • Loading branch information
The Google Earth Engine Community Authors authored and copybara-github committed Oct 23, 2024
1 parent 5785337 commit 1506955
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions guides/linked/Earth_Engine_asset_from_cloud_geotiff.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 1506955

Please sign in to comment.