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