eskp.py
author Jens-Uwe Grooss <j.-u.grooss@fz-juelich.de>
Sat, 15 Mar 2025 11:50:53 +0100
changeset 1715 f3d4be3749e6
parent 1598 c03d9beb0451
permissions -rwxr-xr-x
eskp plot update from 250314
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@1557
    73
          ('/ozoneloss/clams/2025', _(u'calculations')),
j@1557
    74
          ('/ozoneloss/vpsc/2025', _(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')))),
j@1577
    78
        ('/ice-4', _(u'ICE-4'), (None, None))
icg179@496
    79
    ]
peter@145
    80
    return menue
peter@142
    81
icg179@496
    82
peter@142
    83
app.jinja_env.globals.update(get_topmenue=get_topmenue)
peter@142
    84
icg179@496
    85
j@250
    86
def get_o3lossclams_dates():
rb@302
    87
    menue = [
j@1557
    88
        ('/ozoneloss/clams/2025', _(u'2025')),
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@1557
   150
        ('/ozoneloss/vpsc/2025', _(u'2025')),
j@1526
   151
        ('/ozoneloss/vpsc/2024', _(u'2024')),
j@1295
   152
        ('/ozoneloss/vpsc/2022', _(u'2022')),
j@989
   153
        ('/ozoneloss/vpsc/2020', _(u'2020')),
j@851
   154
        ('/ozoneloss/vpsc/2019', _(u'2019')),
j@733
   155
        ('/ozoneloss/vpsc/2018', _(u'2018')),
j@584
   156
        ('/ozoneloss/vpsc/2017', _(u'2017')),
j@441
   157
        ('/ozoneloss/vpsc/2016', _(u'2016')),
j@380
   158
        ('/ozoneloss/vpsc/2015', _(u'2015')),
j@380
   159
        ('/ozoneloss/vpsc/2014', _(u'2014')),
j@380
   160
        ('/ozoneloss/vpsc/2013', _(u'2013')),
j@380
   161
        ('/ozoneloss/vpsc/2012', _(u'2012')),
j@380
   162
        ('/ozoneloss/vpsc/2011', _(u'2011')),
j@380
   163
        ('/ozoneloss/vpsc/2010', _(u'2010')),
icg179@496
   164
    ]
rb@241
   165
    return menue
rb@241
   166
icg179@496
   167
j@250
   168
app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
j@249
   169
app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
icg179@496
   170
app.jinja_env.globals.update(get_o3lossuvmap_dates=get_o3lossuvmap_dates)
peter@142
   171
rb@267
   172
rb@267
   173
def modal_info(template, act, title, filename):
rb@264
   174
    content = get_content(filename)
rb@267
   175
    html = render_template(template, act=act, title=title, content=content, exit=_(u"Close"))
rb@264
   176
    return html
rb@264
   177
rb@264
   178
peter@1
   179
@babel.localeselector
peter@1
   180
def get_locale():
j@1040
   181
    requested_language = request.accept_languages.best_match(LANGUAGES.keys())
j@1040
   182
    if requested_language in ("de", "en"):
j@1040
   183
        return requested_language or "de"
rb@100
   184
peter@1
   185
@app.route("/")
rb@100
   186
@app.route("/index")
peter@1
   187
def index():
rb@213
   188
    return render_template("/index.html",
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
                           )
rb@118
   227
icg179@496
   228
rb@118
   229
@app.route('/en')
rb@118
   230
def en():
rb@118
   231
    global LANGUAGE_SELECTED
rb@118
   232
    LANGUAGE_SELECTED = "en"
peter@160
   233
    return render_template("/index.html",
rb@233
   234
                           )
rb@118
   235
icg179@496
   236
peter@1
   237
rb@275
   238
def qr_image_data(card):
icg179@496
   239
    buf = StringIO.StringIO()
rb@275
   240
    qr = qrcode.QRCode(
rb@275
   241
        version=1,
rb@275
   242
        error_correction=qrcode.constants.ERROR_CORRECT_L,
rb@275
   243
        box_size=2,
rb@275
   244
        border=2,
icg179@496
   245
    )
rb@275
   246
    qr.add_data(card.serialize())
rb@275
   247
    qr.make(fit=True)
rb@275
   248
    img = qr.make_image()
rb@275
   249
    img.save(buf)
rb@275
   250
    image = buf.getvalue()
rb@275
   251
    return base64.b64encode(image)
rb@275
   252
rb@275
   253
rb@233
   254
@app.route("/ozoneloss")
rb@257
   255
def ozoneloss():
rb@233
   256
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
rb@165
   257
    content = get_content(filename)
j@1116
   258
    ref_date = "200119"
j@1116
   259
    newest_date = get_newest_date()
j@1116
   260
    content = content.replace(ref_date, newest_date, 1)
rb@275
   261
rb@275
   262
    vcard_file = os.path.join("vcards", "jug.vcf")
rb@275
   263
    author = u""
icg179@496
   264
rb@275
   265
    try:
rb@275
   266
        card = get_vcard(vcard_file)
rb@275
   267
    except IOError:
rb@275
   268
        card = None
rb@275
   269
    if card is not None:
rb@275
   270
        qr_image = qr_image_data(card)
rb@275
   271
        author = render_template("/author_info.html", act="author", title=_(u"Ozoneloss"),
icg179@496
   272
                                 card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
rb@275
   273
rb@267
   274
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_publications.rst")
rb@267
   275
    publications = modal_info("/publications_info.html", "publications", _(u"Ozoneloss"), filename)
rb@264
   276
    return render_template("/ozoneloss.html", act="ozoneloss", content=content,
icg179@496
   277
                           author=author, card=card, publications=publications)
icg179@496
   278
j@247
   279
j@249
   280
@app.route("/ozoneloss/clams")
rb@257
   281
def ozoneloss_clams():
j@249
   282
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
j@247
   283
    content = get_content(filename)
j@249
   284
    return render_template("/ozoneloss_clams.html", act="ozoneloss/clams", content=content)
j@249
   285
icg179@496
   286
icg179@496
   287
@app.route("/ozoneloss/uvmap")
icg179@496
   288
def ozoneloss_uvmap():
icg179@496
   289
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvmap.rst")
icg179@496
   290
    content = get_content(filename)
j@1053
   291
j@1053
   292
    htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html")
j@1053
   293
    html_content = get_html_content(htmlfile)
j@1053
   294
    return render_template("/ozoneloss_uvmap.html", act="ozoneloss/uvmap", content=content,
j@1053
   295
                           html_content=html_content)
icg179@496
   296
icg179@496
   297
j@249
   298
@app.route("/ozoneloss/vpsc")
j@1019
   299
def ozoneloss_vpsc():
j@249
   300
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
j@249
   301
    content = get_content(filename)
j@249
   302
    return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc", content=content)
peter@1
   303
j@380
   304
j@380
   305
@app.route("/ozoneloss/uvi", methods=['GET'])
j@317
   306
def ozoneloss_uvi():
j@317
   307
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst")
j@317
   308
    content = get_content(filename)
j@1057
   309
    htmlfile = os.path.join("templates", get_locale(), "html", "ozoneloss_uvi_form_start.html")
j@1053
   310
    html_content = get_html_content(htmlfile)
j@1053
   311
    htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html")
j@1053
   312
    html_table = get_html_content(htmlfile)
j@380
   313
j@380
   314
    lat = 50.
j@380
   315
    o3offset = 50.
j@380
   316
    figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, o3offset)
j@380
   317
j@380
   318
    return render_template('ozoneloss_uvi.html', act="ozoneloss/uvi", content=content, figname=figname,
j@1053
   319
                           alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"),
j@1057
   320
                                 html_content=html_content, html_table=html_table)
j@380
   321
icg179@496
   322
j@380
   323
@app.route("/ozoneloss/uvi_graph", methods=['POST'])
j@380
   324
def ozoneloss_uvi_graph():
j@380
   325
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst")
j@380
   326
    content = get_content(filename)
j@1053
   327
    htmlfile = os.path.join("templates", get_locale(), "html", "ozoneloss_uvi_form.html")
j@1053
   328
    html_content = get_html_content(htmlfile)
j@1053
   329
    htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html")
j@1053
   330
    html_table = get_html_content(htmlfile)
j@380
   331
j@380
   332
    latstr = request.form['Gradzahl']
j@380
   333
    o3offsetstr = request.form['Dobson-Unit']
j@380
   334
j@380
   335
    latstr2 = latstr.replace(u'\xb0', '')
j@380
   336
    if latstr2.endswith(u'N'):
j@380
   337
        latstr2 = latstr2.replace(u'N', '')
j@380
   338
        lat = float(latstr2)
j@380
   339
    if latstr2.endswith(u'S'):
j@380
   340
        latstr2 = latstr2.replace(u'S', '')
j@380
   341
        lat = -float(latstr2)
j@1057
   342
        
j@1057
   343
    html_content = html_content.replace('{{latstr}}', latstr)
j@1057
   344
    html_content = html_content.replace('{{o3offsetstr}}', o3offsetstr)
j@1057
   345
    figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, float(o3offsetstr))
j@380
   346
j@1057
   347
    return render_template('ozoneloss_uvi.html', act="ozoneloss_uvi_graph", content=content, figname=figname,
j@1053
   348
                           alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"),
j@1057
   349
                           html_content=html_content, html_table=html_table)
j@380
   350
j@1019
   351
@app.route("/ozoneloss/decadal")
j@1019
   352
def ozoneloss_decadal():
j@1019
   353
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_decadal.rst")
j@1019
   354
    content = get_content(filename)
j@1019
   355
    filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_decadal_bottom.rst")
j@1019
   356
    explanation = get_content(filename)
j@1019
   357
    
j@1019
   358
    return render_template("/ozoneloss_decadal.html", act="ozoneloss_decadal", content=content,
j@1019
   359
                           content_explanation=explanation)
j@1019
   360
j@1019
   361
j@380
   362
j@1577
   363
@app.route("/ice-4")
rb@257
   364
def institute():
j@1577
   365
    filename = os.path.join("templates", get_locale(), "rst", "ice-4.rst")
rb@167
   366
    content = get_content(filename)
rb@277
   367
    vcard_file = os.path.join("vcards", "sas.vcf")
rb@277
   368
    author = u""
rb@277
   369
    try:
rb@277
   370
        card = get_vcard(vcard_file)
rb@277
   371
    except IOError:
rb@277
   372
        card = None
rb@277
   373
    if card is not None:
rb@277
   374
        qr_image = qr_image_data(card)
j@1577
   375
        author = render_template("/author_info.html", act="author", title=_(u"ICE-4"),
icg179@496
   376
                                 card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
rb@277
   377
j@1577
   378
    return render_template("/ice-4.html", act="ice-4", content=content,
j@1577
   379
                           author=author, card=card, contact=u"ICE-4")
peter@1
   380
peter@1
   381
rb@100
   382
@app.route("/imprint")
peter@88
   383
def imprint():
rb@163
   384
    filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
rb@163
   385
    content = get_content(filename)
rb@170
   386
    return render_template("/content.html", act="imprint", content=content)
peter@88
   387
peter@109
   388
rb@846
   389
@app.route("/dataprotection")
rb@846
   390
def dataprotection():
rb@846
   391
    filename = os.path.join("templates", get_locale(), "rst", "datenschutz.rst")
rb@846
   392
    content = get_content(filename)
rb@846
   393
    return render_template("/content.html", act="datenschutz", content=content)
rb@845
   394
rb@845
   395
peter@1
   396
@app.errorhandler(404)
peter@1
   397
def page_not_found(e):
rb@213
   398
    msg = _(u"Url: %(url)s not found", url=request.url)
rb@157
   399
    info = _(u"This information is not available!")
rb@157
   400
    return render_template("404.html", msg=msg, info=info)
peter@1
   401
icg179@496
   402
peter@1
   403
if __name__ == "__main__":
j@503
   404
    app.run(host='localhost', port=5014)
Impressum Datenschutzerklärung