diff --git a/docs/source/landsat/landsat_gee_2025.ipynb b/docs/source/landsat/landsat_gee_2025.ipynb
index 87206afe6ecbd8d431cf053bd18604305426ae0a..9a31af1cc2ce521e80d18daed711a75e99c68580 100644
--- a/docs/source/landsat/landsat_gee_2025.ipynb
+++ b/docs/source/landsat/landsat_gee_2025.ipynb
@@ -241,7 +241,7 @@
    "source": [
     "```js\n",
     "// Get projection of the original image\n",
-    "var projection = l8_filter.first().projection().getInfo()\n",
+    "var projection = l8_filter.first().select('SR_B4').projection().getInfo()\n",
     "\n",
     "// Export the image, specifying the CRS, transform, and region.\n",
     "Export.image.toDrive({\n",
diff --git a/docs/source/sentinel_2_gee/s2_gee_2025.ipynb b/docs/source/sentinel_2_gee/s2_gee_2025.ipynb
index 93ee84fc4f2fb34f3c8284c90f8987ad95d13180..3a6e309e4c23e6eca8f8a6cce5df3fcb517ac502 100644
--- a/docs/source/sentinel_2_gee/s2_gee_2025.ipynb
+++ b/docs/source/sentinel_2_gee/s2_gee_2025.ipynb
@@ -163,7 +163,7 @@
     "\n",
     "```js\n",
     "// Get projection of the original image\n",
-    "var projection = s2_filter.first().projection().getInfo()\n",
+    "var projection = s2_filter.first().select('B2').projection().getInfo()\n",
     "\n",
     "// Export the image, specifying the CRS, transform, and region.\n",
     "Export.image.toDrive({\n",