Skip to content

Commit

Permalink
Merge pull request #527 from akrherz/iemapp
Browse files Browse the repository at this point in the history
🐛 Fix attrition issues with TD download
  • Loading branch information
akrherz authored Sep 19, 2024
2 parents da71326 + b05722b commit 8970af3
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 44 deletions.
12 changes: 6 additions & 6 deletions htdocs/td/dl/dl.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,12 @@ def do_metadata_master(pgconn, writer, sites, missing):
sitearea as "site area",
numberofplots as "number of plots"
from metadata_master
WHERE uniqueid in :sites
WHERE uniqueid = ANY(:sites)
ORDER by uniqueid
"""
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
df.replace(["None", None, ""], np.nan, inplace=True)
Expand All @@ -157,11 +157,11 @@ def do_generic(pgconn, writer, tt, fn, tablename, sites, varnames, missing):
"""generalized datatable dumper."""
df = pd.read_sql(
text(
f"SELECT * from {tablename} WHERE siteid in :sites "
f"SELECT * from {tablename} WHERE siteid = ANY(:sites) "
"ORDER by siteid"
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
standard = ["siteid", "plotid", "location", "date", "comments", "year"]
Expand Down Expand Up @@ -206,11 +206,11 @@ def do_plotids(pgconn, writer, sites):
"""Write plotids to the spreadsheet"""
opdf = pd.read_sql(
text(
"SELECT * from meta_plot_identifier where siteid in :sites "
"SELECT * from meta_plot_identifier where siteid = ANY(:sites) "
"ORDER by siteid, plotid ASC"
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
)
opdf, worksheet = add_bling(
pgconn,
Expand Down
65 changes: 29 additions & 36 deletions htdocs/td/dl/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import json

import pandas as pd
from paste.request import parse_formvars
from pyiem.util import get_dbconnstr
from pyiem.database import get_sqlalchemy_conn
from pyiem.webutil import ensure_list, iemapp
from sqlalchemy import text

# NOTE: filter.py is upstream for this table, copy to dl.py
Expand Down Expand Up @@ -76,49 +76,41 @@ def agg(arr):
return arr


def do_filter(form):
def do_filter(pgconn, environ):
"""Do the filtering fun."""
pgconn = get_dbconnstr("td")
res = {"treatments": [], "agronomic": [], "soil": [], "water": []}
sites = agg(form.getall("sites[]"))
# treatments = agg(form.getall("treatments[]"))
# agronomic = agg(form.getall("agronomic[]"))
# soil = agg(form.getall("soil[]"))
# ghg = agg(form.getall("ghg[]"))
# water = agg(form.get("water[]"))
# ipm = agg(form.get("ipm[]"))
# year = agg(form.get("year[]"))
sites = agg(ensure_list(environ, "sites[]"))

# build a list of treatments based on the sites selected
df = pd.read_sql(
text(
"select distinct drainage_water_management, irrigation "
"from meta_treatment_identifier where "
"siteid in :sites"
"siteid = ANY(:sites)"
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
res["treatments"] = df["drainage_water_management"].unique().tolist()
res["treatments"].extend(df["irrigation"].unique().tolist())

# Agronomic Filtering
df = pd.read_sql(
text("select * from agronomic_data where siteid in :sites"),
text("select * from agronomic_data where siteid = ANY(:sites)"),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
for col, val in df.max().iteritems():
for col, val in df.max(numeric_only=True).items():
if not pd.isnull(val):
res["agronomic"].append(col)

# Soil Filtering
df = pd.read_sql(
text("select * from soil_properties_data where siteid in :sites"),
text("select * from soil_properties_data where siteid = ANY(:sites)"),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
for col in df.columns:
Expand All @@ -130,29 +122,29 @@ def do_filter(form):
df = pd.read_sql(
text(
"select max(water_table_depth) as water_table_depth "
"from water_table_data where siteid in :sites "
"from water_table_data where siteid = ANY(:sites) "
"GROUP by siteid"
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
for col, val in df.max().iteritems():
for col, val in df.max(numeric_only=True).items():
if not pd.isnull(val):
res["water"].append(col)

# Water Stage Filtering
df = pd.read_sql(
text(
"select max(stage) as water_stage "
"from water_stage_data where siteid in :sites "
"from water_stage_data where siteid = ANY(:sites) "
"GROUP by siteid"
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
for col, val in df.max().iteritems():
for col, val in df.max(numeric_only=True).items():
if not pd.isnull(val):
res["water"].append(col)

Expand All @@ -162,13 +154,13 @@ def do_filter(form):
"select max(soil_moisture) as soil_moisture, "
"max(soil_temperature) as soil_temperature, "
"max(soil_ec) as soil_ec from soil_moisture_data where "
"siteid in :sites GROUP by siteid"
"siteid = ANY(:sites) GROUP by siteid"
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
for col, val in df.max().iteritems():
for col, val in df.max(numeric_only=True).items():
if not pd.isnull(val):
res["water"].append(col)
df = pd.read_sql(
Expand All @@ -179,20 +171,20 @@ def do_filter(form):
"max(nitrate_n_removed) as nitrate_n_removed, "
"max(tile_flow_filled) as tile_flow_filled, "
"max(nitrate_n_load_filled) as nitrate_n_load_filled "
"from tile_flow_and_N_loads_data where siteid in :sites "
"from tile_flow_and_N_loads_data where siteid = ANY(:sites) "
"GROUP by siteid"
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
for col, val in df.max().iteritems():
for col, val in df.max(numeric_only=True).items():
if not pd.isnull(val):
res["water"].append(col)
df = pd.read_sql(
text("select * from water_quality_data where siteid in :sites"),
text("select * from water_quality_data where siteid = ANY(:sites)"),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
# tricky non-numeric stuff here, sigh
Expand All @@ -204,9 +196,10 @@ def do_filter(form):
return res


@iemapp()
def application(environ, start_response):
"""Do Stuff"""
start_response("200 OK", [("Content-type", "application/json")])
form = parse_formvars(environ)
res = do_filter(form)
return [json.dumps(res).encode("utf-8")]
with get_sqlalchemy_conn("td") as pgconn:
res = do_filter(pgconn, environ)
return json.dumps(res).encode("utf-8")
4 changes: 2 additions & 2 deletions htdocs/td/dl/wxdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ def do_work(form):
df = pd.read_sql(
text(
"SELECT *, extract(doy from date) as doy from weather_data "
"WHERE siteid in :sites and date >= :sts and date <= :ets "
"WHERE siteid = ANY(:sites) and date >= :sts and date <= :ets "
"ORDER by siteid ASC, date ASC"
),
pgconn,
params={"sites": tuple(stations), "sts": sts, "ets": ets},
params={"sites": stations, "sts": sts, "ets": ets},
index_col=None,
)

Expand Down

0 comments on commit 8970af3

Please sign in to comment.