# HG changeset patch # User Jens-Uwe Grooss # Date 1399539608 -7200 # Node ID a4adf5a448f3ba9ffbb309666d5bcbb82711f0e1 # Parent 3b60bc570d8a7efaed693786e542ad6f90d93aee Update der Bilder (Pfeile anstatt Kreise) + Beschreibung diff -r 3b60bc570d8a -r a4adf5a448f3 eskp.py --- a/eskp.py Wed May 07 17:01:53 2014 +0200 +++ b/eskp.py Thu May 08 11:00:08 2014 +0200 @@ -44,10 +44,8 @@ app.jinja_env.globals.update(get_topmenue=get_topmenue) -def get_ozone_dates(): - menue = [('/ozoneloss/clams/2014', _(u'2014')), - ('/ozoneloss/clams/2013', _(u'2013')), - ('/ozoneloss/clams/2012', _(u'2012')), +def get_o3lossclams_dates(): + menue = [('/ozoneloss/clams/2012', _(u'2012')), ('/ozoneloss/clams/2011', _(u'2011')), ('/ozoneloss/clams/2010', _(u'2010')), ] @@ -62,7 +60,7 @@ ] return menue -app.jinja_env.globals.update(get_ozone_dates=get_ozone_dates) +app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates) app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates) @babel.localeselector @@ -113,31 +111,46 @@ def y2014a(): filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst") content = get_content(filename) - return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/2014", content=content, year=2014) + filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst") + explanation = get_content(filename) + + return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/2014", content=content, content_explanation=explanation, year=2014) @app.route('/ozoneloss/vpsc/2013') def y2013a(): filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst") content = get_content(filename) - return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/2013", content=content, year=2013) + filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst") + explanation = get_content(filename) + + return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/2014", content=content, content_explanation=explanation, year=2013) @app.route('/ozoneloss/vpsc/2012') def y2012a(): filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst") content = get_content(filename) - return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/2012", content=content, year=2012) + filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst") + explanation = get_content(filename) + + return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/2014", content=content, content_explanation=explanation, year=2012) @app.route('/ozoneloss/vpsc/2011') def y2011a(): filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst") content = get_content(filename) - return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/2011", content=content, year=2011) + filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst") + explanation = get_content(filename) + + return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/2014", content=content, content_explanation=explanation, year=2011) @app.route('/ozoneloss/vpsc/2010') def y2010a(): filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst") content = get_content(filename) - return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/2010", content=content, year=2010) + filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst") + explanation = get_content(filename) + + return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/2014", content=content, content_explanation=explanation, year=2011) @app.route('/de') def de(): diff -r 3b60bc570d8a -r a4adf5a448f3 static/images/ozoneloss/eskp_clams_do3_2010.svg --- a/static/images/ozoneloss/eskp_clams_do3_2010.svg Wed May 07 17:01:53 2014 +0200 +++ b/static/images/ozoneloss/eskp_clams_do3_2010.svg Thu May 08 11:00:08 2014 +0200 @@ -6711,12 +6711,12 @@ - - - - - - + + + + + + diff -r 3b60bc570d8a -r a4adf5a448f3 static/images/ozoneloss/eskp_clams_do3_2011.svg --- a/static/images/ozoneloss/eskp_clams_do3_2011.svg Wed May 07 17:01:53 2014 +0200 +++ b/static/images/ozoneloss/eskp_clams_do3_2011.svg Thu May 08 11:00:08 2014 +0200 @@ -12625,12 +12625,12 @@ - - - - - - + + + + + + diff -r 3b60bc570d8a -r a4adf5a448f3 static/images/ozoneloss/eskp_clams_do3_2012.svg --- a/static/images/ozoneloss/eskp_clams_do3_2012.svg Wed May 07 17:01:53 2014 +0200 +++ b/static/images/ozoneloss/eskp_clams_do3_2012.svg Thu May 08 11:00:08 2014 +0200 @@ -8499,12 +8499,12 @@ - - - - - - + + + + + + diff -r 3b60bc570d8a -r a4adf5a448f3 static/images/ozoneloss/eskp_vpsc_2010.svg --- a/static/images/ozoneloss/eskp_vpsc_2010.svg Wed May 07 17:01:53 2014 +0200 +++ b/static/images/ozoneloss/eskp_vpsc_2010.svg Thu May 08 11:00:08 2014 +0200 @@ -918,16 +918,16 @@ - - - - - - - - - - + + + + + + + + + + diff -r 3b60bc570d8a -r a4adf5a448f3 static/images/ozoneloss/eskp_vpsc_2011.svg --- a/static/images/ozoneloss/eskp_vpsc_2011.svg Wed May 07 17:01:53 2014 +0200 +++ b/static/images/ozoneloss/eskp_vpsc_2011.svg Thu May 08 11:00:08 2014 +0200 @@ -920,16 +920,16 @@ - - - - - - - - - - + + + + + + + + + + diff -r 3b60bc570d8a -r a4adf5a448f3 static/images/ozoneloss/eskp_vpsc_2012.svg --- a/static/images/ozoneloss/eskp_vpsc_2012.svg Wed May 07 17:01:53 2014 +0200 +++ b/static/images/ozoneloss/eskp_vpsc_2012.svg Thu May 08 11:00:08 2014 +0200 @@ -927,16 +927,16 @@ - - - - - - - - - - + + + + + + + + + + diff -r 3b60bc570d8a -r a4adf5a448f3 static/images/ozoneloss/eskp_vpsc_2013.svg --- a/static/images/ozoneloss/eskp_vpsc_2013.svg Wed May 07 17:01:53 2014 +0200 +++ b/static/images/ozoneloss/eskp_vpsc_2013.svg Thu May 08 11:00:08 2014 +0200 @@ -903,16 +903,16 @@ - - - - - - - - - - + + + + + + + + + + diff -r 3b60bc570d8a -r a4adf5a448f3 static/images/ozoneloss/eskp_vpsc_2014.svg --- a/static/images/ozoneloss/eskp_vpsc_2014.svg Wed May 07 17:01:53 2014 +0200 +++ b/static/images/ozoneloss/eskp_vpsc_2014.svg Thu May 08 11:00:08 2014 +0200 @@ -928,16 +928,16 @@ - - - - - - - - - - + + + + + + + + + + diff -r 3b60bc570d8a -r a4adf5a448f3 templates/de/rst/ozoneloss.rst --- a/templates/de/rst/ozoneloss.rst Wed May 07 17:01:53 2014 +0200 +++ b/templates/de/rst/ozoneloss.rst Thu May 08 11:00:08 2014 +0200 @@ -4,7 +4,7 @@ Quantifizierung des chemisch bedingten Ozonverlusts im Nordwinter sowie dessen Auswirkungen auf mittlere Breiten in Europa: -Im Winter 2010/11 wurde die bisher stärkste Ozonzerstörung im Bereich +Im Winter 2010/2011 wurde die bisher stärkste Ozonzerstörung im Bereich des Arktischen Polarwirbels beobachtet. Die Auswirkungen solch starker Verluste auf Mitteleuropa waren im Jahr 2006 am stärksten. Im Rahmen von ESKP soll ein Frühwarnsystem für solche Ereignisse etabliert werden. @@ -20,7 +20,7 @@ Das unten stehenden Bilder zeigen die geographische Verteilung des berechneten Ozons (oben) und Ozonverlustes (unten) für den 28. März 2011 (Säule zwischen -xx und yy km in Dobson-Einheiten) +12 und 22 km in Dobson-Einheiten) -.. _Berechnungen des Ozonverlusts: /ozoneloss/clams -.. _Abschätzungen aus der Temperatur: /ozoneloss/vpsc +.. _Berechnungen des Ozonverlusts: /ozoneloss/clams/2012 +.. _Abschätzungen aus der Temperatur: /ozoneloss/vpsc/2014 diff -r 3b60bc570d8a -r a4adf5a448f3 templates/de/rst/ozoneloss_clams.rst --- a/templates/de/rst/ozoneloss_clams.rst Wed May 07 17:01:53 2014 +0200 +++ b/templates/de/rst/ozoneloss_clams.rst Thu May 08 11:00:08 2014 +0200 @@ -7,8 +7,8 @@ Jahre. Die obere Abbildung zeigt die zeitliche Entwicklung des Ozonabbaus für -verschiedene Höhen und die untere Abbildung die Säule zwischen xx und yy km. -Zum Vergleich ist der maximale Ozonverlust anderer Jahre als farbiger Punkt +verschiedene Höhen und die untere Abbildung die Säule zwischen 12 und 22 km. +Zum Vergleich ist der maximale Ozonverlust anderer Jahre als farbige Pfeile am rechten Bildrand dargestellt. .. _Chemischen Lagrangeschen Modells der Stratosphäre (CLaMS): http://en.wikipedia.org/wiki/CLaMS diff -r 3b60bc570d8a -r a4adf5a448f3 templates/de/rst/ozoneloss_vpsc.rst --- a/templates/de/rst/ozoneloss_vpsc.rst Wed May 07 17:01:53 2014 +0200 +++ b/templates/de/rst/ozoneloss_vpsc.rst Thu May 08 11:00:08 2014 +0200 @@ -10,16 +10,5 @@ unterhalb des Temperatur-Schwellwertes. Die untere Abbildung zeigt das entsprechende Volumen (durchgezogene Linie) und den Mittelwert zwischen Mitte Dezember und Ende März (gepunktete Linie). Zum Vergleich ist der entsprechende Mittelwert -anderer Jahre als farbiger Punkt am rechten Bildrand dargestellt. +anderer Jahre als farbige Pfeile am rechten Bildrand dargestellt. - -KNOWLEDGE: Proxy V_PSC -====================== - -V_PSC gibt ein Volumen an, das unterhalb eines typischen -Temperatur-Schwellwertes liegt, unterhalb dem der chlor-katalysierte -Ozonabbau stattfindet. Hier wird der Mittelwert dieser Größe zwischen -Mitte Dezember und Ende März betrachtet. Da es meist in kalten -arktischen Wintern auch einen stabilen Polarwirbel gibt, hat man -empirisch gefunden, dass man aus dieser Größe gute Näherungen für den -Ozonabbau ermitteln kann (z.B. Rex et al., 2004) diff -r 3b60bc570d8a -r a4adf5a448f3 templates/ozoneloss_clams.html --- a/templates/ozoneloss_clams.html Wed May 07 17:01:53 2014 +0200 +++ b/templates/ozoneloss_clams.html Thu May 08 11:00:08 2014 +0200 @@ -9,7 +9,7 @@ {{ year }} - + +
+{{ content_explanation|safe }} + +
+ + {% endblock %}