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