diff --git a/README.md b/README.md index 99f0aea..eeaac57 100644 --- a/README.md +++ b/README.md @@ -16,34 +16,12 @@ Prerequisites - [AKExtract](http://github.com/thermokarst/akextract) - Flask (0.10.1) -- SQLAlchemy (0.8.2) -- psycopg2 (2.5.1) -- flask-wtf (0.9.1) +- SQLAlchemy (1.0.5) +- psycopg2 (2.6.1) +- flask-wtf (0.12) - PostgreSQL (9.4+) -Installation ------------- - -1) Clone the repo: - - $ git clone https://github.com/thermokarst/akindices - -2) Get the data from http://snap.uaf.edu - -3) Copy `config.py.default` to `config.py`, edit the parameters to suit your needs. - -4) Launch a python interpreter and populate the database with data: - - $ python - >>> import akindices - >>> akindices.database.init_db() - -5) Launch the application with: - - $ ./run.py - - Contact ------- diff --git a/app/main/forms.py b/app/main/forms.py index 933d981..b5c3fde 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -1,7 +1,6 @@ from flask_wtf import Form from wtforms import IntegerField, SelectField from wtforms.validators import NumberRange, Required -from sqlalchemy import func class AKIYearField(IntegerField): diff --git a/app/main/models.py b/app/main/models.py index d79fdef..c95f7c6 100644 --- a/app/main/models.py +++ b/app/main/models.py @@ -1,5 +1,4 @@ from app import db -from sqlalchemy.ext.hybrid import hybrid_property from sqlalchemy.sql import text from flask import abort diff --git a/app/misc/transform.sql b/app/misc/transform.sql index 4547434..c563e1e 100644 --- a/app/misc/transform.sql +++ b/app/misc/transform.sql @@ -77,19 +77,3 @@ SELECT c.name, c.latitude, c.longitude, c.northing, c.easting, t.data INTO new_communities FROM temp05 t INNER JOIN communities c ON c.id=t.community_id; - - - - - - - - - - - - - - - -select distinct on (doc->'model', doc->'datatype', doc->'scenario') doc->'model', doc->'datatype', doc->'scenario' from new_communities c, jsonb_array_elements(c.data) with ordinality t1(doc, rn); diff --git a/config.py b/config.py index b0ec360..0e41ae1 100644 --- a/config.py +++ b/config.py @@ -28,12 +28,3 @@ config = { 'default': DevelopmentConfig } - -# WITH x AS ( -# SELECT name, jsonb_array_elements(data) AS data -# FROM temps06 -# 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/requirements.txt b/requirements.txt index 3d79a54..ef45825 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,9 +9,3 @@ itsdangerous==0.24 psycopg2==2.6.1 Flask-WTF==0.12 WTForms==2.0.2 -flake8==2.4.1 -flake8-docstrings==0.2.1.post1 -mccabe==0.3.1 -pep257==0.6.0 -pep8==1.5.7 -pyflakes==0.8.1