variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v1 | Sensor network script:
Node: drought_index | code: prt | fields: value, lon, level, reading
Sensor: lightning | fields: qc, depth, lat, type
Task: Get reading from drought_index where type appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="type",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066200 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: depth, qc, lat, type
Sensor: temperature | fields: lon, reading, lat, level
Task: Retrieve value from wind_speed with value above the MIN(value) of temperature readings sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066201 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: ts, type, value, depth
Sensor: humidity | fields: lon, type, reading, level
Task: Fetch lon from air_quality where depth is greater than the minimum of reading in humidity for matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066202 | train |
v2 | Sensor network script:
Node: humidity | code: gst | fields: lon, lat, type, depth
Sensor: visibility | fields: unit, depth, type, lon
Task: Get level from humidity where a corresponding entry exists in visibility with the same type.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066203 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: value, unit, depth, lon
Sensor: pressure | fields: level, unit, type, lon
Task: Get reading from sunlight where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066204 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: value, type, unit, qc
Sensor: evaporation | fields: lat, value, unit, reading
Task: Fetch lon from air_quality where value is greater than the count of of value in evaporation for matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066205 | train |
v1 | Sensor network script:
Node: wind_speed | code: thr | fields: reading, lon, lat, unit
Sensor: evaporation | fields: level, type, reading, unit
Task: Fetch level from wind_speed where depth exists in evaporation sensor data for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066206 | train |
v1 | Sensor network script:
Node: humidity | code: hub | fields: level, reading, lon, qc
Sensor: uv_index | fields: unit, reading, value, qc
Task: Fetch level from humidity where depth exists in uv_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066207 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: ts, type, unit, lon
Sensor: evaporation | fields: unit, level, ts, lon
Task: Retrieve level from lightning whose ts is found in evaporation records where unit matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066208 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: type, unit, reading, level
Sensor: dew_point | fields: value, reading, level, unit
Task: Get depth from rainfall where value exceeds the total depth from dew_point for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
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": "SUM",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066209 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: reading, lat, unit, ts
Sensor: humidity | fields: qc, type, lat, lon
Task: Get value from temperature where a corresponding entry exists in humidity with the same depth.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066210 | train |
v2 | Sensor network script:
Node: temperature | code: stn | fields: reading, type, level, lon
Sensor: lightning | fields: value, qc, depth, level
Task: Retrieve value from temperature that have at least one matching reading in lightning sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066211 | train |
v3 | Sensor network script:
Node: drought_index | code: hub | fields: lat, depth, lon, level
Sensor: visibility | fields: depth, ts, reading, level
Task: Retrieve value from drought_index with value above the AVG(reading) of visibility readings sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("visibility", code="clr"),
match="type"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066212 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: depth, qc, reading, lon
Sensor: visibility | fields: value, lon, qc, ts
Task: Get level from frost where type appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="qc",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066213 | train |
v3 | Sensor network script:
Node: visibility | code: prt | fields: lon, lat, unit, qc
Sensor: frost | fields: level, ts, unit, depth
Task: Get reading from visibility where depth exceeds the total value from frost for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("frost", code="frs"),
match="depth"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066214 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: value, depth, lat, lon
Sensor: soil_moisture | fields: lon, ts, unit, value
Task: Fetch lat from snow_depth that have at least one corresponding soil_moisture measurement for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066215 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: type, depth, lat, ts
Sensor: air_quality | fields: depth, type, qc, lat
Task: Retrieve lat from pressure with value above the MAX(reading) of air_quality readings sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("air_quality", code="prt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066216 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: level, reading, qc, unit
Sensor: temperature | fields: level, qc, type, reading
Task: Retrieve level from frost that have at least one matching reading in temperature sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066217 | train |
v3 | Sensor network script:
Node: visibility | code: prt | fields: unit, depth, reading, lat
Sensor: snow_depth | fields: depth, reading, ts, unit
Task: Retrieve value from visibility with value above the SUM(depth) of snow_depth readings sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066218 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: unit, lat, qc, level
Sensor: lightning | fields: ts, lon, lat, unit
Task: Get reading from rainfall where type appears in lightning readings with matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066219 | train |
v3 | Sensor network script:
Node: frost | code: ref | fields: level, unit, lat, type
Sensor: cloud_cover | fields: ts, reading, level, lon
Task: Get reading from frost where reading exceeds the total reading from cloud_cover for the same depth.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066220 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: value, type, ts, depth
Sensor: soil_moisture | fields: level, lon, ts, lat
Task: Fetch depth from frost where qc exists in soil_moisture sensor data for the same ts.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066221 | train |
v1 | Sensor network script:
Node: soil_moisture | code: clr | fields: unit, lon, value, type
Sensor: temperature | fields: lat, depth, qc, level
Task: Retrieve level from soil_moisture whose unit is found in temperature records where unit matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066222 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: ts, lat, depth, reading
Sensor: uv_index | fields: ts, type, unit, lon
Task: Get level from lightning where qc appears in uv_index readings with matching depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066223 | train |
v2 | Sensor network script:
Node: snow_depth | code: stn | fields: qc, type, level, lon
Sensor: evaporation | fields: unit, value, reading, level
Task: Retrieve lat from snow_depth that have at least one matching reading in evaporation sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066224 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: level, type, ts, depth
Sensor: cloud_cover | fields: level, ts, type, unit
Task: Fetch lon from drought_index where depth is greater than the maximum of reading in cloud_cover for matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066225 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: value, type, ts, lat
Sensor: evaporation | fields: lon, lat, reading, ts
Task: Fetch depth from sunlight where qc exists in evaporation sensor data for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="type",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066226 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: unit, ts, lon, level
Sensor: humidity | fields: lon, type, level, qc
Task: Retrieve level from uv_index that have at least one matching reading in humidity sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066227 | train |
v2 | Sensor network script:
Node: drought_index | code: gst | fields: qc, depth, lat, type
Sensor: temperature | fields: level, reading, value, lat
Task: Get lon from drought_index where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066228 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: unit, type, level, ts
Sensor: visibility | fields: type, level, lon, ts
Task: Fetch depth from dew_point that have at least one corresponding visibility measurement for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066229 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: qc, value, level, reading
Sensor: evaporation | fields: qc, lon, depth, lat
Task: Fetch value from wind_speed that have at least one corresponding evaporation measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066230 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: qc, level, type, ts
Sensor: pressure | fields: ts, lat, lon, level
Task: Get depth from dew_point where unit appears in pressure readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066231 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: qc, type, value, depth
Sensor: rainfall | fields: level, depth, reading, lon
Task: Fetch depth from turbidity where depth exists in rainfall sensor data for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066232 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: lat, depth, reading, qc
Sensor: visibility | fields: lon, type, ts, reading
Task: Get depth from frost where depth exceeds the count of reading from visibility for the same type.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("visibility", code="clr"),
match="type"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066233 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: lon, unit, level, reading
Sensor: cloud_cover | fields: level, reading, unit, lat
Task: Retrieve value from temperature whose unit is found in cloud_cover records where depth matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066234 | train |
v1 | Sensor network script:
Node: visibility | code: clr | fields: lon, lat, reading, unit
Sensor: temperature | fields: reading, value, level, type
Task: Fetch lat from visibility where type exists in temperature sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="qc",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066235 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: qc, unit, lon, level
Sensor: cloud_cover | fields: lon, reading, depth, lat
Task: Get reading from humidity where a corresponding entry exists in cloud_cover with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066236 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: level, value, ts, reading
Sensor: turbidity | fields: ts, lon, value, unit
Task: Get lon from evaporation where a corresponding entry exists in turbidity with the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066237 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: reading, ts, type, depth
Sensor: dew_point | fields: unit, reading, depth, level
Task: Fetch depth from drought_index where unit exists in dew_point sensor data for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066238 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: lat, qc, reading, value
Sensor: temperature | fields: lat, reading, ts, unit
Task: Get lon from turbidity where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066239 | train |
v3 | Sensor network script:
Node: snow_depth | code: gst | fields: lat, qc, unit, ts
Sensor: sunlight | fields: ts, unit, lat, level
Task: Get depth from snow_depth where depth exceeds the minimum depth from sunlight for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066240 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: lon, depth, type, lat
Sensor: air_quality | fields: unit, lon, type, reading
Task: Retrieve level from humidity that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066241 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: qc, depth, lat, unit
Sensor: air_quality | fields: ts, lon, unit, value
Task: Retrieve lon from sunlight with reading above the MAX(depth) of air_quality readings sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066242 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: level, type, unit, depth
Sensor: turbidity | fields: reading, level, depth, unit
Task: Get depth from sunlight where depth exceeds the maximum value from turbidity for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066243 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: depth, lat, reading, ts
Sensor: lightning | fields: reading, unit, lon, depth
Task: Retrieve value from drought_index with value above the COUNT(value) of lightning readings sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066244 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: unit, lat, depth, qc
Sensor: rainfall | fields: unit, reading, qc, value
Task: Fetch depth from snow_depth where ts exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066245 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: unit, level, qc, reading
Sensor: uv_index | fields: qc, lon, reading, lat
Task: Fetch lon from sunlight where value is greater than the maximum of depth in uv_index for matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066246 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: ts, value, lat, reading
Sensor: lightning | fields: lat, unit, depth, lon
Task: Retrieve reading from air_quality whose depth is found in lightning records where ts matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066247 | train |
v3 | Sensor network script:
Node: temperature | code: clr | fields: value, lat, level, depth
Sensor: drought_index | fields: lon, type, ts, depth
Task: Retrieve lat from temperature with reading above the AVG(depth) of drought_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066248 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: qc, lon, lat, type
Sensor: lightning | fields: qc, lon, value, lat
Task: Get lat from soil_moisture where ts appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="type",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066249 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: level, unit, value, ts
Sensor: temperature | fields: lat, reading, type, lon
Task: Fetch reading from drought_index that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066250 | train |
v3 | Sensor network script:
Node: wind_speed | code: ref | fields: value, qc, type, unit
Sensor: humidity | fields: value, lat, unit, qc
Task: Get lat from wind_speed where depth exceeds the average depth from humidity for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066251 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: reading, level, value, lat
Sensor: uv_index | fields: type, qc, ts, level
Task: Fetch value from air_quality where reading is greater than the total of value in uv_index for matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066252 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: depth, type, lat, reading
Sensor: lightning | fields: depth, lat, value, lon
Task: Get lon from visibility where value exceeds the total depth from lightning for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066253 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: depth, level, lat, type
Sensor: frost | fields: lon, depth, type, level
Task: Fetch lon from snow_depth where depth exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066254 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: value, unit, qc, lon
Sensor: humidity | fields: depth, level, value, ts
Task: Retrieve level from sunlight that have at least one matching reading in humidity sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066255 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: qc, value, ts, lat
Sensor: pressure | fields: reading, type, depth, lon
Task: Fetch value from sunlight where qc exists in pressure sensor data for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="type",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066256 | train |
v3 | Sensor network script:
Node: pressure | code: mst | fields: type, reading, qc, lat
Sensor: turbidity | fields: type, unit, level, qc
Task: Get depth from pressure where reading exceeds the count of value from turbidity for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066257 | train |
v3 | Sensor network script:
Node: evaporation | code: hub | fields: unit, level, ts, value
Sensor: humidity | fields: unit, qc, type, ts
Task: Get depth from evaporation where value exceeds the minimum value from humidity for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066258 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: level, type, lon, reading
Sensor: humidity | fields: type, reading, qc, lon
Task: Get lon from snow_depth where a corresponding entry exists in humidity with the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066259 | train |
v3 | Sensor network script:
Node: air_quality | code: prt | fields: depth, ts, qc, value
Sensor: soil_moisture | fields: type, depth, level, reading
Task: Get depth from air_quality where reading exceeds the average value from soil_moisture for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066260 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: qc, depth, reading, lat
Sensor: frost | fields: ts, depth, lat, type
Task: Fetch value from visibility where qc exists in frost sensor data for the same type.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="type",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066261 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: unit, reading, depth, level
Sensor: cloud_cover | fields: lon, qc, unit, level
Task: Fetch lon from rainfall that have at least one corresponding cloud_cover measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066262 | train |
v3 | Sensor network script:
Node: dew_point | code: ref | fields: type, reading, level, lon
Sensor: visibility | fields: level, value, lat, reading
Task: Get depth from dew_point where depth exceeds the minimum value from visibility for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066263 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: depth, lat, reading, unit
Sensor: frost | fields: ts, unit, qc, type
Task: Get depth from rainfall where a corresponding entry exists in frost with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066264 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: qc, lat, level, ts
Sensor: temperature | fields: type, qc, lon, value
Task: Retrieve depth from cloud_cover with depth above the SUM(value) of temperature readings sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066265 | train |
v2 | Sensor network script:
Node: turbidity | code: prt | fields: qc, ts, depth, lat
Sensor: visibility | fields: level, depth, lon, unit
Task: Retrieve reading from turbidity that have at least one matching reading in visibility sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066266 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: type, lat, qc, ts
Sensor: wind_speed | fields: lat, depth, type, qc
Task: Get value from soil_moisture where type appears in wind_speed readings with matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066267 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: depth, value, ts, reading
Sensor: humidity | fields: value, qc, lat, type
Task: Get reading from soil_moisture where unit appears in humidity readings with matching unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066268 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: level, lon, lat, unit
Sensor: visibility | fields: type, unit, value, lat
Task: Fetch lon from lightning that have at least one corresponding visibility measurement for the same type.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066269 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: reading, lon, level, type
Sensor: air_quality | fields: unit, lat, level, depth
Task: Retrieve reading from turbidity with depth above the MAX(depth) of air_quality readings sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066270 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: ts, qc, depth, level
Sensor: dew_point | fields: lon, depth, reading, lat
Task: Retrieve lat from air_quality whose qc is found in dew_point records where unit matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066271 | train |
v3 | Sensor network script:
Node: sunlight | code: stn | fields: value, unit, lon, lat
Sensor: evaporation | fields: value, lat, reading, type
Task: Get value from sunlight where reading exceeds the count of reading from evaporation for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066272 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: value, ts, level, qc
Sensor: visibility | fields: qc, value, unit, ts
Task: Get depth from lightning where unit appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="qc",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066273 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: level, reading, depth, value
Sensor: visibility | fields: lat, qc, depth, ts
Task: Get lon from wind_speed where ts appears in visibility readings with matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="ts",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066274 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: ts, type, lat, lon
Sensor: air_quality | fields: reading, lon, level, ts
Task: Get reading from snow_depth where a corresponding entry exists in air_quality with the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066275 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: ts, lat, level, qc
Sensor: uv_index | fields: reading, value, unit, ts
Task: Fetch reading from air_quality where type exists in uv_index sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="type",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066276 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: unit, depth, ts, qc
Sensor: wind_speed | fields: ts, reading, value, depth
Task: Get lon from pressure where a corresponding entry exists in wind_speed with the same unit.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066277 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: level, ts, type, depth
Sensor: visibility | fields: depth, value, qc, reading
Task: Retrieve reading from snow_depth with reading above the SUM(value) of visibility readings sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066278 | train |
v3 | Sensor network script:
Node: lightning | code: gst | fields: unit, type, level, depth
Sensor: uv_index | fields: depth, qc, lon, level
Task: Retrieve lon from lightning with value above the MAX(reading) of uv_index readings sharing the same unit.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066279 | train |
v2 | Sensor network script:
Node: air_quality | code: thr | fields: ts, lon, qc, value
Sensor: dew_point | fields: ts, depth, lat, lon
Task: Fetch level from air_quality that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066280 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: qc, type, reading, lon
Sensor: lightning | fields: qc, level, type, lon
Task: Fetch lon from dew_point where qc exists in lightning sensor data for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066281 | train |
v1 | Sensor network script:
Node: evaporation | code: ref | fields: lat, unit, qc, ts
Sensor: visibility | fields: reading, ts, value, unit
Task: Retrieve lon from evaporation whose qc is found in visibility records where qc matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066282 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: unit, level, reading, lat
Sensor: turbidity | fields: level, depth, value, lon
Task: Retrieve depth from lightning with value above the MAX(reading) of turbidity readings sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066283 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: lon, reading, ts, value
Sensor: humidity | fields: lon, reading, qc, level
Task: Fetch reading from rainfall where value is greater than the maximum of value in humidity for matching type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066284 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: level, depth, lon, unit
Sensor: visibility | fields: ts, value, qc, depth
Task: Fetch depth from snow_depth where ts exists in visibility sensor data for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066285 | train |
v1 | Sensor network script:
Node: soil_moisture | code: prt | fields: qc, unit, depth, value
Sensor: rainfall | fields: type, level, unit, ts
Task: Fetch reading from soil_moisture where type exists in rainfall sensor data for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066286 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: ts, lat, qc, unit
Sensor: rainfall | fields: reading, lon, ts, depth
Task: Fetch reading from snow_depth where depth exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066287 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: qc, lon, lat, value
Sensor: wind_speed | fields: value, lon, ts, type
Task: Get depth from pressure where a corresponding entry exists in wind_speed with the same depth.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066288 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: depth, lon, lat, qc
Sensor: lightning | fields: lon, lat, reading, unit
Task: Fetch depth from snow_depth that have at least one corresponding lightning measurement for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066289 | train |
v1 | Sensor network script:
Node: humidity | code: prt | fields: lat, reading, type, level
Sensor: uv_index | fields: level, value, lat, lon
Task: Fetch depth from humidity where depth exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066290 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: unit, ts, reading, value
Sensor: turbidity | fields: level, ts, lat, type
Task: Fetch level from drought_index where value is greater than the minimum of value in turbidity for matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066291 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: unit, level, depth, type
Sensor: air_quality | fields: level, value, unit, depth
Task: Retrieve level from lightning that have at least one matching reading in air_quality sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066292 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: unit, lon, value, type
Sensor: snow_depth | fields: qc, depth, reading, ts
Task: Fetch reading from cloud_cover where value is greater than the count of of value in snow_depth for matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066293 | train |
v3 | Sensor network script:
Node: temperature | code: gst | fields: level, value, qc, unit
Sensor: humidity | fields: type, level, lat, unit
Task: Fetch depth from temperature where reading is greater than the maximum of reading in humidity for matching qc.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066294 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: lat, qc, level, lon
Sensor: air_quality | fields: qc, ts, unit, lat
Task: Fetch reading from soil_moisture where type exists in air_quality sensor data for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066295 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: level, type, lon, reading
Sensor: snow_depth | fields: lat, value, level, unit
Task: Get depth from uv_index where type appears in snow_depth readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066296 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: type, depth, lat, level
Sensor: dew_point | fields: level, type, lat, qc
Task: Fetch lat from wind_speed that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066297 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: type, ts, lat, level
Sensor: temperature | fields: ts, value, lon, level
Task: Get level from rainfall where depth appears in temperature readings with matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="qc",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_066298 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: lon, type, level, unit
Sensor: lightning | fields: lat, level, lon, depth
Task: Get depth from wind_speed where reading exceeds the maximum reading from lightning for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_066299 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.