diff --git a/app/main/forms.py b/app/main/forms.py index c7fbc96..19c791d 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -1,39 +1,27 @@ from flask_wtf import Form from wtforms import IntegerField, SelectField from wtforms.validators import NumberRange, Required -from wtforms.ext.sqlalchemy.fields import QuerySelectField from sqlalchemy import func -from .models import Dataset, Temperature, DB +from .models import Temperature, DB + +from flask import current_app class AKIYearField(IntegerField): def pre_validate(self, form): - if form.model.data is not None: - ymin, ymax = Temperature.query \ - .with_entities(func.min(Temperature.year), - func.max(Temperature.year)) \ - .filter(Temperature.dataset_id == form.model.data.id).all()[0] - self.validators = [NumberRange(min=ymin, max=ymax), Required()] - - -def datasets(): - return Dataset.query.order_by('datatype', 'model', 'scenario') - - -def dataset_names(ds): - return "{0.type} ({0.resolution}) - {0.modelname} {0.scenario}".format(ds) + pass + # if form.dataset.data is not None: + # ymin, ymax = Temperature.query \ + # .with_entities(func.min(Temperature.year), + # func.max(Temperature.year)) \ + # .filter(Temperature.dataset_id == form.dataset.data.id).all()[0] + # self.validators = [NumberRange(min=ymin, max=ymax), Required()] class AKIForm(Form): community = SelectField(coerce=int, validators=[Required(message='Please select a community')]) - + dataset = SelectField(validators=[Required(message='Please select a dataset')]) minyear = AKIYearField('minyear') maxyear = AKIYearField('maxyear') - - model = QuerySelectField(query_factory=datasets, - get_label=dataset_names, - allow_blank=True, - blank_text='---Select a dataset---', - validators=[Required(message='Please select a dataset')]) diff --git a/app/main/models.py b/app/main/models.py index 64a9d3f..29115e6 100644 --- a/app/main/models.py +++ b/app/main/models.py @@ -62,3 +62,35 @@ class DB: """ result = db.engine.execute(text(cmd), id=id).fetchall() return result or abort(500) + + @classmethod + def getDatasets(cls): + cmd = """ + SELECT DISTINCT ON ( + doc->'model', + doc->'datatype', + doc->'resolution', + doc->'modelname', + doc->'scenario' + ) + doc->'model' AS model, + doc->'datatype' AS datatype, + doc->'resolution' AS resolution, + doc->'modelname' AS modelname, + doc->'scenario' AS scenario + FROM new_communities c, + jsonb_array_elements(c.data) + WITH ORDINALITY t1(doc, rn) + ORDER BY datatype ASC, modelname ASC, scenario ASC; + """ + result = db.engine.execute(text(cmd), id=id).fetchall() + return result or abort(500) + +# WITH x AS ( +# SELECT name, jsonb_array_elements(data) AS data +# FROM new_communities +# WHERE name='Anchorage') +# SELECT d.key::INTEGER AS year, d.value AS temperatures +# FROM x, jsonb_each(data) d +# WHERE data->>'model'='CRU' +# AND d.key NOT IN ('model', 'datatype', 'scenario', 'modelname', 'resolution'); diff --git a/app/main/templates/main/index.html b/app/main/templates/main/index.html index 434d7ae..f10d275 100644 --- a/app/main/templates/main/index.html +++ b/app/main/templates/main/index.html @@ -19,7 +19,7 @@