Skip to content

Commit bf2c07f

Browse files
committed
Update README and fix typos
1 parent 0f69eb4 commit bf2c07f

File tree

10 files changed

+30
-34
lines changed

10 files changed

+30
-34
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ the necessary skills to support scalable and reproducible research.
3030

3131
## Authors
3232

33-
[Wolfgang Wagner](@wagner-wolfgang), [Martin Schobben](@martinschobben),
34-
[Nikolas Pikall](@npikall), [Joseph Wagner](@wagnerjoseph), [Davide Festa](@maybedave),
35-
[Felix David Reuß](@FelixReuss), [Luka Jovic](@lukojovic)
33+
[Wolfgang Wagner](https://github.com/wagner-wolfgang), [Martin Schobben](https://github.com/martinschobben),
34+
[Nikolas Pikall](https://github.com/npikall), [Joseph Wagner](https://github.com/wagnerjoseph), [Davide Festa](https://github.com/maybedave),
35+
[Felix David Reuß](https://github.com/FelixReuss), [Luka Jovic](https://github.com/lukojovic)
3636

3737
### Contributors
3838

39-
<a href="https://github.com/TUW-GEO/eo-datascience-cookbook/graphs/contributors">
39+
<a href="https://github.com/ProjectPythia/eo-datascience-cookbook/graphs/contributors">
4040
<img src="https://contrib.rocks/image?repo=ProjectPythia/eo-datascience-cookbook" />
4141
</a>
4242

@@ -92,7 +92,7 @@ Jupyter](https://foundations.projectpythia.org/foundations/getting-started-jupyt
9292
If you are interested in running this material locally on your computer, you will
9393
need to follow this workflow:
9494

95-
1. Clone the `https://github.com/TUW-GEO/eo-datascience-cookbook` repository:
95+
1. Clone the `https://github.com/ProjectPythia/eo-datascience-cookbook` repository:
9696

9797
```bash
9898
git clone https://github.com/TUW-GEO/eo-datascience-cookbook

notebooks/courses/microwave-remote-sensing/01_in_class_exercise.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"id": "8",
9898
"metadata": {},
9999
"source": [
100-
"Each collection has multiple items. An item is one spatio-temporal instance the collection, for instance a satellite image. If items are needed for a specific timeframe or for a specific region of interest, we can define this as a query.\n"
100+
"Each collection has multiple items. An item is one spatio-temporal instance in the collection, for instance a satellite image. If items are needed for a specific timeframe or for a specific region of interest, we can define this as a query."
101101
]
102102
},
103103
{
@@ -173,7 +173,7 @@
173173
"id": "14",
174174
"metadata": {},
175175
"source": [
176-
"Using our previously loaded STAC catalog, we can now search for items full-filling our query. In this example we are using the bounding box. If we want to use an area of interest specified in the geojson format - one hast to use the intersects parameter as documented in the comment below.\n"
176+
"Using our previously loaded STAC catalog, we can now search for items fulfilling our query. In this example we are using the bounding box. If we want to use an area of interest specified in the geojson format - one has to use the intersects parameter as documented in the comment below."
177177
]
178178
},
179179
{
@@ -483,9 +483,9 @@
483483
],
484484
"metadata": {
485485
"kernelspec": {
486-
"display_name": "microwave-remote-sensing",
486+
"display_name": "Python 3 (ipykernel)",
487487
"language": "python",
488-
"name": "microwave-remote-sensing"
488+
"name": "python3"
489489
},
490490
"language_info": {
491491
"codemirror_mode": {

notebooks/courses/microwave-remote-sensing/02_in_class_exercise.ipynb

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,7 @@
139139
"cell_type": "code",
140140
"execution_count": null,
141141
"id": "8",
142-
"metadata": {
143-
"jupyter": {
144-
"source_hidden": true
145-
}
146-
},
142+
"metadata": {},
147143
"outputs": [],
148144
"source": [
149145
"aoi = subset.isel(time=0, x=slice(0, 500), y=slice(0, 500))\n",
@@ -201,7 +197,7 @@
201197
"id": "9",
202198
"metadata": {},
203199
"source": [
204-
"*Figure 1: Visually comparing $\\sigma^0$ on a logarithmic and linear scale (left column). In addition, the benefit of using the robust plotting method is shown (middle column). The robust argument uses the 2^nd^ and 98^th^ percentiles of the data to compute the color limits to eliminate washing out the plot due to data outliers.*\n",
200+
"*Figure 1: Visually comparing $\\sigma^0$ on a logarithmic and linear scale (left column). In addition, the benefit of using the robust plotting method is shown (middle column). The robust argument uses the 2<sup>nd</sup> and 98<sup>th</sup> percentiles of the data to compute the color limits to eliminate washing out the plot due to data outliers.*\n",
205201
"\n",
206202
"In the plot above you can see the difference between the two scales. The values in dB are more evenly distributed and are therefore easier to plot. The values in linear scale are more spread out and are therefore harder to interpret.\n",
207203
"This is why we use the dB scale for plotting/visualization.\n",
@@ -431,9 +427,9 @@
431427
],
432428
"metadata": {
433429
"kernelspec": {
434-
"display_name": "microwave-remote-sensing",
430+
"display_name": "Python 3 (ipykernel)",
435431
"language": "python",
436-
"name": "microwave-remote-sensing"
432+
"name": "python3"
437433
},
438434
"language_info": {
439435
"codemirror_mode": {

notebooks/courses/microwave-remote-sensing/03_in_class_exercise.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@
265265
],
266266
"metadata": {
267267
"kernelspec": {
268-
"display_name": "microwave-remote-sensing",
268+
"display_name": "Python 3 (ipykernel)",
269269
"language": "python",
270-
"name": "microwave-remote-sensing"
270+
"name": "python3"
271271
},
272272
"language_info": {
273273
"codemirror_mode": {

notebooks/courses/microwave-remote-sensing/04_in_class_exercise.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,9 +484,9 @@
484484
],
485485
"metadata": {
486486
"kernelspec": {
487-
"display_name": "microwave-remote-sensing",
487+
"display_name": "Python 3 (ipykernel)",
488488
"language": "python",
489-
"name": "microwave-remote-sensing"
489+
"name": "python3"
490490
},
491491
"language_info": {
492492
"codemirror_mode": {

notebooks/courses/microwave-remote-sensing/05_in_class_exercise.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@
234234
],
235235
"metadata": {
236236
"kernelspec": {
237-
"display_name": "microwave-remote-sensing",
237+
"display_name": "Python 3 (ipykernel)",
238238
"language": "python",
239-
"name": "microwave-remote-sensing"
239+
"name": "python3"
240240
},
241241
"language_info": {
242242
"codemirror_mode": {

notebooks/courses/microwave-remote-sensing/06_in_class_exercise.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,9 +345,9 @@
345345
],
346346
"metadata": {
347347
"kernelspec": {
348-
"display_name": "microwave-remote-sensing",
348+
"display_name": "Python 3 (ipykernel)",
349349
"language": "python",
350-
"name": "microwave-remote-sensing"
350+
"name": "python3"
351351
},
352352
"language_info": {
353353
"codemirror_mode": {

notebooks/courses/microwave-remote-sensing/08_in_class_exercise.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
"\n",
181181
"$$γ = γ_{proc}*γ_{geom}*γ_{vol}*γ_{SNR}*γ_{temp}$$\n",
182182
"\n",
183-
"where $$γ_{proc}$$ refers to inaccuracies in the processing (e.g., coregistration errors), $$γ_{geom}$$ refers to the baseline decorrelation (different position of satellites during the two acquisitions), $$γ_{vol}$$ refers to volume decorrelation (vegetation related), $$γ_{SNR}$$ refers to the radar instrument thermal noise and $$γ_{temp}$$ refers to the decorrelation caused by change of position of the objects in the scene during the time interval of the images acquisitions (e.g., plant growth, wind-induced movements or ground deformation due to earthquakes, landslides).\n",
183+
"where $γ_{proc}$ refers to inaccuracies in the processing (e.g., coregistration errors), $γ_{geom}$ refers to the baseline decorrelation (different position of satellites during the two acquisitions), $γ_{vol}$ refers to volume decorrelation (vegetation related), $γ_{SNR}$ refers to the radar instrument thermal noise and $γ_{temp}$ refers to the decorrelation caused by change of position of the objects in the scene during the time interval of the images acquisitions (e.g., plant growth, wind-induced movements or ground deformation due to earthquakes, landslides).\n",
184184
"\n",
185185
"Therefore, we can conclude that interferometric accuracy is sensitive to many processes, hence isolating the ground deformation signal involves several operations. On the other hand, interferometric coherence sensitivity could be exploited to track and map phenomena that cause its degradation (e.g., vegetation features, and water content).\n"
186186
]
@@ -381,9 +381,9 @@
381381
],
382382
"metadata": {
383383
"kernelspec": {
384-
"display_name": "microwave-remote-sensing",
384+
"display_name": "Python 3 (ipykernel)",
385385
"language": "python",
386-
"name": "microwave-remote-sensing"
386+
"name": "python3"
387387
},
388388
"language_info": {
389389
"codemirror_mode": {

notebooks/templates/classification.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -811,9 +811,9 @@
811811
],
812812
"metadata": {
813813
"kernelspec": {
814-
"display_name": "classification",
814+
"display_name": "Python 3 (ipykernel)",
815815
"language": "python",
816-
"name": "classification"
816+
"name": "python3"
817817
},
818818
"language_info": {
819819
"codemirror_mode": {
@@ -825,7 +825,7 @@
825825
"name": "python",
826826
"nbconvert_exporter": "python",
827827
"pygments_lexer": "ipython3",
828-
"version": "3.12.8"
828+
"version": "3.12.9"
829829
}
830830
},
831831
"nbformat": 4,

notebooks/tutorials/floodmapping.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -610,9 +610,9 @@
610610
],
611611
"metadata": {
612612
"kernelspec": {
613-
"display_name": "floodmapping",
613+
"display_name": "Python 3 (ipykernel)",
614614
"language": "python",
615-
"name": "floodmapping"
615+
"name": "python3"
616616
},
617617
"language_info": {
618618
"codemirror_mode": {
@@ -624,7 +624,7 @@
624624
"name": "python",
625625
"nbconvert_exporter": "python",
626626
"pygments_lexer": "ipython3",
627-
"version": "3.12.8"
627+
"version": "3.12.9"
628628
}
629629
},
630630
"nbformat": 4,

0 commit comments

Comments
 (0)