eskp.py
author Jens-Uwe Grooss <j.-u.grooss@fz-juelich.de>
Sun, 27 Mar 2022 21:38:11 +0200
changeset 1450 8946f6785833
parent 1295 1650cb07309d
child 1526 e90ee05eaf02
permissions -rwxr-xr-x
eskp map plot update from 220327
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@1295
    73
          ('/ozoneloss/clams/2022', _(u'calculations')),
j@1295
    74
          ('/ozoneloss/vpsc/2022', _(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@1295
    89
        ('/ozoneloss/clams/2022', _(u'2022')),
j@989
    90
        ('/ozoneloss/clams/2020', _(u'2020')),
j@851
    91
        ('/ozoneloss/clams/2019', _(u'2019')),
j@733
    92
        ('/ozoneloss/clams/2018', _(u'2018')),
j@584
    93
        ('/ozoneloss/clams/2017', _(u'2017')),
j@441
    94
        ('/ozoneloss/clams/2016', _(u'2016')),
j@380
    95
        ('/ozoneloss/clams/2015', _(u'2015')),
j@380
    96
        ('/ozoneloss/clams/2012', _(u'2012')),
j@380
    97
        ('/ozoneloss/clams/2011', _(u'2011')),
j@380
    98
        ('/ozoneloss/clams/2010', _(u'2010')),
icg179@496
    99
    ]
j@249
   100
    return menue
j@249
   101
icg179@496
   102
icg179@496
   103
def get_valid_dates(files):
icg179@496
   104
    dates = []
icg179@496
   105
icg179@496
   106
    for file in files:
icg179@496
   107
        if file.endswith('.png') and file.find('uvi') >= 0:
icg179@496
   108
            date = file[-12:-6]
icg179@496
   109
            dates.append(date)
icg179@496
   110
    dates.sort()
icg179@496
   111
    for date in dates:
icg179@496
   112
        i = 0
icg179@496
   113
        for param in ['uvi', 'o3col', 'do3col']:
icg179@496
   114
            testfile = 'clams_' + param + '_' + date + '12.png'
icg179@496
   115
            if files.count(testfile) > 0:
icg179@496
   116
                i = i + 1
icg179@496
   117
        if i <> 3:
icg179@496
   118
            dates.remove(date)
icg179@496
   119
    return dates
icg179@496
   120
icg179@496
   121
icg179@496
   122
def get_o3lossuvmap_dates(date_show):
Tim@498
   123
    dates = get_valid_dates(FILES)
icg179@496
   124
    ndates = len(dates)
icg179@496
   125
    ind = dates.index(date_show)
j@503
   126
    navitexts = []
icg179@496
   127
    if ind ==0 :
icg179@496
   128
        chosendates = [dates[ind+1]]
j@503
   129
        navitexts.append('next ->')
Tim@501
   130
icg179@496
   131
    elif ind >= ndates - 1:
icg179@496
   132
        chosendates= [dates[ind-1]]
j@503
   133
        navitexts.append('<- prev')
icg179@496
   134
    else:
icg179@496
   135
        chosendates = [dates[ind-1], dates[ind+1]]
j@503
   136
        navitexts.append('<- prev')
j@503
   137
        navitexts.append('next ->')
icg179@496
   138
    menue = []
Tim@501
   139
Tim@501
   140
    for i in range(len(chosendates)):
Tim@501
   141
        date = chosendates[i]
j@503
   142
        navitext = navitexts[i]
j@503
   143
        menue.append(('/ozoneloss/uvmap/' + date, _(navitext)))
icg179@496
   144
    return menue
icg179@496
   145
icg179@496
   146
j@249
   147
def get_vpsc_dates():
rb@302
   148
    menue = [
j@1295
   149
        ('/ozoneloss/vpsc/2022', _(u'2022')),
j@989
   150
        ('/ozoneloss/vpsc/2020', _(u'2020')),
j@851
   151
        ('/ozoneloss/vpsc/2019', _(u'2019')),
j@733
   152
        ('/ozoneloss/vpsc/2018', _(u'2018')),
j@584
   153
        ('/ozoneloss/vpsc/2017', _(u'2017')),
j@441
   154
        ('/ozoneloss/vpsc/2016', _(u'2016')),
j@380
   155
        ('/ozoneloss/vpsc/2015', _(u'2015')),
j@380
   156
        ('/ozoneloss/vpsc/2014', _(u'2014')),
j@380
   157
        ('/ozoneloss/vpsc/2013', _(u'2013')),
j@380
   158
        ('/ozoneloss/vpsc/2012', _(u'2012')),
j@380
   159
        ('/ozoneloss/vpsc/2011', _(u'2011')),
j@380
   160
        ('/ozoneloss/vpsc/2010', _(u'2010')),
icg179@496
   161
    ]
rb@241
   162
    return menue
rb@241
   163
icg179@496
   164
j@250
   165
app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
j@249
   166
app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
icg179@496
   167
app.jinja_env.globals.update(get_o3lossuvmap_dates=get_o3lossuvmap_dates)
peter@142
   168
rb@267
   169
rb@267
   170
def modal_info(template, act, title, filename):
rb@264
   171
    content = get_content(filename)
rb@267
   172
    html = render_template(template, act=act, title=title, content=content, exit=_(u"Close"))
rb@264
   173
    return html
rb@264
   174
rb@264
   175
peter@1
   176
@babel.localeselector
peter@1
   177
def get_locale():
j@1040
   178
    requested_language = request.accept_languages.best_match(LANGUAGES.keys())
j@1040
   179
    if requested_language in ("de", "en"):
j@1040
   180
        return requested_language or "de"
rb@100
   181
peter@1
   182
@app.route("/")
rb@100
   183
@app.route("/index")
peter@1
   184
def index():
rb@213
   185
    return render_template("/index.html",
rb@233
   186
                           eskp_info=_(u'About ESKP'),
rb@233
   187
                           )
peter@1
   188
rb@241
   189
rb@257
   190
@app.route('/ozoneloss/clams/<year>')
rb@257
   191
def ozoneloss_clams_year(year):
j@249
   192
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
rb@241
   193
    content = get_content(filename)
rb@257
   194
    return render_template("/ozoneloss_clams.html", act="ozoneloss/clams/%s" % year, content=content, year=year)
rb@241
   195
rb@241
   196
icg179@496
   197
@app.route('/ozoneloss/uvmap/<date>')
icg179@496
   198
def ozoneloss_uvmap_date(date):
icg179@496
   199
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvmap.rst")
icg179@496
   200
    content = get_content(filename)
j@1056
   201
    htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html")
j@1056
   202
    html_table = get_html_content(htmlfile)
j@1056
   203
j@1056
   204
    return render_template("/ozoneloss_uvmap.html", act="ozoneloss/uvmap/%s" % date, content=content,
j@1056
   205
                           html_table=html_table, date=date)
icg179@496
   206
icg179@496
   207
rb@257
   208
@app.route('/ozoneloss/vpsc/<year>')
j@1019
   209
def ozoneloss_vpsc_year(year):
j@249
   210
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
j@249
   211
    content = get_content(filename)
j@250
   212
    filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst")
j@250
   213
    explanation = get_content(filename)
j@250
   214
rb@257
   215
    return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/%s" % year, content=content,
rb@257
   216
                           content_explanation=explanation, year=year)
rb@241
   217
j@317
   218
rb@118
   219
@app.route('/de')
rb@118
   220
def de():
rb@118
   221
    global LANGUAGE_SELECTED
rb@118
   222
    LANGUAGE_SELECTED = "de"
peter@160
   223
    return render_template("/index.html",
rb@233
   224
                           eskp_info=_(u'About ESKP'),
rb@233
   225
                           )
rb@118
   226
icg179@496
   227
rb@118
   228
@app.route('/en')
rb@118
   229
def en():
rb@118
   230
    global LANGUAGE_SELECTED
rb@118
   231
    LANGUAGE_SELECTED = "en"
peter@160
   232
    return render_template("/index.html",
rb@233
   233
                           eskp_info=_(u'About ESKP'),
rb@233
   234
                           )
rb@118
   235
icg179@496
   236
rb@233
   237
@app.route("/eskp")
rb@233
   238
def eskp():
rb@233
   239
    filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
rb@162
   240
    content = get_content(filename)
j@272
   241
    filename = os.path.join("templates", get_locale(), "rst", "eskp_title.rst")
j@272
   242
    headline = get_content(filename)
j@272
   243
    return render_template("/eskp.html", act="eskp", content=content, headline=headline)
j@252
   244
peter@1
   245
rb@275
   246
def qr_image_data(card):
icg179@496
   247
    buf = StringIO.StringIO()
rb@275
   248
    qr = qrcode.QRCode(
rb@275
   249
        version=1,
rb@275
   250
        error_correction=qrcode.constants.ERROR_CORRECT_L,
rb@275
   251
        box_size=2,
rb@275
   252
        border=2,
icg179@496
   253
    )
rb@275
   254
    qr.add_data(card.serialize())
rb@275
   255
    qr.make(fit=True)
rb@275
   256
    img = qr.make_image()
rb@275
   257
    img.save(buf)
rb@275
   258
    image = buf.getvalue()
rb@275
   259
    return base64.b64encode(image)
rb@275
   260
rb@275
   261
rb@233
   262
@app.route("/ozoneloss")
rb@257
   263
def ozoneloss():
rb@233
   264
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
rb@165
   265
    content = get_content(filename)
j@1116
   266
    ref_date = "200119"
j@1116
   267
    newest_date = get_newest_date()
j@1116
   268
    content = content.replace(ref_date, newest_date, 1)
rb@275
   269
rb@275
   270
    vcard_file = os.path.join("vcards", "jug.vcf")
rb@275
   271
    author = u""
icg179@496
   272
rb@275
   273
    try:
rb@275
   274
        card = get_vcard(vcard_file)
rb@275
   275
    except IOError:
rb@275
   276
        card = None
rb@275
   277
    if card is not None:
rb@275
   278
        qr_image = qr_image_data(card)
rb@275
   279
        author = render_template("/author_info.html", act="author", title=_(u"Ozoneloss"),
icg179@496
   280
                                 card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
rb@275
   281
rb@267
   282
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_publications.rst")
rb@267
   283
    publications = modal_info("/publications_info.html", "publications", _(u"Ozoneloss"), filename)
rb@264
   284
    return render_template("/ozoneloss.html", act="ozoneloss", content=content,
icg179@496
   285
                           author=author, card=card, publications=publications)
icg179@496
   286
j@247
   287
j@249
   288
@app.route("/ozoneloss/clams")
rb@257
   289
def ozoneloss_clams():
j@249
   290
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
j@247
   291
    content = get_content(filename)
j@249
   292
    return render_template("/ozoneloss_clams.html", act="ozoneloss/clams", content=content)
j@249
   293
icg179@496
   294
icg179@496
   295
@app.route("/ozoneloss/uvmap")
icg179@496
   296
def ozoneloss_uvmap():
icg179@496
   297
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvmap.rst")
icg179@496
   298
    content = get_content(filename)
j@1053
   299
j@1053
   300
    htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html")
j@1053
   301
    html_content = get_html_content(htmlfile)
j@1053
   302
    return render_template("/ozoneloss_uvmap.html", act="ozoneloss/uvmap", content=content,
j@1053
   303
                           html_content=html_content)
icg179@496
   304
icg179@496
   305
j@249
   306
@app.route("/ozoneloss/vpsc")
j@1019
   307
def ozoneloss_vpsc():
j@249
   308
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
j@249
   309
    content = get_content(filename)
j@249
   310
    return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc", content=content)
peter@1
   311
j@380
   312
j@380
   313
@app.route("/ozoneloss/uvi", methods=['GET'])
j@317
   314
def ozoneloss_uvi():
j@317
   315
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst")
j@317
   316
    content = get_content(filename)
j@1057
   317
    htmlfile = os.path.join("templates", get_locale(), "html", "ozoneloss_uvi_form_start.html")
j@1053
   318
    html_content = get_html_content(htmlfile)
j@1053
   319
    htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html")
j@1053
   320
    html_table = get_html_content(htmlfile)
j@380
   321
j@380
   322
    lat = 50.
j@380
   323
    o3offset = 50.
j@380
   324
    figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, o3offset)
j@380
   325
j@380
   326
    return render_template('ozoneloss_uvi.html', act="ozoneloss/uvi", content=content, figname=figname,
j@1053
   327
                           alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"),
j@1057
   328
                                 html_content=html_content, html_table=html_table)
j@380
   329
icg179@496
   330
j@380
   331
@app.route("/ozoneloss/uvi_graph", methods=['POST'])
j@380
   332
def ozoneloss_uvi_graph():
j@380
   333
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst")
j@380
   334
    content = get_content(filename)
j@1053
   335
    htmlfile = os.path.join("templates", get_locale(), "html", "ozoneloss_uvi_form.html")
j@1053
   336
    html_content = get_html_content(htmlfile)
j@1053
   337
    htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html")
j@1053
   338
    html_table = get_html_content(htmlfile)
j@380
   339
j@380
   340
    latstr = request.form['Gradzahl']
j@380
   341
    o3offsetstr = request.form['Dobson-Unit']
j@380
   342
j@380
   343
    latstr2 = latstr.replace(u'\xb0', '')
j@380
   344
    if latstr2.endswith(u'N'):
j@380
   345
        latstr2 = latstr2.replace(u'N', '')
j@380
   346
        lat = float(latstr2)
j@380
   347
    if latstr2.endswith(u'S'):
j@380
   348
        latstr2 = latstr2.replace(u'S', '')
j@380
   349
        lat = -float(latstr2)
j@1057
   350
        
j@1057
   351
    html_content = html_content.replace('{{latstr}}', latstr)
j@1057
   352
    html_content = html_content.replace('{{o3offsetstr}}', o3offsetstr)
j@1057
   353
    figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, float(o3offsetstr))
j@380
   354
j@1057
   355
    return render_template('ozoneloss_uvi.html', act="ozoneloss_uvi_graph", content=content, figname=figname,
j@1053
   356
                           alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"),
j@1057
   357
                           html_content=html_content, html_table=html_table)
j@380
   358
j@1019
   359
@app.route("/ozoneloss/decadal")
j@1019
   360
def ozoneloss_decadal():
j@1019
   361
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_decadal.rst")
j@1019
   362
    content = get_content(filename)
j@1019
   363
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_decadal_bottom.rst")
j@1019
   364
    explanation = get_content(filename)
j@1019
   365
    
j@1019
   366
    return render_template("/ozoneloss_decadal.html", act="ozoneloss_decadal", content=content,
j@1019
   367
                           content_explanation=explanation)
j@1019
   368
j@1019
   369
j@380
   370
rb@233
   371
@app.route("/iek-7")
rb@257
   372
def institute():
rb@233
   373
    filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
rb@167
   374
    content = get_content(filename)
rb@277
   375
    vcard_file = os.path.join("vcards", "sas.vcf")
rb@277
   376
    author = u""
rb@277
   377
    try:
rb@277
   378
        card = get_vcard(vcard_file)
rb@277
   379
    except IOError:
rb@277
   380
        card = None
rb@277
   381
    if card is not None:
rb@277
   382
        qr_image = qr_image_data(card)
rb@277
   383
        author = render_template("/author_info.html", act="author", title=_(u"IEK-7"),
icg179@496
   384
                                 card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
rb@277
   385
rb@264
   386
    return render_template("/iek-7.html", act="iek-7", content=content,
j@380
   387
                           author=author, card=card, contact=u"IEK-7")
peter@1
   388
peter@1
   389
rb@100
   390
@app.route("/imprint")
peter@88
   391
def imprint():
rb@163
   392
    filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
rb@163
   393
    content = get_content(filename)
rb@170
   394
    return render_template("/content.html", act="imprint", content=content)
peter@88
   395
peter@109
   396
rb@846
   397
@app.route("/dataprotection")
rb@846
   398
def dataprotection():
rb@846
   399
    filename = os.path.join("templates", get_locale(), "rst", "datenschutz.rst")
rb@846
   400
    content = get_content(filename)
rb@846
   401
    return render_template("/content.html", act="datenschutz", content=content)
rb@845
   402
rb@845
   403
peter@1
   404
@app.errorhandler(404)
peter@1
   405
def page_not_found(e):
rb@213
   406
    msg = _(u"Url: %(url)s not found", url=request.url)
rb@157
   407
    info = _(u"This information is not available!")
rb@157
   408
    return render_template("404.html", msg=msg, info=info)
peter@1
   409
icg179@496
   410
peter@1
   411
if __name__ == "__main__":
j@503
   412
    app.run(host='localhost', port=5014)
Impressum Datenschutzerklärung