variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v1 | Sensor network script:
Node: dew_point | code: ref | fields: qc, unit, lon, reading
Sensor: humidity | fields: lon, depth, type, value
Task: Retrieve reading from dew_point whose qc is found in humidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067100 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: qc, lat, level, lon
Sensor: uv_index | fields: depth, lon, qc, type
Task: Fetch lat from cloud_cover where unit exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067101 | train |
v3 | Sensor network script:
Node: uv_index | code: prt | fields: type, value, ts, level
Sensor: turbidity | fields: value, level, ts, type
Task: Retrieve value from uv_index with value above the MAX(value) of turbidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067102 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: qc, depth, value, lon
Sensor: uv_index | fields: ts, value, lat, lon
Task: Fetch lat from wind_speed that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067103 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: lat, type, ts, reading
Sensor: cloud_cover | fields: qc, lat, depth, value
Task: Retrieve level from rainfall with depth above the AVG(depth) of cloud_cover readings sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
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": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067104 | train |
v2 | Sensor network script:
Node: temperature | code: stn | fields: lon, unit, qc, type
Sensor: cloud_cover | fields: lon, reading, level, lat
Task: Retrieve lon from temperature that have at least one matching reading in cloud_cover sharing the same qc.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067105 | train |
v1 | Sensor network script:
Node: frost | code: prt | fields: ts, lat, depth, unit
Sensor: sunlight | fields: level, depth, unit, ts
Task: Fetch reading from frost where type exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067106 | train |
v1 | Sensor network script:
Node: lightning | code: ref | fields: depth, lon, type, qc
Sensor: soil_moisture | fields: lat, type, qc, lon
Task: Fetch lat from lightning where unit exists in soil_moisture sensor data for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067107 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: value, qc, type, level
Sensor: rainfall | fields: ts, lat, unit, qc
Task: Retrieve level from sunlight with reading above the MAX(depth) of rainfall readings sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067108 | train |
v3 | Sensor network script:
Node: pressure | code: gst | fields: value, type, lon, qc
Sensor: air_quality | fields: level, lon, ts, reading
Task: Retrieve depth from pressure with reading above the AVG(depth) of air_quality readings sharing the same ts.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067109 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: lon, type, level, value
Sensor: humidity | fields: type, lon, value, depth
Task: Retrieve lat from drought_index with reading above the SUM(value) of humidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067110 | train |
v3 | Sensor network script:
Node: turbidity | code: thr | fields: lon, ts, reading, lat
Sensor: pressure | fields: lon, qc, value, lat
Task: Fetch reading from turbidity where reading is greater than the average of depth in pressure for matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067111 | train |
v1 | Sensor network script:
Node: lightning | code: ref | fields: lat, ts, reading, level
Sensor: air_quality | fields: unit, lat, ts, level
Task: Fetch level from lightning where qc exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067112 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: lat, lon, reading, value
Sensor: frost | fields: level, unit, depth, qc
Task: Get reading from snow_depth where value exceeds the total reading from frost for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("frost", code="frs"),
match="depth"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067113 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: unit, reading, lon, value
Sensor: lightning | fields: type, reading, qc, lon
Task: Retrieve reading from air_quality that have at least one matching reading in lightning sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067114 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: depth, type, lat, level
Sensor: evaporation | fields: reading, level, lon, type
Task: Fetch lon from snow_depth where depth is greater than the maximum of value in evaporation for matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067115 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: qc, depth, ts, lon
Sensor: temperature | fields: level, lon, qc, reading
Task: Retrieve depth from cloud_cover with reading above the SUM(depth) of temperature readings sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067116 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: qc, reading, value, type
Sensor: air_quality | fields: level, value, lon, reading
Task: Retrieve level from snow_depth that have at least one matching reading in air_quality sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067117 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: depth, qc, unit, reading
Sensor: dew_point | fields: qc, lat, value, level
Task: Fetch lon from visibility where depth exists in dew_point sensor data for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067118 | train |
v3 | Sensor network script:
Node: dew_point | code: stn | fields: ts, depth, value, qc
Sensor: evaporation | fields: depth, level, lat, lon
Task: Retrieve depth from dew_point with reading above the COUNT(depth) of evaporation readings sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067119 | train |
v1 | Sensor network script:
Node: frost | code: prt | fields: reading, ts, lon, lat
Sensor: evaporation | fields: depth, type, ts, level
Task: Fetch lat from frost where unit exists in evaporation sensor data for the same qc.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067120 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: unit, lon, value, lat
Sensor: humidity | fields: type, depth, level, lat
Task: Retrieve reading from lightning with value above the MIN(depth) of humidity readings sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067121 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: type, lon, unit, depth
Sensor: wind_speed | fields: depth, lon, type, ts
Task: Get reading from rainfall where a corresponding entry exists in wind_speed with the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067122 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: lat, value, unit, level
Sensor: humidity | fields: level, lon, lat, qc
Task: Retrieve lon from dew_point that have at least one matching reading in humidity sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067123 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: reading, value, type, lon
Sensor: wind_speed | fields: reading, level, qc, ts
Task: Fetch value from lightning where qc exists in wind_speed sensor data for the same qc.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067124 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: unit, qc, type, value
Sensor: temperature | fields: level, ts, lon, type
Task: Get reading from sunlight where a corresponding entry exists in temperature with the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067125 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: lat, unit, value, reading
Sensor: lightning | fields: ts, unit, qc, lat
Task: Retrieve lat from rainfall whose ts is found in lightning records where depth matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067126 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: lon, type, lat, ts
Sensor: turbidity | fields: qc, type, value, level
Task: Fetch lat from frost where qc exists in turbidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="qc",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067127 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: lon, value, unit, depth
Sensor: visibility | fields: lon, value, qc, type
Task: Fetch lat from uv_index where depth exists in visibility sensor data for the same type.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="type",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067128 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: level, unit, lon, qc
Sensor: air_quality | fields: level, value, depth, unit
Task: Fetch value from snow_depth where reading is greater than the maximum of value in air_quality for matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067129 | train |
v1 | Sensor network script:
Node: rainfall | code: prt | fields: depth, lon, level, unit
Sensor: wind_speed | fields: type, ts, reading, unit
Task: Retrieve reading from rainfall whose type is found in wind_speed records where depth matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067130 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: lat, depth, lon, value
Sensor: frost | fields: lat, type, lon, qc
Task: Get reading from dew_point where ts appears in frost readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067131 | train |
v1 | Sensor network script:
Node: humidity | code: gst | fields: level, value, ts, lon
Sensor: frost | fields: type, reading, qc, unit
Task: Fetch lon from humidity where ts exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067132 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: level, depth, value, ts
Sensor: dew_point | fields: qc, unit, ts, type
Task: Retrieve value from air_quality whose type is found in dew_point records where unit matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067133 | train |
v3 | Sensor network script:
Node: temperature | code: prt | fields: type, ts, value, unit
Sensor: snow_depth | fields: depth, value, reading, type
Task: Retrieve lon from temperature with depth above the MIN(reading) of snow_depth readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067134 | train |
v2 | Sensor network script:
Node: evaporation | code: gst | fields: level, lon, qc, unit
Sensor: soil_moisture | fields: level, value, unit, lat
Task: Get depth from evaporation where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067135 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: lon, level, qc, unit
Sensor: cloud_cover | fields: lat, ts, type, depth
Task: Fetch level from drought_index that have at least one corresponding cloud_cover measurement for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067136 | train |
v2 | Sensor network script:
Node: humidity | code: hub | fields: lon, ts, value, depth
Sensor: temperature | fields: type, reading, depth, value
Task: Get reading from humidity where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067137 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: lat, value, reading, level
Sensor: evaporation | fields: type, ts, qc, lat
Task: Fetch lat from drought_index where ts exists in evaporation sensor data for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="ts",
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": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067138 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: reading, value, qc, unit
Sensor: wind_speed | fields: unit, lon, depth, qc
Task: Fetch reading from air_quality where qc exists in wind_speed sensor data for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067139 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: lon, unit, level, reading
Sensor: dew_point | fields: lon, lat, reading, unit
Task: Retrieve reading from frost that have at least one matching reading in dew_point sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067140 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: level, unit, qc, type
Sensor: visibility | fields: value, qc, lon, reading
Task: Get reading from cloud_cover where a corresponding entry exists in visibility with the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067141 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: value, reading, level, depth
Sensor: uv_index | fields: value, depth, level, ts
Task: Retrieve lat from rainfall that have at least one matching reading in uv_index sharing the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067142 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: level, reading, lat, value
Sensor: wind_speed | fields: reading, value, level, lon
Task: Get reading from humidity where ts appears in wind_speed readings with matching type.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067143 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: lon, depth, type, reading
Sensor: uv_index | fields: depth, ts, type, lat
Task: Get value from visibility where a corresponding entry exists in uv_index with the same type.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067144 | train |
v2 | Sensor network script:
Node: wind_speed | code: clr | fields: ts, depth, reading, value
Sensor: air_quality | fields: lat, qc, level, depth
Task: Get lon from wind_speed where a corresponding entry exists in air_quality with the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067145 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: value, lat, depth, lon
Sensor: air_quality | fields: reading, lat, ts, qc
Task: Fetch reading from sunlight where type exists in air_quality sensor data for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067146 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: unit, qc, ts, lon
Sensor: lightning | fields: type, level, reading, depth
Task: Get depth from frost where unit appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="type",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067147 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: ts, qc, unit, lat
Sensor: cloud_cover | fields: type, level, lat, lon
Task: Fetch lon from drought_index that have at least one corresponding cloud_cover measurement for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067148 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: qc, lon, level, unit
Sensor: drought_index | fields: depth, reading, ts, lon
Task: Retrieve lon from soil_moisture with value above the MIN(depth) of drought_index readings sharing the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067149 | train |
v3 | Sensor network script:
Node: uv_index | code: stn | fields: ts, depth, unit, level
Sensor: sunlight | fields: ts, value, level, lon
Task: Retrieve depth from uv_index with reading above the COUNT(reading) of sunlight readings sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067150 | train |
v2 | Sensor network script:
Node: drought_index | code: gst | fields: depth, lat, ts, type
Sensor: uv_index | fields: qc, lat, reading, level
Task: Fetch value from drought_index that have at least one corresponding uv_index measurement for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067151 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: unit, type, reading, lon
Sensor: soil_moisture | fields: ts, level, lat, unit
Task: Get depth from temperature where reading exceeds the average value from soil_moisture for the same type.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067152 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: ts, type, qc, value
Sensor: air_quality | fields: type, level, depth, ts
Task: Retrieve reading from wind_speed whose ts is found in air_quality records where qc matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067153 | train |
v1 | Sensor network script:
Node: visibility | code: clr | fields: lat, value, qc, type
Sensor: turbidity | fields: value, lat, lon, unit
Task: Get lat from visibility where type appears in turbidity readings with matching type.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067154 | train |
v1 | Sensor network script:
Node: humidity | code: hub | fields: value, type, qc, level
Sensor: uv_index | fields: depth, reading, qc, ts
Task: Fetch lon from humidity where type exists in uv_index sensor data for the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="type",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067155 | train |
v2 | Sensor network script:
Node: visibility | code: thr | fields: value, reading, lat, unit
Sensor: uv_index | fields: lon, lat, value, type
Task: Fetch lat from visibility that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067156 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: lon, ts, reading, depth
Sensor: rainfall | fields: level, qc, reading, lat
Task: Fetch level from sunlight that have at least one corresponding rainfall measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067157 | train |
v3 | Sensor network script:
Node: evaporation | code: clr | fields: depth, type, ts, value
Sensor: rainfall | fields: reading, ts, type, lat
Task: Retrieve reading from evaporation with depth above the MIN(value) of rainfall readings sharing the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067158 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: value, type, ts, depth
Sensor: humidity | fields: reading, qc, depth, lon
Task: Retrieve lat from dew_point that have at least one matching reading in humidity sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067159 | train |
v1 | Sensor network script:
Node: lightning | code: ref | fields: lat, ts, lon, reading
Sensor: turbidity | fields: level, depth, unit, value
Task: Retrieve value from lightning whose qc is found in turbidity records where unit matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=set_member(
field="qc",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067160 | train |
v3 | Sensor network script:
Node: drought_index | code: gst | fields: ts, type, lon, depth
Sensor: visibility | fields: type, lon, ts, value
Task: Fetch lat from drought_index where depth is greater than the count of of reading in visibility for matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067161 | train |
v3 | Sensor network script:
Node: cloud_cover | code: hub | fields: type, value, qc, ts
Sensor: temperature | fields: depth, qc, reading, value
Task: Fetch lon from cloud_cover where value is greater than the count of of value in temperature for matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067162 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: depth, lon, ts, level
Sensor: lightning | fields: ts, type, value, reading
Task: Fetch lat from sunlight where depth exists in lightning sensor data for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067163 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: level, lat, type, ts
Sensor: lightning | fields: value, lat, lon, unit
Task: Retrieve level from soil_moisture whose unit is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067164 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: value, depth, qc, lat
Sensor: dew_point | fields: depth, ts, qc, level
Task: Fetch level from soil_moisture where type exists in dew_point sensor data for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067165 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: unit, qc, value, level
Sensor: soil_moisture | fields: type, lat, depth, value
Task: Get lon from snow_depth where a corresponding entry exists in soil_moisture with the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067166 | train |
v1 | Sensor network script:
Node: pressure | code: gst | fields: qc, ts, depth, unit
Sensor: soil_moisture | fields: value, type, depth, qc
Task: Get lat from pressure where ts appears in soil_moisture readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067167 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: lon, depth, type, qc
Sensor: pressure | fields: unit, depth, level, value
Task: Retrieve value from cloud_cover whose ts is found in pressure records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067168 | train |
v1 | Sensor network script:
Node: evaporation | code: gst | fields: lon, value, depth, reading
Sensor: visibility | fields: lon, type, unit, lat
Task: Retrieve reading from evaporation whose ts is found in visibility records where qc matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="qc",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067169 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: ts, type, reading, lat
Sensor: pressure | fields: type, qc, depth, lat
Task: Get lat from frost where unit appears in pressure readings with matching depth.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067170 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: type, reading, depth, lat
Sensor: visibility | fields: level, reading, lon, depth
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_067171 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: lat, value, reading, qc
Sensor: wind_speed | fields: level, unit, depth, reading
Task: Retrieve lon from rainfall with depth above the AVG(value) of wind_speed readings sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067172 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: lat, qc, lon, unit
Sensor: pressure | fields: lat, level, qc, reading
Task: Get value from turbidity where depth exceeds the maximum depth from pressure for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067173 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: type, qc, level, unit
Sensor: air_quality | fields: ts, type, depth, lat
Task: Fetch lon from cloud_cover where depth exists in air_quality sensor data for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="type",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067174 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: lon, unit, type, value
Sensor: wind_speed | fields: level, depth, value, lon
Task: Retrieve depth from evaporation that have at least one matching reading in wind_speed sharing the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067175 | train |
v3 | Sensor network script:
Node: dew_point | code: gst | fields: lat, qc, depth, reading
Sensor: visibility | fields: qc, level, lon, lat
Task: Fetch value from dew_point where reading is greater than the count of of depth in visibility for matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("visibility", code="clr"),
match="qc"),
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067176 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: level, ts, lon, depth
Sensor: cloud_cover | fields: lat, ts, level, lon
Task: Retrieve value from snow_depth with reading above the AVG(depth) of cloud_cover readings sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067177 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: value, type, unit, reading
Sensor: evaporation | fields: depth, ts, level, type
Task: Retrieve depth from dew_point whose type is found in evaporation records where qc matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067178 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: unit, depth, reading, value
Sensor: evaporation | fields: ts, qc, lat, lon
Task: Get depth from sunlight where value exceeds the total depth from evaporation for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"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_067179 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: type, qc, level, lat
Sensor: turbidity | fields: ts, reading, qc, unit
Task: Retrieve lon from temperature with depth above the SUM(value) of turbidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067180 | train |
v1 | Sensor network script:
Node: lightning | code: mst | fields: qc, depth, lat, value
Sensor: temperature | fields: lat, reading, type, unit
Task: Fetch depth from lightning where ts exists in temperature sensor data for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="unit",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067181 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: lon, ts, reading, level
Sensor: dew_point | fields: unit, level, depth, lon
Task: Fetch lon from lightning that have at least one corresponding dew_point measurement for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067182 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: value, qc, reading, type
Sensor: visibility | fields: value, ts, level, type
Task: Get reading from snow_depth where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067183 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: value, level, depth, qc
Sensor: sunlight | fields: ts, value, unit, lat
Task: Fetch depth from temperature where value is greater than the minimum of reading in sunlight for matching unit.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067184 | train |
v2 | Sensor network script:
Node: dew_point | code: ref | fields: unit, value, depth, type
Sensor: sunlight | fields: ts, level, value, type
Task: Fetch value from dew_point that have at least one corresponding sunlight measurement for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067185 | train |
v3 | Sensor network script:
Node: evaporation | code: gst | fields: unit, type, lon, ts
Sensor: snow_depth | fields: reading, qc, value, lon
Task: Retrieve lon from evaporation with value above the COUNT(reading) of snow_depth readings sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067186 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: depth, qc, reading, ts
Sensor: snow_depth | fields: lon, depth, unit, type
Task: Retrieve reading from sunlight whose unit is found in snow_depth records where depth matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067187 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: type, ts, lat, value
Sensor: drought_index | fields: reading, lon, qc, value
Task: Get lon from cloud_cover where unit appears in drought_index readings with matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067188 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: depth, lon, reading, lat
Sensor: evaporation | fields: lon, type, unit, lat
Task: Fetch level from soil_moisture that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067189 | train |
v3 | Sensor network script:
Node: rainfall | code: ref | fields: depth, unit, lon, reading
Sensor: soil_moisture | fields: lon, depth, level, type
Task: Fetch lon from rainfall where value is greater than the maximum of value in soil_moisture for matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067190 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: depth, value, qc, level
Sensor: temperature | fields: lat, type, unit, reading
Task: Fetch lat from rainfall that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067191 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: unit, lat, qc, level
Sensor: visibility | fields: unit, level, depth, lat
Task: Get lat from evaporation where a corresponding entry exists in visibility with the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067192 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: lat, reading, value, unit
Sensor: visibility | fields: value, depth, unit, ts
Task: Get value from pressure where ts appears in visibility readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="type",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067193 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: value, ts, qc, unit
Sensor: dew_point | fields: value, depth, ts, level
Task: Fetch lon from rainfall that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067194 | train |
v2 | Sensor network script:
Node: air_quality | code: thr | fields: value, qc, reading, ts
Sensor: cloud_cover | fields: level, lon, ts, qc
Task: Get lat from air_quality where a corresponding entry exists in cloud_cover with the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067195 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: ts, level, qc, reading
Sensor: air_quality | fields: ts, unit, depth, qc
Task: Retrieve depth from humidity with value above the AVG(reading) of air_quality readings sharing the same ts.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067196 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: qc, reading, unit, lat
Sensor: temperature | fields: ts, unit, type, reading
Task: Retrieve lat from lightning with depth above the MAX(reading) of temperature readings sharing the same qc.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067197 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: lat, level, qc, ts
Sensor: temperature | fields: level, lat, ts, unit
Task: Get lon from evaporation where depth exceeds the maximum depth from temperature for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_067198 | train |
v3 | Sensor network script:
Node: temperature | code: prt | fields: depth, lon, type, value
Sensor: humidity | fields: unit, qc, value, ts
Task: Get reading from temperature where depth exceeds the minimum value from humidity for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_067199 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.