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: wind_speed | code: gst | fields: depth, ts, type, lon
Sensor: dew_point | fields: depth, lon, qc, reading
Task: Fetch level from wind_speed where reading is greater than the total of reading in dew_point for matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019100 | train |
v3 | Sensor network script:
Node: temperature | code: prt | fields: unit, reading, level, type
Sensor: sunlight | fields: value, reading, unit, lat
Task: Fetch lat from temperature where value is greater than the minimum of depth in sunlight for matching type.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019101 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: lat, value, lon, qc
Sensor: dew_point | fields: depth, type, ts, lat
Task: Get depth from pressure where a corresponding entry exists in dew_point with the same type.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019102 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: reading, value, ts, level
Sensor: dew_point | fields: type, depth, qc, lon
Task: Get value from cloud_cover where depth appears in dew_point readings with matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019103 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: reading, lon, unit, type
Sensor: visibility | fields: unit, value, qc, type
Task: Fetch lon from soil_moisture where depth exists in visibility sensor data for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019104 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: qc, type, unit, lon
Sensor: visibility | fields: level, value, unit, lat
Task: Get value from humidity where qc appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="qc",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019105 | train |
v3 | Sensor network script:
Node: humidity | code: mst | fields: unit, lat, qc, lon
Sensor: dew_point | fields: depth, level, qc, value
Task: Fetch reading from humidity where depth is greater than the total of depth in dew_point for matching unit.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019106 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: level, lon, lat, unit
Sensor: air_quality | fields: depth, unit, level, ts
Task: Fetch reading from snow_depth where value is greater than the maximum of reading in air_quality for matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019107 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: depth, type, qc, value
Sensor: visibility | fields: qc, depth, type, value
Task: Get level from humidity where unit appears in visibility readings with matching unit.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="unit",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019108 | train |
v1 | Sensor network script:
Node: drought_index | code: hub | fields: unit, ts, reading, level
Sensor: frost | fields: qc, depth, type, lon
Task: Get level from drought_index where ts appears in frost readings with matching type.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="type",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019109 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: type, unit, lon, ts
Sensor: frost | fields: depth, qc, lat, reading
Task: Get depth from cloud_cover where depth appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019110 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: type, ts, qc, unit
Sensor: visibility | fields: lon, depth, qc, lat
Task: Get depth from humidity where value exceeds the average depth from visibility for the same type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("visibility", code="clr"),
match="type"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019111 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: type, unit, level, value
Sensor: wind_speed | fields: type, unit, lon, depth
Task: Fetch lat from dew_point where unit exists in wind_speed sensor data for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019112 | train |
v2 | Sensor network script:
Node: drought_index | code: hub | fields: level, type, reading, unit
Sensor: soil_moisture | fields: lon, type, depth, reading
Task: Get value from drought_index where a corresponding entry exists in soil_moisture with the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019113 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: depth, type, lon, reading
Sensor: frost | fields: reading, lon, ts, lat
Task: Fetch lat from air_quality where depth is greater than the minimum of reading in frost for matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("frost", code="frs"),
match="unit"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019114 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: lon, type, depth, lat
Sensor: rainfall | fields: qc, type, level, value
Task: Get reading from temperature where reading exceeds the minimum value from rainfall for the same type.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019115 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: depth, unit, level, lon
Sensor: drought_index | fields: lat, depth, value, qc
Task: Fetch level from temperature that have at least one corresponding drought_index measurement for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019116 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: level, depth, value, reading
Sensor: dew_point | fields: level, reading, unit, depth
Task: Fetch lat from visibility that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019117 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: unit, ts, level, reading
Sensor: uv_index | fields: type, lat, qc, reading
Task: Retrieve value from sunlight with value above the COUNT(value) of uv_index readings sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019118 | train |
v3 | Sensor network script:
Node: uv_index | code: thr | fields: unit, reading, ts, depth
Sensor: frost | fields: unit, reading, level, type
Task: Fetch value from uv_index where reading is greater than the average of depth in frost for matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("frost", code="frs"),
match="qc"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019119 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: lat, qc, lon, level
Sensor: temperature | fields: ts, type, lon, value
Task: Get reading from rainfall where a corresponding entry exists in temperature with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019120 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: unit, reading, lat, level
Sensor: cloud_cover | fields: ts, depth, level, lat
Task: Fetch level from air_quality where depth exists in cloud_cover sensor data for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019121 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: type, level, lat, unit
Sensor: rainfall | fields: depth, value, qc, ts
Task: Retrieve lon from visibility with value above the SUM(value) of rainfall readings sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019122 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: value, level, depth, unit
Sensor: humidity | fields: lon, type, reading, depth
Task: Fetch depth from sunlight where depth exists in humidity sensor data for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="type",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019123 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: reading, lat, qc, unit
Sensor: wind_speed | fields: reading, depth, level, unit
Task: Get lat from air_quality where a corresponding entry exists in wind_speed with the same type.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019124 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: reading, qc, unit, level
Sensor: frost | fields: reading, depth, value, type
Task: Fetch lon from cloud_cover that have at least one corresponding frost measurement for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019125 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: reading, type, unit, ts
Sensor: uv_index | fields: reading, lat, value, lon
Task: Get depth from evaporation where a corresponding entry exists in uv_index with the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019126 | train |
v3 | Sensor network script:
Node: uv_index | code: thr | fields: reading, ts, type, qc
Sensor: air_quality | fields: depth, qc, reading, type
Task: Fetch depth from uv_index where reading is greater than the total of reading in air_quality for matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019127 | train |
v2 | Sensor network script:
Node: lightning | code: ref | fields: lon, ts, unit, type
Sensor: frost | fields: depth, unit, lon, reading
Task: Fetch depth from lightning that have at least one corresponding frost measurement for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019128 | train |
v3 | Sensor network script:
Node: soil_moisture | code: stn | fields: reading, qc, lat, depth
Sensor: turbidity | fields: depth, lon, ts, reading
Task: Fetch reading from soil_moisture where reading is greater than the minimum of reading in turbidity for matching qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019129 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: value, qc, lat, unit
Sensor: air_quality | fields: ts, depth, lon, value
Task: Get lon from uv_index where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019130 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: level, lon, depth, type
Sensor: evaporation | fields: value, unit, qc, reading
Task: Get lon from frost where ts appears in evaporation readings with matching qc.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019131 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: unit, qc, depth, reading
Sensor: frost | fields: reading, depth, unit, type
Task: Fetch lon from snow_depth that have at least one corresponding frost measurement for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019132 | train |
v3 | Sensor network script:
Node: air_quality | code: hub | fields: reading, lat, unit, type
Sensor: pressure | fields: lon, reading, type, lat
Task: Retrieve reading from air_quality with reading above the COUNT(depth) of pressure readings sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019133 | train |
v1 | Sensor network script:
Node: dew_point | code: mst | fields: ts, qc, unit, lon
Sensor: lightning | fields: lat, type, lon, level
Task: Fetch lon from dew_point where depth exists in lightning sensor data for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019134 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: ts, unit, reading, level
Sensor: drought_index | fields: unit, level, ts, lon
Task: Fetch depth from wind_speed where ts exists in drought_index sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="ts",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019135 | train |
v1 | Sensor network script:
Node: lightning | code: mst | fields: unit, lat, reading, type
Sensor: sunlight | fields: lat, ts, depth, qc
Task: Get value from lightning where qc appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019136 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: level, depth, lon, value
Sensor: wind_speed | fields: level, depth, lat, unit
Task: Fetch lon from uv_index that have at least one corresponding wind_speed measurement for the same type.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019137 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: level, depth, lon, ts
Sensor: visibility | fields: qc, type, unit, level
Task: Retrieve value from evaporation that have at least one matching reading in visibility sharing the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019138 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: qc, type, ts, reading
Sensor: evaporation | fields: qc, level, reading, ts
Task: Retrieve reading from snow_depth that have at least one matching reading in evaporation sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019139 | train |
v3 | Sensor network script:
Node: humidity | code: clr | fields: unit, lat, ts, depth
Sensor: turbidity | fields: lon, lat, reading, ts
Task: Get lat from humidity where depth exceeds the minimum value from turbidity for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019140 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: value, level, unit, qc
Sensor: sunlight | fields: lon, reading, depth, lat
Task: Retrieve level from air_quality whose depth is found in sunlight records where unit matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019141 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: level, lon, ts, lat
Sensor: visibility | fields: ts, type, lon, value
Task: Get lon from sunlight where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019142 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: reading, lon, qc, level
Sensor: soil_moisture | fields: reading, level, value, ts
Task: Get depth from cloud_cover where unit appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019143 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: ts, qc, value, level
Sensor: air_quality | fields: value, qc, lon, lat
Task: Retrieve level from soil_moisture whose type is found in air_quality records where unit matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019144 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: lat, ts, type, level
Sensor: wind_speed | fields: unit, lon, lat, depth
Task: Retrieve value from uv_index with reading above the MIN(value) of wind_speed readings sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019145 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: level, unit, ts, lon
Sensor: rainfall | fields: depth, qc, level, ts
Task: Retrieve level from wind_speed with reading above the COUNT(reading) of rainfall readings sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019146 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: unit, level, lon, lat
Sensor: rainfall | fields: ts, level, unit, value
Task: Get lat from humidity where a corresponding entry exists in rainfall with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019147 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: unit, type, ts, lat
Sensor: drought_index | fields: depth, lat, lon, unit
Task: Fetch depth from lightning that have at least one corresponding drought_index measurement for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019148 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: ts, level, unit, qc
Sensor: soil_moisture | fields: depth, value, level, unit
Task: Get level from rainfall where value exceeds the maximum reading from soil_moisture for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019149 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: depth, type, level, qc
Sensor: soil_moisture | fields: depth, unit, type, qc
Task: Get lon from uv_index where depth appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019150 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: lon, depth, unit, lat
Sensor: pressure | fields: reading, unit, depth, level
Task: Retrieve value from wind_speed with reading above the COUNT(depth) of pressure readings sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019151 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: value, depth, qc, unit
Sensor: turbidity | fields: reading, ts, level, depth
Task: Get lat from soil_moisture where ts appears in turbidity readings with matching unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="ts",
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": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019152 | train |
v3 | Sensor network script:
Node: humidity | code: mst | fields: reading, lon, ts, depth
Sensor: visibility | fields: type, reading, depth, lat
Task: Fetch depth from humidity where value is greater than the count of of depth in visibility for matching depth.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019153 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: lat, lon, depth, unit
Sensor: pressure | fields: lon, unit, level, ts
Task: Get reading from lightning where type appears in pressure readings with matching unit.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019154 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: reading, depth, lat, unit
Sensor: evaporation | fields: type, value, unit, ts
Task: Fetch value from turbidity where unit exists in evaporation sensor data for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019155 | train |
v3 | Sensor network script:
Node: sunlight | code: stn | fields: unit, ts, level, depth
Sensor: frost | fields: depth, ts, lat, type
Task: Get lon from sunlight where reading exceeds the count of depth from frost for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("frost", code="frs"),
match="qc"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019156 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: qc, unit, lon, level
Sensor: dew_point | fields: qc, reading, unit, depth
Task: Get level from visibility where ts appears in dew_point readings with matching ts.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019157 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: unit, lat, type, level
Sensor: frost | fields: lon, type, reading, depth
Task: Retrieve reading from wind_speed that have at least one matching reading in frost sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019158 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: reading, lat, value, qc
Sensor: drought_index | fields: lat, unit, type, depth
Task: Get level from turbidity where reading exceeds the average reading from drought_index for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019159 | train |
v3 | Sensor network script:
Node: lightning | code: gst | fields: depth, ts, value, lon
Sensor: visibility | fields: reading, type, ts, unit
Task: Fetch value from lightning where depth is greater than the minimum of value in visibility for matching type.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("visibility", code="clr"),
match="type"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019160 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: value, reading, depth, unit
Sensor: rainfall | fields: qc, level, ts, type
Task: Fetch lat from sunlight that have at least one corresponding rainfall measurement for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019161 | train |
v2 | Sensor network script:
Node: turbidity | code: prt | fields: value, level, lon, qc
Sensor: visibility | fields: unit, lat, reading, lon
Task: Fetch reading from turbidity that have at least one corresponding visibility measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019162 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: unit, level, value, ts
Sensor: uv_index | fields: value, qc, reading, level
Task: Get level from temperature where qc appears in uv_index readings with matching unit.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019163 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: lon, qc, ts, value
Sensor: snow_depth | fields: lon, unit, lat, depth
Task: Fetch reading from visibility where ts exists in snow_depth sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019164 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: value, qc, ts, depth
Sensor: cloud_cover | fields: value, unit, level, lat
Task: Get lat from sunlight where value exceeds the average value from cloud_cover for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("cloud_cover", code="nbl"),
match="qc"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019165 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: reading, type, unit, lon
Sensor: visibility | fields: type, ts, level, lon
Task: Retrieve level from rainfall that have at least one matching reading in visibility sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019166 | train |
v3 | Sensor network script:
Node: dew_point | code: gst | fields: ts, value, lat, qc
Sensor: visibility | fields: qc, unit, level, depth
Task: Get lon from dew_point where reading exceeds the total depth from visibility for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019167 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: unit, qc, lon, value
Sensor: evaporation | fields: type, value, ts, level
Task: Fetch lat from turbidity where value is greater than the average of value in evaporation for matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019168 | train |
v3 | Sensor network script:
Node: drought_index | code: stn | fields: lon, qc, lat, value
Sensor: snow_depth | fields: qc, type, lat, lon
Task: Retrieve reading from drought_index with reading above the COUNT(depth) of snow_depth readings sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019169 | train |
v3 | Sensor network script:
Node: drought_index | code: stn | fields: unit, qc, lon, type
Sensor: evaporation | fields: type, lon, level, ts
Task: Get lat from drought_index where depth exceeds the average depth from evaporation for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019170 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: ts, qc, lon, unit
Sensor: turbidity | fields: unit, lat, reading, depth
Task: Retrieve lat from cloud_cover with depth above the COUNT(reading) of turbidity readings sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019171 | train |
v2 | Sensor network script:
Node: air_quality | code: clr | fields: ts, lat, type, unit
Sensor: wind_speed | fields: type, value, unit, depth
Task: Retrieve level from air_quality that have at least one matching reading in wind_speed sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019172 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: reading, unit, qc, type
Sensor: evaporation | fields: ts, lat, reading, value
Task: Fetch value from sunlight where reading is greater than the count of of value in evaporation for matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019173 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: lon, level, type, depth
Sensor: evaporation | fields: lat, qc, unit, type
Task: Fetch level from wind_speed that have at least one corresponding evaporation measurement for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019174 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: type, qc, unit, depth
Sensor: wind_speed | fields: lon, value, depth, lat
Task: Get lat from dew_point where a corresponding entry exists in wind_speed with the same type.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019175 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: type, reading, qc, unit
Sensor: pressure | fields: depth, lon, ts, type
Task: Get value from frost where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019176 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: unit, level, lat, depth
Sensor: wind_speed | fields: value, qc, lat, reading
Task: Get lon from snow_depth where depth exceeds the average value from wind_speed for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019177 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: reading, lat, ts, level
Sensor: cloud_cover | fields: depth, unit, value, reading
Task: Retrieve level from pressure that have at least one matching reading in cloud_cover sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019178 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: depth, unit, qc, reading
Sensor: air_quality | fields: value, reading, depth, ts
Task: Fetch level from soil_moisture where value is greater than the total of reading in air_quality for matching depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019179 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: reading, lat, type, lon
Sensor: soil_moisture | fields: lat, value, type, level
Task: Fetch lat from rainfall where qc exists in soil_moisture sensor data for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019180 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: lon, qc, type, ts
Sensor: snow_depth | fields: type, unit, level, value
Task: Retrieve depth from cloud_cover whose ts is found in snow_depth records where unit matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019181 | train |
v1 | Sensor network script:
Node: pressure | code: ref | fields: unit, reading, level, depth
Sensor: frost | fields: lon, lat, reading, value
Task: Get value from pressure where ts appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="unit",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019182 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: type, ts, reading, lon
Sensor: humidity | fields: lon, type, lat, depth
Task: Get reading from turbidity where value exceeds the maximum depth from humidity for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019183 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: lon, type, depth, level
Sensor: soil_moisture | fields: type, lat, value, depth
Task: Get value from pressure where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019184 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: type, lat, level, qc
Sensor: cloud_cover | fields: unit, qc, ts, lon
Task: Fetch lon from turbidity where value is greater than the count of of value in cloud_cover for matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019185 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: unit, value, lon, level
Sensor: dew_point | fields: level, depth, qc, reading
Task: Get level from turbidity where a corresponding entry exists in dew_point with the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019186 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: type, lat, lon, value
Sensor: sunlight | fields: lat, type, ts, unit
Task: Fetch value from dew_point where type exists in sunlight sensor data for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019187 | train |
v2 | Sensor network script:
Node: lightning | code: mst | fields: value, type, unit, depth
Sensor: sunlight | fields: level, value, type, ts
Task: Fetch lat from lightning that have at least one corresponding sunlight measurement for the same type.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019188 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: qc, type, level, value
Sensor: pressure | fields: type, lat, level, reading
Task: Fetch level from turbidity where type exists in pressure sensor data for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019189 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: type, lon, unit, reading
Sensor: temperature | fields: ts, type, lon, depth
Task: Fetch depth from drought_index that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019190 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: depth, lat, type, level
Sensor: sunlight | fields: reading, qc, type, ts
Task: Get value from rainfall where ts appears in sunlight readings with matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019191 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: lat, unit, lon, qc
Sensor: temperature | fields: lat, reading, level, type
Task: Fetch reading from snow_depth that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019192 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: reading, depth, level, type
Sensor: uv_index | fields: level, reading, ts, type
Task: Fetch level from turbidity where qc exists in uv_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019193 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: lat, unit, reading, value
Sensor: drought_index | fields: ts, qc, depth, reading
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="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019194 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: lat, value, depth, unit
Sensor: visibility | fields: unit, type, ts, depth
Task: Retrieve lat from sunlight that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019195 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: qc, reading, unit, lat
Sensor: wind_speed | fields: depth, level, reading, ts
Task: Fetch depth from uv_index where unit exists in wind_speed sensor data for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019196 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: value, level, lon, unit
Sensor: sunlight | fields: depth, lat, level, ts
Task: Get reading from temperature where reading exceeds the maximum depth from sunlight for the same type.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019197 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: level, type, qc, reading
Sensor: soil_moisture | fields: unit, qc, lon, ts
Task: Retrieve lon from frost whose ts is found in soil_moisture records where depth matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019198 | train |
v3 | Sensor network script:
Node: uv_index | code: stn | fields: value, lon, ts, depth
Sensor: drought_index | fields: type, value, ts, lat
Task: Get level from uv_index where reading exceeds the count of reading from drought_index for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019199 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.