Skip to content

Commit 0b34822

Browse files
committed
added kürschner et al to pubs
1 parent 39a7c7b commit 0b34822

23 files changed

+4536
-3560
lines changed

_posts/rastertemplate/rastertemplate.Rmd

+20-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ values(temp) <- 1 # set a dummy value for visualization purposes
5656
temp
5757
```
5858

59-
We load Berlin borders from the cloud to show the borders
59+
We load Berlin districts data set from our cloud to show the borders of berlin
6060

6161
```{r berlin borders}
6262
berlin <- d6geodata::get_geodata(data_name = "districs_berlin_2022_poly_03035_gpkg",
@@ -199,12 +199,30 @@ ext_tab <- terra::extract(x = temp_rast, # template raster as first input
199199
)
200200
```
201201

202-
As you can see, the largest part of the line lays within the purple area and
202+
As you already can see on the plot, the largest part of the line lays within the purple area (1). This function can be used in cases such as
203203

204204
```{r}
205205
table(ext_tab$layer)
206206
```
207207

208+
Additional example: Plotting data with `{tidyterra}`
209+
210+
```{r}
211+
library(tidyterra)
212+
213+
ggplot() +
214+
geom_spatraster(data = temp_rast)
215+
216+
217+
ggplot() +
218+
geom_spatraster(data = temp_rast) +
219+
scale_fill_whitebox_c(palette = "purple")
220+
```
221+
222+
223+
224+
225+
208226
## Summary {#summary}
209227

210228
You learned how to extend a raster and how to extract data from a raster by using `{sf}` and `{terra}`. Of course there are several ways to do this, but this the most convenient way!!!

_posts/rastertemplate/rastertemplate.html

+49-7
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
<!--/radix_placeholder_rmarkdown_metadata-->
119119

120120
<script type="text/json" id="radix-resource-manifest">
121-
{"type":"character","attributes":{},"value":["rastertemplate_files/anchor-4.2.2/anchor.min.js","rastertemplate_files/bowser-1.9.3/bowser.min.js","rastertemplate_files/distill-2.2.21/template.v2.js","rastertemplate_files/figure-html5/plot-1.png","rastertemplate_files/figure-html5/plot template-1.png","rastertemplate_files/figure-html5/template-1.png","rastertemplate_files/figure-html5/unnamed-chunk-2-1.png","rastertemplate_files/figure-html5/unnamed-chunk-3-1.png","rastertemplate_files/figure-html5/unnamed-chunk-4-1.png","rastertemplate_files/figure-html5/unnamed-chunk-5-1.png","rastertemplate_files/figure-html5/unnamed-chunk-6-1.png","rastertemplate_files/figure-html5/unnamed-chunk-7-1.png","rastertemplate_files/figure-html5/unnamed-chunk-8-1.png","rastertemplate_files/figure-html5/unnamed-chunk-9-1.png","rastertemplate_files/header-attrs-2.23/header-attrs.js","rastertemplate_files/header-attrs-2.24/header-attrs.js","rastertemplate_files/jquery-3.6.0/jquery-3.6.0.js","rastertemplate_files/jquery-3.6.0/jquery-3.6.0.min.js","rastertemplate_files/jquery-3.6.0/jquery-3.6.0.min.map","rastertemplate_files/popper-2.6.0/popper.min.js","rastertemplate_files/tippy-6.2.7/tippy-bundle.umd.min.js","rastertemplate_files/tippy-6.2.7/tippy-light-border.css","rastertemplate_files/tippy-6.2.7/tippy.css","rastertemplate_files/tippy-6.2.7/tippy.umd.min.js","rastertemplate_files/webcomponents-2.0.0/webcomponents.js"]}
121+
{"type":"character","attributes":{},"value":["rastertemplate_files/anchor-4.2.2/anchor.min.js","rastertemplate_files/bowser-1.9.3/bowser.min.js","rastertemplate_files/distill-2.2.21/template.v2.js","rastertemplate_files/figure-html5/plot-1.png","rastertemplate_files/figure-html5/plot template-1.png","rastertemplate_files/figure-html5/template-1.png","rastertemplate_files/figure-html5/unnamed-chunk-11-1.png","rastertemplate_files/figure-html5/unnamed-chunk-11-2.png","rastertemplate_files/figure-html5/unnamed-chunk-2-1.png","rastertemplate_files/figure-html5/unnamed-chunk-3-1.png","rastertemplate_files/figure-html5/unnamed-chunk-4-1.png","rastertemplate_files/figure-html5/unnamed-chunk-5-1.png","rastertemplate_files/figure-html5/unnamed-chunk-6-1.png","rastertemplate_files/figure-html5/unnamed-chunk-7-1.png","rastertemplate_files/figure-html5/unnamed-chunk-8-1.png","rastertemplate_files/figure-html5/unnamed-chunk-9-1.png","rastertemplate_files/header-attrs-2.23/header-attrs.js","rastertemplate_files/header-attrs-2.24/header-attrs.js","rastertemplate_files/jquery-3.6.0/jquery-3.6.0.js","rastertemplate_files/jquery-3.6.0/jquery-3.6.0.min.js","rastertemplate_files/jquery-3.6.0/jquery-3.6.0.min.map","rastertemplate_files/popper-2.6.0/popper.min.js","rastertemplate_files/tippy-6.2.7/tippy-bundle.umd.min.js","rastertemplate_files/tippy-6.2.7/tippy-light-border.css","rastertemplate_files/tippy-6.2.7/tippy.css","rastertemplate_files/tippy-6.2.7/tippy.umd.min.js","rastertemplate_files/webcomponents-2.0.0/webcomponents.js"]}
122122
</script>
123123
<!--radix_placeholder_navigation_in_header-->
124124
<!--/radix_placeholder_navigation_in_header-->
@@ -230,9 +230,21 @@
230230
display: none !important;
231231
}
232232

233+
hr.section-separator {
234+
border: none;
235+
border-top: 1px solid rgba(0, 0, 0, 0.1);
236+
margin: 0px;
237+
}
238+
239+
240+
d-byline {
241+
border-top: none;
242+
}
243+
233244
d-article {
234245
padding-top: 2.5rem;
235246
padding-bottom: 30px;
247+
border-top: none;
236248
}
237249

238250
d-appendix {
@@ -329,6 +341,11 @@
329341
font-size: 14px;
330342
}
331343

344+
/* tweak for Pandoc numbered line within distill */
345+
d-article pre.numberSource code > span {
346+
left: -2em;
347+
}
348+
332349
d-article pre {
333350
font-size: 14px;
334351
}
@@ -1088,6 +1105,12 @@
10881105
// create d-title
10891106
$('.d-title').changeElementType('d-title');
10901107

1108+
// separator
1109+
var separator = '<hr class="section-separator" style="clear: both"/>';
1110+
// prepend separator above appendix
1111+
$('.d-byline').before(separator);
1112+
$('.d-article').before(separator);
1113+
10911114
// create d-byline
10921115
var byline = $('<d-byline></d-byline>');
10931116
$('.d-byline').replaceWith(byline);
@@ -1165,8 +1188,9 @@
11651188
$('.distill-force-highlighting-css').parent().remove();
11661189

11671190
// remove empty line numbers inserted by pandoc when using a
1168-
// custom syntax highlighting theme
1169-
$('code.sourceCode a:empty').remove();
1191+
// custom syntax highlighting theme, except when numbering line
1192+
// in code chunk
1193+
$('pre:not(.numberLines) code.sourceCode a:empty').remove();
11701194

11711195
// load distill framework
11721196
load_distill_framework();
@@ -1192,12 +1216,13 @@
11921216
// add orcid ids
11931217
$('.authors-affiliations').find('.author').each(function(i, el) {
11941218
var orcid_id = front_matter.authors[i].orcidID;
1219+
var author_name = front_matter.authors[i].author
11951220
if (orcid_id) {
11961221
var a = $('<a></a>');
11971222
a.attr('href', 'https://orcid.org/' + orcid_id);
11981223
var img = $('<img></img>');
11991224
img.addClass('orcid-id');
1200-
img.attr('alt', 'ORCID ID');
1225+
img.attr('alt', author_name ? 'ORCID ID for ' + author_name : 'ORCID ID');
12011226
img.attr('src','data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo1N0NEMjA4MDI1MjA2ODExOTk0QzkzNTEzRjZEQTg1NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozM0NDOEJGNEZGNTcxMUUxODdBOEVCODg2RjdCQ0QwOSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozM0NDOEJGM0ZGNTcxMUUxODdBOEVCODg2RjdCQ0QwOSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkZDN0YxMTc0MDcyMDY4MTE5NUZFRDc5MUM2MUUwNEREIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU3Q0QyMDgwMjUyMDY4MTE5OTRDOTM1MTNGNkRBODU3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+84NovQAAAR1JREFUeNpiZEADy85ZJgCpeCB2QJM6AMQLo4yOL0AWZETSqACk1gOxAQN+cAGIA4EGPQBxmJA0nwdpjjQ8xqArmczw5tMHXAaALDgP1QMxAGqzAAPxQACqh4ER6uf5MBlkm0X4EGayMfMw/Pr7Bd2gRBZogMFBrv01hisv5jLsv9nLAPIOMnjy8RDDyYctyAbFM2EJbRQw+aAWw/LzVgx7b+cwCHKqMhjJFCBLOzAR6+lXX84xnHjYyqAo5IUizkRCwIENQQckGSDGY4TVgAPEaraQr2a4/24bSuoExcJCfAEJihXkWDj3ZAKy9EJGaEo8T0QSxkjSwORsCAuDQCD+QILmD1A9kECEZgxDaEZhICIzGcIyEyOl2RkgwAAhkmC+eAm0TAAAAABJRU5ErkJggg==');
12021227
a.append(img);
12031228
$(this).append(a);
@@ -1475,7 +1500,7 @@
14751500
</script>
14761501

14771502
<!--/radix_placeholder_distill-->
1478-
<script src="rastertemplate_files/header-attrs-2.24/header-attrs.js"></script>
1503+
<script src="rastertemplate_files/header-attrs-2.25/header-attrs.js"></script>
14791504
<script src="rastertemplate_files/jquery-3.6.0/jquery-3.6.0.min.js"></script>
14801505
<script src="rastertemplate_files/popper-2.6.0/popper.min.js"></script>
14811506
<link href="rastertemplate_files/tippy-6.2.7/tippy.css" rel="stylesheet" />
@@ -1507,6 +1532,7 @@
15071532

15081533
<div class="d-title">
15091534
<h1>Raster Operations</h1>
1535+
15101536
<!--radix_placeholder_categories-->
15111537
<div class="dt-tags">
15121538
<div class="dt-tag">tutorial</div>
@@ -1589,7 +1615,7 @@ <h2 id="template">Raster Template</h2>
15891615
min value : 1
15901616
max value : 1 </code></pre>
15911617
</div>
1592-
<p>We load Berlin borders from the cloud to show the borders</p>
1618+
<p>We load Berlin districts data set from our cloud to show the borders of berlin</p>
15931619
<div class="layout-chunk" data-layout="l-body">
15941620
<div class="sourceCode">
15951621
<pre class="sourceCode r"><code class="sourceCode r"><span><span class='va'>berlin</span> <span class='op'>&lt;-</span> <span class='fu'>d6geodata</span><span class='fu'>::</span><span class='fu'><a href='https://rdrr.io/pkg/d6geodata/man/get_geodata.html'>get_geodata</a></span><span class='op'>(</span>data_name <span class='op'>=</span> <span class='st'>"districs_berlin_2022_poly_03035_gpkg"</span>,</span>
@@ -1745,7 +1771,7 @@ <h3 id="extraction-from-line">Extraction From Line</h3>
17451771
<span> <span class='op'>)</span></span></code></pre>
17461772
</div>
17471773
</div>
1748-
<p>As you can see, the largest part of the line lays within the purple area and</p>
1774+
<p>As you already can see on the plot, the largest part of the line lays within the purple area (1). This function can be used in cases such as</p>
17491775
<div class="layout-chunk" data-layout="l-body">
17501776
<div class="sourceCode">
17511777
<pre class="sourceCode r"><code class="sourceCode r"><span><span class='fu'><a href='https://rdrr.io/r/base/table.html'>table</a></span><span class='op'>(</span><span class='va'>ext_tab</span><span class='op'>$</span><span class='va'>layer</span><span class='op'>)</span></span></code></pre>
@@ -1754,6 +1780,22 @@ <h3 id="extraction-from-line">Extraction From Line</h3>
17541780
1 2
17551781
463 23 </code></pre>
17561782
</div>
1783+
<p>Additional example: Plotting data with <code>{tidyterra}</code></p>
1784+
<div class="layout-chunk" data-layout="l-body">
1785+
<div class="sourceCode">
1786+
<pre class="sourceCode r"><code class="sourceCode r"><span><span class='kw'><a href='https://rdrr.io/r/base/library.html'>library</a></span><span class='op'>(</span><span class='va'><a href='https://dieghernan.github.io/tidyterra/'>tidyterra</a></span><span class='op'>)</span></span>
1787+
<span></span>
1788+
<span><span class='fu'><a href='https://ggplot2.tidyverse.org/reference/ggplot.html'>ggplot</a></span><span class='op'>(</span><span class='op'>)</span> <span class='op'>+</span> </span>
1789+
<span> <span class='fu'><a href='https://dieghernan.github.io/tidyterra/reference/geom_spatraster.html'>geom_spatraster</a></span><span class='op'>(</span>data <span class='op'>=</span> <span class='va'>temp_rast</span><span class='op'>)</span> </span></code></pre>
1790+
</div>
1791+
<img src="rastertemplate_files/figure-html5/unnamed-chunk-11-1.png" width="624" />
1792+
<div class="sourceCode">
1793+
<pre class="sourceCode r"><code class="sourceCode r"><span><span class='fu'><a href='https://ggplot2.tidyverse.org/reference/ggplot.html'>ggplot</a></span><span class='op'>(</span><span class='op'>)</span> <span class='op'>+</span> </span>
1794+
<span> <span class='fu'><a href='https://dieghernan.github.io/tidyterra/reference/geom_spatraster.html'>geom_spatraster</a></span><span class='op'>(</span>data <span class='op'>=</span> <span class='va'>temp_rast</span><span class='op'>)</span> <span class='op'>+</span></span>
1795+
<span> <span class='fu'><a href='https://dieghernan.github.io/tidyterra/reference/scale_whitebox.html'>scale_fill_whitebox_c</a></span><span class='op'>(</span>palette <span class='op'>=</span> <span class='st'>"purple"</span><span class='op'>)</span></span></code></pre>
1796+
</div>
1797+
<p><img src="rastertemplate_files/figure-html5/unnamed-chunk-11-2.png" width="624" /></p>
1798+
</div>
17571799
<h2 id="summary">Summary</h2>
17581800
<p>You learned how to extend a raster and how to extract data from a raster by using <code>{sf}</code> and <code>{terra}</code>. Of course there are several ways to do this, but this the most convenient way!!!</p>
17591801
<div class="sourceCode" id="cb5"><pre class="sourceCode r distill-force-highlighting-css"><code class="sourceCode r"></code></pre></div>
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Pandoc 2.9 adds attributes on both header and div. We remove the former (to
2+
// be compatible with the behavior of Pandoc < 2.8).
3+
document.addEventListener('DOMContentLoaded', function(e) {
4+
var hs = document.querySelectorAll("div.section[class*='level'] > :first-child");
5+
var i, h, a;
6+
for (i = 0; i < hs.length; i++) {
7+
h = hs[i];
8+
if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6
9+
a = h.attributes;
10+
while (a.length > 0) h.removeAttribute(a[0].name);
11+
}
12+
});

docs/about.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2670,17 +2670,17 @@ <h3>${suggestion.title}</h3>
26702670
}</style>
26712671
<!--/radix_placeholder_distill-->
26722672
<script src="site_libs/header-attrs-2.25/header-attrs.js"></script>
2673-
<script src="site_libs/htmlwidgets-1.6.2/htmlwidgets.js"></script>
2673+
<script src="site_libs/htmlwidgets-1.6.4/htmlwidgets.js"></script>
26742674
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
26752675
<link href="site_libs/leaflet-1.3.1/leaflet.css" rel="stylesheet" />
26762676
<script src="site_libs/leaflet-1.3.1/leaflet.js"></script>
26772677
<link href="site_libs/leafletfix-1.0.0/leafletfix.css" rel="stylesheet" />
26782678
<script src="site_libs/proj4-2.6.2/proj4.min.js"></script>
26792679
<script src="site_libs/Proj4Leaflet-1.0.1/proj4leaflet.js"></script>
26802680
<link href="site_libs/rstudio_leaflet-1.3.1/rstudio_leaflet.css" rel="stylesheet" />
2681-
<script src="site_libs/leaflet-binding-2.2.0/leaflet.js"></script>
2681+
<script src="site_libs/leaflet-binding-2.2.1/leaflet.js"></script>
26822682
<script src="site_libs/leaflet-providers-2.0.0/leaflet-providers_2.0.0.js"></script>
2683-
<script src="site_libs/leaflet-providers-plugin-2.2.0/leaflet-providers-plugin.js"></script>
2683+
<script src="site_libs/leaflet-providers-plugin-2.2.1/leaflet-providers-plugin.js"></script>
26842684
<script src="site_libs/popper-2.6.0/popper.min.js"></script>
26852685
<link href="site_libs/tippy-6.2.7/tippy.css" rel="stylesheet" />
26862686
<link href="site_libs/tippy-6.2.7/tippy-light-border.css" rel="stylesheet" />
@@ -2791,8 +2791,8 @@ <h3 id="how-to-contact-us">How to contact us?</h3>
27912791
D-10315 Berlin, Germany</p>
27922792
<p><br></p>
27932793
<div class="layout-chunk" data-layout="l-screen-inset shaded">
2794-
<div class="leaflet html-widget html-fill-item-overflow-hidden html-fill-item" id="htmlwidget-8ae749dce83fa2392b69" style="width:624px;height:384px;"></div>
2795-
<script type="application/json" data-for="htmlwidget-8ae749dce83fa2392b69">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"setView":[[52.5062,13.5211],14,[]],"calls":[{"method":"addProviderTiles","args":["CartoDB.Voyager",null,"Default Map",{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addProviderTiles","args":[null,null,"Terrain Map",{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addProviderTiles","args":["CartoDB.DarkMatter",null,"Dark Map",{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,"OpenStreetMap",{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>, <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPopups","args":[52.50628618988399,13.52116715397431,"<b>Leibniz Institute for<br>Zoo and Wildlife Research<\/b>",null,null,{"maxWidth":300,"minWidth":50,"autoPan":true,"keepInView":false,"closeButton":false,"className":""}]},{"method":"addLayersControl","args":[["Default Map","Terrain Map","Dark Map","OpenStreetMap"],[],{"collapsed":false,"autoZIndex":true,"position":"topright"}]}],"limits":{"lat":[52.50628618988399,52.50628618988399],"lng":[13.52116715397431,13.52116715397431]}},"evals":[],"jsHooks":[]}</script>
2794+
<div class="leaflet html-widget html-fill-item" id="htmlwidget-c8d8db6c1f8e464ecb96" style="width:624px;height:384px;"></div>
2795+
<script type="application/json" data-for="htmlwidget-c8d8db6c1f8e464ecb96">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"setView":[[52.5062,13.5211],14,[]],"calls":[{"method":"addProviderTiles","args":["CartoDB.Voyager",null,"Default Map",{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addProviderTiles","args":[null,null,"Terrain Map",{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addProviderTiles","args":["CartoDB.DarkMatter",null,"Dark Map",{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,"OpenStreetMap",{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"&copy; <a href=\"https://openstreetmap.org/copyright/\">OpenStreetMap<\/a>, <a href=\"https://opendatacommons.org/licenses/odbl/\">ODbL<\/a>"}]},{"method":"addPopups","args":[52.50628618988399,13.52116715397431,"<b>Leibniz Institute for<br>Zoo and Wildlife Research<\/b>",null,null,{"maxWidth":300,"minWidth":50,"autoPan":true,"keepInView":false,"closeButton":false,"className":""}]},{"method":"addLayersControl","args":[["Default Map","Terrain Map","Dark Map","OpenStreetMap"],[],{"collapsed":false,"autoZIndex":true,"position":"topright"}]}],"limits":{"lat":[52.50628618988399,52.50628618988399],"lng":[13.52116715397431,13.52116715397431]}},"evals":[],"jsHooks":[]}</script>
27962796
</div>
27972797
<p><br><br></p>
27982798
<div class="sourceCode" id="cb1"><pre class="sourceCode r distill-force-highlighting-css"><code class="sourceCode r"></code></pre></div>

0 commit comments

Comments
 (0)