<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Claus Haslauer's Website</title><link href="https://www.claus-haslauer.de/" rel="alternate"/><link href="https://www.claus-haslauer.de/feeds/all.atom.xml" rel="self"/><id>https://www.claus-haslauer.de/</id><updated>2026-01-23T17:50:07.088472+01:00</updated><entry><title>Nanopixel Programming</title><link href="https://www.claus-haslauer.de/Nanopixel,%20python,%20colorful%20lights.html" rel="alternate"/><published>2026-01-23T17:50:07.088472+01:00</published><updated>2025-12-31T11:07:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2026-01-23:/Nanopixel, python, colorful lights.html</id><summary type="html">&lt;p&gt;picking up the new kid on the block: four-part singing. What can we learn from the monks in St.&amp;nbsp;Gallen?&lt;/p&gt;</summary><content type="html">&lt;p&gt;With good intentions for ~Christmas~ our upcoming &amp;#8220;Rainbow&amp;#8221; project, I bought a &lt;a href="https://www.berrybase.de/en/adafruit-12mm-diffuse-thin-digital-rgb-led-pixel-strand-of-25?srsltid=AfmBOorEbchmwN7pkotycAA0bx2FmjInpKA0F4iBzgphC3qz--NRGHUE"&gt;Adafruit 12mm Diffuse Thin Digital &lt;span class="caps"&gt;RGB&lt;/span&gt; &lt;span class="caps"&gt;LED&lt;/span&gt; Pixel (strand of 25)&lt;/a&gt;. I wasn&amp;#8217;t sure where to start, it took a bit longer than I had anticipated (d&amp;#8217;oh). And today I finally found some time to sit down. What did I&amp;nbsp;learn?&lt;/p&gt;
&lt;p&gt;Most importantly, it works well with &lt;strong&gt;&lt;code&gt;adafruit_ws2801&lt;/code&gt;&lt;/strong&gt;. &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I did search quite a bit, but the &lt;a href="https://learn.adafruit.com/12mm-led-pixels/overview"&gt;adafruit overview&lt;/a&gt; turned out to be pretty great! This means I ended up using CircuitPython and not micropython. I am too much of a newbie to understand what that really&amp;nbsp;means.&lt;/li&gt;
&lt;li&gt;I did not spend enough time with the Raspberry 4 I started with. Now it works on a Raspery Pico (old version, no&amp;nbsp;&amp;#8220;2&amp;#8221;).&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The wiring that ended up working for me, is very similar to the one &lt;a href="https://cdn-learn.adafruit.com/assets/assets/000/083/362/original/led_pixels_circuitpython-software-wiring_bb.jpg?1572636541"&gt;displayed here&lt;/a&gt;, including the power connection, except the pins on the pico are connected like&amp;nbsp;this:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;position&lt;/th&gt;
&lt;th&gt;cable color&lt;/th&gt;
&lt;th&gt;&lt;span class="caps"&gt;ID&lt;/span&gt;&lt;/th&gt;
&lt;th&gt;corresponding code&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;green&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;GPIO0&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;oclock = board.GP0&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;yellow&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;GPIO1&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;odata = board.GP1&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;blue&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;GND&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I did install the &lt;a href="https://learn.adafruit.com/welcome-to-circuitpython/installing-circuitpython"&gt;latest version of Adafruit CircuitPython&lt;/a&gt;, but was able to transfer the 10.0.3 version&amp;#8217;s *.uf2 file to the pico&amp;#8217;s thumb drive (bootsel pushed while plugging usb cable in) only after I had tried unsuccessfully with two other&amp;nbsp;cables&amp;#8230;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Similarly, I was unable to transfer anything (single file or entire lib directory) from the &lt;a href="https://github.com/adafruit/Adafruit_CircuitPython_Bundle/releases"&gt;adafruit/Adafruit_CircuitPython_Bundle, version Dec 31, 2025; 10.x&lt;/a&gt;via the finder on &lt;span class="caps"&gt;OSX&lt;/span&gt;. It did work in terminal&amp;nbsp;using &lt;code&gt;cp&lt;/code&gt;. What year are we living&amp;nbsp;in?&lt;/li&gt;
&lt;li&gt;I did not install other python&amp;nbsp;versions&lt;/li&gt;
&lt;li&gt;adafruit&amp;#8217;s &lt;a href="https://learn.adafruit.com/12mm-led-pixels/circuitpython-usage#full-example-code-3045357"&gt;sample code&lt;/a&gt; does work, except for the adaptions to the &lt;span class="caps"&gt;GP0&lt;/span&gt; und &lt;span class="caps"&gt;GP1&lt;/span&gt; noted in the table&amp;nbsp;above.&lt;/li&gt;
&lt;li&gt;in CicuitPython, it seems the file that contains the code that is run when the pico is turned on but not connected to a computer, should not be&amp;nbsp;called &lt;code&gt;main.py&lt;/code&gt;,&amp;nbsp;but &lt;code&gt;code.py&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;To&amp;nbsp;Dos&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;in the appendix of the &amp;#8220;&lt;a href="https://datasheets.raspberrypi.com/pico/raspberry-pi-pico-python-sdk.pdf"&gt;Raspberry Pi Pico-series Python &lt;span class="caps"&gt;SDK&lt;/span&gt;&lt;/a&gt;&amp;#8221; (p.45), there is a Section including code sample for &amp;#8220;Using &lt;span class="caps"&gt;PIO&lt;/span&gt; to drive a set of NeoPixel Ring (&lt;span class="caps"&gt;WS2812&lt;/span&gt; LEDs)&amp;#8221;, which seems a bit more hard coded, and I am curious how that would transfer to a &lt;span class="caps"&gt;WS2801&lt;/span&gt;.&lt;/li&gt;
&lt;li&gt;I did try to get some support from Claude in the process. Let&amp;#8217;s say with some mixed results. For the wiring it was not of any help, essentially I used the interactiv prompt in Thonny to figure out what&amp;nbsp;attributes &lt;code&gt;board&lt;/code&gt; has, and&amp;nbsp;tried &lt;code&gt;D0&lt;/code&gt; and &lt;code&gt;D1&lt;/code&gt;, eventually in the correct order. Claude did provide some sample codes that look good, but haven&amp;#8217;t tested those yet. Also, at the moment I am running this with Sonnet 4.5. I&amp;#8217;ve &lt;a href="https://leancrew.com/all-this/2026/01/proofreading-with-the-claude-api/"&gt;read some good feedback for Opus 4.5&lt;/a&gt; has some good feedback. Maybe I should also &lt;a href="https://taoofmac.com/space/notes/2025/12/31/1830"&gt;consider GitHub CoPilot&lt;/a&gt;. Keep in mind, these tools have their issues with&amp;nbsp;language&lt;/li&gt;
&lt;/ul&gt;
&lt;figure align="center"&gt;
    &lt;img src='./images/2026_01_LanguageAI.jpg' /&gt;
    &lt;figcaption&gt;Frequencies of words used change after release of Chat-&lt;span class="caps"&gt;GPT&lt;/span&gt;; [source: bsky](https://bsky.app/profile/rosiecollington.bsky.social/post/3lykfqmzd5c2b)).&lt;/figcaption&gt;
&lt;/figure&gt;

&lt;ul&gt;
&lt;li&gt;while &lt;a href="[Raspberry Pi: WS2801 RGB LED Streifen anschließen und steuern](https://tutorials-raspberrypi.de/raspberry-pi-ws2801-rgb-led-streifen-anschliessen-steuern/)"&gt;this might be interesting for my &lt;span class="caps"&gt;WS2801&lt;/span&gt;&lt;/a&gt;, unfortunately, it does &lt;a href="https://pypi.org/project/Pi5Neo/"&gt;not seem to be a neopixel 5&lt;/a&gt;).&lt;/li&gt;
&lt;/ul&gt;</content><category term="Claus"/><category term="music"/><category term="management"/></entry><entry><title>New Things</title><link href="https://www.claus-haslauer.de/New%20Things.html" rel="alternate"/><published>2026-01-02T09:56:39.656855+01:00</published><updated>2025-12-31T11:07:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2026-01-02:/New Things.html</id><summary type="html">&lt;p&gt;picking up the new kid on the block: four-part singing. What can we learn from the monks in St.&amp;nbsp;Gallen?&lt;/p&gt;</summary><content type="html">&lt;p&gt;monks in the monastery of St. Gallen have been singing for a long time. The lead singer even developed a notation so he could remember the songs. Not only the text, but the relative movement of the melody, however not absolute notes. This was all in a single tune&amp;nbsp;(mono-phonic).&lt;/p&gt;
&lt;p&gt;When we visited St. Gallen this summer, we also saw the first notation of polyphonic sheet music (see picture from movie below). It looked very nicely. Each voice had its quarter on a double-page. Our guide told us how the monks were resistant against picking up the &amp;#8220;new way&amp;#8221; of singing. It was even considered&amp;nbsp;bad.&lt;/p&gt;
&lt;figure align="center"&gt;
    &lt;img src='./images/2025_12_vierstimmig_StGallen.jpeg' /&gt;
    &lt;figcaption&gt;First four-part sheet music used in the monastery St. Gallen ([source](https://www.youtube.com/watch?v=zb6FXynLhzs)).&lt;/figcaption&gt;
&lt;/figure&gt;

&lt;p&gt;Supposedly, it took one hundred years for the monks to pick up four-part polyphonic&amp;nbsp;singing.&lt;/p&gt;
&lt;p&gt;I am not a musical expert but there are some awesome polyphonic tunes,&amp;nbsp;but&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the beginning of Ronja Räubertochter: &lt;a href="https://www.youtube.com/watch?v=ulzwtuuGnOM"&gt;Ronja Räubertochter / Ronja Rövardotter (1984) Soundtrack: Intro -&amp;nbsp;YouTube&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;I have fond memories of a concert of the Smashing Pumpkins about in 2007 in Colmar, when the audience sang along in six-way&amp;nbsp;singing&lt;/li&gt;
&lt;li&gt;The &lt;a href="https://de.wikipedia.org/wiki/Paghjella"&gt;Paghjella&lt;/a&gt;, the traditional polyphonic singing in Corse, which according to Wikipedia has been developing from the Gregorian&amp;nbsp;chants   &lt;/li&gt;
&lt;/ul&gt;</content><category term="Claus"/><category term="music"/><category term="management"/></entry><entry><title>The Köln Concert</title><link href="https://www.claus-haslauer.de/The%20K%C3%B6ln%20Concert.html" rel="alternate"/><published>2025-12-30T10:28:50.364802+01:00</published><updated>2025-12-25T21:07:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2025-12-30:/The Köln Concert.html</id><summary type="html">&lt;p&gt;Bösendorfer 290 Imperial or out of tune baby grand piano – it doesn&amp;#8217;t&amp;nbsp;matter&lt;/p&gt;</summary><content type="html">&lt;p&gt;I heard about this Jazz story only yesterday. It&amp;#8217;s also a great Christmas story. On 24-January-1975, the young pianist Keith Jarrett was to play in the opera house in Cologne. The concert was organized by the 18-year-old concert promoter Vera Brandes, sold out, and about to start at 11:30pm. Things have started to go off the rails at least from early afternoon on. The pianist arrived by car from an earlier concert in Switzerland, was tired, hungry, and felt under the weather. His food did not arrive on time. Even worse, only later that Friday evening, he realized that the piano on stage was not the concert piano he had asked for, but a shabby, out of tune mini piano used for rehearsals. Some tuners managed to improve its condition a bit. Note it was Friday evening, and no cell phones existed in 1975. Jarrett was supposedly already back in his car, ready to leave after announcing he would not play, when Vera Brandes opened the passenger door and supposedly said something like: &amp;#8220;please play, otherwise I am done&amp;#8221;. &lt;a href="https://www.oper.koeln/de/blog/50-years-koln-concert/25"&gt;Jarrett&amp;#8217;s answer&lt;/a&gt; is somewhat legendary: &amp;#8220;&lt;em&gt;Okay, I’ll play. But never forget – just for you!&lt;/em&gt;&amp;#8221;. The tone-engineers had already setup the recording equipment, and &lt;a href="https://www.allmusic.com/album/the-köln-concert-mw0000188364"&gt;started to record anyways&lt;/a&gt;. They did not expect a great recording with that piano. Were they ever wrong. It turned out to be the most sold Jazz-Solo recording and the most sold piano solo recording. It is known now as &amp;#8220;&lt;a href="https://en.wikipedia.org/wiki/The_Köln_Concert"&gt;The Köln Concert&lt;/a&gt;&amp;#8221;. Jarrett improvised around the notes G D C G A D, which supposedly form the melody of the bell that announces the beginning of a concert in the Köln opera&amp;nbsp;house. &lt;/p&gt;
&lt;p&gt;Why is this a great christmas story? &amp;#8212; The tools are only secondary. If you are in the zone, interesting things will&amp;nbsp;emerge.&lt;/p&gt;
&lt;figure align="center"&gt;
    &lt;img src='./images/KeithJarrettConcert.jpeg' alt='poster advertising the Jarrett Cologne Concert' /&gt;
    &lt;figcaption&gt;Poster advertising the Jarrett Cologne Concert.&lt;/figcaption&gt;
&lt;/figure&gt;</content><category term="Claus"/><category term="story"/></entry><entry><title>EGU26 Geostatistics Session</title><link href="https://www.claus-haslauer.de/EGU26%20geostatistics.html" rel="alternate"/><published>2025-12-26T10:58:32.815794+01:00</published><updated>2025-12-26T11:07:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2025-12-26:/EGU26 geostatistics.html</id><summary type="html">&lt;p&gt;Invitation to submit to &lt;span class="caps"&gt;EGU26&lt;/span&gt; geostatistics&amp;nbsp;session&lt;/p&gt;</summary><content type="html">&lt;p&gt;We invite submissions to our &lt;strong&gt;&lt;span class="caps"&gt;EGU26&lt;/span&gt; session &lt;span class="caps"&gt;HS3&lt;/span&gt;.4&lt;/strong&gt;: &lt;strong&gt;Advanced Geostatistical Methods and Uncertainty Analysis&lt;/strong&gt; in Hydrological and Environmental&amp;nbsp;Sciences&lt;/p&gt;
&lt;p&gt;Abstract submission is possible until 15 January&amp;nbsp;2026.  &lt;/p&gt;
&lt;p&gt;For details see: &lt;a href="https://www.egu26.eu/session/56817"&gt;https://www.egu26.eu/session/56817&lt;/a&gt;  &lt;/p&gt;
&lt;p&gt;Download &lt;a href="./downloads/EGU26_Geostatistics_Session.pdf"&gt;&lt;span class="caps"&gt;PDF&lt;/span&gt;-poster&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Convenors: Claus Haslauer, Mathieu Gravey, Emmanouil Varouchakis, Carolina&amp;nbsp;Guardiola-Albert&lt;/p&gt;
&lt;figure align="center"&gt;
    &lt;img src='./downloads/EGU26_Geostatistics_Session.jpg' alt='Advertisement for EGU26 geostatistics session' /&gt;
    &lt;figcaption&gt;Poster for &lt;span class="caps"&gt;EGU26&lt;/span&gt; Geostatistics Session.&lt;/figcaption&gt;
&lt;/figure&gt;

&lt;p&gt;In recent years, the field of geostatistics has seen significant advancements. These methods are fundamental in understanding spatially and temporally variable hydrological and environmental processes, which are vital for risk assessment, input for other models, and management of extreme events like floods and droughts.
This session aims to provide a comprehensive platform for researchers to present and discuss innovative applications and methodologies of geostatistics and spatio-temporal analysis in hydrology and related fields. The focus will be on traditional approaches and the assessment of uncertainties, whereas Machine Learning approaches have their specific and other dedicated&amp;nbsp;sessions.&lt;/p&gt;
&lt;p&gt;We invite contributions that address the following topics (but not limited&amp;nbsp;to):&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Spatio-temporal Analysis of Hydrological and Environmental&amp;nbsp;Anomalies:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Methods for detecting and analyzing large-scale anomalies in hydrological and environmental&amp;nbsp;data.&lt;/li&gt;
&lt;li&gt;Techniques to manage and predict extreme events based on spatio-temporal&amp;nbsp;patterns.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Innovative Geostatistical&amp;nbsp;Applications:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Advances in spatial and spatio-temporal&amp;nbsp;modeling.&lt;/li&gt;
&lt;li&gt;Applications in spatial reasoning and data&amp;nbsp;mining.&lt;/li&gt;
&lt;li&gt;Reduced computational complexity methods suitable for large-scale&amp;nbsp;problems.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Geostatistical Methods for Hydrological&amp;nbsp;Extremes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Techniques for analyzing the dynamics of natural events, such as floods, droughts, and morphological&amp;nbsp;changes.&lt;/li&gt;
&lt;li&gt;Utilization of copulas and other statistical tools to identify spatio-temporal&amp;nbsp;relationships.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Optimization and Generalization of Spatial&amp;nbsp;Models:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Approaches to optimize monitoring networks and spatial&amp;nbsp;models.&lt;/li&gt;
&lt;li&gt;Techniques for predicting regions with limited or unobserved data e.g., using physical-based model simulations or using secondary&amp;nbsp;variables.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Uncertainty Assessment in&amp;nbsp;Geostatistics:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Methods for characterizing and managing uncertainties in spatial&amp;nbsp;data.&lt;/li&gt;
&lt;li&gt;Applications of Bayesian Geostatistical Analysis and Generalized Extreme Value&amp;nbsp;Distributions.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Spatial and Spatio-temporal Covariance&amp;nbsp;Analysis:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Exploring links between hydrological variables and extremes through covariance&amp;nbsp;analysis.&lt;/li&gt;
&lt;li&gt;Applications of Gaussian and non-Gaussian models in spatial analysis and&amp;nbsp;prediction.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;</content><category term="Claus"/><category term="geostatistics"/><category term="EGU"/><category term="EGU26"/></entry><entry><title>resurrection</title><link href="resurrection:%20new%20pelican,%20help%20of%20Claude.html" rel="alternate"/><published>2025-12-21T21:21:59.326980+01:00</published><updated>2025-12-21T21:07:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:None,2025-12-21: new pelican, help of Claude.html</id><summary type="html">&lt;p&gt;It took my a long time, but I did install a fresh version of pelican, no errors, and correct display, thanks to&amp;nbsp;Claude&lt;/p&gt;</summary><content type="html">&lt;p&gt;I finally installed from scratch the latest pelican version. I had this weird problem that&amp;nbsp;the &lt;code&gt;http://...&lt;/code&gt; version did get displayed correctly whereas&amp;nbsp;the &lt;code&gt;https://...&lt;/code&gt; version of my site did not get displayed correctly (without proper css). I had googled and did not want to bother, but it led to me doing rather other things then paying attention to this site. Now, today I setup Claude, and for an interesting twist of fate, the first question I asked&amp;nbsp;was &lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="nv"&gt;with&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;&amp;quot;http&amp;quot;&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;my&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;own&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;website&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;on&lt;/span&gt;,&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;pelican&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;appears&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;correctly&lt;/span&gt;,&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;if&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;I&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;use&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;&amp;quot;https&amp;quot;&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;it&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;seems&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;like&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;the&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;wrong&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;stylesheet&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;is&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;used&lt;/span&gt;.&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;How&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="k"&gt;do&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;I&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;tell&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;it&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;to&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;use&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;the&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;correct&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;stylesheet&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;every&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nv"&gt;time&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;You will have noticed that I am a novice at writing prompts. However, it gave me the response that I should use something like a relative &lt;span class="caps"&gt;URL&lt;/span&gt;&amp;nbsp;path&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;SITEURL = &amp;#39;//yourdomain.com&amp;#39;  # Note the // without http: or https:
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;This seemed so trivial and logical that I did not even bother to test, but I went straight to installing the latest pelican verision. It has the benefit of no more version conflict errors with python and the handling of themes and plugins seems improved. &lt;a href="https://www.claus-haslauer.de/archival digg: jupyter notebooks.html"&gt;Over a year ago&lt;/a&gt;, I declared I would stick with pelican. New development has been happening, albeit at slow pace. Well, I am still here&amp;nbsp;;-)&lt;/p&gt;</content><category term="Claus"/><category term="story"/></entry><entry><title>archival digg</title><link href="https://www.claus-haslauer.de/archival%20digg:%20jupyter%20notebooks.html" rel="alternate"/><published>2024-09-09T21:44:19.905437+02:00</published><updated>2024-09-09T17:07:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2024-09-09:/archival digg: jupyter notebooks.html</id><summary type="html">&lt;p&gt;updated pelican; nbconvert not working anymore; here is the archive (highlight: Obstgarten, the game; distance&amp;nbsp;matrices)&lt;/p&gt;</summary><content type="html">&lt;p&gt;I updated this site to the &lt;a href="https://docs.getpelican.com/en/latest/publish.html"&gt;latest version of pelican&lt;/a&gt; (4.9.1). The old setup I had, to convert jupyter notebook files to html is not working anymore, because of something in nbconvert (see &lt;a href="https://github.com/BIG-MAP/PRISMA/issues/2"&gt;here&lt;/a&gt; and &lt;a href="https://github.com/jupyter/nbconvert/issues/1725"&gt;here&lt;/a&gt;). I could have tried &lt;a href="https://www.mkdocs.org"&gt;mkdocs&lt;/a&gt; and &lt;a href="https://github.com/danielfrg/mkdocs-jupyter"&gt;mkdocs-jupyter&lt;/a&gt;. I could have attempted something &lt;a href="https://brettterpstra.com/2024/09/08/welcome-to-the-lab-4-dot-0/"&gt;slick like Brett Terpstra&lt;/a&gt;. However, I decided that this webpage is not hosting too many jupyter notebooks (for now). So I stuck with plain pelican for now. Maybe this is not for eternity. But what&amp;nbsp;is?&lt;/p&gt;
&lt;p&gt;The html renders of the notebooks can be found&amp;nbsp;here:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="./downloads/archive_nbconvert/Analyzing the performance of the Ice Tigers before tonight's game 5 against the Cologne Sharks with Bayes.html"&gt;Analyzing the performance of the Ice Tigers before tonight&amp;#8217;s game 5 against the Cologne Sharks with&amp;nbsp;Bayes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="./downloads/archive_nbconvert/how-to-filter-a-list-in-python.html"&gt;how-to-filter-a-list-in-python&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="./downloads/archive_nbconvert/performance_analysis_of_various_routines_to_calculate_distance_matrices.html"&gt;performance analysis of various routines to calculate distance&amp;nbsp;matrices&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="./downloads/archive_nbconvert/understanding-obstgarten-the-game.html"&gt;understanding-obstgarten-the-game&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="./downloads/archive_nbconvert/my first jupyter notebook with pelican.html"&gt;my first jupyter notebook with&amp;nbsp;pelican&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In the meantime, the novel version of pelican compiles reasonably fast this site, so I will stick with it for a little while longer&amp;nbsp;;-)&lt;/p&gt;</content><category term="Claus"/><category term="data"/><category term="statistics"/></entry><entry><title>low order moments</title><link href="https://www.claus-haslauer.de/low%20oder%20moments%20are%20not%20unique.html" rel="alternate"/><published>2022-01-24T09:12:00+01:00</published><updated>2022-01-24T09:12:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2022-01-24:/low oder moments are not unique.html</id><summary type="html">&lt;p&gt;animation shows that low order moments are not&amp;nbsp;unique&lt;/p&gt;</summary><content type="html">&lt;p&gt;It&amp;#8217;s not only that with a few parameter, one can model an elephant and wiggle its tail. It&amp;#8217;s also that lower moments are not unique and can model a&amp;nbsp;dinosaur!&lt;/p&gt;
&lt;video width="320" height="240" controls&gt;
  &lt;source src="./downloads/low_order_moments.mp4" type="video/mp4"&gt;
&lt;/video&gt;</content><category term="Claus"/><category term="data"/><category term="statistics"/></entry><entry><title>presentations at AGU2019</title><link href="https://www.claus-haslauer.de/presentations_AGU2019.html" rel="alternate"/><published>2019-12-03T17:12:00+01:00</published><updated>2019-12-03T17:12:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2019-12-03:/presentations_AGU2019.html</id><summary type="html">&lt;p&gt;my presentations at &lt;span class="caps"&gt;AGU201&lt;/span&gt; in San&amp;nbsp;Francisco&lt;/p&gt;</summary><content type="html">&lt;p&gt;The &lt;span class="caps"&gt;AGU&lt;/span&gt; Fall Meeting is back in San Francisco, I will be back in San Francisco. Looking forward to see you&amp;nbsp;there!&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Authors&lt;/th&gt;
&lt;th&gt;Title&lt;/th&gt;
&lt;th&gt;Date&lt;/th&gt;
&lt;th&gt;Time&lt;/th&gt;
&lt;th&gt;Location&lt;/th&gt;
&lt;th&gt;Session&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Samuel Scherrer&lt;/strong&gt;, Claus P Haslauer, Holger Class, Oliver Trötschler, Jürgen Braun, Norbert Klass&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm19/meetingapp.cgi/Paper/490031"&gt;&lt;span class="caps"&gt;H11K&lt;/span&gt;-1655: Heat Transport in the Shallow Subsurface (Numerically and Experimentally)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Monday, 9 December 2019&lt;/td&gt;
&lt;td&gt;8:00-12:20&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;H11K&lt;/span&gt;-1655&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm19/meetingapp.cgi/Session/71741"&gt;&lt;span class="caps"&gt;H11K&lt;/span&gt; - Developments in Geothermal Energy &lt;span class="caps"&gt;II&lt;/span&gt; Posters&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Bo Xiao&lt;/strong&gt;, Claus P Haslauer, Geoffrey C Bohling, András Bárdossy&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm19/meetingapp.cgi/Paper/505172"&gt;&lt;span class="caps"&gt;H21L&lt;/span&gt;-1914: Non-Gaussian Simulation: Including Multiple Types of Information at Non-colocated Locations&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Tuesday, 10 December 2019&lt;/td&gt;
&lt;td&gt;8:00-12:20&lt;/td&gt;
&lt;td&gt;154 &lt;span class="caps"&gt;AB&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm19/meetingapp.cgi/Session/76176"&gt;&lt;span class="caps"&gt;H21L&lt;/span&gt;: Heterogeneity, Upscaling, and Uncertainty Quantification in Subsurface Flow and Transport &lt;span class="caps"&gt;II&lt;/span&gt; Posters &lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Thomas Bierbaum&lt;/strong&gt;, Daniela Schmid, Norbert Klaas, Claus P Haslauer, Jürgen Braun, Frank Thomas Lange and Marco Scheurer&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm19/meetingapp.cgi/Paper/514194"&gt;&lt;span class="caps"&gt;H21I&lt;/span&gt;-1845: Testing &lt;span class="caps"&gt;PFAS&lt;/span&gt;-Immobilization&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Tuesday, 10 December 2019&lt;/td&gt;
&lt;td&gt;8:00-12:20&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;H21I&lt;/span&gt;-1845&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm19/meetingapp.cgi/Session/77393"&gt;&lt;span class="caps"&gt;H21I&lt;/span&gt; - Advances in Subsurface Contaminant Transport and Remediation: Addressing Current and Emerging Challenges &lt;span class="caps"&gt;IV&lt;/span&gt; Posters&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;</content><category term="Claus"/><category term="data"/><category term="statistics"/><category term="conference"/><category term="AGU2019"/></entry><entry><title>Still in the Yukon</title><link href="https://www.claus-haslauer.de/Yukon.html" rel="alternate"/><published>2019-11-08T09:50:00+01:00</published><updated>2019-11-08T09:50:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2019-11-08:/Yukon.html</id><summary type="html">&lt;p&gt;What has changed? - Still in the&amp;nbsp;Yukon!&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;a href="https://twitter.com/koehrsen_will/status/1188611047055343616"&gt;Will Koehrsen - @koehrsen_will&lt;/a&gt;: &lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Develop new algorithms as a PhD student:&amp;nbsp;$30k/year&lt;/p&gt;
&lt;p&gt;Use pre-built sklearn models as a data scientist:&amp;nbsp;$120k/year&lt;/p&gt;
&lt;p&gt;Build regression models in excel as a hedge fund analyst:&amp;nbsp;$200k/year&lt;/p&gt;
&lt;p&gt;Make pie charts as a &lt;span class="caps"&gt;CEO&lt;/span&gt;: $14&amp;nbsp;million/year&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;quote &lt;a href="http://reprints.longform.org/playboy-interview-steve-jobs"&gt;from Steve Jobs from an old interview&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Jobs: I actually lost $250,000,000 in one year when the stock went down.&amp;nbsp;[laughs]&lt;/p&gt;
&lt;p&gt;Playboy: You can laugh about&amp;nbsp;it?&lt;/p&gt;
&lt;p&gt;Jobs: I’m not going to let it ruin my life. Isn’t it kind of funny? You know, my main reaction to this money thing is that it’s humorous, all the attention to it, because it’s hardly the most insightful or valuable thing that’s happened to me in the past ten years. But it makes me feel old, sometimes, when I speak at a campus and I find that what students are most in awe of is the fact that I’m a&amp;nbsp;millionaire.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;a href="https://twitter.com/Mac_Watershed/status/1188999748847570944"&gt;Sean Carey - @Mac_Watershed&lt;/a&gt;: &lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just hit &amp;#8216;submit&amp;#8217; on my 5th &lt;span class="caps"&gt;NSERC&lt;/span&gt; Discovery Grant application. Reflecting on 25 years of research in Yukon. The hits, the misses and all that&amp;#8217;s shaped me. The environment has changed, I have changed, but a few things remain the same: the pipe, and the wonder of it&amp;nbsp;all.&lt;/p&gt;
&lt;/blockquote&gt;</content><category term="Claus"/><category term="philosophy"/></entry><entry><title>presentations at AGU2018</title><link href="https://www.claus-haslauer.de/presentations_AGU2018.html" rel="alternate"/><published>2018-10-16T08:16:00+02:00</published><updated>2018-10-16T08:16:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2018-10-16:/presentations_AGU2018.html</id><summary type="html">&lt;p&gt;my presentations at &lt;span class="caps"&gt;AGU2018&lt;/span&gt; in Washington, &lt;span class="caps"&gt;DC&lt;/span&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;&lt;span class="caps"&gt;AGU&lt;/span&gt; 2018 in Washington, &lt;span class="caps"&gt;D.C.&lt;/span&gt; is shaping up to be a great conference! I know already quite a few people who will be attending – I am really looking forward to meet all these wonderful people! Secondly, &lt;a href="http://www.claus-haslauer.de/AGU2018.html"&gt;our session&lt;/a&gt; did not get merged! I think we will be a small power poster session with wonderful presenters! And I will be involved in a few talks (see below). I&amp;#8217;m really looking forward to meet you all in&amp;nbsp;Washington!&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Authors&lt;/th&gt;
&lt;th&gt;Title&lt;/th&gt;
&lt;th&gt;Date&lt;/th&gt;
&lt;th&gt;Time&lt;/th&gt;
&lt;th&gt;Location&lt;/th&gt;
&lt;th&gt;Session&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Claus Haslauer&lt;/strong&gt;, Max Allmendinger, Sebastian Gnann, Theresia Heisserer, András Bárdossy&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm18/meetingapp.cgi/Paper/408900"&gt;&lt;span class="caps"&gt;H21A&lt;/span&gt;-05: Interpolation of Regional Groundwater Quality Parameters With Categorical (Land Cover) and Real-Valued Secondary Information in the State of Baden-Württemberg, Germany&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Tuesday, 11 December 2018&lt;/td&gt;
&lt;td&gt;9:00-9:15&lt;/td&gt;
&lt;td&gt;154 &lt;span class="caps"&gt;AB&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm18/meetingapp.cgi/Session/61929"&gt;&lt;span class="caps"&gt;H21A&lt;/span&gt;: Advances in Quantifying Impacts and Extents of Land Use/Land Cover Change on Hydrology &lt;span class="caps"&gt;II&lt;/span&gt; &lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Anke Wiener, Jürgen Braun, Norbert Klaas, &lt;strong&gt;Claus Haslauer&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm18/meetingapp.cgi/Paper/407807"&gt;&lt;span class="caps"&gt;H23B&lt;/span&gt;-05: Planning of a Groundwater Remediation Using Nano Zero Valent Iron Particles&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Tuesday, 11 December 2018&lt;/td&gt;
&lt;td&gt;14:40-14:55&lt;/td&gt;
&lt;td&gt;146 A&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm18/meetingapp.cgi/Session/62603"&gt;&lt;span class="caps"&gt;H23B&lt;/span&gt;: Innovations in Subsurface Contaminant Transport and Remediation &lt;span class="caps"&gt;III&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bo Xiao, &lt;strong&gt;Claus Haslauer&lt;/strong&gt;, Geoffrey C Bohling, András Bárdossy&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm18/meetingapp.cgi/Paper/409163"&gt;&lt;span class="caps"&gt;H23O&lt;/span&gt;-2599: Including Multiple Types of Information Measured at Non-Colocated Locations for Simulation of One Spatially Distributed Variable - Hydraulic Conductivity at the &lt;span class="caps"&gt;MADE&lt;/span&gt; Site&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Tuesday, 11 December 2018&lt;/td&gt;
&lt;td&gt;13:40-18:00&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;H23O&lt;/span&gt;-2599&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm18/meetingapp.cgi/Session/50635"&gt;&lt;span class="caps"&gt;H23O&lt;/span&gt;: Space–Time Data and Models Posters&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Jeremy Bennett, &lt;strong&gt;Claus Haslauer&lt;/strong&gt;, Philippe Renard, Olaf Cirpka&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm18/meetingapp.cgi/Paper/396205"&gt;&lt;span class="caps"&gt;H12C&lt;/span&gt;-06: Data, or Geology… or Both? A Multi-Model Analysis of Solute Plume Behavior in a Synthetic Braided-River Deposit&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Monday, 10 December 2018&lt;/td&gt;
&lt;td&gt;11:35-11:50&lt;/td&gt;
&lt;td&gt;146A&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm18/meetingapp.cgi/Session/61917"&gt;&lt;span class="caps"&gt;H12C&lt;/span&gt;: Advances, Breakthroughs, and Challenges in Hydrogeologic Sciences I&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;</content><category term="Claus"/><category term="data"/><category term="statistics"/><category term="conference"/><category term="AGU2018"/></entry><entry><title>AGU2018 H114</title><link href="https://www.claus-haslauer.de/AGU2018.html" rel="alternate"/><published>2018-07-30T16:16:00+02:00</published><updated>2018-07-30T16:16:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2018-07-30:/AGU2018.html</id><summary type="html">&lt;p&gt;Come to session H114 at &lt;span class="caps"&gt;AGU18&lt;/span&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;I would like to invite you to the &lt;a href="https://agu.confex.com/agu/fm18/prelim.cgi/Session/50635"&gt;following session&lt;/a&gt; at &lt;a href="https://twitter.com/planetwater/status/1023937218820358144"&gt;#&lt;span class="caps"&gt;AGU18&lt;/span&gt;&lt;/a&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;title: &amp;#8220;Space-Time Data and Models&amp;#8221; &amp;#8212; &lt;a href="https://agu.confex.com/agu/fm18/prelim.cgi/Session/50635"&gt;click here to submit an&amp;nbsp;abstract&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class="caps"&gt;ID&lt;/span&gt;:&amp;nbsp;H114&lt;/li&gt;
&lt;li&gt;co-convener: &lt;a href="http://water.columbia.edu"&gt;Laureline&amp;nbsp;Josset&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The problem of estimating a variable at unobserved locations and/or times is important for many areas of research, including geosciences, civil-/ environmental engineering, soil sciences, agriculture, ecology, forestry, meteorology / climatology, oceanography, health /&amp;nbsp;epidemiology.&lt;/p&gt;
&lt;p&gt;The amount of data gathered is increasing (e.g., advances in measurement technologies, remote sensing, or citizen science). Challenges remain related to the interplay between heterogeneous measurements and improvements in models that can make use of the various types of data.
This session aims to bring contributions together that demonstrate how to improve datasets &lt;em&gt;and&lt;/em&gt; maximise their use through measurement techniques, statistics, and modelling, e.g.,&amp;nbsp;via&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;innovative ways to measure data in the&amp;nbsp;environment;&lt;/li&gt;
&lt;li&gt;the incorporation of innovatively measured data into modelling (usefulness, relevant&amp;nbsp;scale);&lt;/li&gt;
&lt;li&gt;the inclusion of as much information as available to improve prediction (secondary / heterogeneous data, data on different&amp;nbsp;scales);&lt;/li&gt;
&lt;li&gt;the consideration of the variability in the quality of the&amp;nbsp;measurements;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Please find &lt;a href="./downloads/AGU18_H114_onepage.pdf"&gt;a pdf about the session here&lt;/a&gt;.&lt;/p&gt;</content><category term="Claus"/><category term="data"/><category term="statistics"/><category term="conference"/><category term="AGU2018"/></entry><entry><title>GeoEnv2018</title><link href="https://www.claus-haslauer.de/GeoEnv2018.html" rel="alternate"/><published>2018-07-06T10:03:00+02:00</published><updated>2018-07-06T10:03:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2018-07-06:/GeoEnv2018.html</id><summary type="html">&lt;p&gt;Wonderful &lt;a href="https://twitter.com/search?q=%23geoENV2018&amp;amp;src=typd"&gt;#GeoEnv2018&lt;/a&gt; comes to a&amp;nbsp;close&lt;/p&gt;</summary><content type="html">&lt;p&gt;The wonderful conference &amp;#8220;Geostatistics for Environmental Applications&amp;#8221; (GeoENV) in Belfast ended a couple of weeks ago. Queen&amp;#8217;s University hosted us and served as a spectacular location for the conference and the conference dinner. The nice atmosphere between the attendants has been an outstanding characteristic of this conference series that makes it worth for me to attend regularly! Certainly, I had outstanding scientific conversations during the conference. The final pints at the pub on the final evening demonstrated wonderfully how similar we are in our thoughts, perceptions, and understanding of scientific, societal, and political issues across our diverse&amp;nbsp;backgrounds.&lt;/p&gt;
&lt;figure align="center"&gt;
    &lt;img src='./images/Queens_Belfast.jpg' alt="Queen's University in Belfast"/&gt;
    &lt;figcaption&gt;Our host: Queen&amp;#8217;s University in Belfast&lt;/figcaption&gt;
&lt;/figure&gt;

&lt;p&gt;A common theme across many presentations were various approaches to use secondary data to improve the estimation of the variable of primary interest. Gregoire Mariethoz uses as much information as he can from remote sensing (e.g., various channels of remotely sensed images) to fill in gaps between raster images or in observed time-series of discharge. Jaime Gomez-Hernandez fuses precipitation measurements from radar images and rain-gauges. I use categorical (e.g. land-cover) information and other related real-valued measurements to better map groundwater quality parameters (&lt;a href="https://www.sciencedirect.com/science/article/pii/S2211675317302580?via%3Dihub"&gt;the related paper&lt;/a&gt; was accepted during the conference). I also showed our approach to fuse different measurement types with different support and uncertainty. In discussions it became quite obvious that incorporating the varying quality of measurements into one model is one area of research that need our&amp;nbsp;attention.&lt;/p&gt;
&lt;p&gt;Peter Atkinson showed a related and simpler version of &lt;a href="http://www.planetwater.org/2017/07/12/days-23-at-spatialstatistics2017/"&gt;Peter Diggle&amp;#8217;s triangle&lt;/a&gt;:&lt;/p&gt;
&lt;figure align="center"&gt;
    &lt;img src='./images/reality_filter_measurements.jpg' alt="Sketch from my memory on Peter Atkinson's view of the world."/&gt;
    &lt;figcaption&gt;Peter Atkinson&amp;#8217;s view of the world and of measurements.&lt;/figcaption&gt;
&lt;/figure&gt;</content><category term="Claus"/><category term="code"/><category term="geostatistics"/><category term="Python"/></entry><entry><title>HyVR</title><link href="https://www.claus-haslauer.de/HyVR.html" rel="alternate"/><published>2018-06-08T09:03:00+02:00</published><updated>2018-06-08T09:03:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2018-06-08:/HyVR.html</id><summary type="html">&lt;p&gt;Jeremy Bennett (&lt;a href="https://twitter.com/driftingtides"&gt;@drifitngtides&lt;/a&gt;) published his Hydrogeological Virtual Realities simulation package &amp;#8220;&lt;a href="https://github.com/driftingtides/HyVR"&gt;HyVR&lt;/a&gt;&amp;#8221;&lt;/p&gt;</summary><content type="html">&lt;p&gt;Jeremy Bennett (&lt;a href="https://twitter.com/driftingtides"&gt;@drifitngtides&lt;/a&gt;) published his Hydrogeological Virtual Realities simulation&amp;nbsp;package.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the paper is &lt;a href="https://onlinelibrary.wiley.com/doi/abs/10.1111/gwat.12803"&gt;published in&amp;nbsp;Groundwater&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;the &lt;a href="https://github.com/driftingtides/HyVR"&gt;source code of HyVR&lt;/a&gt; is available on&amp;nbsp;github&lt;/li&gt;
&lt;li&gt;the &lt;a href="https://driftingtides.github.io/hyvr/intro.html"&gt;documentation&lt;/a&gt; is&amp;nbsp;online&lt;/li&gt;
&lt;/ul&gt;
&lt;figure align="center"&gt;
    &lt;img src='./images/HyVR1.png' alt='examples of simulations using HyVR' /&gt;
    &lt;figcaption&gt;Examples of spatially distributed fields of hydraulic conductivity simulated using HyVR.&lt;/figcaption&gt;
&lt;/figure&gt;

&lt;p&gt;You can find out more about Jeremy &lt;a href="https://jeremypaulbennett.weebly.com"&gt;on his homepage&lt;/a&gt;. If you are interested in object-based simulations, troughs, or if you have any other inquiries – please contact&amp;nbsp;us!&lt;/p&gt;</content><category term="Claus"/><category term="code"/><category term="geostatistics"/><category term="Python"/></entry><entry><title>Stats of My Research Library</title><link href="https://www.claus-haslauer.de/I%20wrote%20an%20AppleScript%20to%20extract%20information%20from%20my%20research%20library%20(I%20use%20Papers).%20Result%20is%20a%20histogram%20of%20the%20publication%20years%20in%20my%20library.html" rel="alternate"/><published>2018-03-05T09:03:00+01:00</published><updated>2018-03-05T09:03:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2018-03-05:/I wrote an AppleScript to extract information from my research library (I use Papers). Result is a histogram of the publication years in my library.html</id><summary type="html">&lt;p&gt;I wrote an AppleScript to extract information from my research library (I use Papers). Result is a histogram of the publication years in my&amp;nbsp;library.&lt;/p&gt;</summary><content type="html">&lt;p&gt;The new version of &lt;a href="https://latenightsw.com"&gt;Script Debugger&lt;/a&gt; made me play with AppleScript. Of course, I had to add some&amp;nbsp;python.&lt;/p&gt;
&lt;p&gt;I played with Script Debugger and my Research Library, &lt;a href="https://www.readcube.com/papers/"&gt;Papers&lt;/a&gt;. While Papers doesn&amp;#8217;t perform very well (anymore? I do have a fairly large library on an external &lt;span class="caps"&gt;USB3&lt;/span&gt; hard drive), and is not the most stable software I use, its AppleScirpt Dictionary is wonderful. I am using continuously to get recent references that I collect in &lt;a href="https://www.omnigroup.com/omnifocus/"&gt;OmniFocus&lt;/a&gt; into&amp;nbsp;Papers.&lt;/p&gt;
&lt;p&gt;Now, here is what I&amp;nbsp;did:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I tried in Script Debugger to get the publication year of each of the publications that I have in my database. That worked nicely. Debugging applescripts is a so much improved experience compared to the default AppleScript script editor. This is what the AppleScript does:&lt;ul&gt;
&lt;li&gt;loop over every entry in my papers&amp;nbsp;database&lt;/li&gt;
&lt;li&gt;figure out what the publication year&amp;nbsp;is&lt;/li&gt;
&lt;li&gt;append the year to a&amp;nbsp;list&lt;/li&gt;
&lt;li&gt;at the end, missing values are ignored,&amp;nbsp;via &lt;code&gt;set myList to strings of pub_yrs&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;the&amp;nbsp;variable &lt;code&gt;myList&lt;/code&gt; is returned to python in the call of the&amp;nbsp;AppleScript.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;I figured out, how to call an AppleScript from within python, using &lt;a href="https://github.com/rdhyee/py-applescript"&gt;py-applescript&lt;/a&gt; (installed&amp;nbsp;via &lt;code&gt;pip install py-applescript&lt;/code&gt; and &lt;code&gt;pip install PyObjC&lt;/code&gt;) and return a value&amp;nbsp;(&lt;code&gt;myList&lt;/code&gt;). The list is converted to a numpy array, and a normed histogram is&amp;nbsp;plotted&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The figure below shows a normed histogram of the publication dates in my Papers&amp;nbsp;database:&lt;/p&gt;
&lt;figure align="center"&gt;
    &lt;img src='./downloads/histogram_pub_yrs.png' alt="Relative frequencies of publication years in my Papers library" /&gt;
    &lt;figcaption&gt;&amp;#8216;Relative frequencies of publication years in my Papers library&amp;#8217;&lt;/figcaption&gt;
&lt;/figure&gt;

&lt;p&gt;As you can see, not surprisingly, my reading (and knowledge) is biased towards recent research. However, I do have a few classics. My oldest reference is from 1870, and, of course, related to dependence&amp;nbsp;;-)&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;span class="caps"&gt;GROVE&lt;/span&gt;, W R. 1870. “Use of the Word ‘Correlation’.” Nature 1 (13): 335–35.&amp;nbsp;doi:10.1038/001335b0.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Here is the full&amp;nbsp;script:&lt;/p&gt;
&lt;script src="https://gist.github.com/clausTue/4798d317fd9294169b8d0b6ae3fc0ae6.js"&gt;&lt;/script&gt;</content><category term="Claus"/><category term="code"/><category term="AppleScript"/><category term="Python"/><category term="Papers"/></entry><entry><title>Copula Based Geostatistical Code in Operational Use at LUBW</title><link href="https://www.claus-haslauer.de/Copula%20Based%20Code%20in%20Real-World%20Application.html" rel="alternate"/><published>2018-01-09T12:06:00+01:00</published><updated>2018-01-09T12:06:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2018-01-09:/Copula Based Code in Real-World Application.html</id><summary type="html">&lt;p&gt;The Copula-Based Geostatistical Code that I have been developing with colleagues over the last couple of years is finally in operational use at the state agency of the environment (&lt;span class="caps"&gt;LUBW&lt;/span&gt;) in Baden-Württemberg,&amp;nbsp;Germany.&lt;/p&gt;</summary><content type="html">&lt;p&gt;After I had finished my PhD I started to work on an exciting project: improving the maps that help the &lt;a href="https://rp.baden-wuerttemberg.de/Themen/WasserBoden/Grundwasser/Seiten/Grundwassermonitoring.aspx"&gt;state agency of the environment in Baden-Württemberg, Germany (&lt;span class="caps"&gt;LUBW&lt;/span&gt;) assess the state of the state-wide groundwater resources&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The &lt;a href="https://en.wikipedia.org/wiki/Water_Framework_Directive"&gt;European Water Framework Directive&lt;/a&gt; and related national law mandates that the water resources are monitored. The state of Baden-Württemberg maintains an extensive observation network for this and other purposes in which about 300 solutes are monitored at least annually. Maps are produced for each of those solutes and these maps form the basis for decisions related to water resource management, e.g., if a certain area should be monitored more&amp;nbsp;closely.&lt;/p&gt;
&lt;p&gt;Previous methodologies used to create these maps had various problems: Land-use categories used as secondary information imposed unrealistic sharp boundaries in the solute maps, Kriging based approaches led sometimes to unrealistic negative-valued estimates, stationary within the large domain (~40,000km&lt;sup&gt;2&lt;/sup&gt;) was an unrealistic assumption, among&amp;nbsp;others.&lt;/p&gt;
&lt;p&gt;Hence, we developed the concept of &lt;a href="http://www.sciencedirect.com/science/article/pii/S002216941500997X"&gt;locally mixed distributions&lt;/a&gt; that are based on the composition of the land cover within the neighbourhood of each interpolation location. The local distribution varies at each interpolation location and is then &lt;a href="http://www.sciencedirect.com/science/article/pii/S002216941600072X"&gt;used as secondary information for spatial interpolation&lt;/a&gt;. Categorical secondary information such as land cover can be included in a quantitative model of spatial dependence for interpolation&amp;nbsp;purposes.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;d like to thank my colleagues Theresia Heißerer, Michael Eisele, and András Bárdossy who have been instrumental in advancing the geostatistical methodology and bringing the software into operational&amp;nbsp;use.&lt;/p&gt;
&lt;p&gt;At the same time, I&amp;#8217;d also like to thank my colleagues at the state agency of the environment, Burkhard Schneider, Wolfgang Feuerstein, and Emil Hildenbrand for their wonderful cooperation, their recognition of the problem, and their eagerness to solve this real-world problem with innovative geostatistical&amp;nbsp;methods!&lt;/p&gt;</content><category term="Claus"/><category term="code"/><category term="LUBW"/><category term="operational"/></entry><entry><title>Profiling Scientific Python Code</title><link href="https://www.claus-haslauer.de/Profiling%20Scientific%20Python%20Code.html" rel="alternate"/><published>2017-12-06T17:06:00+01:00</published><updated>2017-12-06T18:06:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2017-12-06:/Profiling Scientific Python Code.html</id><summary type="html">&lt;p&gt;A Write-Up of My Current Practice of Profiling Scientific Python&amp;nbsp;Code&lt;/p&gt;</summary><content type="html">&lt;p&gt;This post explains my current profiling strategy (mostly for my own reference). It has proven useful to &lt;em&gt;first&lt;/em&gt; make the code work what you want to do. Based on this working version, it is possible to identify bottlenecks. &lt;em&gt;Then&lt;/em&gt;, a two-tier strategy has been proven&amp;nbsp;useful:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Profiling at the &lt;strong&gt;macro&lt;/strong&gt; level: Which function is the&amp;nbsp;bottleneck?&lt;/li&gt;
&lt;li&gt;Profiling at the &lt;strong&gt;micro&lt;/strong&gt; level: Which line in the function identified in the first step is the&amp;nbsp;bottleneck?&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Macro&lt;/h2&gt;
&lt;p&gt;Brett Slatkin gives a good overview in &lt;a href="http://www.effectivepython.com"&gt;his book &amp;#8220;Effective Python&amp;#8221;&lt;/a&gt; (&lt;a href="http://amzn.to/2BLK5xl"&gt;amazon link&lt;/a&gt;)&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;“Python provides a &lt;a href="https://docs.python.org/2/library/profile.html#profile-stats"&gt;built-in profiler&lt;/a&gt; for determining which parts of a program are responsible for its execution time. This lets you focus your optimization efforts on the biggest sources of trouble and ignore parts of the program that don’t impact speed. [&amp;#8230;] Python provides two built-in profilers, one that is pure Python (profile) and another that is a C-extension module (cProfile). The cProfile built-in module is better because of its minimal impact on the performance of your program while it’s being&amp;nbsp;profiled.”&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;code&gt;cProfile&lt;/code&gt; can be called like&amp;nbsp;this&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;python -m cProfile &amp;lt;myscript.py&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;You can also sort the output by cumulative time spent per&amp;nbsp;function&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;python -m cProfile -s cumulative &amp;lt;myscript.py&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;The output can be also saved to an &lt;span class="caps"&gt;ASCII&lt;/span&gt; file,&amp;nbsp;here &lt;code&gt;&amp;lt;cProfile_output.prof&amp;gt;&lt;/code&gt;&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;python -m cProfile -o &amp;lt;cProfile_output.prof&amp;gt; &amp;lt;myscript.py&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;h3&gt;Visualizing&amp;nbsp;Profile-Results&lt;/h3&gt;
&lt;h4&gt;Snakeviz&lt;/h4&gt;
&lt;p&gt;&lt;a href="https://jiffyclub.github.io/snakeviz/"&gt;Snakeviz&lt;/a&gt; can read output generated&amp;nbsp;from &lt;code&gt;cProfile&lt;/code&gt;&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;snakeviz &amp;lt;cProfile_output.prof&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;and creates a &amp;#8220;&lt;a href="https://en.wikipedia.org/wiki/Pie_chart#Ring_chart_/_Sunburst_chart_/_Multilevel_pie_chart"&gt;sunburst&lt;/a&gt;&amp;#8221;&lt;/p&gt;
&lt;h4&gt;gprof2dot&lt;/h4&gt;
&lt;p&gt;&lt;a href="https://github.com/jrfonseca/gprof2dot"&gt;gprof2dot&lt;/a&gt; can read output generated&amp;nbsp;from &lt;code&gt;cProfile&lt;/code&gt;&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;gprof2dot.py -f pstats &amp;lt;cProfile_output.prof&amp;gt; | dot -Tpng -o output.png
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;and generates a dot&amp;nbsp;graph&lt;/p&gt;
&lt;h2&gt;Micro&lt;/h2&gt;
&lt;h3&gt;line_profiler&lt;/h3&gt;
&lt;p&gt;&lt;a href="https://github.com/rkern/line_profiler"&gt;line_profiler&lt;/a&gt; is a module for doing line-by-line profiling of&amp;nbsp;functions.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;in your script, you decorate the functions you want to profile&amp;nbsp;with &lt;code&gt;@profile&lt;/code&gt;. &lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="nv"&gt;@profile&lt;/span&gt;
&lt;span class="n"&gt;def&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;slow_function&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;a&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;b&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;c&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="err"&gt;:&lt;/span&gt;
&lt;span class="w"&gt;    &lt;/span&gt;&lt;span class="p"&gt;...&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;call&amp;nbsp;the &lt;code&gt;kernprof&lt;/code&gt; script&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;kernprof -l &amp;lt;myscript.py&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;view the&amp;nbsp;results&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;python -m line_profiler myscript.py.lprof
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;&lt;code&gt;timeit&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;The &lt;a href="https://docs.python.org/3/library/timeit.html"&gt;timeit&lt;/a&gt; module can be used to measure the performance of small code snippets (e.g., when you identified the worst performing line&amp;nbsp;via &lt;code&gt;line_profiler&lt;/code&gt;, and you are testing out&amp;nbsp;alternatives).&lt;/p&gt;
&lt;h3&gt;&lt;code&gt;cProfile&lt;/code&gt; as&amp;nbsp;decorator&lt;/h3&gt;
&lt;p&gt;&amp;#8230;&lt;/p&gt;
&lt;h1&gt;More&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.marinamele.com/7-tips-to-time-python-scripts-and-control-memory-and-cpu-usage"&gt;this is another useful&amp;nbsp;overview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;one could use &lt;a href="https://gist.github.com/SpotlightKid/3bd430a75b84a08e54f9"&gt;pystone&lt;/a&gt; to make performance results comparable between different hardware (e.g., &lt;a href="https://forum.omz-software.com/topic/1025/python-benchmarking/15"&gt;between different iOS hardware&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;</content><category term="Claus"/><category term="python"/><category term="programming"/></entry><entry><title>Come Talk to me at AGU Fall Meeting 2017</title><link href="https://www.claus-haslauer.de/AGU%20Fall%20Meeting%202017.html" rel="alternate"/><published>2017-10-11T17:06:00+02:00</published><updated>2017-10-11T18:06:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2017-10-11:/AGU Fall Meeting 2017.html</id><summary type="html">&lt;p&gt;I will be at the &lt;span class="caps"&gt;AGU&lt;/span&gt; Fall Meeting, New Orléans, 11-15 December,&amp;nbsp;2017&lt;/p&gt;</summary><content type="html">&lt;p&gt;I will be at the &lt;span class="caps"&gt;AGU&lt;/span&gt; Fall Meeting (&lt;a href="http://fallmeeting.agu.org/2017/"&gt;website&lt;/a&gt;, &lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Home/"&gt;scientific program&lt;/a&gt;), New Orléans, 11-15 December, 2017. I&amp;#8217;m looking forward to the new location and I am delighted to be among such refreshing speakers. Please find details of the presentations I am involved in below. I&amp;#8217;m looking forward to talk to&amp;nbsp;you!&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Authors&lt;/th&gt;
&lt;th&gt;Title&lt;/th&gt;
&lt;th&gt;Date&lt;/th&gt;
&lt;th&gt;Time&lt;/th&gt;
&lt;th&gt;Location&lt;/th&gt;
&lt;th&gt;Session&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Jeremy Bennet&lt;/strong&gt;, &lt;br&gt; Martin Ross, &lt;br&gt; Claus Haslauer, &lt;br&gt; Olaf Cirpka&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Paper/222657"&gt;&lt;span class="caps"&gt;H34C&lt;/span&gt;-02: An open, object-based modeling approach for simulating subsurface heterogeneity&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Wednesday, 13 December 2017&lt;/td&gt;
&lt;td&gt;16:15-16:30&lt;/td&gt;
&lt;td&gt;288-290&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Session/34444"&gt;&lt;span class="caps"&gt;H34C&lt;/span&gt;: Groundwater Flow and Transport in Heterogeneous Media: New Insights from Experimental, Numerical, and Stochastic Investigations &lt;span class="caps"&gt;II&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Bo Xiao&lt;/strong&gt;, &lt;br&gt;Claus Haslauer, &lt;br&gt;Geoffrey Bohling, &lt;br&gt;András Bárdossy&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Paper/236035"&gt;&lt;span class="caps"&gt;H34C&lt;/span&gt;-03: Comparison of Multivariate Spatial Dependence Structures of &lt;span class="caps"&gt;DPIL&lt;/span&gt; and Flowmeter Hydraulic Conductivity Data Sets at the &lt;span class="caps"&gt;MADE&lt;/span&gt; Site&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Wednesday, 13 December 2017&lt;/td&gt;
&lt;td&gt;16:30-16:45&lt;/td&gt;
&lt;td&gt;288-290&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Session/34444"&gt;&lt;span class="caps"&gt;H34C&lt;/span&gt;: Groundwater Flow and Transport in Heterogeneous Media: New Insights from Experimental, Numerical, and Stochastic Investigations &lt;span class="caps"&gt;II&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Claus Haslauer&lt;/strong&gt;, &lt;br&gt; Max Allmendinger, &lt;br&gt; Sebastian Gnann, &lt;br&gt; Theresia Heisserer, &lt;br&gt; András Bárdossy&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Paper/236550"&gt;&lt;span class="caps"&gt;H53O&lt;/span&gt;-07: Interpolation of Regional Groundwater Quality Parameters With Categorical and Real-Valued Secondary Information in the State of Baden-Württemberg, Germany&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Friday, 15 December 2017&lt;/td&gt;
&lt;td&gt;15:10-15:25&lt;/td&gt;
&lt;td&gt;293-294&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Session/34058"&gt;&lt;span class="caps"&gt;H53O&lt;/span&gt;: Regional Groundwater Quality, Availability, and Sustainability: Advances, Methods, and Approaches for a Complex, Changing World I&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Claus Haslauer&lt;/strong&gt;, &lt;br&gt;  András Bárdossy&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Paper/228755"&gt;&lt;span class="caps"&gt;H21H&lt;/span&gt;-1577: Multivariate Non-Symmetric Stochastic Models for Spatial Dependence Models (Invited)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Tuesday, 12 December 2017&lt;/td&gt;
&lt;td&gt;8:00-12:20&lt;/td&gt;
&lt;td&gt;Poster Hall D-F&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Session/27468"&gt;&lt;span class="caps"&gt;H21H&lt;/span&gt;: Prediction of Hydrologic Behavior from Sparse Information Using Statistical and Machine Learning Techniques I Posters&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;The following table lists talks from my collaborators – you might find those interesting as&amp;nbsp;well!&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Authors&lt;/th&gt;
&lt;th&gt;Title&lt;/th&gt;
&lt;th&gt;Date&lt;/th&gt;
&lt;th&gt;Time&lt;/th&gt;
&lt;th&gt;Location&lt;/th&gt;
&lt;th&gt;Session&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Julia Knapp&lt;/strong&gt;, &lt;br&gt; Karsten Osenbrück, &lt;br&gt; Matthias Brennwald, &lt;br&gt; Olaf Cirpka&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Paper/225976"&gt;&lt;span class="caps"&gt;H13P&lt;/span&gt;-01: Using high resolution measurements of gas tracers to determine metabolic rates in streams&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Monday, 11 December 2017&lt;/td&gt;
&lt;td&gt;13:40-13:55&lt;/td&gt;
&lt;td&gt;298-299&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Session/34468"&gt;&lt;span class="caps"&gt;H13P&lt;/span&gt; Groundwater-Surface Water Interactions: Identifying and Integrating Physical, Biological, and Chemical Patterns and Processes Across Scales &lt;span class="caps"&gt;III&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Olaf Cirpka&lt;/strong&gt;, &lt;br&gt; Matthias Loschko, &lt;br&gt; Thomas Wöhling, &lt;br&gt; David Rudolph&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Paper/209321"&gt;&lt;span class="caps"&gt;H52E&lt;/span&gt;-07: Accounting for the Decreasing Denitrification Potential of Aquifers in Travel-Time Based Reactive-Transport Models of Nitrate&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Friday, 15 December 2017&lt;/td&gt;
&lt;td&gt;11:50-12:05&lt;/td&gt;
&lt;td&gt;293-294&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Session/34709"&gt;&lt;span class="caps"&gt;H52E&lt;/span&gt; Nonpoint Source Pollution in Groundwater, Vadose Zone, and Surface Waters: Assessments, Mechanisms, and Control Strategies I &lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Ning Wang&lt;/strong&gt;, &lt;br&gt;András Bárdossy&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Paper/238682"&gt;&lt;span class="caps"&gt;H23C&lt;/span&gt;-1664: Investigation of the Impact of Precipitation Uncertainty on Spatially Distributed Hydrological Modelling&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Tuesday, 12 December 2017&lt;/td&gt;
&lt;td&gt;13:40-18:00&lt;/td&gt;
&lt;td&gt;Poster Hall D-F&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agu.confex.com/agu/fm17/meetingapp.cgi/Session/29393"&gt;&lt;span class="caps"&gt;H23C&lt;/span&gt; Diagnostics, Sensitivity, and Uncertainty Analysis of Earth and Environmental Models &lt;span class="caps"&gt;III&lt;/span&gt; Posters&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;</content><category term="Claus"/><category term="presentation"/></entry><entry><title>Spatial Statistics Conference 2017 Lancaster</title><link href="https://www.claus-haslauer.de/Spatial%20Statistics%20Conference%202017.html" rel="alternate"/><published>2017-07-04T17:06:00+02:00</published><updated>2017-07-12T15:06:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2017-07-04:/Spatial Statistics Conference 2017.html</id><summary type="html">&lt;p&gt;I will be at the Spatial Statistics Conference in Lancaster, &lt;span class="caps"&gt;UK&lt;/span&gt;, July&amp;nbsp;5-7&lt;/p&gt;</summary><content type="html">&lt;p&gt;We will be at the &lt;a href="https://www.elsevier.com/events/conferences/spatial-statistics-one-world-one-health"&gt;Spatial Statistics Conference&lt;/a&gt; in Lancaster, &lt;span class="caps"&gt;UK&lt;/span&gt;, July&amp;nbsp;5-7&lt;/p&gt;
&lt;p&gt;I will give a presentation entitled &amp;#8220;Spatial Estimation: Dependence, Copulas, and Secondary Information – Using Groundwater Quality Parameters in Baden-Württemberg&amp;#8221; with my co-authors S. Gnann, T. Heißerer, and A. Bárdossy on Tuesday July 5th at 11am in the Frankland&amp;nbsp;Auditorium.&lt;/p&gt;
&lt;p&gt;Note: see my posts about the conference &lt;a href="http://planetwater.org/2017/07/06/day-1-at-spatialstatistics2017/"&gt;here&lt;/a&gt; and &lt;a href="http://planetwater.org/2017/07/12/days-23-at-spatialstatistics2017/"&gt;here&lt;/a&gt;.&lt;/p&gt;</content><category term="Claus"/><category term="presentation"/></entry><entry><title>Censored Measurements and Portion of True Zeros in Geo-hydrology</title><link href="https://www.claus-haslauer.de/new%20paper:%20portion%20of%20true%20zeros%20and%20censored%20measurements.html" rel="alternate"/><published>2017-06-29T13:57:00+02:00</published><updated>2017-06-29T14:22:14+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2017-06-29:/new paper: portion of true zeros and censored measurements.html</id><summary type="html">&lt;p&gt;new paper: by treating measurements below detection limit (&amp;#8220;censored measurements&amp;#8221;) in a statistically meaningful way, we were able to fit measurements to a hydrogeological field site&amp;#8217;s coneceptual model of degradation pathways along the main direction of flow. With the statistical method we are able to decide true zeros (e.g., no precipiation) and censored&amp;nbsp;measurements.&lt;/p&gt;</summary><content type="html">&lt;p&gt;I &lt;a href="http://pubs.acs.org/doi/abs/10.1021/acs.est.6b05385"&gt;published a new paper&lt;/a&gt; with my coauthors &lt;a href="https://g360group.org/our-team/management-team/jessi-meyer/"&gt;Jessica Meyer&lt;/a&gt;, &lt;a href="http://www.iws.uni-stuttgart.de/institut/mitarbeiter/person.php?name=29"&gt;András Bárdossy&lt;/a&gt;, and &lt;a href="https://g360group.org/our-team/principal-investigators/beth-parker/"&gt;Beth Parker&lt;/a&gt; entitled &amp;#8220;&lt;em&gt;Estimating a Representative Value and Proportion of True Zeros for Censored Analytical Data with Applications to Contaminated Site Assessment&lt;/em&gt;&amp;#8221; in Environmental Science &lt;span class="amp"&gt;&amp;amp;&lt;/span&gt; Technology (with &lt;a href="http://pubs.acs.org/doi/suppl/10.1021/acs.est.6b05385/suppl_file/es6b05385_si_001.pdf"&gt;Suplemental Information&lt;/a&gt;).&lt;/p&gt;
&lt;blockquote class="twitter-tweet" data-partner="tweetdeck"&gt;&lt;p lang="en" dir="ltr"&gt;What&amp;#39;s the difference between &amp;#8220;zero&amp;#8221; &lt;span class="amp"&gt;&amp;amp;&lt;/span&gt; &amp;#8220;non-detect&amp;#8221; for &lt;a href="https://twitter.com/hashtag/contaminants?src=hash"&gt;#contaminants&lt;/a&gt;? A new method to estimate # of true zeros: &lt;a href="https://t.co/CZOhDTbzvg"&gt;https://t.co/CZOhDTbzvg&lt;/a&gt; &lt;a href="https://t.co/J9R0YLMUQH"&gt;pic.twitter.com/&lt;span class="caps"&gt;J9R0YLMUQH&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&amp;mdash; Env Sci &lt;span class="amp"&gt;&amp;amp;&lt;/span&gt; Tech (@EnvSciTech) &lt;a href="https://twitter.com/EnvSciTech/status/880070933763031040"&gt;June 28, 2017&lt;/a&gt;&lt;/blockquote&gt;

&lt;p&gt;With Jessi I had had the idea that this might work quite some time ago, but it took some time to get the analysis done and to get it in a concise form. I am pretty happy with the outcome. The statistical model is parsimoneous and leads to nice results at a real field&amp;nbsp;site.&lt;/p&gt;
&lt;p&gt;The following figure shows that the likelihood function has a better optimum when the proportion of true zeros is estimated in addition to the typical parameters of a distribution function (up to a fairly large portion of censored&amp;nbsp;values):&lt;/p&gt;
&lt;video controls="controls" loop=True width="800" controls&gt;
&lt;source src="./downloads/p0_animation.mp4" type="video/mp4"&gt;
&lt;/video&gt;

&lt;p&gt;To my knowledge this is one of only few studies based on real data that incorporate censored measurements in a meaningful way. In our application we estimated the mass of a solute at certain locations in a given geological section. Hence this result has important implications for remedial design. Even more, we think this has direct implications for any variable that is measured in&amp;nbsp;nature.&lt;/p&gt;
&lt;p&gt;Due to the strict space-limitations for an &lt;span class="caps"&gt;ES&lt;/span&gt;&amp;amp;T paper, there are some really nice figures left out in the paper, which are plotted in the &lt;a href="http://pubs.acs.org/doi/suppl/10.1021/acs.est.6b05385/suppl_file/es6b05385_si_001.pdf"&gt;suplemental information&lt;/a&gt;,&amp;nbsp;e.g., &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;regarding a verification of the frequency of true zeros in the case of a precipitation&amp;nbsp;data-set;&lt;/li&gt;
&lt;li&gt;an analysis of the proportion of true zeros of a regional groundwater quality data-set (contaminants with a relatively short time in the environment exhibit fairly large portions of true&amp;nbsp;zeros);&lt;/li&gt;
&lt;li&gt;information regarding the robustness, stability, and unbiasedness of the&amp;nbsp;method;&lt;/li&gt;
&lt;/ul&gt;</content><category term="Claus"/><category term="science"/><category term="paper"/><category term="detection limit"/><category term="censored measurements"/><category term="contaminant hydrogeology"/></entry><entry><title>Micro and Macro Structures</title><link href="https://www.claus-haslauer.de/new%20paper:%20detecting%20and%20evaluating%20effects%20of%20micro-%20and%20macrostructures.html" rel="alternate"/><published>2017-06-27T09:36:00+02:00</published><updated>2017-06-29T14:19:17+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2017-06-27:/new paper: detecting and evaluating effects of micro- and macrostructures.html</id><summary type="html">&lt;p&gt;new paper: statistical algorithm to detect boundary layer separating stationary entities (&amp;#8220;macro structure&amp;#8221;) within one data-set; algorithm verified with real-world data-set at Lauswiesen site; heterogeneity within macro structure (&amp;#8220;micro structure&amp;#8221;) is modeled with fitted multivariate Gaussian model and v-copula model with parameters estimated from data; effects of resulting four scenarios on solute transport were&amp;nbsp;evaluated;&lt;/p&gt;</summary><content type="html">&lt;p&gt;I &lt;a href="http://dx.doi.org/10.1016/j.advwatres.2017.05.007"&gt;published a new paper&lt;/a&gt; with my coauthors &lt;a href="http://www.iws.uni-stuttgart.de/institut/mitarbeiter/person.php?name=29"&gt;András Bárdossy&lt;/a&gt; and &lt;a href="https://www.aquanty.com/sudicky"&gt;Ed Sudicky&lt;/a&gt; entitled &amp;#8220;&lt;em&gt;Detecting and Modelling Structures on the Micro and the Macro Scales: Assessing Their Effects on Solute Transport Behaviour&lt;/em&gt;&amp;#8221; in Advances of Water&amp;nbsp;Resources.&lt;/p&gt;
&lt;blockquote class="twitter-tweet" data-lang="en"&gt;&lt;p lang="en" dir="ltr"&gt;1/6  new paper: &lt;a href="https://twitter.com/hashtag/geostatistics?src=hash"&gt;#geostatistics&lt;/a&gt; &lt;a href="https://twitter.com/hashtag/solute_transport?src=hash"&gt;#solute_transport&lt;/a&gt; &lt;a href="https://twitter.com/hashtag/stationarity?src=hash"&gt;#stationarity&lt;/a&gt; &lt;a href="https://twitter.com/hashtag/boundary_layer?src=hash"&gt;#boundary_layer&lt;/a&gt; &lt;a href="https://twitter.com/hashtag/Copula?src=hash"&gt;#Copula&lt;/a&gt;  micro- and macrostructure &lt;a href="https://t.co/xKcqM5bII8"&gt;https://t.co/xKcqM5bII8&lt;/a&gt;&lt;/p&gt;&amp;mdash; Claus (@planetwater) &lt;a href="https://twitter.com/planetwater/status/879589164135702528"&gt;June 27, 2017&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;

&lt;blockquote class="twitter-tweet" data-lang="en"&gt;&lt;p lang="en" dir="ltr"&gt;2/6 does given spatial data constitute one stationary domain, or is there boundary layer (&amp;#8220;macro structure&amp;#8221;) separating stationary&amp;nbsp;domains?&lt;/p&gt;&amp;mdash; Claus (@planetwater) &lt;a href="https://twitter.com/planetwater/status/879589361003745280"&gt;June 27, 2017&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;

&lt;blockquote class="twitter-tweet" data-lang="en"&gt;&lt;p lang="en" dir="ltr"&gt;3/6 paper contains algorithm to detect and locate that interface or boundary layer and successfully matches previously outlined&amp;nbsp;interfaces&lt;/p&gt;&amp;mdash; Claus (@planetwater) &lt;a href="https://twitter.com/planetwater/status/879589405979226113"&gt;June 27, 2017&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;

&lt;blockquote class="twitter-tweet" data-lang="en"&gt;&lt;p lang="en" dir="ltr"&gt;4/6 within each macrostructure, the microstructure was modelled with both Gaussian and non-Gaussian models, all estimated given the&amp;nbsp;data&lt;/p&gt;&amp;mdash; Claus (@planetwater) &lt;a href="https://twitter.com/planetwater/status/879589441479880706"&gt;June 27, 2017&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;

&lt;blockquote class="twitter-tweet" data-lang="en"&gt;&lt;p lang="en" dir="ltr"&gt;5/6 evaluates effects of the four scenarios with/no macrostructure and Gaussian/non-Gaussian microstructure on solute transport&amp;nbsp;behaviour&lt;/p&gt;&amp;mdash; Claus (@planetwater) &lt;a href="https://twitter.com/planetwater/status/879589674955755521"&gt;June 27, 2017&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;

&lt;blockquote class="twitter-tweet" data-lang="en"&gt;&lt;p lang="en" dir="ltr"&gt;6/6 depending on what is important (e.g., time of exceedance of some threshold or peak concentration), you need to focus on what to&amp;nbsp;model.&lt;/p&gt;&amp;mdash; Claus (@planetwater) &lt;a href="https://twitter.com/planetwater/status/879589757461909504"&gt;June 27, 2017&lt;/a&gt;&lt;/blockquote&gt;
&lt;script async src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;</content><category term="Claus"/><category term="copula"/><category term="geostatistics"/><category term="microstructure"/><category term="macrostructure"/><category term="paper"/></entry><entry><title>Own Your Writing</title><link href="https://www.claus-haslauer.de/Own%20Your%20Writing!.html" rel="alternate"/><published>2017-06-21T09:36:00+02:00</published><updated>2017-06-21T09:40:57+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2017-06-21:/Own Your Writing!.html</id><summary type="html">&lt;p&gt;thoughts on closed and open solutions for writing; there are alternatives, e.g., micro-blog as a substitute for&amp;nbsp;Twitter&lt;/p&gt;</summary><content type="html">&lt;p&gt;On multiple occasions, I have experienced recently how important it is for me to own what I write. For me, this means that I publish my own website and my own blog (this one). This comes at some cost: I own the domain, I pay for the hosting, there is no advertisement. There is also some non-monetary cost: I keep up with the underlying techniques of static site generators, word-press installations, plugins, etc. I do enjoy it, but the point is, other possibilities exist where the setup is simpler and the cost is less. However in those cases, you don&amp;#8217;t own what you&amp;nbsp;write. &lt;/p&gt;
&lt;p&gt;Coincidently, parallel to the events that I hinted at above and about which I might write in the future, there appeared two relevant related posts on Daring Fireball recently: &amp;#8220;&lt;a href="https://daringfireball.net/2017/06/fuck_Facebook"&gt;Fuck Facebook&lt;/a&gt;&amp;#8221; and &amp;#8220;&lt;a href="https://daringfireball.net/linked/2017/06/01/on-giving-a-shit"&gt;On Giving a Shit&lt;/a&gt;&amp;#8221;. In these posts, Facebook is used as an example for a closed solution for which users do not pay with money. In those posts, John&amp;nbsp;Gruber&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;advises not to link to anything on Facebook (difficult or impossible to read if not a member; possibility of Facebook locking non-members out in future is&amp;nbsp;possible);&lt;/li&gt;
&lt;li&gt;points out that Facebook posts are not indexed in search engines and are not archived in the &lt;a href="https://archive.org/index.php"&gt;Internet Archive&lt;/a&gt;;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In another funny twist of fate, I had the old &lt;a href="https://overcast.fm/itunes528458508/the-talk-show-with-john-gruber"&gt;episode 90 of The Talk Show&lt;/a&gt; from 2012 lined up on my podcast player, where John Gruber and Dan Benjamin talk about these same and other Facebook issues (starting at about&amp;nbsp;1:10:50):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;What sense does it make to require credentials from Facebook to login to&amp;nbsp;Spotify?&lt;/li&gt;
&lt;li&gt;Are &amp;#8220;we&amp;#8221; old farts who do the equivalent of using fax machines when we insist on email when everybody is on Facebook&amp;nbsp;messenger?&lt;/li&gt;
&lt;li&gt;Where does this end up? Will we need a Facebook credentials to get a bank account or an&amp;nbsp;organ?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;My&amp;nbsp;thoughts:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;More and more often I encounter pages online, where the content is hidden to me. I do think this is not what the internet is meant&amp;nbsp;for.&lt;/li&gt;
&lt;li&gt;You own what you write. In the largest sense possible of the word &amp;#8220;own&amp;#8221;. In German traditional publishing law, there is the &lt;a href="https://de.wikipedia.org/wiki/Verantwortlich_im_Sinne_des_Presserechts"&gt;VISdP&lt;/a&gt; who is responsible for the publication. I think if you are the responsible person, then you are responsible for what you write, with all its possible positive and negative effects. If you do this on your own site, you think about this likely more, before and while writing, so you end up with better quality of your text. This applies not only to Facebook but to other sites that do the hosting for you (e.g., Twitter, Instagram). This is the same reason I support initiative such as &lt;a href="https://micro.blog/planetwater"&gt;micro.blog&lt;/a&gt;. There have been other alternatives before, such as &lt;a href="https://en.wikipedia.org/wiki/Identi.ca"&gt;identi.ca&lt;/a&gt; or  &lt;a href="https://en.wikipedia.org/wiki/App.net"&gt;app.net&lt;/a&gt;). Also, there exist others today, like &lt;a href="https://mathstodon.xyz/@planetwater"&gt;mathstodon&lt;/a&gt;. Somehow, a critical mass is required for these things, and it takes a while for those services to reach this point. Twitter certainly has this critical mass now, but it also started with zero&amp;nbsp;users. &lt;/li&gt;
&lt;li&gt;Is this really a valid argument, that &amp;#8220;the old farts&amp;#8221; rely on outdated technology? Or would rather everybody post to their own site, if it was less costly, both technically and monetarily? For my webpage and my blog I have both an installation of pelican running where python, css, and some knowledge about how a static blogging engine works are required, and this blog is running on my own hosted domain in a combination of wordpress / phpMyAdmin &lt;span class="caps"&gt;SQL&lt;/span&gt;. This is certainly more involved than posting on&amp;nbsp;Twitter. &lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href="http://planetwater.org/2016/06/14/update-on-learning-and-playing-update-on-learning-and-playing/"&gt;Playing is fundamentally important&lt;/a&gt;, hence the release of &lt;a href="https://jsonfeed.org"&gt;the new &lt;span class="caps"&gt;JSON&lt;/span&gt; feed - format&lt;/a&gt; is awesome! Thank&amp;#8217;s to &lt;a href="https://github.com/manton/jsonfeed-wp"&gt;Manton Reece&amp;#8217;s WordPress plugin&lt;/a&gt;, &lt;a href="http://planetwater.org/feed/json"&gt;planetwater.org has now also a &lt;span class="caps"&gt;JSON&lt;/span&gt; feed&lt;/a&gt; (in addition to &lt;span class="caps"&gt;RSS&lt;/span&gt; and Atom), and yay, is it nice to read! Check out the &lt;a href="https://www.newyorker.com/open/latest.json"&gt;New Yorker&amp;#8217;s &lt;span class="caps"&gt;JSON&lt;/span&gt; feed&lt;/a&gt; or the &lt;a href="http://json8.nytimes.com/services/json/sectionfronts/world/europe/index.jsonp"&gt;New York Times&amp;#8217; &lt;span class="caps"&gt;JSON&lt;/span&gt; feed&lt;/a&gt; (via &lt;a href="http://scripting.com/2017/06/08.html"&gt;scripting news&lt;/a&gt;). This is the reason why I whipped up this &lt;a href="https://gist.github.com/clausTue/974f11a6469170ed246de8f8b2d3da1dÂ"&gt;pythonic &lt;span class="caps"&gt;JSON&lt;/span&gt; &amp;#8220;feed reader&amp;#8221;&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&lt;script src="https://gist.github.com/clausTue/84601e1e09c7621cd5010c7e90fed6ef.js"&gt;&lt;/script&gt;&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s going to be interesting if and how quickly &lt;span class="caps"&gt;JSON&lt;/span&gt; feeds are going to be supported. The outlook is not bad, for example, &lt;a href="http://reederapp.com/ios/"&gt;Reeder for iOS&lt;/a&gt; recently introduced &lt;span class="caps"&gt;JSON&lt;/span&gt; support. There are open source feed readers (on macOS at least &lt;a href="http://www.vienna-rss.com/?page_id=2"&gt;vienna&lt;/a&gt; and most recently in pre-beta &lt;a href="http://inessential.com/2017/06/01/evergreen_diary_1_open_source"&gt;evergreen&lt;/a&gt;).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Particularly, in the university environment where I work, I want to treat students as equal as possible. This means, I do not want to enforce a membership anywhere &amp;#8212; how do other academics and students see&amp;nbsp;this?&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;</content><category term="Claus"/><category term="blogging"/><category term="writing"/><category term="RSS"/><category term="JSON"/></entry><entry><title>Encrypting Email</title><link href="https://www.claus-haslauer.de/Setting%20up%20secure%20email%20in%20Apple%20Mail%20with%20Certificate.html" rel="alternate"/><published>2017-03-16T17:06:00+01:00</published><updated>2017-03-21T08:50:48+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2017-03-16:/Setting up secure email in Apple Mail with Certificate.html</id><summary type="html">&lt;p&gt;Setting up secure email in Apple Mail with&amp;nbsp;Certificate&lt;/p&gt;</summary><content type="html">&lt;p&gt;Secure email has been around for a while, for example, &lt;a href="https://gpgtools.org"&gt;gpg tools&lt;/a&gt; have been around for macOS since quite some time. A &lt;a href="https://www.relay.fm/mpu/368"&gt;recent podcast episode&lt;/a&gt; of the Mac Power User podcast tipped me to look at certificates, the &lt;a href="http://www.macworld.com/article/2041083/how-to-encrypt-your-email.html"&gt;relatively easy setup process&lt;/a&gt; within &lt;a href="https://support.apple.com/kb/PH22288?locale=en_US"&gt;apple mail&lt;/a&gt;. It was only a quick search from there that I discovered that my employer, the University of Tübingen &lt;a href="http://www.uni-tuebingen.de/en/facilities/zentrum-fuer-datenverarbeitung/dienstleistungen/sichere-e-mail/was-ist-ein-zertifikat.html"&gt;provides such certificates&lt;/a&gt;, issues such&amp;nbsp;certificates.  &lt;/p&gt;
&lt;p&gt;The University of Tübingen provides secure email using S/&lt;span class="caps"&gt;MIME&lt;/span&gt;  based certificates within the framework of the &amp;#8220;public key infrastructure&amp;#8221; of the german research net (&lt;span class="caps"&gt;DFN&lt;/span&gt;)&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Die Universität Tübingen unterstützt das S/&lt;span class="caps"&gt;MIME&lt;/span&gt;-Verfahren im Rahmen der Public-Key-Infrastruktur (&lt;span class="caps"&gt;PKI&lt;/span&gt;) des Deutschen Forschungsnetzs (&lt;span class="caps"&gt;DFN&lt;/span&gt;).&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The most effort requires to walk by the user help desk, which is actually a wonderful distraction given the current spring&amp;nbsp;weather!&lt;/p&gt;
&lt;p&gt;Update Friday; March 17, 2017: Nice overview comparing S/&lt;span class="caps"&gt;MIME&lt;/span&gt; and&amp;nbsp;OpenPGP:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;on &lt;a href="https://www.macobserver.com/analysis/which-is-better-secure-email-apple-mail-gpg-suite/"&gt;macOS&lt;/a&gt; at the mac&amp;nbsp;observer&lt;/li&gt;
&lt;li&gt;on &lt;a href="https://www.macobserver.com/tips/how-to/encrypting-email-ios-mail/"&gt;iOS&lt;/a&gt; also at the mac&amp;nbsp;observer&lt;/li&gt;
&lt;/ul&gt;</content><category term="Claus"/><category term="email"/></entry><entry><title>HGS user meeting 2017 Bayreuth</title><link href="https://www.claus-haslauer.de/HGS%20User%20Conference%202017.html" rel="alternate"/><published>2017-02-28T17:06:00+01:00</published><updated>2017-03-17T12:42:47+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2017-02-28:/HGS User Conference 2017.html</id><summary type="html">&lt;p&gt;We will be at the &lt;span class="caps"&gt;HGS&lt;/span&gt; User Conference in Bayreuth March&amp;nbsp;6/7&lt;/p&gt;</summary><content type="html">&lt;p&gt;We will be at the &lt;a href="https://www.bayceer.uni-bayreuth.de/hgs2017/?lang=en"&gt;HydroGeoSphere User Conference&lt;/a&gt; in&amp;nbsp;Bayreuth!&lt;/p&gt;
&lt;h2&gt;HydroGeoSphere Syntax and&amp;nbsp;hgspy&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;HydroGeoSphere grammar &lt;span class="amp"&gt;&amp;amp;&lt;/span&gt; syntax highlighting! If you want to have more control over your grok file, please feel free to check out the &lt;span class="caps"&gt;HGS&lt;/span&gt; syntax highlighter &lt;a href="https://github.com/clausTue/hgs_grammar"&gt;on github&lt;/a&gt;!&lt;/li&gt;
&lt;li&gt;Emilio Sanchez and I put together a collection of python scripts to facilitate the generation&amp;nbsp;of &lt;code&gt;grok&lt;/code&gt; files, running HydroGeoSphere. We call&amp;nbsp;it &lt;code&gt;hgspy&lt;/code&gt;. We&amp;#8217;re planning to extend it to some basic post-processing. It lives in a git repository on bitbucket: &lt;a href="https://bitbucket.org/hydropytubingen/hgspy"&gt;hgspy&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you are interested, please do not hesitate to contact&amp;nbsp;us!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update 20170317&lt;/strong&gt;: the hgs grammar got featured on the &lt;a href="https://www.aquanty.com/blog/2017/3/15/hydrogeosphere-language-grammar"&gt;aquanty blog&lt;/a&gt;!&lt;/p&gt;
&lt;h2&gt;Presentations&lt;/h2&gt;
&lt;p&gt;Shanghua and Bo will give the following&amp;nbsp;presentations:&lt;/p&gt;
&lt;h3&gt;Modelling of Vegetation Dynamics including Feedbacks to&amp;nbsp;Hydrology&lt;/h3&gt;
&lt;p&gt;Shanghua will present her work in H36 &lt;span class="caps"&gt;NWIII&lt;/span&gt; on Monday at&amp;nbsp;3pm&lt;/p&gt;
&lt;h3&gt;Spatial Dependence of the &lt;span class="caps"&gt;MADE&lt;/span&gt;- Hydraulic Conductivity&amp;nbsp;Data-Set&lt;/h3&gt;
&lt;p&gt;Bo will present his work in H36 &lt;span class="caps"&gt;NWIII&lt;/span&gt; on Tuesday at&amp;nbsp;11am&lt;/p&gt;</content><category term="Claus"/><category term="presentation"/></entry><entry><title>AGU 2016</title><link href="https://www.claus-haslauer.de/Presentation%20at%20AGU%202016.html" rel="alternate"/><published>2016-12-07T11:11:00+01:00</published><updated>2016-12-07T11:11:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2016-12-07:/Presentation at AGU 2016.html</id><summary type="html">&lt;p&gt;Invitation to come and talk to me during the &lt;span class="caps"&gt;AGU&lt;/span&gt; fall meeting in San Francisco Dec&amp;nbsp;12-16&lt;/p&gt;</summary><content type="html">&lt;p&gt;I will be at the &amp;#8220;&lt;a href="http://fallmeeting.agu.org/2016/"&gt;&lt;span class="caps"&gt;AGU&lt;/span&gt; fall meeting&lt;/a&gt;&amp;#8221; taking place in San Francisco, &lt;span class="caps"&gt;USA&lt;/span&gt; from Monday (December 12th) to Friday (December 16th). Please contact me, if you want to chat with me in person. And please check out and come and talk to me at the presentation I will be giving on Monday and on&amp;nbsp;Thursday&lt;/p&gt;
&lt;p&gt;Looking forward to meet you&amp;nbsp;there!&lt;/p&gt;
&lt;h2&gt;Asymmetry in Spatial Dependence&amp;nbsp;Structures&lt;/h2&gt;
&lt;p&gt;The poster was upgraded to a presentation, which will take place on Monday&amp;nbsp;morning:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Monday, 12 December 2016  09:15 - 09:30 Moscone South -&amp;nbsp;302&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In this poster I can show you how non-Gaussian dependence (non symmetric dependence) can be quantified, is encountered frequently in data, can be modelled (simulations of spatially distributed random variables), and what impacts such an improved description has on dependent parameters (such as solute transport behaviour based on high-dimensional hydraulic conductivity&amp;nbsp;fields.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://agu.confex.com/agu/fm16/meetingapp.cgi/Paper/184169"&gt;Link&lt;/a&gt; to the &lt;span class="caps"&gt;AGU&lt;/span&gt;&amp;nbsp;calendar.&lt;/p&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details of Claus&amp;#8217; poster presentation&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Monday, 12 December 2016&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;13:40-18:00&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;Moscone South - Poster Hall&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;number&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;NG13A&lt;/span&gt;-1699&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“Asymmetry in Spatial Dependence Structures”&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Authors&lt;/td&gt;
&lt;td&gt;Claus P. Haslauer, András Bárdossy&lt;/td&gt;
&lt;/tr&gt;


&lt;/tbody&gt;
&lt;/table&gt;

&lt;h2&gt;Predict Breakthrough Curves based on Structural Parameters of Heterogeneous K&amp;nbsp;Fields&lt;/h2&gt;
&lt;p&gt;It is desirable to predict the shape of breakthrough curves downgradient of a solute source from subsurface structural parameters (as in the small-perturbation macrodispersion theory) both for realistically heterogeneous fields, and at early time, before any sort of Fickian model is applicable. Using a combination of a priori knowledge, large-scale Monte Carlo simulation, and regression techniques, we have developed closed-form predictive expressions for pre- and post-Fickian flux-weighted solute breakthrough curves as a function of distance from the source (in integral scales) and variance of the log hydraulic conductivity field. Using the ensemble of Monte Carlo realizations, we have simultaneously computed error envelopes for the estimated flux-weighted breakthrough, and for the divergence of point breakthrough curves from the flux-weighted average, as functions of the predictive parameters. We have also obtained implied late-time macrodispersion coefficients for highly heterogeneous environments from the breakthrough statistics. This analysis is relevant for the modelling of reactive as well as conservative transport, since for many kinetic sorption and decay reactions, Laplace-domain modification of the breakthrough curve for conservative solute produces the correct curve for the reactive&amp;nbsp;system.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://agu.confex.com/agu/fm16/meetingapp.cgi/Paper/160143"&gt;Link&lt;/a&gt; to the &lt;span class="caps"&gt;AGU&lt;/span&gt;&amp;nbsp;calendar.&lt;/p&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details of Scott&amp;#8217;s presentation&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Thursday, 15 December 2016&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;14:25-14:40&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;Moscone West - 3014&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;number&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;H43N&lt;/span&gt;-04&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“Prediction of Breakthrough Curves for Conservative and Reactive Transport from the Structural Parameters of Highly Heterogeneous Media”&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Authors&lt;/td&gt;
&lt;td&gt;Scott K. Hansen, Claus P. Haslauer, Olaf A. Cirpka, Velimir V. Vesselinov&lt;/td&gt;
&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;</content><category term="Claus"/><category term="presentation"/></entry><entry><title>Geostatistics 2016</title><link href="https://www.claus-haslauer.de/Presentation%20at%20Geostatistics%202016.html" rel="alternate"/><published>2016-09-03T11:01:00+02:00</published><updated>2016-09-03T11:11:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2016-09-03:/Presentation at Geostatistics 2016.html</id><summary type="html">&lt;p&gt;Invitation to come and see me during Geostatistics meeting in&amp;nbsp;Valencia&lt;/p&gt;</summary><content type="html">&lt;p&gt;I will be at the &amp;#8220;10th International &lt;a href="http://geostats2016.webs.upv.es"&gt;Geostatistics Congress&lt;/a&gt;&amp;#8221; taking place in Valencia, Spain from Monday (September 5th) to Friday (September 9th). Please contact me, if you want to chat with me in person. And please check out and come and talk to me at the presentation I will be giving on&amp;nbsp;Monday.&lt;/p&gt;
&lt;p&gt;See the detailed program &lt;a href="https://www.dropbox.com/s/0wkxyqycue8m4yv/ProgramaParaImprenta.pdf?dl=0"&gt;online&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Looking forward to see you&amp;nbsp;there!&lt;/p&gt;
&lt;h2&gt;Interpolation, Secondary Information, Land Use,&amp;nbsp;Nitrate&lt;/h2&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details of Claus&amp;#8217; presentation&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Monday, 05 September 2016&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;15:20&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;parallel session S7, yellow cube&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“Spatial Estimation: Dependence, Copulas, and Secondary Information – Using Groundwater Quality Parameters in Baden- Württemberg”&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Authors&lt;/td&gt;
&lt;td&gt;S. Gnann, T. Heißerer, &lt;span class="caps"&gt;C. P.&lt;/span&gt; Haslauer, T. Heisserer, A. Bárdossy&lt;/td&gt;
&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;</content><category term="Claus"/><category term="presentation"/></entry><entry><title>FHDGGV 2016</title><link href="https://www.claus-haslauer.de/Presentations%20at%20FHDGGV%202016.html" rel="alternate"/><published>2016-04-11T11:01:00+02:00</published><updated>2016-04-11T11:11:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2016-04-11:/Presentations at FHDGGV 2016.html</id><summary type="html">&lt;p&gt;Invitation to come and see me during &lt;span class="caps"&gt;FHDGGV&lt;/span&gt; meeting in&amp;nbsp;Karlsruhe&lt;/p&gt;</summary><content type="html">&lt;p&gt;I will be at the &amp;#8220;25. &lt;a href="https://www.bayceer.uni-bayreuth.de/fhdgg2016/"&gt;Tagung&lt;/a&gt; der Fachsektion Hydrogeologie in der &lt;span class="caps"&gt;DGGV&lt;/span&gt; 2016&amp;#8221; in Karlsruhe this week. Please contact me, if you want to chat with me in person. And please check out and come and talk to me at the presentations I am involved in (see&amp;nbsp;below).&lt;/p&gt;
&lt;p&gt;See the detailed program &lt;a href="https://www.bayceer.uni-bayreuth.de/fhdgg2016/de/prog/bayconf/programm.php"&gt;online&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Looking forward to see you&amp;nbsp;there!&lt;/p&gt;
&lt;h2&gt;Interpolation, Secondary Information, Land Use,&amp;nbsp;Nitrate&lt;/h2&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details of Claus&amp;#8217; presentation&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Thursday, 14 April 2016&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;11:00 &lt;span class="caps"&gt;AM&lt;/span&gt; (O 9.4) &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;Plank Hörsaal, Geb. 40.32&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“Räumliche Interpolation von Grundwasserqualitätsparametern mit Hilfe von Copulas und Sekundärinformation”&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Authors&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;C. P.&lt;/span&gt; Haslauer, T. Heisserer, A. Bárdossy, B. Schneider, E. Hildenbrand , W. Feuerstein&lt;/td&gt;
&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;

&lt;h2&gt;Geological Structure, Anisotropy, Solute&amp;nbsp;Mixing&lt;/h2&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details of Jeremy&amp;#8217;s presentation&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Wednesday, 13 April 2016&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;14:15 &lt;span class="caps"&gt;PM&lt;/span&gt; (O 15.8) &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;Plank Hörsaal, Geb. 40.32&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“The Impact Sedimentary Anisotropy on Solute Mixing in Groundwater”&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Authors&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;J. P.&lt;/span&gt; Bennett, &lt;span class="caps"&gt;C. P.&lt;/span&gt; Haslauer, &lt;span class="caps"&gt;O. A.&lt;/span&gt; Cirpka&lt;/td&gt;
&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;

&lt;h2&gt;Nitrate, Agriculture, Arid, Climate Change, Irrigation, Climate&amp;nbsp;Change&lt;/h2&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details of Carolin&amp;#8217;s presentation&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Wednesday, 13 April 2016&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;13:30 &lt;span class="caps"&gt;PM&lt;/span&gt; &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;Plank Hörsaal, Geb. 40.32&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“Understanding Subsurface Pathways of Nitrate Transport at Catchment Scale - A Case Study in the Semi-Arid Mediterranean Lerma Catchment”&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Authors&lt;/td&gt;
&lt;td&gt;C. Thesenvitz, &lt;span class="caps"&gt;C. P.&lt;/span&gt; Haslauer, &lt;span class="caps"&gt;O. A.&lt;/span&gt; Cirpka, &lt;span class="caps"&gt;D. L.&lt;/span&gt; Rudolph&lt;/td&gt;
&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;

&lt;h2&gt;Aquifer Characterization, Hydraulic Tomography, Tracer&amp;nbsp;Test&lt;/h2&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details of Emilio&amp;#8217;s presentation&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Friday, 15 April 2016&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;15:15 &lt;span class="caps"&gt;PM&lt;/span&gt; &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;P 13.1&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“Improved aquifer characterization using a combination of Hydraulic Tomography and Tracer Testing”&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Authors&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;E. E.&lt;/span&gt; Sanchez-León, C. Leven, &lt;span class="caps"&gt;C. P.&lt;/span&gt; Haslauer, &lt;span class="caps"&gt;O. A.&lt;/span&gt; Cirpka&lt;/td&gt;
&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;</content><category term="Claus"/><category term="presentation"/></entry><entry><title>AGU 2015</title><link href="https://www.claus-haslauer.de/Presentations%20at%20AGU%202015.html" rel="alternate"/><published>2015-12-07T11:01:00+01:00</published><updated>2015-12-07T11:01:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2015-12-07:/Presentations at AGU 2015.html</id><summary type="html">&lt;p&gt;Invitation to come and see presentations during &lt;span class="caps"&gt;AGU&lt;/span&gt; 2015 in San&amp;nbsp;Francisco&lt;/p&gt;</summary><content type="html">&lt;p&gt;I will be at the American Geophysical Union &lt;a href="http://fallmeeting.agu.org/2015/"&gt;Fall Meeting&lt;/a&gt; in San Francisco next week (Dec 14-18). Please contact me, if you want to chat with me in person. And please check out and come and talk to me at the presentations I am involved in (see&amp;nbsp;below).&lt;/p&gt;
&lt;p&gt;Also note that there&amp;#8217;s a &lt;a href="http://younghs.com/2015/12/07/hydrologist-bingo-at-agu-fall-meeting-2015/"&gt;Hydrologists Bingo&lt;/a&gt; happening!&amp;nbsp;;-)&lt;/p&gt;
&lt;h2&gt;Spatial Dependence, I built a&amp;nbsp;Sandbox&lt;/h2&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details of my poster on Thursday&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Thursday, 17 December 2015&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;13:40 &lt;span class="caps"&gt;PM&lt;/span&gt; - 18:00 &lt;span class="caps"&gt;PM&lt;/span&gt; &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;Moscone South, Lower Level&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“Parameterization, Spatial Simulation, and Quantified Effects of Non-linear Spatial Dependence”&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Authors&lt;/td&gt;
&lt;td&gt;Claus P. Haslauer, András Bárdossy&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;&lt;span class="caps"&gt;ID&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;H43D&lt;/span&gt;-1534&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;

&lt;h2&gt;Impacts of Climate Change on the Hydrology in Semi-Arid Catchment in&amp;nbsp;Spain&lt;/h2&gt;
&lt;p&gt;I will be presenting work of Diane von Gunten&amp;#8217;s dissertation, who is to be defended in January. She performed detailed numerical simulations of the hydrology in a small semi-arid catchment in Spain. The presentation consists of three key&amp;nbsp;components:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The calibration of a transient integrated water flow model (surface water – ground water – evapotranspiration) of the catchment that recently underwent the well monitored transition from dry land to irrigation farming. The process of calibration involved numerical&amp;nbsp;grid-coarsening.&lt;/li&gt;
&lt;li&gt;She evaluated the effects of changed forcings (different meteorological time-series, climate change, &lt;span class="caps"&gt;GCM&lt;/span&gt;, &lt;span class="caps"&gt;RCM&lt;/span&gt;, weather generator) on the coupled hydrosystem&amp;nbsp;components.&lt;/li&gt;
&lt;li&gt;She evaluated the usefulness of meteorological drought indices for the assessment of hydrological measures (discharge, hydraulic conditions in the&amp;nbsp;aquifer)&lt;/li&gt;
&lt;/ul&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details of my poster on Friday&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Friday, December 18th, 2015&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;8 &lt;span class="caps"&gt;AM&lt;/span&gt; - 12:20 &lt;span class="caps"&gt;PM&lt;/span&gt; &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;Moscone South, Lower Level&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“Integrated Modelling of Climate Change Impacts in an Irrigated, Semi-arid Catchment”&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;&lt;span class="caps"&gt;ID&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;H51I&lt;/span&gt;-1503&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Authors&lt;/td&gt;
&lt;td&gt;Diane von Gunthen, Claus P. Haslauer, Thomas Wöhling, David Rudolph, Olaf Cirpka&lt;/td&gt;
&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;

&lt;h2&gt;Occurence of Helical Flow in Cross-Bedded Sediments and Consequences for Transverse&amp;nbsp;Mixing&lt;/h2&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details the talk on Friday&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Friday, December 18th, 2015&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;14:10 &lt;span class="caps"&gt;PM&lt;/span&gt; - 14:25 &lt;span class="caps"&gt;PM&lt;/span&gt; &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;Moscone West - 3016 &lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“Occurence of Helical Flow in Cross-Bedded Sediments and Consequences for Transverse Mixing”&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;&lt;span class="caps"&gt;ID&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;&lt;span class="caps"&gt;H53K&lt;/span&gt;-03&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Authors&lt;/td&gt;
&lt;td&gt;Olaf Cirpka, Yu Ye, Jeremy Bennett, Gabriele Chiogna, Massimo Rolle, Claus Haslauer, Alberto Bellin&lt;/td&gt;
&lt;/tr&gt;

&lt;/tbody&gt;
&lt;/table&gt;

&lt;p&gt;Looking forward to see you&amp;nbsp;there!&lt;/p&gt;</content><category term="Claus"/><category term="presentation"/></entry><entry><title>Talk in Tübingen: GeoEnv Seminar</title><link href="https://www.claus-haslauer.de/Presentation%20in%20Tuebingen%20on%20Friday.html" rel="alternate"/><published>2015-10-26T10:30:00+01:00</published><updated>2015-10-26T10:35:00+01:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2015-10-26:/Presentation in Tuebingen on Friday.html</id><summary type="html">&lt;p&gt;Invitation to come and see my presentation on Friday in&amp;nbsp;Tübingen&lt;/p&gt;</summary><content type="html">&lt;p&gt;I will be presenting this coming Friday (Oct-30) work related to interpolating groundwater quality parameters&amp;nbsp;with&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;non-Gaussian&amp;nbsp;dependence&lt;/li&gt;
&lt;li&gt;secondary information via locally mixed distributions in a certain neighbourhood of an interpolation&amp;nbsp;location&lt;/li&gt;
&lt;li&gt;including censored measurements (e.g. measurements below detection&amp;nbsp;limit)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The talk will be within the frame of the &amp;#8220;GeoEnviron&amp;#8221; &lt;a href="http://www.geo.uni-tuebingen.de/?id=1116"&gt;seminar series&lt;/a&gt;:&lt;/p&gt;
&lt;table align="center";style="color: #000000; font-family: 'Lucida Grande'; width: 500px;"&gt;
&lt;CAPTION&gt;Details of my talk on friday&lt;/CAPTION&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;date&lt;/td&gt;
&lt;td&gt;Friday, October 30, 2015&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;time&lt;/td&gt;
&lt;td&gt;03:15 &lt;span class="caps"&gt;PM&lt;/span&gt; - 04:15 &lt;span class="caps"&gt;PM&lt;/span&gt; &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;Lecture Hall (Room 320) of the Department of Geoscience, University of Tübingen, Hölderlinstr. 12, 1st floor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;tr&gt;
&lt;td&gt;title of talk&lt;/td&gt;
&lt;td&gt;“Maps and Uncertainty for Regional Groundwater Quality Including Categorical Secondary Information and Below Detects”&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;

&lt;p&gt;Looking forward to see you&amp;nbsp;there!&lt;/p&gt;</content><category term="Claus"/><category term="presentation"/></entry><entry><title>Job Announcement</title><link href="https://www.claus-haslauer.de/Job%20Announcement:%20Stochastic%20Hydrogeology.html" rel="alternate"/><published>2015-10-01T12:30:00+02:00</published><updated>2015-10-01T12:35:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2015-10-01:/Job Announcement: Stochastic Hydrogeology.html</id><summary type="html">&lt;p&gt;Job Announcement: Stochastic Hydrogeology,&amp;nbsp;Geostatistics&lt;/p&gt;</summary><content type="html">&lt;p&gt;I have a position to be filled. See pdf &lt;a href="http://www.claus-haslauer.de/downloads/20151001_announcement_research_position.pdf"&gt;here&lt;/a&gt; or announcement&amp;nbsp;below:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;announcement: October 1st,&amp;nbsp;2015 &lt;/li&gt;
&lt;li&gt;starting date: October 14th or when suitable candidate is&amp;nbsp;found &lt;/li&gt;
&lt;li&gt;funding: 0.75 &lt;span class="caps"&gt;TVL&lt;/span&gt; E-13 for 3&amp;nbsp;years&lt;/li&gt;
&lt;li&gt;location: Tübingen,&amp;nbsp;Germany&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Job&amp;nbsp;Description&lt;/h2&gt;
&lt;p&gt;The successful candidate will be appointed to work as a doctoral researcher in the new Stochastic Hydrogeology Group of Claus Haslauer (funded by the German Research Foundation) within the Department of Hydrogeology at the University of Tübingen on the research project entitled “Realistic Spatial Dependence Structures of Aquifer Parameters: Modelling and Impact assessment”.
The candidate will be associated with the International Research Training Group &amp;#8220;Integrated Hydrosystem Modelling” and collaborate with the Kansas Geological Survey.
The candidate’s research will focus on the development of multivariate copula based models for spatial dependence of aquifer parameters and on the analysis and impact assessment of the spatial dependence structure on dependent parameters, such as solute transport&amp;nbsp;behaviour.&lt;/p&gt;
&lt;h2&gt;Candidate&amp;#8217;s&amp;nbsp;Profile&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;a Master’s degree (or equivalent) in mathematics/physics, environmental engineering, quantitative geosciences, civil engineering, or computer sciences with a strong quantitative / mathematical&amp;nbsp;background;&lt;/li&gt;
&lt;li&gt;strong interest in multivariate statistics and application to real world&amp;nbsp;data;&lt;/li&gt;
&lt;li&gt;preferably good scientific programming skills, a good command of the English language (written and&amp;nbsp;spoken);&lt;/li&gt;
&lt;li&gt;commitment to conduct a PhD thesis involving development of novel multivariate models (copulae) and and detailed hydrogeologic numeric&amp;nbsp;simulations.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Application&amp;nbsp;Documents&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;please answer the question: “Why do you want to do this&amp;nbsp;research?”;&lt;/li&gt;
&lt;li&gt;your &lt;span class="caps"&gt;CV&lt;/span&gt;;&lt;/li&gt;
&lt;li&gt;copy of university degree certificates, list relevant courses attended, transcript of marks awarded at Master&amp;nbsp;level;&lt;/li&gt;
&lt;li&gt;electronic version of research output (e.g. MSc thesis, research report, scientific&amp;nbsp;publications)&lt;/li&gt;
&lt;li&gt;name and contact details of up to three people as possible&amp;nbsp;references.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Please submit your application as one pdf file of maximal &lt;span class="caps"&gt;5MB&lt;/span&gt; &lt;a href="mailto:clausDOThaslauerATuniMINUStuebingenDOTde?subject=JobAnnouncementPostHP"&gt;per email&lt;/a&gt; to Claus Haslauer or contact him directly for any further questions.
Severely disabled persons are employed preferentially given equal eligibility. Female candidates are encouraged to apply,&amp;nbsp;explicitly.&lt;/p&gt;</content><category term="Claus"/><category term="Job Announcement"/></entry><entry><title>Plans for the Fall</title><link href="https://www.claus-haslauer.de/plans%20for%20this%20fall.html" rel="alternate"/><published>2015-09-16T14:54:00+02:00</published><updated>2015-09-16T14:54:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2015-09-16:/plans for this fall.html</id><summary type="html">&lt;p&gt;teaching, conferences, &lt;span class="caps"&gt;MADE&lt;/span&gt;,&amp;nbsp;Spanish&lt;/p&gt;</summary><content type="html">&lt;p&gt;As I am setting up this website of mine, fall is in the air. This is shaping up to be a busy fall. I will&amp;nbsp;be&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;teaching a full course, &amp;#8220;Environmental Modelling 1&amp;#8221;. More on that later, hopefully with some&amp;nbsp;blogging;&lt;/li&gt;
&lt;li&gt;attending two conferences, the &amp;#8220;&lt;a href="http://chapman.agu.org/aquifers/"&gt;Chapman &lt;span class="caps"&gt;MADE&lt;/span&gt;&lt;/a&gt;&amp;#8221; conference, where I will be &lt;a href="http://planetwater.org/2015/09/09/2564/"&gt;presenting&lt;/a&gt; work together with Geoff Bohling, and I will likely also head to San Francisco for &lt;span class="caps"&gt;AGU&lt;/span&gt;;&lt;/li&gt;
&lt;li&gt;get back into learning Spanish. There&amp;#8217;s a reason for that, and I will hopefully post more on this also in the&amp;nbsp;fall;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I decided to set this webpage up with the following&amp;nbsp;mindframe:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blog.getpelican.com/"&gt;Pelican&lt;/a&gt; is based on python; really helpful has been &lt;a href="http://nafiulis.me/making-a-static-blog-with-pelican.html"&gt;this&amp;nbsp;post&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://podcastinit.com/static-site-generators.html"&gt;in that regard&lt;/a&gt;, the only alternative was &lt;a href="https://getnikola.com/blog/"&gt;Nikola&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;for now, I settled with the &amp;#8220;&lt;a href="https://github.com/gfidente/pelican-svbhack"&gt;&lt;span class="caps"&gt;SVBHACK&lt;/span&gt;&lt;/a&gt;&amp;#8221;&amp;nbsp;theme&lt;/li&gt;
&lt;li&gt;so far, everything works well; things to do include:&lt;ul&gt;
&lt;li&gt;python syntax highlighting, likely using the &lt;a href="https://github.com/getpelican/pelican-plugins/tree/master/render_math"&gt;render math&amp;nbsp;plugin&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;include ipython notebooks, likely via &lt;a href="https://github.com/getpelican/pelican-plugins/tree/master/liquid_tags"&gt;liquid_tags&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;</content><category term="Claus"/><category term="teaching"/><category term="conferences"/></entry><entry><title>Hello World!</title><link href="https://www.claus-haslauer.de/my-intro-post.html" rel="alternate"/><published>2015-09-09T10:20:00+02:00</published><updated>2015-09-09T19:30:00+02:00</updated><author><name>Claus Haslauer</name></author><id>tag:www.claus-haslauer.de,2015-09-09:/my-intro-post.html</id><summary type="html">&lt;p&gt;&lt;code&gt;__init__&lt;/code&gt;&lt;/p&gt;</summary><content type="html">&lt;p&gt;This is the content of my super blog&amp;nbsp;post.&lt;/p&gt;</content><category term="Claus"/><category term="intro"/></entry></feed>