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: sunlight | code: prt | fields: reading, lon, lat, unit
Sensor: wind_speed | fields: type, lat, unit, depth
Task: Get reading from sunlight where depth exceeds the maximum depth from wind_speed for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079500 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: ts, lat, reading, qc
Sensor: sunlight | fields: depth, level, unit, lon
Task: Get lat from drought_index where value exceeds the average depth from sunlight for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079501 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: ts, level, type, depth
Sensor: air_quality | fields: type, level, value, lon
Task: Fetch depth from sunlight where value is greater than the maximum of value in air_quality for matching qc.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("air_quality", code="prt"),
match="qc"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079502 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: lat, ts, lon, reading
Sensor: soil_moisture | fields: lat, lon, ts, reading
Task: Get depth from temperature where a corresponding entry exists in soil_moisture with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079503 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: ts, level, lon, lat
Sensor: visibility | fields: qc, type, level, ts
Task: Retrieve value from cloud_cover that have at least one matching reading in visibility sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079504 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: depth, value, lat, level
Sensor: evaporation | fields: reading, value, qc, lat
Task: Fetch depth from wind_speed where qc exists in evaporation sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079505 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: qc, lat, ts, unit
Sensor: cloud_cover | fields: qc, reading, type, lat
Task: Retrieve lat from dew_point whose unit is found in cloud_cover records where unit matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079506 | train |
v2 | Sensor network script:
Node: air_quality | code: thr | fields: value, qc, lat, type
Sensor: snow_depth | fields: lat, type, qc, level
Task: Get level from air_quality where a corresponding entry exists in snow_depth with the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079507 | train |
v3 | Sensor network script:
Node: soil_moisture | code: thr | fields: lat, ts, depth, lon
Sensor: turbidity | fields: reading, level, lon, depth
Task: Retrieve lat from soil_moisture with reading above the MIN(value) of turbidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079508 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: type, level, lon, reading
Sensor: humidity | fields: lat, type, qc, ts
Task: Get depth from frost where a corresponding entry exists in humidity with the same qc.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079509 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: depth, level, type, qc
Sensor: air_quality | fields: depth, value, unit, qc
Task: Retrieve value from cloud_cover with value above the MAX(depth) of air_quality readings sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079510 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: reading, type, lat, qc
Sensor: sunlight | fields: unit, value, qc, type
Task: Retrieve depth from air_quality whose depth is found in sunlight records where qc matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079511 | train |
v3 | Sensor network script:
Node: turbidity | code: clr | fields: depth, qc, ts, lon
Sensor: wind_speed | fields: unit, lat, qc, lon
Task: Fetch level from turbidity where reading is greater than the average of value in wind_speed for matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079512 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: value, lat, depth, ts
Sensor: pressure | fields: level, value, ts, type
Task: Get lon from cloud_cover where ts appears in pressure readings with matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="type",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079513 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: reading, ts, depth, value
Sensor: air_quality | fields: unit, ts, lon, type
Task: Get level from temperature where unit appears in air_quality readings with matching qc.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079514 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: type, lon, unit, depth
Sensor: turbidity | fields: ts, lon, qc, value
Task: Retrieve value from sunlight whose qc is found in turbidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="qc",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079515 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: reading, qc, lon, depth
Sensor: frost | fields: value, lat, lon, depth
Task: Retrieve depth from soil_moisture with depth above the SUM(reading) of frost readings sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("frost", code="frs"),
match="type"),
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079516 | train |
v2 | Sensor network script:
Node: visibility | code: stn | fields: lat, ts, value, lon
Sensor: lightning | fields: ts, type, level, value
Task: Get reading from visibility where a corresponding entry exists in lightning with the same type.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079517 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: reading, depth, level, value
Sensor: wind_speed | fields: reading, level, ts, lon
Task: Get level from drought_index where a corresponding entry exists in wind_speed with the same type.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079518 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: lat, depth, ts, unit
Sensor: lightning | fields: reading, lon, unit, qc
Task: Fetch depth from uv_index where reading is greater than the minimum of reading in lightning for matching depth.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079519 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: ts, lat, level, depth
Sensor: humidity | fields: level, lon, ts, unit
Task: Get depth from sunlight where unit appears in humidity readings with matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079520 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: lon, reading, ts, level
Sensor: visibility | fields: lat, type, ts, reading
Task: Get depth from sunlight where ts appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="qc",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079521 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: qc, reading, value, type
Sensor: humidity | fields: qc, lon, type, reading
Task: Get lat from soil_moisture where a corresponding entry exists in humidity with the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079522 | train |
v1 | Sensor network script:
Node: soil_moisture | code: prt | fields: qc, lon, type, reading
Sensor: sunlight | fields: type, unit, lon, ts
Task: Retrieve value from soil_moisture whose unit is found in sunlight records where depth matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079523 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: reading, lat, value, level
Sensor: soil_moisture | fields: level, value, unit, lat
Task: Retrieve level from rainfall whose type is found in soil_moisture records where depth matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079524 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: value, lon, qc, ts
Sensor: humidity | fields: level, value, type, lat
Task: Fetch level from rainfall where unit exists in humidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079525 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: reading, lon, unit, value
Sensor: rainfall | fields: unit, lat, reading, lon
Task: Retrieve depth from humidity that have at least one matching reading in rainfall sharing the same qc.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079526 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: ts, reading, qc, unit
Sensor: visibility | fields: qc, reading, value, type
Task: Get value from lightning where value exceeds the average value from visibility for the same qc.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079527 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: depth, lon, unit, lat
Sensor: uv_index | fields: unit, lon, level, qc
Task: Fetch depth from visibility that have at least one corresponding uv_index measurement for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079528 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: ts, lon, reading, level
Sensor: dew_point | fields: lon, type, qc, value
Task: Fetch reading from rainfall that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079529 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: unit, depth, value, reading
Sensor: humidity | fields: level, ts, value, type
Task: Get value from sunlight where reading exceeds the average depth from humidity for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079530 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: level, depth, unit, type
Sensor: cloud_cover | fields: value, unit, level, depth
Task: Get depth from turbidity where a corresponding entry exists in cloud_cover with the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079531 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: level, type, lat, reading
Sensor: humidity | fields: value, ts, reading, depth
Task: Get reading from frost where value exceeds the maximum value from humidity for the same type.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="reading",
) | {
"outer_table": "frost",
"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_079532 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: lon, unit, type, ts
Sensor: pressure | fields: depth, lon, reading, value
Task: Fetch value from cloud_cover that have at least one corresponding pressure measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079533 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: value, level, qc, depth
Sensor: air_quality | fields: qc, lon, type, unit
Task: Get reading from dew_point where a corresponding entry exists in air_quality with the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079534 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: type, level, lat, depth
Sensor: lightning | fields: qc, ts, level, type
Task: Retrieve lat from drought_index that have at least one matching reading in lightning sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079535 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: level, unit, depth, value
Sensor: lightning | fields: lat, type, ts, depth
Task: Get value from rainfall where ts appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="type",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079536 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: ts, type, level, qc
Sensor: dew_point | fields: ts, type, value, lon
Task: Get level from soil_moisture where qc appears in dew_point readings with matching qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079537 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: type, reading, ts, depth
Sensor: drought_index | fields: unit, qc, lon, lat
Task: Retrieve reading from temperature with depth above the MAX(reading) of drought_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079538 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: lon, value, lat, reading
Sensor: drought_index | fields: qc, ts, type, unit
Task: Fetch level from lightning where type exists in drought_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079539 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: value, reading, ts, lon
Sensor: temperature | fields: unit, lon, level, lat
Task: Fetch level from sunlight where qc exists in temperature sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079540 | train |
v1 | Sensor network script:
Node: dew_point | code: mst | fields: ts, reading, depth, lat
Sensor: wind_speed | fields: unit, reading, lon, lat
Task: Retrieve reading from dew_point whose unit is found in wind_speed records where qc matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079541 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: lat, qc, level, type
Sensor: visibility | fields: depth, value, type, level
Task: Fetch lon from sunlight that have at least one corresponding visibility measurement for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079542 | train |
v3 | Sensor network script:
Node: humidity | code: prt | fields: unit, depth, type, lon
Sensor: visibility | fields: value, lat, lon, unit
Task: Fetch value from humidity where reading is greater than the average of value in visibility for matching type.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("visibility", code="clr"),
match="type"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079543 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: lon, reading, type, ts
Sensor: lightning | fields: reading, ts, depth, type
Task: Fetch value from snow_depth that have at least one corresponding lightning measurement for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="value",
) | {
"outer_table": "snow_depth",
"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_079544 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: lon, type, ts, level
Sensor: lightning | fields: qc, level, value, unit
Task: Get depth from soil_moisture where a corresponding entry exists in lightning with the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079545 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: lon, type, depth, lat
Sensor: temperature | fields: reading, value, lon, type
Task: Fetch depth from frost where qc exists in temperature sensor data for the same type.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="type",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079546 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: lon, value, qc, depth
Sensor: evaporation | fields: lat, depth, reading, ts
Task: Retrieve value from turbidity that have at least one matching reading in evaporation sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079547 | train |
v2 | Sensor network script:
Node: frost | code: ref | fields: level, ts, qc, unit
Sensor: pressure | fields: type, level, reading, lat
Task: Retrieve lon from frost that have at least one matching reading in pressure sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079548 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: depth, unit, value, qc
Sensor: rainfall | fields: type, ts, level, unit
Task: Fetch lat from sunlight where qc exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079549 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: value, level, lon, qc
Sensor: pressure | fields: ts, depth, qc, lat
Task: Get lat from air_quality where unit appears in pressure readings with matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079550 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: type, unit, value, level
Sensor: lightning | fields: qc, type, reading, value
Task: Get lon from dew_point where qc appears in lightning readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079551 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: unit, ts, type, lat
Sensor: evaporation | fields: level, ts, depth, qc
Task: Retrieve lat from pressure with value above the SUM(value) of evaporation readings sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079552 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: depth, value, ts, type
Sensor: visibility | fields: ts, lat, depth, value
Task: Get depth from uv_index where reading exceeds the maximum depth from visibility for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079553 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: lat, type, ts, qc
Sensor: soil_moisture | fields: value, lat, type, ts
Task: Get depth from uv_index where type appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079554 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: lon, reading, lat, type
Sensor: uv_index | fields: lon, level, ts, qc
Task: Fetch reading from cloud_cover where value is greater than the total of depth in uv_index for matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079555 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: unit, type, lon, ts
Sensor: rainfall | fields: lat, qc, level, reading
Task: Fetch reading from cloud_cover that have at least one corresponding rainfall measurement for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079556 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: depth, value, reading, lat
Sensor: snow_depth | fields: reading, type, unit, value
Task: Fetch lon from visibility where qc exists in snow_depth sensor data for the same type.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079557 | train |
v3 | Sensor network script:
Node: humidity | code: prt | fields: lon, value, level, reading
Sensor: temperature | fields: reading, lon, lat, ts
Task: Retrieve reading from humidity with value above the MAX(reading) of temperature readings sharing the same qc.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079558 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: unit, reading, depth, qc
Sensor: dew_point | fields: level, unit, lon, ts
Task: Get depth from air_quality where unit appears in dew_point readings with matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079559 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: reading, lon, ts, value
Sensor: evaporation | fields: depth, level, value, lat
Task: Retrieve lat from temperature with reading above the SUM(reading) of evaporation readings sharing the same unit.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079560 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: reading, level, ts, depth
Sensor: frost | fields: lat, reading, level, qc
Task: Fetch lon from temperature where depth exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079561 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: level, value, lat, qc
Sensor: turbidity | fields: value, ts, depth, type
Task: Fetch level from temperature where type exists in turbidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079562 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: unit, ts, depth, qc
Sensor: air_quality | fields: value, ts, type, lat
Task: Retrieve depth from cloud_cover that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079563 | train |
v3 | Sensor network script:
Node: pressure | code: mst | fields: ts, depth, reading, type
Sensor: drought_index | fields: level, reading, lon, depth
Task: Fetch value from pressure where depth is greater than the total of value in drought_index for matching type.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079564 | train |
v2 | Sensor network script:
Node: air_quality | code: hub | fields: unit, value, ts, depth
Sensor: pressure | fields: level, value, reading, type
Task: Fetch lon from air_quality that have at least one corresponding pressure measurement for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079565 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: unit, depth, reading, ts
Sensor: pressure | fields: depth, lon, reading, level
Task: Fetch lat from air_quality where ts exists in pressure sensor data for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079566 | train |
v3 | Sensor network script:
Node: dew_point | code: ref | fields: unit, type, value, ts
Sensor: air_quality | fields: depth, unit, type, reading
Task: Get lat from dew_point where depth exceeds the count of reading from air_quality for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079567 | train |
v1 | Sensor network script:
Node: lightning | code: clr | fields: type, reading, ts, qc
Sensor: uv_index | fields: lat, reading, ts, qc
Task: Retrieve depth from lightning whose depth is found in uv_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079568 | train |
v1 | Sensor network script:
Node: uv_index | code: hub | fields: unit, type, lon, value
Sensor: evaporation | fields: value, type, depth, unit
Task: Retrieve lon from uv_index whose type is found in evaporation records where ts matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079569 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: type, lat, reading, ts
Sensor: air_quality | fields: depth, type, reading, lat
Task: Get lon from wind_speed where depth appears in air_quality readings with matching qc.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079570 | train |
v3 | Sensor network script:
Node: humidity | code: clr | fields: depth, unit, qc, lon
Sensor: turbidity | fields: qc, value, level, depth
Task: Retrieve reading from humidity with value above the SUM(value) of turbidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079571 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: reading, level, type, value
Sensor: drought_index | fields: ts, reading, depth, lat
Task: Fetch level from uv_index that have at least one corresponding drought_index measurement for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079572 | train |
v3 | Sensor network script:
Node: pressure | code: mst | fields: reading, unit, type, lat
Sensor: wind_speed | fields: unit, lon, level, lat
Task: Retrieve depth from pressure with value above the AVG(reading) of wind_speed readings sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079573 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: lon, depth, type, lat
Sensor: temperature | fields: reading, value, depth, lon
Task: Get value from frost where qc appears in temperature readings with matching depth.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="depth",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079574 | train |
v3 | Sensor network script:
Node: dew_point | code: clr | fields: lon, qc, reading, depth
Sensor: uv_index | fields: lat, ts, qc, level
Task: Fetch lon from dew_point where depth is greater than the total of depth in uv_index for matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079575 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: unit, depth, qc, reading
Sensor: visibility | fields: value, qc, ts, lat
Task: Fetch depth from soil_moisture where type exists in visibility sensor data for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="ts",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079576 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: level, lon, ts, type
Sensor: evaporation | fields: lon, lat, reading, depth
Task: Retrieve lon from turbidity with depth above the MAX(reading) of evaporation readings sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079577 | train |
v2 | Sensor network script:
Node: turbidity | code: prt | fields: unit, level, value, type
Sensor: temperature | fields: ts, reading, depth, lat
Task: Fetch lat from turbidity that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079578 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: lon, type, reading, depth
Sensor: pressure | fields: unit, type, depth, lon
Task: Get value from turbidity where value exceeds the maximum reading from pressure for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079579 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: ts, depth, unit, lat
Sensor: frost | fields: depth, qc, lon, value
Task: Fetch level from drought_index where depth exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="unit",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079580 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: qc, unit, lat, type
Sensor: dew_point | fields: ts, lon, lat, value
Task: Get lon from uv_index where unit appears in dew_point readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079581 | train |
v2 | Sensor network script:
Node: humidity | code: hub | fields: type, lon, unit, lat
Sensor: frost | fields: qc, ts, unit, type
Task: Get level from humidity where a corresponding entry exists in frost with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079582 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: level, depth, reading, type
Sensor: evaporation | fields: ts, lat, qc, type
Task: Get level from cloud_cover where reading exceeds the minimum value from evaporation for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079583 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: type, value, depth, level
Sensor: dew_point | fields: reading, qc, type, lon
Task: Get reading from uv_index where a corresponding entry exists in dew_point with the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079584 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: lat, unit, ts, value
Sensor: sunlight | fields: lon, ts, reading, lat
Task: Retrieve lon from drought_index whose qc is found in sunlight records where ts matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079585 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: ts, level, lon, unit
Sensor: soil_moisture | fields: level, depth, type, lon
Task: Get level from lightning where a corresponding entry exists in soil_moisture with the same depth.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079586 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: depth, unit, reading, lon
Sensor: drought_index | fields: qc, reading, type, level
Task: Get reading from air_quality where qc appears in drought_index readings with matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079587 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: depth, qc, reading, level
Sensor: wind_speed | fields: value, lon, level, ts
Task: Get level from temperature where value exceeds the count of reading from wind_speed for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079588 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: unit, depth, lat, value
Sensor: turbidity | fields: unit, ts, lat, depth
Task: Fetch reading from pressure that have at least one corresponding turbidity measurement for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079589 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: depth, lon, lat, unit
Sensor: sunlight | fields: ts, value, qc, depth
Task: Fetch value from uv_index where qc exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079590 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: ts, depth, reading, unit
Sensor: rainfall | fields: lat, depth, ts, reading
Task: Fetch reading from turbidity where reading is greater than the average of value in rainfall for matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079591 | train |
v1 | Sensor network script:
Node: rainfall | code: gst | fields: depth, level, type, value
Sensor: turbidity | fields: level, type, unit, ts
Task: Retrieve reading from rainfall whose type is found in turbidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079592 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: depth, type, ts, lat
Sensor: air_quality | fields: qc, value, lat, lon
Task: Get level from wind_speed where qc appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079593 | train |
v2 | Sensor network script:
Node: visibility | code: gst | fields: value, unit, level, lat
Sensor: air_quality | fields: value, lat, reading, ts
Task: Retrieve level from visibility that have at least one matching reading in air_quality sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079594 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: unit, level, lat, value
Sensor: wind_speed | fields: depth, lat, type, reading
Task: Fetch lon from visibility where unit exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079595 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: qc, lon, reading, level
Sensor: cloud_cover | fields: lat, qc, value, lon
Task: Get level from rainfall where ts appears in cloud_cover readings with matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079596 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: reading, depth, ts, lon
Sensor: frost | fields: type, qc, lon, ts
Task: Fetch lon from wind_speed where reading is greater than the minimum of reading in frost for matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("frost", code="frs"),
match="depth"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079597 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: reading, ts, type, level
Sensor: temperature | fields: level, qc, ts, depth
Task: Get lat from dew_point where a corresponding entry exists in temperature with the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="qc",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079598 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: type, qc, lon, unit
Sensor: rainfall | fields: level, qc, lat, value
Task: Fetch level from drought_index where unit exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079599 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.