Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mnt: misc cleanups #506

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 30 additions & 37 deletions htdocs/cscap/dl/dl.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import pandas as pd
from pyiem.exceptions import NoDataFound
from pyiem.util import get_dbconn, get_dbconnstr, logger
from pyiem.webutil import iemapp
from pyiem.webutil import ensure_list, iemapp
from pymemcache import Client
from sqlalchemy import text

Expand Down Expand Up @@ -241,12 +241,12 @@ def do_metadata_master(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 @@ -268,12 +268,12 @@ def do_ghg(writer, sites, ghg, years, missing):
from ghg_data d JOIN plotids p on (d.uniqueid = p.uniqueid and
d.plotid = p.plotid)
WHERE (p.herbicide != 'HERB2' or p.herbicide is null)
and d.uniqueid in :sites and d.year in :years
and d.uniqueid = ANY(:sites) and d.year = ANY(:years)
ORDER by d.uniqueid, year, date, plotid
"""
),
PGCONN,
params={"sites": tuple(sites), "years": tuple(years)},
params={"sites": sites, "years": years},
index_col=None,
)
df.fillna(missing, inplace=True)
Expand All @@ -291,12 +291,12 @@ def do_ipm(writer, sites, ipm, years, missing):
from ipm_data d JOIN plotids p on (d.uniqueid = p.uniqueid and
d.plotid = p.plotid)
WHERE (p.herbicide != 'HERB2' or p.herbicide is null) and
d.uniqueid in :sites and d.year in :years
d.uniqueid = ANY(:sites) and d.year = ANY(:years)
ORDER by d.uniqueid, year, date, plotid
"""
),
PGCONN,
params={"sites": tuple(sites), "years": tuple(years)},
params={"sites": sites, "years": years},
index_col=None,
)
df.fillna(missing, inplace=True)
Expand All @@ -314,15 +314,15 @@ def do_agronomic(writer, sites, agronomic, years, detectlimit, missing):
from agronomic_data d JOIN plotids p on (d.uniqueid = p.uniqueid and
d.plotid = p.plotid)
WHERE (p.herbicide != 'HERB2' or p.herbicide is null) and
d.uniqueid in :sites and year in :years and varname in :vars
d.uniqueid = ANY(:sites) and year = ANY(:years) and varname = ANY(:vars)
ORDER by uniqueid, year, plotid
"""
),
PGCONN,
params={
"sites": tuple(sites),
"years": tuple(years),
"vars": tuple(agronomic),
"sites": sites,
"years": years,
"vars": agronomic,
},
index_col=None,
)
Expand Down Expand Up @@ -387,9 +387,6 @@ def add_bling(writer, df, sheetname, tabname):

def do_soil(writer, sites, soil, years, detectlimit, missing):
"""get soil data"""
# pprint("do_soil: " + str(soil))
# pprint("do_soil: " + str(sites))
# pprint("do_soil: " + str(years))
df = pd.read_sql(
text(
"""
Expand All @@ -399,15 +396,15 @@ def do_soil(writer, sites, soil, years, detectlimit, missing):
from soil_data d JOIN plotids p ON (d.uniqueid = p.uniqueid and
d.plotid = p.plotid)
WHERE (p.herbicide != 'HERB2' or p.herbicide is null) and
d.uniqueid in :sites and year in :years and varname in :vars
d.uniqueid = ANY(:sites) and year = ANY(:years) and varname = ANY(:vars)
ORDER by uniqueid, year, plotid, subsample
"""
),
PGCONN,
params={
"sites": tuple(sites),
"years": tuple(years),
"vars": tuple(soil),
"sites": sites,
"years": years,
"vars": soil,
},
index_col=None,
)
Expand Down Expand Up @@ -497,12 +494,12 @@ def do_operations(writer, sites, years, missing):
-- These are deleted below
nitrogen, phosphorus, phosphate, potassium,
potash, sulfur, calcium, magnesium, zinc, iron
from operations where uniqueid in :sites and cropyear in :years
from operations where uniqueid = ANY(:sites) and cropyear = ANY(:years)
ORDER by uniqueid ASC, cropyear ASC, valid ASC
"""
),
PGCONN,
params={"sites": tuple(sites), "years": tuple(years)},
params={"sites": sites, "years": years},
)
opdf["productrate"] = pd.to_numeric(opdf["productrate"], errors="coerce")
for fert in FERTELEM:
Expand Down Expand Up @@ -545,12 +542,12 @@ def do_management(writer, sites, years):
irrigationmethod, residueremoval, residuehow, residuebiomassweight,
residuebiomassmoisture, residueplantingpercentage, residuetype,
limeyear, comments
from management where uniqueid in :sites and cropyear in :years
from management where uniqueid = ANY(:sites) and cropyear = ANY(:years)
ORDER by cropyear ASC
"""
),
PGCONN,
params={"sites": tuple(sites), "years": tuple(years)},
params={"sites": sites, "years": [str(x) for x in years]},
)
opdf.to_excel(writer, "Residue, Irrigation", index=False)

Expand All @@ -568,13 +565,13 @@ def do_pesticides(writer, sites, years):
product3, rate3, rateunit3,
product4, rate4, rateunit4,
adjuvant1, adjuvant2, comments
from pesticides where uniqueid in :sites and cropyear in :years and
from pesticides where uniqueid = ANY(:sites) and cropyear = ANY(:years) and
operation != 'seed'
ORDER by uniqueid ASC, cropyear ASC, valid ASC
"""
),
PGCONN,
params={"sites": tuple(sites), "years": tuple(years)},
params={"sites": sites, "years": [str(x) for x in years]},
)
valid2date(opdf)
opdf, worksheet = add_bling(writer, opdf, "Pesticides", "Pesticides")
Expand Down Expand Up @@ -610,13 +607,13 @@ def do_plotids(writer, sites):
soilseriesdescription4,
soiltaxonomicclass4
from plotids p LEFT JOIN xref_rotation x on (p.rotation = x.code)
where uniqueid in :sites and
where uniqueid = ANY(:sites) and
(herbicide != 'HERB2' or herbicide is null)
ORDER by uniqueid, plotid ASC
"""
),
PGCONN,
params={"sites": tuple(sites)},
params={"sites": sites},
)
# Fake rotation codes
opdf.replace({"rotation": ROT_CODES}, inplace=True)
Expand All @@ -639,13 +636,13 @@ def do_notes(writer, sites, missing):
SELECT "primary" as uniqueid, overarching_data_category, data_type,
replace(growing_season, '.0', '') as growing_season,
comments
from highvalue_notes where "primary" in :sites
from highvalue_notes where "primary" = ANY(:sites)
ORDER by "primary" ASC, overarching_data_category ASC, data_type ASC,
growing_season ASC
"""
),
PGCONN,
params={"sites": tuple(sites)},
params={"sites": sites},
)
opdf.replace(["None", None, ""], np.nan, inplace=True)
opdf.dropna(how="all", inplace=True)
Expand All @@ -665,12 +662,12 @@ def do_dwm(writer, sites, missing):
"""
SELECT uniqueid, plotid, cropyear, cashcrop, boxstructure,
outletdepth, outletdate, comments
from dwm where uniqueid in :sites
from dwm where uniqueid = ANY(:sites)
ORDER by uniqueid ASC, cropyear ASC
"""
),
PGCONN,
params={"sites": tuple(sites)},
params={"sites": sites},
)
opdf.replace(["None", None, ""], np.nan, inplace=True)
opdf.dropna(how="all", inplace=True)
Expand All @@ -691,24 +688,20 @@ def do_work(environ, start_response):
if agree != "AGREE":
raise NoDataFound("You did not agree to download terms.")
email = environ.get("email")
sites = list(environ.get("sites[]", []))
if not sites:
sites.append("XXX")
sites = ensure_list(environ, "sites[]")
# treatments = form.getlist('treatments[]')
agronomic = redup(list(environ.get("agronomic[]", [])))
soil = redup(list(environ.get("soil[]", [])))
ghg = redup(list(environ.get("ghg[]", [])))
ipm = redup(list(environ.get("ipm[]", [])))
years = redup(list(environ.get("year[]", [])))
years = [int(x) for x in list(environ.get("year[]", []))]
if not years:
years = ["2011", "2012", "2013", "2014", "2015"]
years = [2011, 2012, 2013, 2014, 2015]
shm = redup(list(environ.get("shm[]", [])))
missing = environ.get("missing", "M")
if missing == "__custom__":
missing = environ.get("custom_missing", "M")
pprint("Missing is %s" % (missing,))
if years:
years = [str(s) for s in range(2011, 2016)]
detectlimit = environ.get("detectlimit", "1")

writer = pd.ExcelWriter("/tmp/cscap.xlsx", engine="xlsxwriter")
Expand Down
54 changes: 27 additions & 27 deletions htdocs/cscap/dl/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import pandas as pd
from pyiem.util import get_dbconnstr
from pyiem.webutil import iemapp
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 @@ -66,8 +66,6 @@ def redup(arr):

def agg(arr):
"""Make listish and apply dedup logic"""
if len(arr) == 0:
arr.append("ZZZ")
additional = []
for val in arr:
if val in AGG:
Expand All @@ -90,22 +88,22 @@ def do_filter(environ):
"ipm": [],
"year": [],
}
sites = agg(list(environ.get("sites[]", [])))
treatments = agg(list(environ.get("treatments[]", [])))
agronomic = agg(list(environ.get("agronomic[]", [])))
soil = agg(list(environ.get("soil[]", [])))
ghg = agg(list(environ.get("ghg[]", [])))
sites = agg(ensure_list(environ, "sites[]"))
treatments = agg(ensure_list(environ, "treatments[]"))
agronomic = agg(ensure_list(environ, "agronomic[]"))
soil = agg(ensure_list(environ, "soil[]"))
ghg = agg(ensure_list(environ, "ghg[]"))

# build a list of treatments based on the sites selected
df = pd.read_sql(
text(
"""
SELECT distinct tillage, rotation, drainage, nitrogen,
landscape from plotids where uniqueid in :sites
landscape from plotids where uniqueid = ANY(:sites)
"""
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
arr = []
Expand All @@ -119,7 +117,7 @@ def do_filter(environ):
# build a list of agronomic data based on the plotids and sites
a = {}
arsql = []
args = {"sites": tuple(sites)}
args = {"sites": sites}
for lc, col in zip(
["TIL", "ROT", "DWM", "NIT", "LND"],
["tillage", "rotation", "drainage", "nitrogen", "landscape"],
Expand All @@ -128,8 +126,8 @@ def do_filter(environ):
if lc == "LND":
a[lc].append("n/a")
if len(a[lc]) > 0:
arsql.append(f" {col} in :{col}")
args[col] = tuple(a[lc])
arsql.append(f" {col} = ANY(:{col})")
args[col] = a[lc]
if len(arsql) == 0:
sql = ""
else:
Expand All @@ -141,7 +139,7 @@ def do_filter(environ):
f"""
with myplotids as (
SELECT uniqueid, plotid, nitrogen from plotids
WHERE uniqueid in :sites {sql}
WHERE uniqueid = ANY(:sites) {sql}
)
SELECT distinct varname from agronomic_data a, myplotids p
WHERE a.uniqueid = p.uniqueid and a.plotid = p.plotid and
Expand All @@ -161,7 +159,7 @@ def do_filter(environ):
f"""
with myplotids as (
SELECT uniqueid, plotid from plotids
WHERE uniqueid in :sites {sql}
WHERE uniqueid = ANY(:sites) {sql}
)
SELECT distinct varname from soil_data a, myplotids p
WHERE a.uniqueid = p.uniqueid and a.plotid = p.plotid and
Expand All @@ -181,14 +179,14 @@ def do_filter(environ):
"""
with myplotids as (
SELECT uniqueid, plotid from plotids
WHERE uniqueid in :sites
WHERE uniqueid = ANY(:sites)
)
SELECT * from ghg_data a, myplotids p
WHERE a.uniqueid = p.uniqueid and a.plotid = p.plotid
"""
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
if not df.empty:
Expand All @@ -203,14 +201,14 @@ def do_filter(environ):
"""
with myplotids as (
SELECT uniqueid, plotid from plotids
WHERE uniqueid in :sites
WHERE uniqueid = ANY(:sites)
)
SELECT * from ipm_data a, myplotids p
WHERE a.uniqueid = p.uniqueid and a.plotid = p.plotid
"""
),
pgconn,
params={"sites": tuple(sites)},
params={"sites": sites},
index_col=None,
)
if not df.empty:
Expand All @@ -228,13 +226,15 @@ def do_filter(environ):
text(
f"""
WITH soil_years as (
SELECT distinct year from soil_data where varname in :soils
and uniqueid in :sites and value not in ('n/a', 'did not collect')),
SELECT distinct year from soil_data where varname = ANY(:soils)
and uniqueid = ANY(:sites)
and value not in ('n/a', 'did not collect')),
agronomic_years as (
SELECT distinct year from agronomic_data where varname in :ags
and uniqueid in :sites and value not in ('n/a', 'did not collect')),
SELECT distinct year from agronomic_data where varname = ANY(:ags)
and uniqueid = ANY(:sites)
and value not in ('n/a', 'did not collect')),
ghg_years as (
SELECT distinct year from ghg_data where uniqueid in :sites
SELECT distinct year from ghg_data where uniqueid = ANY(:sites)
and {ghglimiter}),
agg as (SELECT year from soil_years UNION select year from agronomic_years
UNION select year from ghg_years)
Expand All @@ -244,9 +244,9 @@ def do_filter(environ):
),
pgconn,
params={
"soils": tuple(soil),
"sites": tuple(sites),
"ags": tuple(agronomic),
"soils": soil,
"sites": sites,
"ags": agronomic,
},
index_col=None,
)
Expand Down
Loading