variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v2 | Sensor network script:
Node: humidity | code: ref | fields: unit, lat, reading, lon
Sensor: rainfall | fields: reading, ts, level, qc
Task: Get value from humidity where a corresponding entry exists in rainfall with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065000 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: lat, qc, reading, type
Sensor: temperature | fields: level, depth, qc, lat
Task: Retrieve reading from humidity that have at least one matching reading in temperature sharing the same ts.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065001 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: depth, ts, reading, type
Sensor: dew_point | fields: level, unit, qc, reading
Task: Retrieve lon from air_quality with reading above the MAX(depth) of dew_point readings sharing the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065002 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: lat, type, value, level
Sensor: dew_point | fields: lon, depth, value, lat
Task: Get reading from cloud_cover where depth exceeds the maximum depth from dew_point for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065003 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: depth, value, ts, type
Sensor: soil_moisture | fields: type, depth, level, lat
Task: Fetch lon from cloud_cover where reading is greater than the average of reading in soil_moisture for matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065004 | train |
v3 | Sensor network script:
Node: sunlight | code: thr | fields: qc, type, reading, unit
Sensor: drought_index | fields: type, qc, ts, depth
Task: Get level from sunlight where reading exceeds the maximum depth from drought_index for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065005 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: unit, qc, reading, depth
Sensor: rainfall | fields: type, reading, level, value
Task: Get lon from soil_moisture where type appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065006 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: type, unit, lat, level
Sensor: snow_depth | fields: type, reading, lat, ts
Task: Retrieve lon from rainfall with reading above the MIN(value) of snow_depth readings sharing the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065007 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: value, lon, reading, lat
Sensor: lightning | fields: lat, qc, level, unit
Task: Fetch level from sunlight that have at least one corresponding lightning measurement for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065008 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: lat, lon, ts, value
Sensor: sunlight | fields: value, reading, ts, unit
Task: Retrieve lat from cloud_cover with reading above the MIN(depth) of sunlight readings sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065009 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: depth, lat, type, qc
Sensor: dew_point | fields: level, lon, value, depth
Task: Fetch level from visibility that have at least one corresponding dew_point measurement for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065010 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: ts, reading, lat, type
Sensor: wind_speed | fields: lon, value, reading, depth
Task: Get lon from evaporation where a corresponding entry exists in wind_speed with the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065011 | train |
v3 | Sensor network script:
Node: pressure | code: hub | fields: qc, unit, depth, value
Sensor: wind_speed | fields: level, type, lon, lat
Task: Retrieve value from pressure with depth above the MAX(value) of wind_speed readings sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065012 | train |
v3 | Sensor network script:
Node: pressure | code: hub | fields: reading, ts, level, lat
Sensor: frost | fields: reading, value, type, lon
Task: Get lon from pressure where value exceeds the minimum depth from frost for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("frost", code="frs"),
match="qc"),
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065013 | train |
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: reading, level, type, depth
Sensor: visibility | fields: type, ts, lon, qc
Task: Retrieve depth from wind_speed with reading above the AVG(depth) of visibility readings sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065014 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: depth, type, ts, lon
Sensor: humidity | fields: value, type, ts, qc
Task: Fetch level from air_quality where qc exists in humidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065015 | train |
v1 | Sensor network script:
Node: visibility | code: gst | fields: qc, type, depth, unit
Sensor: evaporation | fields: value, depth, lat, lon
Task: Retrieve depth from visibility whose depth is found in evaporation records where unit matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065016 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: level, unit, reading, value
Sensor: evaporation | fields: value, lon, ts, lat
Task: Fetch value from humidity where depth exists in evaporation sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065017 | train |
v3 | Sensor network script:
Node: pressure | code: hub | fields: type, reading, depth, lat
Sensor: visibility | fields: reading, ts, depth, value
Task: Get lon from pressure where depth exceeds the maximum reading from visibility for the same type.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("visibility", code="clr"),
match="type"),
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065018 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: type, depth, unit, qc
Sensor: drought_index | fields: ts, level, type, lat
Task: Retrieve lon from cloud_cover that have at least one matching reading in drought_index sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065019 | train |
v3 | Sensor network script:
Node: cloud_cover | code: hub | fields: qc, level, reading, lat
Sensor: frost | fields: qc, lon, type, unit
Task: Fetch lat from cloud_cover where value is greater than the count of of depth in frost for matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("frost", code="frs"),
match="qc"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065020 | train |
v3 | Sensor network script:
Node: dew_point | code: gst | fields: lon, lat, unit, ts
Sensor: turbidity | fields: level, depth, reading, lon
Task: Retrieve lon from dew_point with depth above the SUM(value) of turbidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065021 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: lat, level, depth, type
Sensor: cloud_cover | fields: qc, unit, ts, level
Task: Get lon from soil_moisture where reading exceeds the total depth from cloud_cover for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065022 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: ts, reading, lon, depth
Sensor: dew_point | fields: reading, unit, ts, lat
Task: Retrieve depth from evaporation that have at least one matching reading in dew_point sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065023 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: lat, value, depth, level
Sensor: temperature | fields: lat, qc, value, depth
Task: Get lat from humidity where depth exceeds the count of reading from temperature for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065024 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: qc, value, lon, level
Sensor: uv_index | fields: type, ts, reading, value
Task: Fetch level from snow_depth where depth is greater than the minimum of reading in uv_index for matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065025 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: lon, type, qc, depth
Sensor: wind_speed | fields: level, lon, qc, lat
Task: Retrieve lat from cloud_cover whose type is found in wind_speed records where depth matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065026 | train |
v1 | Sensor network script:
Node: wind_speed | code: clr | fields: level, lon, reading, ts
Sensor: pressure | fields: qc, reading, lat, type
Task: Fetch depth from wind_speed where ts exists in pressure sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065027 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: qc, lat, type, depth
Sensor: sunlight | fields: level, lon, type, depth
Task: Get depth from temperature where qc appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065028 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: depth, unit, qc, value
Sensor: drought_index | fields: lon, depth, ts, type
Task: Retrieve value from turbidity that have at least one matching reading in drought_index sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065029 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: reading, lon, value, type
Sensor: lightning | fields: depth, lat, ts, reading
Task: Get depth from snow_depth where a corresponding entry exists in lightning with the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065030 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: lon, reading, level, lat
Sensor: snow_depth | fields: reading, ts, type, lat
Task: Fetch reading from drought_index where ts exists in snow_depth sensor data for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065031 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: lat, type, level, ts
Sensor: pressure | fields: type, ts, value, lon
Task: Fetch depth from turbidity that have at least one corresponding pressure measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065032 | train |
v3 | Sensor network script:
Node: soil_moisture | code: mst | fields: lat, value, depth, level
Sensor: wind_speed | fields: type, ts, qc, lat
Task: Fetch lat from soil_moisture where value is greater than the maximum of reading in wind_speed for matching qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065033 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: ts, qc, depth, lat
Sensor: air_quality | fields: depth, lon, ts, value
Task: Get lat from turbidity where qc appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065034 | train |
v2 | Sensor network script:
Node: snow_depth | code: stn | fields: reading, depth, level, lat
Sensor: air_quality | fields: type, value, depth, unit
Task: Fetch lon from snow_depth that have at least one corresponding air_quality measurement for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065035 | train |
v3 | Sensor network script:
Node: snow_depth | code: prt | fields: depth, qc, value, level
Sensor: visibility | fields: ts, reading, type, depth
Task: Retrieve lat from snow_depth with depth above the AVG(depth) of visibility readings sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065036 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: level, value, qc, ts
Sensor: soil_moisture | fields: depth, level, lon, value
Task: Get level from turbidity where unit appears in soil_moisture readings with matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065037 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: type, lon, unit, level
Sensor: wind_speed | fields: level, type, depth, lat
Task: Fetch reading from turbidity where depth is greater than the average of reading in wind_speed for matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065038 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: qc, depth, unit, lon
Sensor: snow_depth | fields: level, depth, ts, lon
Task: Fetch level from frost where unit exists in snow_depth sensor data for the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065039 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: qc, level, lat, value
Sensor: lightning | fields: type, lat, unit, depth
Task: Retrieve value from cloud_cover with depth above the SUM(depth) of lightning readings sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065040 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: lat, unit, level, type
Sensor: pressure | fields: reading, level, lat, depth
Task: Get reading from humidity where ts appears in pressure readings with matching type.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="type",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065041 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: lon, qc, ts, level
Sensor: cloud_cover | fields: qc, value, ts, type
Task: Get depth from rainfall where reading exceeds the count of depth from cloud_cover for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("cloud_cover", code="nbl"),
match="qc"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065042 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: ts, lat, lon, reading
Sensor: pressure | fields: level, type, ts, depth
Task: Retrieve depth from rainfall that have at least one matching reading in pressure sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065043 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: type, lat, value, reading
Sensor: wind_speed | fields: type, qc, depth, lat
Task: Retrieve lat from dew_point whose qc is found in wind_speed records where type matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065044 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: value, level, unit, ts
Sensor: visibility | fields: unit, type, level, depth
Task: Retrieve value from drought_index with depth above the COUNT(depth) of visibility readings sharing the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065045 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: unit, lon, qc, level
Sensor: air_quality | fields: ts, type, lon, qc
Task: Retrieve value from humidity whose ts is found in air_quality records where depth matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065046 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: reading, type, value, unit
Sensor: sunlight | fields: lat, value, unit, ts
Task: Retrieve lon from rainfall with reading above the MIN(reading) of sunlight readings sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065047 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: type, qc, ts, level
Sensor: cloud_cover | fields: reading, lon, value, ts
Task: Get depth from evaporation where depth appears in cloud_cover readings with matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065048 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: level, type, lat, unit
Sensor: dew_point | fields: qc, lat, depth, level
Task: Get depth from rainfall where value exceeds the minimum depth from dew_point for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065049 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: ts, qc, value, reading
Sensor: dew_point | fields: unit, reading, ts, lon
Task: Retrieve reading from wind_speed whose type is found in dew_point records where depth matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065050 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: ts, depth, value, level
Sensor: cloud_cover | fields: depth, ts, lat, unit
Task: Get level from uv_index where a corresponding entry exists in cloud_cover with the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065051 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: value, reading, lat, unit
Sensor: sunlight | fields: unit, type, ts, depth
Task: Fetch level from drought_index that have at least one corresponding sunlight measurement for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065052 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: type, reading, lon, depth
Sensor: wind_speed | fields: depth, type, lat, ts
Task: Get value from frost where a corresponding entry exists in wind_speed with the same ts.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065053 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: ts, level, qc, unit
Sensor: wind_speed | fields: type, qc, unit, reading
Task: Get value from temperature where unit appears in wind_speed readings with matching depth.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065054 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: level, depth, reading, ts
Sensor: evaporation | fields: lat, value, reading, level
Task: Retrieve lat from pressure with value above the MIN(depth) of evaporation readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065055 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: type, value, reading, unit
Sensor: lightning | fields: reading, ts, type, qc
Task: Fetch lon from uv_index that have at least one corresponding lightning measurement for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065056 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: ts, level, reading, type
Sensor: lightning | fields: reading, qc, lat, value
Task: Fetch lon from rainfall that have at least one corresponding lightning measurement for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065057 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: type, ts, reading, lon
Sensor: uv_index | fields: type, reading, ts, value
Task: Fetch level from air_quality that have at least one corresponding uv_index measurement for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065058 | train |
v2 | Sensor network script:
Node: evaporation | code: thr | fields: reading, value, depth, level
Sensor: lightning | fields: ts, unit, type, qc
Task: Retrieve lat from evaporation that have at least one matching reading in lightning sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065059 | train |
v3 | Sensor network script:
Node: dew_point | code: thr | fields: value, lat, level, type
Sensor: soil_moisture | fields: value, depth, reading, lat
Task: Get lon from dew_point where reading exceeds the total value from soil_moisture for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065060 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: reading, depth, qc, type
Sensor: wind_speed | fields: type, lat, lon, value
Task: Fetch lat from evaporation where depth is greater than the count of of depth in wind_speed for matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065061 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: unit, level, reading, qc
Sensor: evaporation | fields: value, lat, type, level
Task: Fetch reading from sunlight that have at least one corresponding evaporation measurement for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065062 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: unit, reading, depth, value
Sensor: cloud_cover | fields: type, level, reading, lon
Task: Retrieve lat from sunlight that have at least one matching reading in cloud_cover sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065063 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: unit, lat, value, level
Sensor: wind_speed | fields: lat, qc, depth, ts
Task: Get depth from lightning where unit appears in wind_speed readings with matching depth.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065064 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: reading, lat, lon, ts
Sensor: cloud_cover | fields: type, lat, ts, qc
Task: Retrieve lat from humidity with reading above the MAX(reading) of cloud_cover readings sharing the same ts.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065065 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: lon, unit, qc, reading
Sensor: rainfall | fields: qc, level, type, depth
Task: Get lat from evaporation where qc appears in rainfall readings with matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065066 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: depth, ts, level, value
Sensor: soil_moisture | fields: unit, lat, qc, ts
Task: Get reading from dew_point where a corresponding entry exists in soil_moisture with the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065067 | train |
v3 | Sensor network script:
Node: evaporation | code: thr | fields: level, lat, lon, reading
Sensor: soil_moisture | fields: lat, reading, ts, level
Task: Retrieve value from evaporation with reading above the AVG(value) of soil_moisture readings sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065068 | train |
v2 | Sensor network script:
Node: pressure | code: clr | fields: qc, type, lat, depth
Sensor: soil_moisture | fields: lon, unit, ts, value
Task: Get lon from pressure where a corresponding entry exists in soil_moisture with the same unit.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065069 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: value, reading, ts, unit
Sensor: wind_speed | fields: ts, unit, lon, value
Task: Fetch lat from visibility that have at least one corresponding wind_speed measurement for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065070 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: type, ts, level, lon
Sensor: snow_depth | fields: depth, lon, ts, qc
Task: Retrieve depth from rainfall that have at least one matching reading in snow_depth sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065071 | train |
v2 | Sensor network script:
Node: drought_index | code: hub | fields: depth, ts, qc, level
Sensor: snow_depth | fields: unit, level, value, reading
Task: Get lon from drought_index where a corresponding entry exists in snow_depth with the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065072 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: level, reading, ts, depth
Sensor: rainfall | fields: lat, qc, value, depth
Task: Get reading from evaporation where a corresponding entry exists in rainfall with the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065073 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: value, unit, depth, lat
Sensor: uv_index | fields: qc, type, lon, level
Task: Get lon from air_quality where ts appears in uv_index readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065074 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: reading, type, qc, ts
Sensor: rainfall | fields: qc, value, reading, type
Task: Get value from frost where value exceeds the maximum value from rainfall for the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065075 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: qc, lon, ts, reading
Sensor: humidity | fields: lat, ts, qc, type
Task: Retrieve depth from turbidity whose depth is found in humidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065076 | train |
v2 | Sensor network script:
Node: air_quality | code: gst | fields: level, type, qc, reading
Sensor: soil_moisture | fields: type, ts, depth, value
Task: Fetch depth from air_quality that have at least one corresponding soil_moisture measurement for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065077 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: reading, level, ts, qc
Sensor: evaporation | fields: depth, unit, reading, lat
Task: Get level from soil_moisture where reading exceeds the maximum reading from evaporation for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065078 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: unit, ts, level, qc
Sensor: uv_index | fields: value, level, ts, lon
Task: Fetch lat from sunlight that have at least one corresponding uv_index measurement for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065079 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: value, level, unit, type
Sensor: snow_depth | fields: ts, qc, depth, unit
Task: Retrieve reading from drought_index whose type is found in snow_depth records where ts matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065080 | train |
v3 | Sensor network script:
Node: air_quality | code: hub | fields: lat, qc, type, depth
Sensor: wind_speed | fields: depth, value, type, qc
Task: Retrieve value from air_quality with value above the MIN(reading) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065081 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: lat, level, depth, unit
Sensor: snow_depth | fields: value, unit, reading, ts
Task: Fetch lat from cloud_cover where ts exists in snow_depth sensor data for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065082 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: level, qc, unit, lat
Sensor: humidity | fields: qc, lon, lat, depth
Task: Get lon from evaporation where ts appears in humidity readings with matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065083 | train |
v1 | Sensor network script:
Node: wind_speed | code: thr | fields: ts, value, qc, reading
Sensor: pressure | fields: reading, unit, lat, type
Task: Get reading from wind_speed where qc appears in pressure readings with matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="type",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065084 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: ts, lon, value, reading
Sensor: frost | fields: lon, ts, level, qc
Task: Fetch lat from soil_moisture that have at least one corresponding frost measurement for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065085 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: value, ts, level, qc
Sensor: turbidity | fields: value, reading, level, qc
Task: Fetch lon from lightning where reading is greater than the minimum of reading in turbidity for matching qc.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065086 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: value, depth, type, lat
Sensor: snow_depth | fields: value, depth, level, ts
Task: Retrieve lat from cloud_cover whose qc is found in snow_depth records where unit matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065087 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: ts, qc, lat, type
Sensor: evaporation | fields: type, unit, depth, qc
Task: Get depth from pressure where a corresponding entry exists in evaporation with the same ts.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065088 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: unit, reading, lat, lon
Sensor: temperature | fields: depth, qc, type, level
Task: Get depth from evaporation where depth appears in temperature readings with matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065089 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: unit, type, lat, depth
Sensor: dew_point | fields: level, lon, lat, value
Task: Get lat from sunlight where reading exceeds the average depth from dew_point for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065090 | train |
v3 | Sensor network script:
Node: pressure | code: gst | fields: value, depth, reading, lat
Sensor: sunlight | fields: level, value, type, depth
Task: Get reading from pressure where depth exceeds the minimum reading from sunlight for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065091 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: value, level, reading, qc
Sensor: drought_index | fields: depth, qc, ts, unit
Task: Get depth from humidity where a corresponding entry exists in drought_index with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065092 | train |
v3 | Sensor network script:
Node: turbidity | code: ref | fields: unit, depth, reading, type
Sensor: snow_depth | fields: lon, level, value, unit
Task: Retrieve value from turbidity with depth above the SUM(reading) of snow_depth readings sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065093 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: level, depth, lon, lat
Sensor: rainfall | fields: depth, qc, level, reading
Task: Get lon from wind_speed where type appears in rainfall readings with matching qc.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065094 | train |
v1 | Sensor network script:
Node: snow_depth | code: ref | fields: lat, reading, level, unit
Sensor: temperature | fields: value, lon, reading, depth
Task: Retrieve value from snow_depth whose type is found in temperature records where ts matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="ts",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_065095 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: ts, type, lon, depth
Sensor: humidity | fields: lat, lon, level, type
Task: Fetch value from rainfall where unit exists in humidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065096 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: value, reading, level, depth
Sensor: turbidity | fields: value, ts, unit, lat
Task: Get value from sunlight where depth exceeds the total reading from turbidity for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065097 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: qc, reading, type, lat
Sensor: frost | fields: qc, lon, lat, reading
Task: Get level from turbidity where unit appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065098 | train |
v1 | Sensor network script:
Node: soil_moisture | code: gst | fields: level, ts, depth, type
Sensor: uv_index | fields: type, depth, lat, ts
Task: Retrieve value from soil_moisture whose unit is found in uv_index records where qc matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_065099 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.