# HG changeset patch # User Jens-Uwe Grooss # Date 1399449138 -7200 # Node ID 6a8a901ba550e5aae945c8cf41af964beac08329 # Parent 591429b2074845a87fabf45078166fcd54671f12 Erweiterungen: rst Texte ge?ndert ozoneloss mit Kartenprojektion von Ozon und Ozonverlust VPSC-Bilder der Jahre verschoben nach vpsc/years diff -r 591429b20748 -r 6a8a901ba550 eskp.py --- a/eskp.py Tue May 06 16:32:30 2014 +0200 +++ b/eskp.py Wed May 07 09:52:18 2014 +0200 @@ -35,6 +35,7 @@ def get_topmenue(): menue = [ + ('/', _(u'Home')), ('/ozoneloss', _(u'Ozoneloss')), ('/eskp', _(u'ESKP')), ('/iek-7', _(u'IEK-7')), @@ -44,11 +45,11 @@ app.jinja_env.globals.update(get_topmenue=get_topmenue) def get_ozone_dates(): - menue = [('/ozoneloss/2014', _(u'2014')), - ('/ozoneloss/2013', _(u'2013')), - ('/ozoneloss/2012', _(u'2012')), - ('/ozoneloss/2011', _(u'2011')), - ('/ozoneloss/2010', _(u'2010')), + menue = [('/ozoneloss/years/2014', _(u'2014')), + ('/ozoneloss/years/2013', _(u'2013')), + ('/ozoneloss/years/2012', _(u'2012')), + ('/ozoneloss/years/2011', _(u'2011')), + ('/ozoneloss/years/2010', _(u'2010')), ] return menue @@ -68,35 +69,35 @@ ) -@app.route('/ozoneloss/2014') +@app.route('/ozoneloss/years/2014') def y2014(): - filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst") + filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst") content = get_content(filename) - return render_template("/ozoneloss.html", act="ozoneloss/2014", content=content, year=2014) + return render_template("/ozoneloss_years.html", act="ozoneloss/years/2014", content=content, year=2014) -@app.route('/ozoneloss/2013') +@app.route('/ozoneloss/years/2013') def y2013(): - filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst") + filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst") content = get_content(filename) - return render_template("/ozoneloss.html", act="ozoneloss/2013", content=content, year=2013) + return render_template("/ozoneloss_years.html", act="ozoneloss/years/2013", content=content, year=2013) -@app.route('/ozoneloss/2012') +@app.route('/ozoneloss/years/2012') def y2012(): - filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst") + filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst") content = get_content(filename) - return render_template("/ozoneloss.html", act="ozoneloss/2012", content=content, year=2012) + return render_template("/ozoneloss_years.html", act="ozoneloss/years/2012", content=content, year=2012) -@app.route('/ozoneloss/2011') +@app.route('/ozoneloss/years/2011') def y2011(): - filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst") + filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst") content = get_content(filename) - return render_template("/ozoneloss.html", act="ozoneloss/2011", content=content, year=2011) + return render_template("/ozoneloss_years.html", act="ozoneloss/years/2011", content=content, year=2011) -@app.route('/ozoneloss/2010') +@app.route('/ozoneloss/years/2010') def y2010(): - filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst") + filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst") content = get_content(filename) - return render_template("/ozoneloss.html", act="ozoneloss/2010", content=content, year=2010) + return render_template("/ozoneloss_years.html", act="ozoneloss/years/2010", content=content, year=2010) @app.route('/de') def de(): @@ -130,7 +131,13 @@ def task(): filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst") content = get_content(filename) - return render_template("/ozoneloss.html", act="ozoneloss", content=content, year=2014) + return render_template("/ozoneloss.html", act="ozoneloss", content=content) + +@app.route("/ozoneloss/years") +def task1(): + filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst") + content = get_content(filename) + return render_template("/ozoneloss_years.html", act="ozoneloss/years", content=content) @app.route("/iek-7") def submission(): diff -r 591429b20748 -r 6a8a901ba550 static/images/clams_do3col_11032812.png Binary file static/images/clams_do3col_11032812.png has changed diff -r 591429b20748 -r 6a8a901ba550 static/images/clams_o3col_11032812.png Binary file static/images/clams_o3col_11032812.png has changed diff -r 591429b20748 -r 6a8a901ba550 templates/de/rst/iek-7.rst --- a/templates/de/rst/iek-7.rst Tue May 06 16:32:30 2014 +0200 +++ b/templates/de/rst/iek-7.rst Wed May 07 09:52:18 2014 +0200 @@ -2,8 +2,6 @@ =================== -IEK-7 - Das `IEK-7`_ untersucht Chemie, Dynamik und Mikrophysik in der Stratosphäre und Tropopausenregion und deren Rolle im Klimasystem. @@ -15,4 +13,4 @@ -.. _IEK-7: http://www.fz-juelich.de/iek/iek-7/DE/Home/home_node.html \ No newline at end of file +.. _IEK-7: http://www.fz-juelich.de/iek/iek-7/DE/Home/home_node.html diff -r 591429b20748 -r 6a8a901ba550 templates/de/rst/ozoneloss.rst --- a/templates/de/rst/ozoneloss.rst Tue May 06 16:32:30 2014 +0200 +++ b/templates/de/rst/ozoneloss.rst Wed May 07 09:52:18 2014 +0200 @@ -3,14 +3,23 @@ Quantifizierung des chemisch bedingten Ozonverlusts im Nordwinter sowie -dessen Aus­wirkungen auf mittlere Breiten in Europa: +dessen Auswirkungen auf mittlere Breiten in Europa: Im Winter 2010/11 wurde die bisher stärkste Ozonzerstörung im Bereich des Arktischen Polarwirbels beobachtet. Die Auswirkungen solch starker -Verluste auf Mittel-Europa waren im Jahr 2006 am stärksten. Im Rahmen +Verluste auf Mitteleuropa waren im Jahr 2006 am stärksten. Im Rahmen von ESKP soll ein Frühwarnsystem für solche Ereignisse etabliert werden. -Grundlage sind Simulationen mit dem Jülicher Che­mie-Transportmodell -CLaMS, welches über innovative Transport- und Mischungsalgorith­men zur +Grundlage sind Simulationen mit dem Jülicher Chemie-Transportmodell +CLaMS, welches über innovative Transport- und Mischungsalgorithmen zur Berechnung des Austauschs von Luftmassen zwischen polaren und mittleren Breiten (z. B. Einmischung ozonarmer Luft über Europa) verfügt. Die -realitätsnahen Si­mulationen werden durch Satellitenbeobachtungen +realitätsnahen Simulationen werden durch Satellitenbeobachtungen initialisiert und meteorologische Vorhersagen des ECMWF angetrieben. + +Berechnungen und Abschätzungen zum Ozonverlust für die arktischen Winter +der einzelnen Jahre 2010-2014 werden `hier`_ dargestellt + +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 ) + +.. _hier: /ozoneloss/years diff -r 591429b20748 -r 6a8a901ba550 templates/index.html --- a/templates/index.html Tue May 06 16:32:30 2014 +0200 +++ b/templates/index.html Wed May 07 09:52:18 2014 +0200 @@ -5,7 +5,7 @@
-

Die ESKP Info Seite des Forschungszentrum Jülich GmbH

+

Die ESKP Info Seite des IEK-7 Forschungszentrum Jülich GmbH

Ozonverlust in der Arktis

diff -r 591429b20748 -r 6a8a901ba550 templates/ozoneloss.html --- a/templates/ozoneloss.html Tue May 06 16:32:30 2014 +0200 +++ b/templates/ozoneloss.html Wed May 07 09:52:18 2014 +0200 @@ -7,17 +7,12 @@
+ +
- - - {{ year }} +
+ -{% endblock %} \ No newline at end of file +{% endblock %}