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: wind_speed | code: thr | fields: type, reading, ts, lon
Sensor: lightning | fields: level, qc, lon, reading
Task: Get reading from wind_speed where qc appears in lightning readings with matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007900 | train |
v2 | Sensor network script:
Node: evaporation | code: stn | fields: type, value, depth, qc
Sensor: sunlight | fields: lat, value, lon, reading
Task: Retrieve level from evaporation that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007901 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: ts, unit, type, lon
Sensor: air_quality | fields: level, lon, ts, value
Task: Retrieve value from visibility that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007902 | train |
v1 | Sensor network script:
Node: lightning | code: mst | fields: lon, level, reading, unit
Sensor: frost | fields: ts, depth, reading, lat
Task: Fetch lat from lightning where unit exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007903 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: level, lon, qc, ts
Sensor: lightning | fields: depth, qc, lon, unit
Task: Fetch level from pressure where value is greater than the minimum of reading in lightning for matching qc.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007904 | train |
v3 | Sensor network script:
Node: cloud_cover | code: prt | fields: unit, reading, qc, lon
Sensor: wind_speed | fields: qc, unit, level, value
Task: Retrieve depth from cloud_cover with reading above the MAX(reading) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007905 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: ts, lat, reading, type
Sensor: rainfall | fields: value, qc, depth, level
Task: Fetch value from humidity where unit exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007906 | train |
v3 | Sensor network script:
Node: evaporation | code: ref | fields: ts, level, qc, lon
Sensor: dew_point | fields: reading, unit, level, type
Task: Retrieve value from evaporation with reading above the AVG(reading) of dew_point readings sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007907 | train |
v1 | Sensor network script:
Node: wind_speed | code: thr | fields: ts, lon, lat, depth
Sensor: dew_point | fields: unit, value, level, lon
Task: Fetch value from wind_speed where qc exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007908 | train |
v2 | Sensor network script:
Node: visibility | code: stn | fields: reading, unit, level, type
Sensor: soil_moisture | fields: depth, ts, lat, reading
Task: Get lon from visibility where a corresponding entry exists in soil_moisture with the same unit.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007909 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: type, reading, ts, unit
Sensor: drought_index | fields: lon, value, depth, type
Task: Fetch lat from dew_point where type exists in drought_index sensor data for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007910 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: lat, qc, reading, unit
Sensor: temperature | fields: unit, lon, depth, lat
Task: Retrieve lon from humidity that have at least one matching reading in temperature sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007911 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: type, lat, ts, reading
Sensor: wind_speed | fields: qc, reading, level, unit
Task: Retrieve depth from air_quality with reading above the MAX(depth) of wind_speed readings sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007912 | train |
v3 | Sensor network script:
Node: humidity | code: gst | fields: depth, value, lat, reading
Sensor: drought_index | fields: lat, qc, lon, reading
Task: Retrieve level from humidity with reading above the SUM(reading) of drought_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"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_007913 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: value, unit, qc, ts
Sensor: snow_depth | fields: value, type, lat, depth
Task: Retrieve lon from uv_index whose type is found in snow_depth records where depth matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007914 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: level, depth, qc, unit
Sensor: visibility | fields: level, type, qc, depth
Task: Retrieve reading from turbidity that have at least one matching reading in visibility sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007915 | train |
v1 | Sensor network script:
Node: soil_moisture | code: clr | fields: level, lat, value, ts
Sensor: drought_index | fields: lon, lat, level, value
Task: Get lon from soil_moisture where qc appears in drought_index readings with matching unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007916 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: qc, reading, lat, depth
Sensor: soil_moisture | fields: level, depth, value, lon
Task: Get lon from visibility where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007917 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: qc, reading, depth, lon
Sensor: soil_moisture | fields: depth, unit, value, reading
Task: Get lat from air_quality where a corresponding entry exists in soil_moisture with the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007918 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: reading, lon, unit, ts
Sensor: turbidity | fields: type, reading, depth, level
Task: Get reading from rainfall where unit appears in turbidity readings with matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007919 | train |
v3 | Sensor network script:
Node: temperature | code: gst | fields: qc, unit, lon, value
Sensor: cloud_cover | fields: level, qc, unit, type
Task: Retrieve lon from temperature with value above the MAX(depth) of cloud_cover readings sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007920 | train |
v2 | Sensor network script:
Node: evaporation | code: thr | fields: depth, reading, lat, value
Sensor: rainfall | fields: level, value, qc, type
Task: Retrieve level from evaporation that have at least one matching reading in rainfall sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007921 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: ts, level, type, lon
Sensor: temperature | fields: reading, unit, ts, type
Task: Retrieve value from visibility with reading above the SUM(value) of temperature readings sharing the same type.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("temperature", code="thr"),
match="type"),
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007922 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: ts, unit, level, qc
Sensor: uv_index | fields: unit, type, depth, lat
Task: Get level from rainfall where unit appears in uv_index readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007923 | train |
v3 | Sensor network script:
Node: lightning | code: gst | fields: reading, qc, level, lat
Sensor: humidity | fields: type, reading, value, lon
Task: Retrieve level from lightning with value above the MAX(depth) of humidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007924 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: lat, lon, type, unit
Sensor: dew_point | fields: level, ts, value, reading
Task: Get lat from pressure where qc appears in dew_point readings with matching ts.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007925 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: level, type, ts, unit
Sensor: cloud_cover | fields: ts, reading, lon, level
Task: Get reading from rainfall where unit appears in cloud_cover readings with matching depth.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007926 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: type, reading, level, value
Sensor: lightning | fields: ts, reading, qc, lon
Task: Retrieve depth from temperature whose depth is found in lightning records where unit matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007927 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: ts, depth, lat, reading
Sensor: dew_point | fields: lat, unit, reading, lon
Task: Retrieve depth from frost with value above the MAX(depth) of dew_point readings sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007928 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: value, depth, level, type
Sensor: air_quality | fields: unit, qc, value, ts
Task: Retrieve level from uv_index whose ts is found in air_quality records where type matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="type",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007929 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: type, level, depth, lat
Sensor: turbidity | fields: value, reading, qc, lon
Task: Retrieve lon from dew_point that have at least one matching reading in turbidity sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007930 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: reading, qc, type, value
Sensor: snow_depth | fields: depth, lat, ts, lon
Task: Retrieve value from rainfall with depth above the MAX(value) of snow_depth readings sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007931 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: lon, unit, lat, value
Sensor: turbidity | fields: unit, depth, reading, qc
Task: Fetch lon from humidity that have at least one corresponding turbidity measurement for the same type.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007932 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: depth, qc, reading, level
Sensor: sunlight | fields: qc, ts, value, lon
Task: Fetch value from lightning that have at least one corresponding sunlight measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007933 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: lat, depth, type, lon
Sensor: turbidity | fields: lat, value, lon, qc
Task: Fetch value from rainfall where reading is greater than the maximum of depth in turbidity for matching depth.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007934 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: depth, level, reading, type
Sensor: temperature | fields: level, ts, lat, reading
Task: Retrieve lon from uv_index with depth above the MIN(value) of temperature readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("temperature", code="thr"),
match="type"),
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007935 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: lon, reading, type, depth
Sensor: pressure | fields: lat, qc, level, ts
Task: Fetch lon from dew_point where unit exists in pressure sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007936 | train |
v1 | Sensor network script:
Node: frost | code: stn | fields: value, qc, ts, lat
Sensor: visibility | fields: ts, lon, unit, level
Task: Fetch lon from frost where type exists in visibility sensor data for the same qc.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007937 | train |
v3 | Sensor network script:
Node: humidity | code: clr | fields: lon, ts, reading, depth
Sensor: uv_index | fields: reading, lat, ts, unit
Task: Retrieve reading from humidity with depth above the MAX(depth) of uv_index readings sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007938 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: lat, level, qc, unit
Sensor: turbidity | fields: unit, lat, level, lon
Task: Fetch reading from rainfall where ts exists in turbidity sensor data for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007939 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: value, ts, level, qc
Sensor: air_quality | fields: type, ts, qc, level
Task: Get value from pressure where qc appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007940 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: qc, lon, reading, level
Sensor: soil_moisture | fields: unit, level, type, reading
Task: Get value from wind_speed where value exceeds the count of depth from soil_moisture for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007941 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: reading, level, type, qc
Sensor: humidity | fields: ts, lat, type, lon
Task: Fetch depth from pressure where type exists in humidity sensor data for the same type.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007942 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: qc, reading, lat, lon
Sensor: turbidity | fields: lon, value, depth, type
Task: Get depth from sunlight where a corresponding entry exists in turbidity with the same type.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007943 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: ts, lon, unit, reading
Sensor: sunlight | fields: ts, value, lat, reading
Task: Retrieve lat from wind_speed that have at least one matching reading in sunlight sharing the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007944 | train |
v3 | Sensor network script:
Node: uv_index | code: thr | fields: value, type, depth, ts
Sensor: rainfall | fields: level, type, lat, ts
Task: Retrieve lat from uv_index with depth above the COUNT(reading) of rainfall readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007945 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: lat, ts, type, unit
Sensor: temperature | fields: lon, unit, level, ts
Task: Retrieve depth from turbidity whose ts is found in temperature records where depth matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="depth",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007946 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: type, depth, reading, ts
Sensor: drought_index | fields: qc, type, unit, lat
Task: Retrieve lat from humidity with value above the AVG(value) of drought_index readings sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007947 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: qc, depth, type, lat
Sensor: frost | fields: value, qc, lat, reading
Task: Get value from snow_depth where a corresponding entry exists in frost with the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007948 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: ts, unit, value, type
Sensor: sunlight | fields: qc, type, level, lon
Task: Retrieve value from uv_index with value above the MIN(depth) of sunlight readings sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007949 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: value, level, lat, lon
Sensor: dew_point | fields: type, depth, value, reading
Task: Get depth from frost where a corresponding entry exists in dew_point with the same depth.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007950 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: level, type, value, ts
Sensor: lightning | fields: level, qc, depth, type
Task: Retrieve reading from sunlight with value above the MIN(value) of lightning readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007951 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: ts, lat, value, lon
Sensor: evaporation | fields: lon, ts, type, qc
Task: Get lat from cloud_cover where type appears in evaporation readings with matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007952 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: qc, lon, reading, value
Sensor: soil_moisture | fields: lon, type, lat, qc
Task: Get value from turbidity where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007953 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: reading, unit, level, depth
Sensor: frost | fields: depth, type, unit, lat
Task: Get reading from temperature where a corresponding entry exists in frost with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007954 | train |
v1 | Sensor network script:
Node: snow_depth | code: thr | fields: ts, depth, qc, lon
Sensor: humidity | fields: depth, level, reading, type
Task: Get lon from snow_depth where qc appears in humidity readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007955 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: level, depth, lat, ts
Sensor: sunlight | fields: qc, lon, ts, reading
Task: Get value from evaporation where qc appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007956 | train |
v3 | Sensor network script:
Node: rainfall | code: thr | fields: depth, level, reading, unit
Sensor: soil_moisture | fields: type, value, lat, ts
Task: Fetch lon from rainfall where depth is greater than the count of of depth in soil_moisture for matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007957 | train |
v2 | Sensor network script:
Node: turbidity | code: thr | fields: lat, depth, value, reading
Sensor: lightning | fields: lon, type, ts, reading
Task: Retrieve reading from turbidity that have at least one matching reading in lightning sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007958 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: lat, depth, unit, lon
Sensor: cloud_cover | fields: qc, reading, depth, lat
Task: Get lat from rainfall where a corresponding entry exists in cloud_cover with the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007959 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: ts, level, reading, depth
Sensor: dew_point | fields: type, lat, qc, unit
Task: Fetch value from lightning that have at least one corresponding dew_point measurement for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007960 | train |
v2 | Sensor network script:
Node: visibility | code: gst | fields: level, depth, ts, lat
Sensor: evaporation | fields: lat, depth, ts, value
Task: Fetch value from visibility that have at least one corresponding evaporation measurement for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007961 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: qc, depth, ts, lon
Sensor: frost | fields: lat, type, level, value
Task: Get lat from snow_depth where a corresponding entry exists in frost with the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007962 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: lon, type, value, ts
Sensor: temperature | fields: depth, reading, level, type
Task: Fetch lat from wind_speed where ts exists in temperature sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="ts",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007963 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: depth, level, type, value
Sensor: uv_index | fields: depth, level, value, lon
Task: Fetch reading from humidity that have at least one corresponding uv_index measurement for the same type.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007964 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: ts, reading, value, type
Sensor: pressure | fields: qc, reading, level, ts
Task: Fetch level from turbidity that have at least one corresponding pressure measurement for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007965 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: value, lat, reading, depth
Sensor: lightning | fields: qc, lon, unit, value
Task: Fetch level from rainfall where depth exists in lightning sensor data for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007966 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: unit, level, lat, reading
Sensor: dew_point | fields: value, reading, lon, level
Task: Get lat from lightning where depth appears in dew_point readings with matching depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007967 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: unit, level, depth, lat
Sensor: air_quality | fields: lat, reading, unit, level
Task: Fetch value from cloud_cover that have at least one corresponding air_quality measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007968 | train |
v3 | Sensor network script:
Node: rainfall | code: ref | fields: reading, lat, lon, ts
Sensor: cloud_cover | fields: lat, lon, type, value
Task: Get lat from rainfall where depth exceeds the count of value from cloud_cover for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007969 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: qc, level, depth, lon
Sensor: temperature | fields: value, unit, qc, type
Task: Get value from sunlight where reading exceeds the minimum depth from temperature for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007970 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: depth, reading, value, unit
Sensor: uv_index | fields: lat, level, ts, lon
Task: Retrieve value from evaporation whose type is found in uv_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007971 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: lon, value, level, lat
Sensor: evaporation | fields: level, qc, value, depth
Task: Retrieve depth from snow_depth with reading above the COUNT(value) of evaporation readings sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007972 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: lat, level, value, qc
Sensor: wind_speed | fields: type, lat, level, depth
Task: Retrieve level from air_quality that have at least one matching reading in wind_speed sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007973 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: reading, value, type, depth
Sensor: snow_depth | fields: ts, lat, qc, lon
Task: Retrieve lat from pressure that have at least one matching reading in snow_depth sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007974 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: lat, level, type, depth
Sensor: uv_index | fields: value, type, reading, depth
Task: Fetch value from air_quality that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007975 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: lat, ts, lon, qc
Sensor: cloud_cover | fields: reading, level, lon, type
Task: Fetch lon from soil_moisture where unit exists in cloud_cover sensor data for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007976 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: value, depth, unit, type
Sensor: temperature | fields: unit, type, lat, level
Task: Get reading from snow_depth where depth appears in temperature readings with matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007977 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: type, qc, reading, lat
Sensor: rainfall | fields: ts, reading, unit, qc
Task: Get depth from uv_index where a corresponding entry exists in rainfall with the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007978 | train |
v1 | Sensor network script:
Node: visibility | code: gst | fields: lon, value, reading, depth
Sensor: humidity | fields: unit, qc, type, reading
Task: Get reading from visibility where unit appears in humidity readings with matching ts.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007979 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: lon, unit, ts, level
Sensor: turbidity | fields: lon, level, reading, lat
Task: Fetch depth from soil_moisture where type exists in turbidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007980 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: lat, ts, lon, value
Sensor: drought_index | fields: value, reading, level, ts
Task: Fetch reading from air_quality where qc exists in drought_index sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="type",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007981 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: depth, reading, lon, value
Sensor: sunlight | fields: lon, ts, lat, unit
Task: Get lat from visibility where ts appears in sunlight readings with matching type.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="type",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007982 | train |
v1 | Sensor network script:
Node: snow_depth | code: ref | fields: unit, value, lon, type
Sensor: sunlight | fields: ts, lat, value, type
Task: Fetch lat from snow_depth where ts exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007983 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: depth, level, reading, qc
Sensor: soil_moisture | fields: reading, lon, value, depth
Task: Get lat from humidity where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007984 | train |
v2 | Sensor network script:
Node: frost | code: ref | fields: reading, type, level, lat
Sensor: visibility | fields: unit, qc, lat, ts
Task: Get lat from frost where a corresponding entry exists in visibility with the same type.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007985 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: qc, level, lat, unit
Sensor: soil_moisture | fields: lon, reading, depth, value
Task: Fetch level from rainfall that have at least one corresponding soil_moisture measurement for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007986 | train |
v1 | Sensor network script:
Node: temperature | code: clr | fields: depth, type, ts, value
Sensor: evaporation | fields: depth, lat, level, reading
Task: Get lon from temperature where type appears in evaporation readings with matching unit.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007987 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: value, depth, qc, lon
Sensor: dew_point | fields: unit, level, qc, type
Task: Fetch lon from evaporation where qc exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007988 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: unit, value, ts, type
Sensor: drought_index | fields: reading, level, qc, depth
Task: Fetch lon from dew_point that have at least one corresponding drought_index measurement for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007989 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: lat, reading, value, lon
Sensor: air_quality | fields: reading, value, depth, type
Task: Fetch lat from drought_index where reading is greater than the total of depth in air_quality for matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007990 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: reading, lon, ts, qc
Sensor: dew_point | fields: lat, lon, reading, ts
Task: Retrieve lon from frost with reading above the MAX(reading) of dew_point readings sharing the same qc.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007991 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: ts, reading, lon, lat
Sensor: temperature | fields: ts, reading, level, type
Task: Fetch level from air_quality where unit exists in temperature sensor data for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="qc",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007992 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: qc, lat, depth, reading
Sensor: pressure | fields: reading, value, unit, lon
Task: Fetch reading from turbidity where unit exists in pressure sensor data for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007993 | train |
v3 | Sensor network script:
Node: uv_index | code: prt | fields: lat, depth, ts, unit
Sensor: wind_speed | fields: value, ts, lat, depth
Task: Retrieve depth from uv_index with value above the SUM(depth) of wind_speed readings sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_007994 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: depth, level, lat, unit
Sensor: uv_index | fields: value, lon, lat, ts
Task: Retrieve depth from sunlight with reading above the MAX(depth) of uv_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007995 | train |
v3 | Sensor network script:
Node: pressure | code: hub | fields: qc, ts, unit, type
Sensor: uv_index | fields: type, level, lat, ts
Task: Fetch level from pressure where depth is greater than the minimum of reading in uv_index for matching qc.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007996 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: type, unit, qc, reading
Sensor: rainfall | fields: value, ts, level, lat
Task: Get lon from drought_index where a corresponding entry exists in rainfall with the same type.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007997 | train |
v1 | Sensor network script:
Node: dew_point | code: hub | fields: ts, lon, qc, unit
Sensor: cloud_cover | fields: depth, level, unit, reading
Task: Get reading from dew_point where ts appears in cloud_cover readings with matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007998 | train |
v3 | Sensor network script:
Node: evaporation | code: gst | fields: depth, value, level, reading
Sensor: sunlight | fields: reading, level, lon, depth
Task: Get value from evaporation where value exceeds the minimum reading from sunlight for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_007999 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.