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