variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v3 | Sensor network script:
Node: uv_index | code: thr | fields: depth, value, type, qc
Sensor: turbidity | fields: level, depth, value, type
Task: Retrieve lon from uv_index with reading above the SUM(value) of turbidity readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"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_074200 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: value, depth, lon, ts
Sensor: sunlight | fields: level, type, qc, unit
Task: Get depth from pressure where a corresponding entry exists in sunlight with the same qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074201 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: type, depth, value, lat
Sensor: drought_index | fields: depth, reading, unit, lon
Task: Fetch reading from pressure where ts exists in drought_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="ts",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074202 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: value, type, level, depth
Sensor: soil_moisture | fields: lon, value, level, qc
Task: Get reading from pressure where depth exceeds the count of reading from soil_moisture for the same type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074203 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: reading, type, unit, ts
Sensor: turbidity | fields: ts, reading, depth, qc
Task: Retrieve value from drought_index that have at least one matching reading in turbidity sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074204 | train |
v3 | Sensor network script:
Node: evaporation | code: mst | fields: qc, type, lon, reading
Sensor: drought_index | fields: ts, lat, qc, value
Task: Retrieve lat from evaporation with value above the AVG(depth) of drought_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074205 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: unit, level, lon, type
Sensor: frost | fields: lat, reading, lon, type
Task: Retrieve lon from rainfall whose unit is found in frost records where depth matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074206 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: level, depth, ts, reading
Sensor: pressure | fields: unit, type, qc, ts
Task: Get value from drought_index where value exceeds the average depth from pressure for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074207 | train |
v1 | Sensor network script:
Node: lightning | code: mst | fields: lon, depth, unit, qc
Sensor: rainfall | fields: unit, lat, level, qc
Task: Retrieve depth from lightning whose unit is found in rainfall records where ts matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074208 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: level, qc, lon, value
Sensor: dew_point | fields: ts, unit, value, depth
Task: Retrieve lon from humidity with reading above the COUNT(depth) of dew_point readings sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074209 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: lon, depth, unit, reading
Sensor: rainfall | fields: depth, lon, ts, lat
Task: Fetch lon from frost that have at least one corresponding rainfall measurement for the same unit.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074210 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: type, value, reading, depth
Sensor: turbidity | fields: lon, unit, qc, depth
Task: Get lon from sunlight where reading exceeds the maximum depth from turbidity for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074211 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: unit, depth, level, qc
Sensor: lightning | fields: lat, unit, level, ts
Task: Get depth from rainfall where depth exceeds the average depth from lightning for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074212 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: lon, reading, value, type
Sensor: evaporation | fields: reading, qc, level, lat
Task: Get value from turbidity where a corresponding entry exists in evaporation with the same type.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074213 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: unit, lat, qc, reading
Sensor: humidity | fields: lat, ts, value, unit
Task: Fetch level from snow_depth that have at least one corresponding humidity measurement for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074214 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: level, value, reading, depth
Sensor: sunlight | fields: ts, type, lat, depth
Task: Get level from cloud_cover where a corresponding entry exists in sunlight with the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074215 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: depth, level, lat, unit
Sensor: wind_speed | fields: unit, level, lon, lat
Task: Fetch lat from air_quality where depth is greater than the count of of value in wind_speed for matching type.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074216 | train |
v3 | Sensor network script:
Node: soil_moisture | code: mst | fields: depth, reading, qc, type
Sensor: humidity | fields: ts, unit, depth, lat
Task: Fetch lon from soil_moisture where depth is greater than the minimum of value in humidity for matching depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074217 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: depth, unit, level, ts
Sensor: lightning | fields: lat, value, type, lon
Task: Get reading from evaporation where qc appears in lightning readings with matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074218 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: unit, value, type, lat
Sensor: rainfall | fields: value, lat, depth, lon
Task: Get value from evaporation where ts appears in rainfall readings with matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074219 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: unit, type, reading, depth
Sensor: dew_point | fields: level, lat, qc, depth
Task: Retrieve lon from evaporation with value above the MIN(value) of dew_point readings sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074220 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: value, lat, ts, depth
Sensor: sunlight | fields: qc, type, value, depth
Task: Get value from drought_index where qc appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074221 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: value, lat, ts, lon
Sensor: air_quality | fields: lon, value, reading, depth
Task: Fetch lon from drought_index where ts exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074222 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: depth, value, reading, qc
Sensor: frost | fields: lon, reading, depth, qc
Task: Retrieve depth from drought_index with depth above the COUNT(reading) of frost readings sharing the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("frost", code="frs"),
match="depth"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074223 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: level, ts, reading, lat
Sensor: dew_point | fields: qc, reading, value, depth
Task: Fetch lon from evaporation where type exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074224 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: qc, value, type, lon
Sensor: rainfall | fields: lat, depth, type, value
Task: Fetch lat from air_quality that have at least one corresponding rainfall measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074225 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: ts, depth, qc, reading
Sensor: evaporation | fields: reading, qc, unit, ts
Task: Fetch value from rainfall where value is greater than the average of depth in evaporation for matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074226 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: ts, level, reading, lon
Sensor: drought_index | fields: depth, value, lat, reading
Task: Get lat from evaporation where unit appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074227 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: reading, level, type, value
Sensor: sunlight | fields: type, unit, qc, lat
Task: Fetch level from cloud_cover where type exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074228 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: depth, ts, value, type
Sensor: lightning | fields: type, lon, unit, ts
Task: Fetch lat from rainfall that have at least one corresponding lightning measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074229 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: lon, unit, ts, type
Sensor: air_quality | fields: type, level, reading, unit
Task: Retrieve value from lightning whose qc is found in air_quality records where unit matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074230 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: reading, lat, level, depth
Sensor: drought_index | fields: level, lat, qc, lon
Task: Get reading from lightning where a corresponding entry exists in drought_index with the same ts.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074231 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: qc, unit, depth, level
Sensor: visibility | fields: qc, reading, level, lon
Task: Fetch lat from soil_moisture that have at least one corresponding visibility measurement for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074232 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: value, level, qc, lat
Sensor: sunlight | fields: value, level, reading, qc
Task: Get reading from turbidity where depth exceeds the total depth from sunlight for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074233 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: lon, type, reading, lat
Sensor: evaporation | fields: level, ts, lon, value
Task: Get level from temperature where type appears in evaporation readings with matching depth.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074234 | train |
v1 | Sensor network script:
Node: snow_depth | code: hub | fields: level, unit, reading, lon
Sensor: soil_moisture | fields: type, unit, ts, reading
Task: Get depth from snow_depth where qc appears in soil_moisture readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074235 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: unit, lon, value, qc
Sensor: lightning | fields: type, lat, value, unit
Task: Retrieve depth from sunlight that have at least one matching reading in lightning sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074236 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: reading, lat, type, ts
Sensor: visibility | fields: lon, depth, qc, unit
Task: Retrieve reading from snow_depth with value above the MIN(value) of visibility readings sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074237 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: lon, level, lat, unit
Sensor: soil_moisture | fields: ts, value, qc, reading
Task: Retrieve level from air_quality whose type is found in soil_moisture records where type matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074238 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: type, lat, value, ts
Sensor: pressure | fields: ts, type, value, lat
Task: Get value from drought_index where a corresponding entry exists in pressure with the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074239 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: lat, level, unit, ts
Sensor: visibility | fields: lon, depth, type, ts
Task: Retrieve value from temperature with depth above the MAX(value) of visibility readings sharing the same unit.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"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_074240 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: lat, lon, value, level
Sensor: humidity | fields: value, type, depth, lon
Task: Retrieve level from evaporation whose depth is found in humidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074241 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: ts, lat, unit, value
Sensor: wind_speed | fields: lon, depth, value, reading
Task: Retrieve lon from air_quality whose qc is found in wind_speed records where depth matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074242 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: reading, value, depth, lon
Sensor: soil_moisture | fields: depth, value, reading, type
Task: Get lat from visibility where a corresponding entry exists in soil_moisture with the same unit.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074243 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: depth, ts, qc, reading
Sensor: wind_speed | fields: reading, unit, depth, value
Task: Fetch value from frost where qc exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074244 | train |
v3 | Sensor network script:
Node: sunlight | code: stn | fields: type, lon, depth, unit
Sensor: air_quality | fields: type, ts, unit, lat
Task: Fetch value from sunlight where reading is greater than the count of of value in air_quality for matching type.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("air_quality", code="prt"),
match="type"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074245 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: level, lon, lat, unit
Sensor: drought_index | fields: lat, depth, level, lon
Task: Get reading from pressure where a corresponding entry exists in drought_index with the same depth.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074246 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: lat, ts, lon, unit
Sensor: uv_index | fields: lat, reading, type, depth
Task: Retrieve depth from soil_moisture whose unit is found in uv_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074247 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: qc, lon, lat, level
Sensor: lightning | fields: qc, depth, ts, level
Task: Retrieve lat from frost whose unit is found in lightning records where type matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="type",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074248 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: lon, qc, value, level
Sensor: cloud_cover | fields: ts, qc, type, lat
Task: Retrieve level from turbidity with value above the MIN(value) of cloud_cover readings sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074249 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: ts, unit, type, level
Sensor: drought_index | fields: type, level, ts, reading
Task: Retrieve value from lightning that have at least one matching reading in drought_index sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074250 | train |
v3 | Sensor network script:
Node: evaporation | code: mst | fields: depth, value, reading, type
Sensor: pressure | fields: reading, lon, lat, level
Task: Fetch level from evaporation where value is greater than the maximum of reading in pressure for matching type.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074251 | train |
v3 | Sensor network script:
Node: temperature | code: clr | fields: value, ts, level, reading
Sensor: snow_depth | fields: reading, lat, unit, value
Task: Get depth from temperature where value exceeds the total reading from snow_depth for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074252 | train |
v3 | Sensor network script:
Node: snow_depth | code: prt | fields: ts, depth, unit, reading
Sensor: visibility | fields: qc, value, type, depth
Task: Fetch lat from snow_depth where value is greater than the count of of value in visibility for matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074253 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: lon, value, qc, depth
Sensor: frost | fields: value, lon, lat, ts
Task: Get lon from rainfall where a corresponding entry exists in frost with the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074254 | train |
v3 | Sensor network script:
Node: frost | code: stn | fields: qc, unit, lon, level
Sensor: uv_index | fields: type, depth, level, ts
Task: Retrieve lat from frost with value above the MAX(value) of uv_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074255 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: lat, qc, reading, type
Sensor: pressure | fields: level, lat, reading, type
Task: Get lon from cloud_cover where qc appears in pressure readings with matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074256 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: lat, unit, level, type
Sensor: turbidity | fields: value, ts, type, depth
Task: Get depth from snow_depth where ts appears in turbidity readings with matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074257 | train |
v1 | Sensor network script:
Node: sunlight | code: thr | fields: type, level, depth, unit
Sensor: wind_speed | fields: qc, ts, value, level
Task: Fetch lon from sunlight where qc exists in wind_speed sensor data for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074258 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: type, ts, depth, lat
Sensor: pressure | fields: level, reading, ts, unit
Task: Fetch value from temperature that have at least one corresponding pressure measurement for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074259 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: ts, lon, reading, qc
Sensor: lightning | fields: reading, type, unit, lat
Task: Get level from frost where value exceeds the minimum depth from lightning for the same unit.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074260 | train |
v1 | Sensor network script:
Node: wind_speed | code: stn | fields: unit, level, lat, lon
Sensor: temperature | fields: type, reading, qc, ts
Task: Get level from wind_speed where qc appears in temperature readings with matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="type",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074261 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: depth, value, ts, type
Sensor: dew_point | fields: type, level, reading, ts
Task: Fetch level from cloud_cover where value is greater than the minimum of reading in dew_point for matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074262 | train |
v3 | Sensor network script:
Node: visibility | code: clr | fields: value, lat, unit, type
Sensor: rainfall | fields: value, reading, lon, ts
Task: Fetch lon from visibility where depth is greater than the maximum of value in rainfall for matching type.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074263 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: qc, depth, lat, type
Sensor: lightning | fields: depth, lat, reading, qc
Task: Get reading from pressure where type appears in lightning readings with matching unit.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074264 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: level, lat, lon, reading
Sensor: evaporation | fields: reading, depth, value, lat
Task: Fetch value from humidity where qc exists in evaporation sensor data for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074265 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: unit, depth, value, ts
Sensor: pressure | fields: value, lat, depth, lon
Task: Retrieve depth from sunlight that have at least one matching reading in pressure sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074266 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: reading, qc, value, unit
Sensor: uv_index | fields: qc, ts, value, lat
Task: Get lat from soil_moisture where depth appears in uv_index readings with matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074267 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: qc, type, ts, level
Sensor: visibility | fields: depth, qc, value, lon
Task: Fetch lat from pressure that have at least one corresponding visibility measurement for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074268 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: lon, level, qc, type
Sensor: air_quality | fields: depth, level, lon, lat
Task: Fetch level from uv_index that have at least one corresponding air_quality measurement for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074269 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: lat, qc, unit, depth
Sensor: temperature | fields: reading, depth, lon, unit
Task: Get value from snow_depth where value exceeds the maximum depth from temperature for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074270 | train |
v1 | Sensor network script:
Node: temperature | code: gst | fields: type, level, reading, ts
Sensor: sunlight | fields: ts, unit, depth, value
Task: Retrieve lon from temperature whose unit is found in sunlight records where depth matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074271 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: depth, qc, lon, type
Sensor: lightning | fields: lat, value, level, lon
Task: Fetch lat from humidity where value is greater than the count of of depth in lightning for matching type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074272 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: qc, level, depth, lon
Sensor: air_quality | fields: value, reading, lat, level
Task: Get value from visibility where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074273 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: level, value, lon, type
Sensor: rainfall | fields: lat, level, unit, qc
Task: Retrieve depth from pressure that have at least one matching reading in rainfall sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074274 | train |
v3 | Sensor network script:
Node: turbidity | code: ref | fields: value, unit, lat, depth
Sensor: humidity | fields: type, level, lon, depth
Task: Fetch value from turbidity where value is greater than the average of depth in humidity for matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074275 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: ts, reading, lat, level
Sensor: visibility | fields: reading, type, value, ts
Task: Retrieve lon from sunlight that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074276 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: unit, lat, reading, lon
Sensor: turbidity | fields: ts, depth, lon, value
Task: Retrieve lon from temperature that have at least one matching reading in turbidity sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074277 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: level, depth, ts, value
Sensor: visibility | fields: value, unit, level, lon
Task: Fetch lon from rainfall that have at least one corresponding visibility measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074278 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: lat, depth, reading, qc
Sensor: pressure | fields: ts, reading, level, depth
Task: Retrieve value from soil_moisture with depth above the COUNT(reading) of pressure readings sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074279 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: qc, depth, reading, level
Sensor: frost | fields: depth, level, value, qc
Task: Retrieve reading from uv_index that have at least one matching reading in frost sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074280 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: lon, level, lat, type
Sensor: lightning | fields: type, lat, depth, reading
Task: Retrieve level from turbidity that have at least one matching reading in lightning sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074281 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: reading, level, type, depth
Sensor: temperature | fields: qc, lon, depth, unit
Task: Get level from cloud_cover where unit appears in temperature readings with matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074282 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: ts, qc, unit, depth
Sensor: humidity | fields: qc, ts, depth, unit
Task: Retrieve lat from cloud_cover whose ts is found in humidity records where unit matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074283 | train |
v1 | Sensor network script:
Node: pressure | code: ref | fields: reading, qc, ts, unit
Sensor: humidity | fields: qc, reading, ts, lon
Task: Retrieve depth from pressure whose qc is found in humidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074284 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: level, type, reading, value
Sensor: visibility | fields: reading, value, ts, level
Task: Retrieve value from snow_depth whose unit is found in visibility records where qc matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="qc",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074285 | train |
v3 | Sensor network script:
Node: snow_depth | code: ref | fields: unit, lat, ts, level
Sensor: humidity | fields: reading, lon, ts, level
Task: Get lon from snow_depth where depth exceeds the maximum depth from humidity for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074286 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: level, depth, ts, reading
Sensor: visibility | fields: reading, lon, ts, lat
Task: Fetch level from dew_point that have at least one corresponding visibility measurement for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074287 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: lon, value, level, type
Sensor: lightning | fields: level, type, qc, depth
Task: Retrieve lon from frost whose type is found in lightning records where type matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="type",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074288 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: lat, level, unit, type
Sensor: uv_index | fields: type, level, unit, value
Task: Get depth from lightning where a corresponding entry exists in uv_index with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074289 | train |
v3 | Sensor network script:
Node: visibility | code: prt | fields: value, type, unit, qc
Sensor: wind_speed | fields: ts, reading, type, qc
Task: Get reading from visibility where reading exceeds the count of value from wind_speed for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074290 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: ts, reading, lon, type
Sensor: snow_depth | fields: reading, lat, depth, level
Task: Get value from uv_index where value exceeds the maximum value from snow_depth for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074291 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: level, lon, ts, type
Sensor: uv_index | fields: level, reading, lon, qc
Task: Fetch reading from turbidity where value is greater than the maximum of value in uv_index for matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074292 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: value, reading, ts, level
Sensor: lightning | fields: depth, lat, qc, unit
Task: Get reading from sunlight where unit appears in lightning readings with matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074293 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: qc, level, lon, value
Sensor: lightning | fields: lat, depth, unit, reading
Task: Fetch value from dew_point that have at least one corresponding lightning measurement for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074294 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: ts, lon, level, depth
Sensor: dew_point | fields: lat, lon, level, depth
Task: Fetch lat from pressure where unit exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074295 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: lon, type, level, depth
Sensor: temperature | fields: type, unit, level, lon
Task: Get level from cloud_cover where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_074296 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: level, depth, ts, lon
Sensor: dew_point | fields: ts, value, lon, qc
Task: Fetch value from lightning that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074297 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: value, qc, type, lat
Sensor: humidity | fields: value, lat, depth, ts
Task: Retrieve lon from evaporation whose type is found in humidity records where qc matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074298 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: unit, qc, depth, type
Sensor: lightning | fields: depth, unit, lat, level
Task: Retrieve level from air_quality whose type is found in lightning records where ts matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_074299 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.