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