307 |
307 |
308 @app.route("/ozoneloss/uvi", methods=['GET']) |
308 @app.route("/ozoneloss/uvi", methods=['GET']) |
309 def ozoneloss_uvi(): |
309 def ozoneloss_uvi(): |
310 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst") |
310 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst") |
311 content = get_content(filename) |
311 content = get_content(filename) |
|
312 htmlfile = os.path.join("templates", get_locale(), "html", "ozoneloss_uvi_form_start.html") |
|
313 html_content = get_html_content(htmlfile) |
|
314 htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html") |
|
315 html_table = get_html_content(htmlfile) |
|
316 |
|
317 lat = 50. |
|
318 o3offset = 50. |
|
319 figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, o3offset) |
|
320 |
|
321 return render_template('ozoneloss_uvi.html', act="ozoneloss/uvi", content=content, figname=figname, |
|
322 alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"), |
|
323 html_content=html_content, html_table=html_table) |
|
324 |
|
325 |
|
326 @app.route("/ozoneloss/uvi_graph", methods=['POST']) |
|
327 def ozoneloss_uvi_graph(): |
|
328 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst") |
|
329 content = get_content(filename) |
312 htmlfile = os.path.join("templates", get_locale(), "html", "ozoneloss_uvi_form.html") |
330 htmlfile = os.path.join("templates", get_locale(), "html", "ozoneloss_uvi_form.html") |
313 html_content = get_html_content(htmlfile) |
331 html_content = get_html_content(htmlfile) |
314 htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html") |
332 htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html") |
315 html_table = get_html_content(htmlfile) |
333 html_table = get_html_content(htmlfile) |
316 |
334 |
317 lat = 50. |
|
318 o3offset = 50. |
|
319 figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, o3offset) |
|
320 button_text = _("Graph anzeigen") |
|
321 |
|
322 return render_template('ozoneloss_uvi.html', act="ozoneloss/uvi", content=content, figname=figname, |
|
323 alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"), |
|
324 html_content=html_content, html_table=html_table, button_text=button_text) |
|
325 |
|
326 |
|
327 @app.route("/ozoneloss/uvi_graph", methods=['POST']) |
|
328 def ozoneloss_uvi_graph(): |
|
329 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_uvi.rst") |
|
330 content = get_content(filename) |
|
331 htmlfile = os.path.join("templates", get_locale(), "html", "ozoneloss_uvi_form.html") |
|
332 html_content = get_html_content(htmlfile) |
|
333 htmlfile = os.path.join("templates", get_locale(), "html", "uvi_table.html") |
|
334 html_table = get_html_content(htmlfile) |
|
335 |
|
336 latstr = request.form['Gradzahl'] |
335 latstr = request.form['Gradzahl'] |
337 o3offsetstr = request.form['Dobson-Unit'] |
336 o3offsetstr = request.form['Dobson-Unit'] |
338 |
337 |
339 latstr2 = latstr.replace(u'\xb0', '') |
338 latstr2 = latstr.replace(u'\xb0', '') |
340 |
|
341 if latstr2.endswith(u'N'): |
339 if latstr2.endswith(u'N'): |
342 latstr2 = latstr2.replace(u'N', '') |
340 latstr2 = latstr2.replace(u'N', '') |
343 lat = float(latstr2) |
341 lat = float(latstr2) |
344 if latstr2.endswith(u'S'): |
342 if latstr2.endswith(u'S'): |
345 latstr2 = latstr2.replace(u'S', '') |
343 latstr2 = latstr2.replace(u'S', '') |
346 lat = -float(latstr2) |
344 lat = -float(latstr2) |
347 |
345 |
|
346 html_content = html_content.replace('{{latstr}}', latstr) |
|
347 html_content = html_content.replace('{{o3offsetstr}}', o3offsetstr) |
348 figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, float(o3offsetstr)) |
348 figname = "uvincr_lat%0.3i_do3%0.3i.svg" % (lat, float(o3offsetstr)) |
349 button_text = _("Graph anzeigen") |
349 |
350 |
350 return render_template('ozoneloss_uvi.html', act="ozoneloss_uvi_graph", content=content, figname=figname, |
351 return render_template('graph.html', act="ozoneloss_uvi_graph", content=content, figname=figname, |
|
352 alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"), |
351 alt=_(u"UV increase at {{lat}} degrees N for {{o3offset}} DU ozone depletion"), |
353 o3offsetstr=o3offsetstr, latstr=latstr, html_content=html_content, |
352 html_content=html_content, html_table=html_table) |
354 html_table=html_table, button_text=button_text) |
|
355 |
353 |
356 @app.route("/ozoneloss/decadal") |
354 @app.route("/ozoneloss/decadal") |
357 def ozoneloss_decadal(): |
355 def ozoneloss_decadal(): |
358 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_decadal.rst") |
356 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_decadal.rst") |
359 content = get_content(filename) |
357 content = get_content(filename) |