From 7c8fec11e71f92493ee971d39a44f7ec038901ea Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sat, 10 Oct 2015 14:18:19 -0700 Subject: [PATCH] Brought in missing template --- app/main/templates/main/datatypes.html | 65 ++++++++++++++++++++++++++ app/main/views.py | 1 - 2 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 app/main/templates/main/datatypes.html diff --git a/app/main/templates/main/datatypes.html b/app/main/templates/main/datatypes.html new file mode 100644 index 0000000..84dd617 --- /dev/null +++ b/app/main/templates/main/datatypes.html @@ -0,0 +1,65 @@ +{% extends "main/base.html" %} +{% block content %} + +

Model Details

+
+
CCCMA CGCM 3.1
+
+ Canadian Centre for Climate Modeling and Analysis – General Circulation Model version 3.1 - t47 +
+
MPI ECHAM 5
+
+ Max Planck Institute for Meteorology – European Centre Hamburg Model 5 +
+
GFDL CM 2.1
+
+ Geophysical Fluid Dynamics Laboratory – Coupled Climate Model 2.1 +
+
UKMO HADCM 3.0
+
+ UK Met Office - Hadley Centre – Coupled Model 3.0 +
+
MIROC 3.2
+
+ Center for Climate System Research – Model for Interdisciplinary Research on Climate (medium resolution) +
+
5 Model Average
+
+ A composite of the five models listed above +
+
+ +

Emission Scenario Details (from SNAP)

+
+
Scenario A1B
+
+
    +
  • Rapid economic growth
  • +
  • A global population that reaches 9 billion in 2050 and then gradually declines
  • +
  • The quick spread of new and efficient technologies
  • +
  • A convergent world - income and way of life converge between regions
  • +
  • Extensive social and cultural interactions worldwide
  • +
  • A balanced emphasis on all energy sources
  • +
+
+
Scenario B1
+
+
    +
  • Rapid economic growth as in A1B, but with rapid changes towards a service and information economy
  • +
  • Population rising to 9 billion in 2050 and then declining as in A1
  • +
  • Reductions in material intensity and the introduction of clean and resource efficient technologies
  • +
  • An emphasis on global solutions to economic, social and environmental stability
  • +
+
+
Scenario A2
+
+
    +
  • A world of independently operating, self-reliant nations
  • +
  • Continuously increasing population
  • +
  • Regionally oriented economic development
  • +
  • Slower and more fragmented technological changes and improvements to per capita income
  • +
+
+
+ +{% endblock %} diff --git a/app/main/views.py b/app/main/views.py index 59685de..f3d8276 100644 --- a/app/main/views.py +++ b/app/main/views.py @@ -56,7 +56,6 @@ def index_submit(): return render_template('main/index.html', form=form) -# TODO: reimport this template @main.route('/datatypes') def datatypes(): return render_template('main/datatypes.html')