eskp.py
author icg179
Fri, 11 Mar 2016 09:45:30 +0100
changeset 496 0641866df1b0
parent 441 c258f9b3f831
child 498 a4f39dc4db6a
permissions -rwxr-xr-x
added menue point for map projections of model parameters
     1 # -*- coding: utf-8 -*-
     2 import logging
     3 
     4 import os
     5 import codecs
     6 import vobject
     7 import StringIO
     8 
     9 import qrcode
    10 
    11 from docutils.core import publish_parts
    12 from flask import Flask
    13 from flask import render_template
    14 from flask import request
    15 from flask.ext.babel import gettext as _
    16 from flask.ext.babel import Babel
    17 from config import LANGUAGES
    18 
    19 import base64
    20 
    21 LANGUAGE_SELECTED = "de"
    22 # ToDo after engelish is implemented set LANGUAGE_SELECTED = None
    23 
    24 # We need the path of this file to find templates to translate
    25 ESKP_PATH = os.path.dirname(os.path.abspath(__file__))
    26 logging.basicConfig(filename=os.path.join(ESKP_PATH, 'eskp-app.log'), level=logging.DEBUG)
    27 
    28 app = Flask(__name__)
    29 babel = Babel(app)
    30 
    31 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
    32 
    33 
    34 def get_vcard(filename):
    35     filename = os.path.join(ESKP_PATH, filename)
    36     with codecs.open(filename, 'r', 'utf-8') as f:
    37         vcard = f.read()
    38     return vobject.readOne(vcard)
    39 
    40 
    41 def get_content(filename, overrides=None):
    42     content = u""
    43     filename = os.path.join(ESKP_PATH, filename)
    44     if os.path.isfile(filename):
    45         with codecs.open(filename, 'r', 'utf-8') as f:
    46             rst_data = f.read()
    47         content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
    48     return content
    49 
    50 
    51 def get_newest_date():
    52     files = os.listdir(os.path.join(ESKP_PATH, 'static/images/uvmap'))
    53     getdates = get_valid_dates(files)
    54     newest_date = getdates[-1]
    55 
    56     return newest_date
    57 
    58 
    59 def get_topmenue():
    60     newest_date = get_newest_date()
    61     menue = [
    62         ('/ozoneloss', _(u'Ozoneloss'),
    63          (('/ozoneloss', _(u'overview')),
    64           ('/ozoneloss/clams/2016', _(u'calculations')),
    65           ('/ozoneloss/vpsc/2016', _(u'estimations')),
    66           ('/ozoneloss/uvi', _(u'uv increase')),
    67           ('/ozoneloss/uvmap/' + newest_date, _(u'uv index map')))),
    68         ('/eskp', _(u'ESKP'), (None, None)),
    69         ('/iek-7', _(u'IEK-7'), (None, None))
    70     ]
    71     return menue
    72 
    73 
    74 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    75 
    76 
    77 def get_o3lossclams_dates():
    78     menue = [
    79         ('/ozoneloss/clams/2016', _(u'2016')),
    80         ('/ozoneloss/clams/2015', _(u'2015')),
    81         ('/ozoneloss/clams/2012', _(u'2012')),
    82         ('/ozoneloss/clams/2011', _(u'2011')),
    83         ('/ozoneloss/clams/2010', _(u'2010')),
    84     ]
    85     return menue
    86 
    87 
    88 def get_valid_dates(files):
    89     dates = []
    90 
    91     for file in files:
    92         if file.endswith('.png') and file.find('uvi') >= 0:
    93             date = file[-12:-6]
    94             dates.append(date)
    95     dates.sort()
    96     for date in dates:
    97         i = 0
    98         for param in ['uvi', 'o3col', 'do3col']:
    99             testfile = 'clams_' + param + '_' + date + '12.png'
   100             if files.count(testfile) > 0:
   101                 i = i + 1
   102         if i <> 3:
   103             dates.remove(date)
   104     return dates
   105 
   106 
   107 def get_o3lossuvmap_dates(date_show):
   108 
   109     files = os.listdir(os.path.join(ESKP_PATH,'static/images/uvmap'))
   110     dates = get_valid_dates(files)
   111     ndates = len(dates)
   112     ind = dates.index(date_show)
   113     if ind ==0 :
   114         chosendates = [dates[ind+1]]
   115     elif ind >= ndates - 1:
   116         chosendates= [dates[ind-1]]
   117     else:
   118         chosendates = [dates[ind-1], dates[ind+1]]
   119     menue = []
   120     for date in chosendates:
   121         text_date = date[-2:] + '.' + date[-4:-2] + '.'
   122         menue.append(('/ozoneloss/uvmap/' + date, _(text_date)))
   123     return menue
   124 
   125 
   126 def get_vpsc_dates():
   127     menue = [
   128         ('/ozoneloss/vpsc/2016', _(u'2016')),
   129         ('/ozoneloss/vpsc/2015', _(u'2015')),
   130         ('/ozoneloss/vpsc/2014', _(u'2014')),
   131         ('/ozoneloss/vpsc/2013', _(u'2013')),
   132         ('/ozoneloss/vpsc/2012', _(u'2012')),
   133         ('/ozoneloss/vpsc/2011', _(u'2011')),
   134         ('/ozoneloss/vpsc/2010', _(u'2010')),
   135     ]
   136     return menue
   137 
   138 
   139 app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
   140 app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
   141 app.jinja_env.globals.update(get_o3lossuvmap_dates=get_o3lossuvmap_dates)
   142 
   143 
   144 def modal_info(template, act, title, filename):
   145     content = get_content(filename)
   146     html = render_template(template, act=act, title=title, content=content, exit=_(u"Close"))
   147     return html
   148 
   149 
   150 @babel.localeselector
   151 def get_locale():
   152     """ToDo: if translation is completed, switch to en """
   153     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
   154 
   155 
   156 @app.route("/")
   157 @app.route("/index")
   158 def index():
   159     return render_template("/index.html",
   160                            eskp_info=_(u'About ESKP'),
   161                            )
   162 
   163 
   164 @app.route('/ozoneloss/clams/<year>')
   165 def ozoneloss_clams_year(year):
   166     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
   167     content = get_content(filename)
   168     return render_template("/ozoneloss_clams.html", act="ozoneloss/clams/%s" % year, content=content, year=year)
   169 
   170 
   171 @app.route('/ozoneloss/uvmap/<date>')
   172 def ozoneloss_uvmap_date(date):
   173     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvmap.rst")
   174     content = get_content(filename)
   175     return render_template("/ozoneloss_uvmap.html", act="ozoneloss/uvmap/%s" % date, content=content, date=date)
   176 
   177 
   178 @app.route('/ozoneloss/vpsc/<year>')
   179 def ozoneloss_vspc_year(year):
   180     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
   181     content = get_content(filename)
   182     filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst")
   183     explanation = get_content(filename)
   184 
   185     return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/%s" % year, content=content,
   186                            content_explanation=explanation, year=year)
   187 
   188 
   189 @app.route('/de')
   190 def de():
   191     global LANGUAGE_SELECTED
   192     LANGUAGE_SELECTED = "de"
   193     return render_template("/index.html",
   194                            eskp_info=_(u'About ESKP'),
   195                            )
   196 
   197 
   198 @app.route('/en')
   199 def en():
   200     global LANGUAGE_SELECTED
   201     LANGUAGE_SELECTED = "en"
   202     return render_template("/index.html",
   203                            eskp_info=_(u'About ESKP'),
   204                            )
   205 
   206 
   207 @app.route("/eskp")
   208 def eskp():
   209     filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
   210     content = get_content(filename)
   211     filename = os.path.join("templates", get_locale(), "rst", "eskp_title.rst")
   212     headline = get_content(filename)
   213     return render_template("/eskp.html", act="eskp", content=content, headline=headline)
   214 
   215 
   216 def qr_image_data(card):
   217     buf = StringIO.StringIO()
   218     qr = qrcode.QRCode(
   219         version=1,
   220         error_correction=qrcode.constants.ERROR_CORRECT_L,
   221         box_size=2,
   222         border=2,
   223     )
   224     qr.add_data(card.serialize())
   225     qr.make(fit=True)
   226     img = qr.make_image()
   227     img.save(buf)
   228     image = buf.getvalue()
   229     return base64.b64encode(image)
   230 
   231 
   232 @app.route("/ozoneloss")
   233 def ozoneloss():
   234     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
   235     content = get_content(filename)
   236 
   237     vcard_file = os.path.join("vcards", "jug.vcf")
   238     author = u""
   239 
   240     try:
   241         card = get_vcard(vcard_file)
   242     except IOError:
   243         card = None
   244     if card is not None:
   245         qr_image = qr_image_data(card)
   246         author = render_template("/author_info.html", act="author", title=_(u"Ozoneloss"),
   247                                  card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
   248 
   249     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_publications.rst")
   250     publications = modal_info("/publications_info.html", "publications", _(u"Ozoneloss"), filename)
   251     return render_template("/ozoneloss.html", act="ozoneloss", content=content,
   252                            author=author, card=card, publications=publications)
   253 
   254 
   255 @app.route("/ozoneloss/clams")
   256 def ozoneloss_clams():
   257     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
   258     content = get_content(filename)
   259     return render_template("/ozoneloss_clams.html", act="ozoneloss/clams", content=content)
   260 
   261 
   262 @app.route("/ozoneloss/uvmap")
   263 def ozoneloss_uvmap():
   264     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvmap.rst")
   265     content = get_content(filename)
   266     return render_template("/ozoneloss_uvmap.html", act="ozoneloss/uvmap", content=content)
   267 
   268 
   269 @app.route("/ozoneloss/vpsc")
   270 def ozoneloss_vspc():
   271     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
   272     content = get_content(filename)
   273     return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc", content=content)
   274 
   275 
   276 @app.route("/ozoneloss/uvi", methods=['GET'])
   277 def ozoneloss_uvi():
   278     # XXX check 'POST' does not work
   279     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst")
   280     content = get_content(filename)
   281 
   282     lat = 50.
   283     o3offset = 50.
   284     figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, o3offset)
   285 
   286     return render_template('ozoneloss_uvi.html', act="ozoneloss/uvi", content=content, figname=figname,
   287                            alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"))
   288 
   289 
   290 @app.route("/ozoneloss/uvi_graph", methods=['POST'])
   291 def ozoneloss_uvi_graph():
   292     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst")
   293     content = get_content(filename)
   294 
   295     latstr = request.form['Gradzahl']
   296     o3offsetstr = request.form['Dobson-Unit']
   297 
   298     latstr2 = latstr.replace(u'\xb0', '')
   299 
   300     if latstr2.endswith(u'N'):
   301         latstr2 = latstr2.replace(u'N', '')
   302         lat = float(latstr2)
   303     if latstr2.endswith(u'S'):
   304         latstr2 = latstr2.replace(u'S', '')
   305         lat = -float(latstr2)
   306 
   307     figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, float(o3offsetstr))
   308 
   309     return render_template('graph.html', act="ozoneloss_uvi_graph", content=content, figname=figname,
   310                            o3offsetstr=o3offsetstr, latstr=latstr)
   311 
   312 
   313 @app.route("/iek-7")
   314 def institute():
   315     filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
   316     content = get_content(filename)
   317     vcard_file = os.path.join("vcards", "sas.vcf")
   318     author = u""
   319     try:
   320         card = get_vcard(vcard_file)
   321     except IOError:
   322         card = None
   323     if card is not None:
   324         qr_image = qr_image_data(card)
   325         author = render_template("/author_info.html", act="author", title=_(u"IEK-7"),
   326                                  card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
   327 
   328     return render_template("/iek-7.html", act="iek-7", content=content,
   329                            author=author, card=card, contact=u"IEK-7")
   330 
   331 
   332 @app.route("/imprint")
   333 def imprint():
   334     filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
   335     content = get_content(filename)
   336     return render_template("/content.html", act="imprint", content=content)
   337 
   338 
   339 @app.errorhandler(404)
   340 def page_not_found(e):
   341     msg = _(u"Url: %(url)s not found", url=request.url)
   342     info = _(u"This information is not available!")
   343     return render_template("404.html", msg=msg, info=info)
   344 
   345 
   346 if __name__ == "__main__":
   347     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung