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: turbidity | code: clr | fields: ts, depth, value, reading
Sensor: wind_speed | fields: lat, level, value, unit
Task: Get value from turbidity where value exceeds the maximum value from wind_speed for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010900 | train |
v3 | Sensor network script:
Node: drought_index | code: hub | fields: ts, lon, value, qc
Sensor: lightning | fields: value, lat, depth, level
Task: Get level from drought_index where depth exceeds the total reading from lightning for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010901 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: depth, unit, value, lon
Sensor: frost | fields: lat, reading, depth, level
Task: Retrieve depth from lightning with depth above the COUNT(reading) of frost readings sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("frost", code="frs"),
match="type"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010902 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: value, ts, reading, lon
Sensor: sunlight | fields: lon, qc, type, value
Task: Get level from lightning where reading exceeds the minimum depth from sunlight for the same type.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010903 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: value, lat, ts, qc
Sensor: lightning | fields: lon, lat, unit, value
Task: Retrieve depth from drought_index that have at least one matching reading in lightning sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010904 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: level, depth, ts, lon
Sensor: rainfall | fields: value, qc, lon, lat
Task: Get value from dew_point where type appears in rainfall readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010905 | train |
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: type, reading, level, depth
Sensor: drought_index | fields: lat, unit, reading, ts
Task: Fetch lon from wind_speed where reading is greater than the total of depth in drought_index for matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010906 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: qc, unit, level, value
Sensor: cloud_cover | fields: value, depth, unit, ts
Task: Get level from lightning where a corresponding entry exists in cloud_cover with the same ts.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010907 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: depth, qc, lat, lon
Sensor: turbidity | fields: ts, lon, lat, type
Task: Fetch reading from lightning that have at least one corresponding turbidity measurement for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010908 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: level, lon, lat, value
Sensor: dew_point | fields: ts, lat, value, lon
Task: Get lon from lightning where qc appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010909 | train |
v3 | Sensor network script:
Node: drought_index | code: hub | fields: level, qc, value, unit
Sensor: soil_moisture | fields: reading, qc, lon, unit
Task: Fetch value from drought_index where reading is greater than the total of depth in soil_moisture for matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010910 | train |
v1 | Sensor network script:
Node: lightning | code: ref | fields: level, value, lat, lon
Sensor: cloud_cover | fields: depth, value, level, reading
Task: Get lat from lightning where ts appears in cloud_cover readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010911 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: lon, qc, level, value
Sensor: frost | fields: value, type, lon, reading
Task: Fetch lon from cloud_cover that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010912 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: unit, ts, type, level
Sensor: visibility | fields: ts, reading, unit, qc
Task: Get lon from soil_moisture where ts appears in visibility readings with matching unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="unit",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010913 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: depth, type, level, ts
Sensor: wind_speed | fields: lon, value, unit, reading
Task: Retrieve reading from turbidity whose unit is found in wind_speed records where qc matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010914 | train |
v2 | Sensor network script:
Node: frost | code: clr | fields: ts, qc, lat, reading
Sensor: humidity | fields: unit, type, value, level
Task: Retrieve lon from frost that have at least one matching reading in humidity sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010915 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: qc, type, level, unit
Sensor: dew_point | fields: value, qc, lat, type
Task: Get lat from pressure where a corresponding entry exists in dew_point with the same type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010916 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: depth, lat, unit, ts
Sensor: rainfall | fields: lon, depth, qc, value
Task: Retrieve reading from wind_speed that have at least one matching reading in rainfall sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010917 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: type, lon, reading, level
Sensor: turbidity | fields: type, depth, lat, qc
Task: Fetch reading from frost where reading is greater than the total of depth in turbidity for matching depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010918 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: depth, lat, type, qc
Sensor: uv_index | fields: unit, type, depth, qc
Task: Fetch lat from frost where unit exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010919 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: qc, unit, value, level
Sensor: frost | fields: unit, reading, lat, level
Task: Fetch level from dew_point that have at least one corresponding frost measurement for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010920 | train |
v3 | Sensor network script:
Node: temperature | code: thr | fields: lon, level, value, lat
Sensor: pressure | fields: ts, level, type, unit
Task: Retrieve reading from temperature with depth above the MAX(depth) of pressure readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010921 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: qc, unit, lon, depth
Sensor: drought_index | fields: depth, qc, ts, type
Task: Retrieve value from rainfall whose type is found in drought_index records where qc matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010922 | train |
v2 | Sensor network script:
Node: frost | code: ref | fields: reading, lat, value, ts
Sensor: humidity | fields: qc, lat, reading, ts
Task: Retrieve level from frost that have at least one matching reading in humidity sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010923 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: value, qc, reading, ts
Sensor: cloud_cover | fields: lat, lon, depth, reading
Task: Retrieve reading from soil_moisture with reading above the COUNT(depth) of cloud_cover readings sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010924 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: lat, depth, reading, lon
Sensor: dew_point | fields: reading, depth, level, ts
Task: Retrieve depth from wind_speed whose qc is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010925 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: ts, reading, level, lat
Sensor: wind_speed | fields: type, unit, value, ts
Task: Fetch value from frost where depth is greater than the minimum of depth in wind_speed for matching unit.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010926 | train |
v2 | Sensor network script:
Node: visibility | code: ref | fields: qc, type, level, lat
Sensor: rainfall | fields: reading, ts, lon, type
Task: Fetch lat from visibility that have at least one corresponding rainfall measurement for the same type.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010927 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: ts, value, qc, lon
Sensor: sunlight | fields: unit, level, qc, type
Task: Retrieve reading from drought_index whose qc is found in sunlight records where ts matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010928 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: value, level, reading, ts
Sensor: wind_speed | fields: ts, value, depth, type
Task: Fetch lon from temperature that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010929 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: lat, level, reading, lon
Sensor: evaporation | fields: lon, depth, unit, value
Task: Fetch lon from wind_speed where type exists in evaporation sensor data for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010930 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: lon, value, type, depth
Sensor: turbidity | fields: qc, lat, ts, unit
Task: Fetch level from drought_index where type exists in turbidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010931 | train |
v3 | Sensor network script:
Node: soil_moisture | code: mst | fields: reading, level, depth, type
Sensor: temperature | fields: ts, lon, qc, reading
Task: Fetch lat from soil_moisture where depth is greater than the minimum of reading in temperature for matching depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010932 | train |
v2 | Sensor network script:
Node: drought_index | code: hub | fields: unit, type, level, ts
Sensor: dew_point | fields: level, reading, ts, value
Task: Get reading from drought_index where a corresponding entry exists in dew_point with the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010933 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: unit, reading, value, lat
Sensor: snow_depth | fields: value, depth, reading, level
Task: Get lat from pressure where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010934 | train |
v2 | Sensor network script:
Node: air_quality | code: thr | fields: lon, lat, reading, qc
Sensor: uv_index | fields: type, reading, value, level
Task: Fetch level from air_quality that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010935 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: ts, lat, reading, unit
Sensor: frost | fields: reading, unit, lat, level
Task: Retrieve lat from pressure that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010936 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: depth, ts, level, unit
Sensor: cloud_cover | fields: reading, depth, qc, ts
Task: Fetch depth from evaporation that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010937 | train |
v3 | Sensor network script:
Node: pressure | code: mst | fields: type, unit, depth, lon
Sensor: dew_point | fields: qc, level, reading, type
Task: Retrieve level from pressure with reading above the COUNT(value) of dew_point readings sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010938 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: lon, value, lat, type
Sensor: wind_speed | fields: lat, reading, value, type
Task: Get value from cloud_cover where type appears in wind_speed readings with matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010939 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: value, depth, lat, level
Sensor: pressure | fields: level, depth, lat, ts
Task: Fetch level from visibility that have at least one corresponding pressure measurement for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010940 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: level, qc, type, depth
Sensor: wind_speed | fields: unit, lat, reading, lon
Task: Get value from snow_depth where type appears in wind_speed readings with matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010941 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: level, lon, lat, unit
Sensor: sunlight | fields: unit, type, value, lat
Task: Fetch depth from drought_index where value is greater than the maximum of reading in sunlight for matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010942 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: qc, lon, unit, level
Sensor: snow_depth | fields: unit, lat, depth, qc
Task: Retrieve value from soil_moisture with reading above the SUM(reading) of snow_depth readings sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010943 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: reading, value, type, lat
Sensor: turbidity | fields: qc, ts, depth, lon
Task: Fetch lat from soil_moisture where depth exists in turbidity sensor data for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010944 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: depth, lon, level, qc
Sensor: soil_moisture | fields: qc, lon, unit, type
Task: Get lat from uv_index where a corresponding entry exists in soil_moisture with the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010945 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: unit, qc, ts, lat
Sensor: visibility | fields: reading, lon, unit, depth
Task: Fetch value from sunlight where depth exists in visibility sensor data for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="type",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010946 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: level, lat, depth, unit
Sensor: dew_point | fields: lon, value, qc, reading
Task: Fetch lon from cloud_cover that have at least one corresponding dew_point measurement for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010947 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: level, depth, lon, ts
Sensor: soil_moisture | fields: reading, lon, level, ts
Task: Fetch depth from drought_index where value is greater than the total of depth in soil_moisture for matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010948 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: depth, type, value, ts
Sensor: wind_speed | fields: value, lat, type, lon
Task: Retrieve depth from temperature whose unit is found in wind_speed records where type matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010949 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: qc, value, lat, unit
Sensor: cloud_cover | fields: reading, lon, value, unit
Task: Fetch level from rainfall where depth is greater than the count of of depth in cloud_cover for matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010950 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: lon, level, qc, lat
Sensor: cloud_cover | fields: lat, unit, value, reading
Task: Retrieve lon from turbidity that have at least one matching reading in cloud_cover sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010951 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: reading, qc, lat, depth
Sensor: evaporation | fields: value, reading, qc, depth
Task: Get value from visibility where a corresponding entry exists in evaporation with the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010952 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: ts, lon, unit, lat
Sensor: turbidity | fields: level, depth, unit, qc
Task: Fetch level from humidity that have at least one corresponding turbidity measurement for the same type.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010953 | train |
v1 | Sensor network script:
Node: wind_speed | code: thr | fields: lat, ts, depth, unit
Sensor: dew_point | fields: unit, qc, type, lon
Task: Fetch lon from wind_speed where depth exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010954 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: lon, level, depth, ts
Sensor: air_quality | fields: value, ts, lat, lon
Task: Get lon from visibility where depth exceeds the count of depth from air_quality for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("air_quality", code="prt"),
match="qc"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010955 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: reading, lon, depth, ts
Sensor: uv_index | fields: depth, level, type, lon
Task: Get reading from cloud_cover where reading exceeds the total depth from uv_index for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010956 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: level, ts, reading, unit
Sensor: temperature | fields: depth, unit, type, reading
Task: Fetch depth from wind_speed where type exists in temperature sensor data for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="qc",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010957 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: unit, qc, depth, level
Sensor: humidity | fields: qc, value, type, ts
Task: Retrieve depth from rainfall whose qc is found in humidity records where qc matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010958 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: type, value, depth, reading
Sensor: cloud_cover | fields: unit, ts, reading, depth
Task: Get value from pressure where a corresponding entry exists in cloud_cover with the same type.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010959 | train |
v3 | Sensor network script:
Node: turbidity | code: thr | fields: depth, level, lat, ts
Sensor: rainfall | fields: lon, unit, ts, type
Task: Retrieve level from turbidity with depth above the MAX(reading) of rainfall readings sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010960 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: level, lon, unit, reading
Sensor: frost | fields: type, ts, level, qc
Task: Get lat from turbidity where depth appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="unit",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010961 | train |
v2 | Sensor network script:
Node: frost | code: clr | fields: qc, depth, level, ts
Sensor: wind_speed | fields: ts, value, qc, type
Task: Get value from frost where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010962 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: reading, ts, level, lat
Sensor: snow_depth | fields: lon, level, ts, depth
Task: Fetch lon from dew_point where type exists in snow_depth sensor data for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010963 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: level, reading, qc, unit
Sensor: temperature | fields: reading, unit, lon, qc
Task: Fetch value from evaporation where unit exists in temperature sensor data for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="type",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010964 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: depth, level, lat, value
Sensor: air_quality | fields: type, ts, lat, unit
Task: Get reading from snow_depth where depth exceeds the minimum value from air_quality for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010965 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: reading, level, depth, value
Sensor: uv_index | fields: lon, reading, value, type
Task: Retrieve reading from snow_depth that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010966 | train |
v2 | Sensor network script:
Node: frost | code: gst | fields: value, unit, lat, reading
Sensor: dew_point | fields: depth, lon, lat, value
Task: Retrieve lat from frost that have at least one matching reading in dew_point sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010967 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: type, depth, lon, unit
Sensor: lightning | fields: lon, ts, lat, value
Task: Get lon from soil_moisture where value exceeds the maximum value from lightning for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010968 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: value, qc, lon, type
Sensor: dew_point | fields: reading, depth, lat, unit
Task: Fetch lat from uv_index that have at least one corresponding dew_point measurement for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010969 | train |
v3 | Sensor network script:
Node: uv_index | code: stn | fields: unit, reading, depth, ts
Sensor: temperature | fields: lat, reading, value, lon
Task: Retrieve level from uv_index with reading above the AVG(depth) of temperature readings sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010970 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: lat, unit, qc, level
Sensor: rainfall | fields: reading, lon, level, qc
Task: Retrieve level from uv_index whose depth is found in rainfall records where depth matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010971 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: depth, lon, unit, value
Sensor: turbidity | fields: lat, ts, level, depth
Task: Fetch reading from uv_index where depth is greater than the maximum of value in turbidity for matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010972 | train |
v2 | Sensor network script:
Node: uv_index | code: mst | fields: depth, value, unit, type
Sensor: wind_speed | fields: qc, depth, value, level
Task: Get lat from uv_index where a corresponding entry exists in wind_speed with the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010973 | train |
v3 | Sensor network script:
Node: dew_point | code: prt | fields: level, lat, value, qc
Sensor: soil_moisture | fields: qc, type, level, ts
Task: Get reading from dew_point where value exceeds the average value from soil_moisture for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010974 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: reading, type, value, unit
Sensor: air_quality | fields: unit, qc, value, ts
Task: Get lon from soil_moisture where a corresponding entry exists in air_quality with the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010975 | train |
v2 | Sensor network script:
Node: turbidity | code: thr | fields: qc, ts, type, depth
Sensor: snow_depth | fields: qc, depth, level, ts
Task: Retrieve reading from turbidity that have at least one matching reading in snow_depth sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010976 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: type, value, lon, qc
Sensor: soil_moisture | fields: depth, qc, ts, value
Task: Fetch depth from evaporation where depth is greater than the maximum of depth in soil_moisture for matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010977 | train |
v3 | Sensor network script:
Node: uv_index | code: clr | fields: reading, level, ts, qc
Sensor: cloud_cover | fields: level, type, depth, value
Task: Get depth from uv_index where depth exceeds the count of depth from cloud_cover for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010978 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: lat, qc, value, unit
Sensor: sunlight | fields: value, reading, unit, ts
Task: Get value from pressure where unit appears in sunlight readings with matching depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="value",
) | {
"outer_table": "pressure",
"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_010979 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: type, lon, qc, unit
Sensor: uv_index | fields: value, level, type, lat
Task: Fetch lat from soil_moisture that have at least one corresponding uv_index measurement for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010980 | train |
v1 | Sensor network script:
Node: air_quality | code: mst | fields: unit, reading, type, level
Sensor: evaporation | fields: level, value, depth, reading
Task: Fetch value from air_quality where ts exists in evaporation sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010981 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: ts, depth, value, level
Sensor: lightning | fields: level, qc, ts, lon
Task: Get value from dew_point where qc appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="type",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010982 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: level, lon, unit, qc
Sensor: sunlight | fields: reading, lat, qc, value
Task: Retrieve reading from pressure with depth above the MAX(reading) of sunlight readings sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010983 | train |
v2 | Sensor network script:
Node: wind_speed | code: mst | fields: level, ts, type, lon
Sensor: air_quality | fields: unit, ts, type, level
Task: Retrieve lon from wind_speed that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010984 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: lat, qc, unit, lon
Sensor: dew_point | fields: level, lon, value, depth
Task: Fetch value from pressure where type exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010985 | train |
v1 | Sensor network script:
Node: sunlight | code: clr | fields: unit, ts, lon, depth
Sensor: cloud_cover | fields: reading, value, unit, depth
Task: Get value from sunlight where unit appears in cloud_cover readings with matching type.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010986 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: ts, qc, depth, lon
Sensor: dew_point | fields: reading, level, qc, ts
Task: Retrieve lon from visibility whose unit is found in dew_point records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010987 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: level, lon, qc, type
Sensor: temperature | fields: level, value, type, depth
Task: Fetch level from visibility that have at least one corresponding temperature measurement for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010988 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: type, ts, qc, value
Sensor: dew_point | fields: qc, lon, lat, ts
Task: Fetch lon from pressure that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010989 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: reading, lon, level, value
Sensor: humidity | fields: unit, reading, lon, ts
Task: Fetch value from sunlight where depth is greater than the total of depth in humidity for matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010990 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: level, reading, ts, lon
Sensor: soil_moisture | fields: reading, value, unit, level
Task: Get value from frost where reading exceeds the maximum value from soil_moisture for the same unit.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010991 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: unit, reading, lon, qc
Sensor: visibility | fields: lon, lat, depth, reading
Task: Fetch reading from rainfall where type exists in visibility sensor data for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010992 | train |
v3 | Sensor network script:
Node: drought_index | code: gst | fields: lon, level, unit, type
Sensor: cloud_cover | fields: lon, reading, lat, qc
Task: Fetch level from drought_index where value is greater than the total of depth in cloud_cover for matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("cloud_cover", code="nbl"),
match="qc"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010993 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: reading, qc, depth, level
Sensor: wind_speed | fields: level, depth, unit, lat
Task: Fetch level from snow_depth where depth exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010994 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: ts, depth, lon, unit
Sensor: sunlight | fields: lon, reading, level, unit
Task: Fetch level from soil_moisture that have at least one corresponding sunlight measurement for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010995 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: value, lat, ts, qc
Sensor: frost | fields: lon, qc, ts, reading
Task: Get level from cloud_cover where unit appears in frost readings with matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="ts",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010996 | train |
v2 | Sensor network script:
Node: uv_index | code: mst | fields: depth, qc, lat, type
Sensor: air_quality | fields: type, ts, value, level
Task: Get lon from uv_index where a corresponding entry exists in air_quality with the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_010997 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: lon, type, ts, qc
Sensor: evaporation | fields: lat, type, ts, reading
Task: Get level from air_quality where type appears in evaporation readings with matching type.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="type",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010998 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: ts, depth, unit, level
Sensor: snow_depth | fields: ts, lon, qc, reading
Task: Fetch reading from sunlight where ts exists in snow_depth sensor data for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_010999 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.