Use passive voice throughout

This commit is contained in:
heyarne 2021-03-13 16:06:03 +01:00
commit 3e6e2dd09f
8 changed files with 29 additions and 29 deletions

View file

@ -9,8 +9,8 @@
"This notebook shows how to access the content of the products downloaded in [](01a-download-process.ipynb) and plot a true-color rendering. \n",
"While the products already contain a True-Color Image (TCI), this approach is useful for two reasons:\n",
"\n",
"1. It allows comparing the readings with a rendering provided by official sources, thereby allowing us to find errors\n",
"2. Generating a custom True-Color Image can be useful for further image manipulations, changing contrast or changing out single bands for others to highlight specific phenomena.\n",
"1. It allows comparing the custom rendering with a rendering provided by official sources, thereby providing a template that can be used to spot any errors.\n",
"2. Generating a custom True-Color Image can be useful for further image manipulations, changing contrast or changing out single bands for others to highlight phenomena which are more visible at certain wavelengths.\n",
"\n",
"First the shape of Berlin is created from data previously downloaded from OpenStreetMap:"
]
@ -108,7 +108,7 @@
"source": [
"## Previewing Downloaded Files\n",
"\n",
"There is a helper that, given a resolution and the band name, returns the correct file paths for us to use with the `rasterio` library.\n",
"There is a function that, given a resolution and the band name, returns the correct file paths to use with the `rasterio` library.\n",
"It contains code to deal with compressed or uncompressed products."
]
},
@ -173,7 +173,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Using the compressed zip-file, while slightly inconvenient, makes sense because it allows saving disk space and allows us to avoid the extra step of decompressing every single downloaded product.\n",
"Using the compressed zip-file, while slightly inconvenient, makes sense because it allows saving disk space and avoiding the extra step of decompressing every single downloaded product.\n",
"\n",
"There is a pre-rendered True-Color Image (\"TCI\") that can be plotted for an impression of the product's contents:"
]