variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v2 | Sensor network script:
Node: air_quality | code: clr | fields: ts, depth, unit, lat
Sensor: dew_point | fields: qc, unit, reading, lon
Task: Retrieve lat from air_quality that have at least one matching reading in dew_point sharing the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005500 | train |
v2 | Sensor network script:
Node: wind_speed | code: mst | fields: depth, qc, unit, ts
Sensor: air_quality | fields: depth, ts, unit, type
Task: Get lon from wind_speed where a corresponding entry exists in air_quality with the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005501 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: type, lon, level, lat
Sensor: rainfall | fields: unit, reading, value, lon
Task: Get lon from turbidity where a corresponding entry exists in rainfall with the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005502 | train |
v3 | Sensor network script:
Node: temperature | code: prt | fields: ts, lat, depth, lon
Sensor: lightning | fields: depth, lon, lat, unit
Task: Get reading from temperature where reading exceeds the maximum value from lightning for the same type.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005503 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: depth, type, lat, lon
Sensor: cloud_cover | fields: ts, value, lat, reading
Task: Get lon from turbidity where ts appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005504 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: lon, value, lat, ts
Sensor: soil_moisture | fields: depth, qc, level, ts
Task: Fetch level from turbidity where depth exists in soil_moisture sensor data for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005505 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: ts, unit, level, depth
Sensor: temperature | fields: unit, value, reading, lat
Task: Get level from turbidity where a corresponding entry exists in temperature with the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="qc",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005506 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: level, reading, lat, qc
Sensor: sunlight | fields: value, ts, type, lat
Task: Get reading from soil_moisture where reading exceeds the average value from sunlight for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005507 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: type, qc, ts, reading
Sensor: uv_index | fields: lon, reading, type, value
Task: Fetch value from evaporation that have at least one corresponding uv_index measurement for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005508 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: depth, lat, value, type
Sensor: air_quality | fields: reading, ts, depth, level
Task: Fetch value from dew_point that have at least one corresponding air_quality measurement for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005509 | train |
v1 | Sensor network script:
Node: humidity | code: gst | fields: depth, reading, type, qc
Sensor: pressure | fields: reading, depth, qc, ts
Task: Retrieve value from humidity whose qc is found in pressure records where ts matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005510 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: lon, level, ts, qc
Sensor: turbidity | fields: level, depth, value, lon
Task: Fetch value from humidity where value is greater than the total of depth in turbidity for matching type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005511 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: lon, lat, qc, value
Sensor: pressure | fields: lat, depth, qc, value
Task: Retrieve value from uv_index with depth above the MAX(reading) of pressure readings sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005512 | train |
v2 | Sensor network script:
Node: pressure | code: clr | fields: reading, level, lat, type
Sensor: uv_index | fields: lon, ts, unit, reading
Task: Get lon from pressure where a corresponding entry exists in uv_index with the same depth.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005513 | train |
v1 | Sensor network script:
Node: temperature | code: gst | fields: type, level, depth, lon
Sensor: evaporation | fields: value, reading, unit, qc
Task: Fetch depth from temperature where qc exists in evaporation sensor data for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005514 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: depth, qc, lat, value
Sensor: snow_depth | fields: unit, level, qc, type
Task: Get reading from frost where type appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005515 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: reading, lat, qc, unit
Sensor: uv_index | fields: value, lon, depth, level
Task: Retrieve lon from air_quality whose qc is found in uv_index records where qc matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005516 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: level, lon, unit, qc
Sensor: visibility | fields: qc, depth, ts, reading
Task: Get value from soil_moisture where value exceeds the minimum value from visibility for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("visibility", code="clr"),
match="type"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005517 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: lon, level, unit, qc
Sensor: pressure | fields: unit, qc, lon, type
Task: Fetch depth from sunlight that have at least one corresponding pressure measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005518 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: lon, type, ts, reading
Sensor: air_quality | fields: lat, ts, depth, type
Task: Retrieve reading from temperature whose depth is found in air_quality records where unit matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005519 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: lon, depth, qc, unit
Sensor: temperature | fields: reading, level, value, qc
Task: Fetch level from air_quality that have at least one corresponding temperature measurement for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005520 | train |
v3 | Sensor network script:
Node: dew_point | code: ref | fields: unit, lon, value, reading
Sensor: evaporation | fields: unit, lon, lat, type
Task: Retrieve depth from dew_point with value above the AVG(value) of evaporation readings sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "depth",
"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_005521 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: ts, reading, type, unit
Sensor: air_quality | fields: type, level, qc, ts
Task: Fetch level from frost that have at least one corresponding air_quality measurement for the same depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005522 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: ts, lon, type, reading
Sensor: rainfall | fields: depth, qc, lat, value
Task: Retrieve value from frost with value above the COUNT(value) of rainfall readings sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005523 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: type, unit, lon, reading
Sensor: lightning | fields: type, lat, lon, level
Task: Retrieve depth from cloud_cover whose ts is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005524 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: reading, lat, qc, level
Sensor: evaporation | fields: lon, depth, unit, type
Task: Fetch lat from turbidity where unit exists in evaporation sensor data for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005525 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: lon, depth, value, unit
Sensor: snow_depth | fields: unit, ts, qc, value
Task: Fetch level from drought_index where ts exists in snow_depth sensor data for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005526 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: type, lon, ts, depth
Sensor: drought_index | fields: qc, lat, lon, value
Task: Retrieve reading from temperature whose qc is found in drought_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005527 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: reading, lat, value, lon
Sensor: pressure | fields: level, reading, unit, type
Task: Get lat from wind_speed where qc appears in pressure readings with matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005528 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: lon, qc, lat, unit
Sensor: lightning | fields: lon, qc, lat, unit
Task: Get value from humidity where value exceeds the maximum value from lightning for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005529 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: value, unit, reading, lon
Sensor: uv_index | fields: level, type, lon, lat
Task: Retrieve lon from air_quality whose depth is found in uv_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005530 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: lon, value, depth, level
Sensor: humidity | fields: lat, value, level, type
Task: Fetch value from turbidity where unit exists in humidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005531 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: reading, depth, lon, unit
Sensor: uv_index | fields: reading, value, lon, type
Task: Get value from soil_moisture where value exceeds the average depth from uv_index for the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005532 | train |
v3 | Sensor network script:
Node: humidity | code: mst | fields: unit, type, depth, ts
Sensor: turbidity | fields: reading, value, level, unit
Task: Retrieve depth from humidity with reading above the COUNT(depth) of turbidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005533 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: lat, qc, value, reading
Sensor: drought_index | fields: unit, lat, level, type
Task: Fetch depth from evaporation where unit exists in drought_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005534 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: level, lon, reading, value
Sensor: drought_index | fields: qc, level, lon, reading
Task: Retrieve lon from snow_depth with value above the MIN(reading) of drought_index readings sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005535 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: qc, level, lon, reading
Sensor: rainfall | fields: level, reading, value, ts
Task: Fetch value from pressure where depth is greater than the count of of depth in rainfall for matching type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005536 | train |
v3 | Sensor network script:
Node: evaporation | code: ref | fields: level, unit, type, depth
Sensor: humidity | fields: lon, depth, value, ts
Task: Retrieve reading from evaporation with value above the AVG(depth) of humidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005537 | train |
v3 | Sensor network script:
Node: uv_index | code: hub | fields: level, ts, depth, unit
Sensor: frost | fields: level, ts, unit, lat
Task: Get lon from uv_index where reading exceeds the total depth from frost for the same type.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("frost", code="frs"),
match="type"),
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005538 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: depth, unit, qc, type
Sensor: rainfall | fields: level, value, unit, reading
Task: Fetch lat from temperature that have at least one corresponding rainfall measurement for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005539 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: value, qc, unit, level
Sensor: evaporation | fields: reading, qc, depth, lat
Task: Retrieve level from turbidity whose type is found in evaporation records where unit matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005540 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: lat, level, depth, qc
Sensor: lightning | fields: value, qc, ts, lat
Task: Get value from pressure where a corresponding entry exists in lightning with the same qc.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005541 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: unit, lon, reading, qc
Sensor: evaporation | fields: type, lon, reading, lat
Task: Retrieve lon from sunlight whose type is found in evaporation records where ts matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005542 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: lon, ts, type, level
Sensor: visibility | fields: lat, depth, value, ts
Task: Get level from uv_index where a corresponding entry exists in visibility with the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005543 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: qc, unit, lon, depth
Sensor: sunlight | fields: type, level, reading, unit
Task: Fetch lat from pressure where type exists in sunlight sensor data for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005544 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: type, qc, unit, lat
Sensor: uv_index | fields: level, lon, lat, reading
Task: Retrieve value from frost that have at least one matching reading in uv_index sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005545 | train |
v3 | Sensor network script:
Node: cloud_cover | code: stn | fields: ts, unit, lat, level
Sensor: air_quality | fields: qc, value, depth, type
Task: Retrieve reading from cloud_cover with depth above the SUM(reading) of air_quality readings sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("air_quality", code="prt"),
match="type"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005546 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: ts, reading, unit, lat
Sensor: snow_depth | fields: type, reading, lat, ts
Task: Get reading from cloud_cover where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005547 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: value, lat, ts, depth
Sensor: cloud_cover | fields: lon, reading, qc, lat
Task: Fetch lat from evaporation that have at least one corresponding cloud_cover measurement for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005548 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: lon, depth, level, qc
Sensor: drought_index | fields: ts, level, qc, value
Task: Get value from air_quality where depth exceeds the average value from drought_index for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005549 | train |
v1 | Sensor network script:
Node: dew_point | code: hub | fields: unit, type, lat, qc
Sensor: soil_moisture | fields: depth, unit, type, value
Task: Fetch reading from dew_point where unit exists in soil_moisture sensor data for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005550 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: lon, type, reading, value
Sensor: pressure | fields: depth, qc, reading, value
Task: Fetch value from soil_moisture where value is greater than the average of reading in pressure for matching qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005551 | train |
v3 | Sensor network script:
Node: temperature | code: thr | fields: depth, qc, lon, type
Sensor: turbidity | fields: reading, lon, type, value
Task: Fetch lat from temperature where depth is greater than the maximum of reading in turbidity for matching qc.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005552 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: qc, lon, level, ts
Sensor: pressure | fields: lon, value, level, unit
Task: Retrieve reading from visibility with value above the MAX(reading) of pressure readings sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005553 | train |
v3 | Sensor network script:
Node: drought_index | code: gst | fields: lat, unit, reading, qc
Sensor: evaporation | fields: depth, type, level, ts
Task: Fetch depth from drought_index where reading is greater than the minimum of value in evaporation for matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005554 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: lon, type, lat, value
Sensor: dew_point | fields: type, unit, value, level
Task: Retrieve reading from rainfall with value above the AVG(depth) of dew_point readings sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005555 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: ts, depth, lat, type
Sensor: evaporation | fields: type, level, ts, lat
Task: Fetch lat from dew_point that have at least one corresponding evaporation measurement for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005556 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: type, ts, unit, lon
Sensor: rainfall | fields: lat, lon, reading, ts
Task: Retrieve reading from frost with reading above the MAX(reading) of rainfall readings sharing the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005557 | train |
v3 | Sensor network script:
Node: soil_moisture | code: mst | fields: lat, qc, depth, type
Sensor: humidity | fields: value, qc, level, type
Task: Get reading from soil_moisture where value exceeds the minimum reading from humidity for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005558 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: value, lon, depth, level
Sensor: rainfall | fields: lon, lat, ts, depth
Task: Get lon from uv_index where type appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005559 | train |
v1 | Sensor network script:
Node: snow_depth | code: thr | fields: lon, lat, unit, depth
Sensor: visibility | fields: qc, lon, lat, unit
Task: Fetch depth from snow_depth where ts exists in visibility sensor data for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005560 | train |
v1 | Sensor network script:
Node: wind_speed | code: clr | fields: value, ts, lat, level
Sensor: evaporation | fields: ts, qc, type, depth
Task: Fetch value from wind_speed where qc exists in evaporation sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005561 | train |
v2 | Sensor network script:
Node: wind_speed | code: clr | fields: type, reading, unit, qc
Sensor: dew_point | fields: value, reading, depth, level
Task: Fetch value from wind_speed that have at least one corresponding dew_point measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005562 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: type, lat, qc, unit
Sensor: dew_point | fields: depth, value, level, reading
Task: Get depth from soil_moisture where depth appears in dew_point readings with matching unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005563 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: ts, value, unit, lat
Sensor: frost | fields: ts, depth, unit, lon
Task: Fetch depth from dew_point that have at least one corresponding frost measurement for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005564 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: qc, depth, reading, lon
Sensor: humidity | fields: qc, value, lon, reading
Task: Retrieve lon from sunlight with reading above the AVG(value) of humidity readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005565 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: lat, reading, value, qc
Sensor: frost | fields: lat, qc, type, ts
Task: Get lon from soil_moisture where reading exceeds the average depth from frost for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("frost", code="frs"),
match="depth"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005566 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: depth, level, type, lon
Sensor: soil_moisture | fields: qc, ts, depth, lat
Task: Retrieve depth from cloud_cover that have at least one matching reading in soil_moisture sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005567 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: lat, reading, lon, ts
Sensor: frost | fields: unit, depth, reading, lon
Task: Fetch depth from snow_depth that have at least one corresponding frost measurement for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005568 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: unit, qc, lat, type
Sensor: evaporation | fields: lon, level, reading, type
Task: Retrieve depth from turbidity whose depth is found in evaporation records where type matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="type",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005569 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: lon, unit, depth, value
Sensor: temperature | fields: lat, depth, unit, type
Task: Fetch value from humidity where ts exists in temperature sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005570 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: level, lon, value, depth
Sensor: pressure | fields: ts, lon, value, qc
Task: Get level from rainfall where a corresponding entry exists in pressure with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005571 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: reading, value, depth, lon
Sensor: sunlight | fields: ts, type, lon, lat
Task: Retrieve level from drought_index whose qc is found in sunlight records where type matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="type",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005572 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: type, value, reading, depth
Sensor: uv_index | fields: qc, lon, depth, level
Task: Fetch lat from evaporation that have at least one corresponding uv_index measurement for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005573 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: value, reading, level, unit
Sensor: humidity | fields: ts, reading, lon, lat
Task: Get lat from wind_speed where ts appears in humidity readings with matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="type",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005574 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: qc, value, lon, type
Sensor: snow_depth | fields: qc, unit, lat, reading
Task: Retrieve reading from air_quality whose unit is found in snow_depth records where qc matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005575 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: qc, depth, ts, level
Sensor: wind_speed | fields: ts, level, lon, type
Task: Retrieve depth from sunlight with value above the MAX(reading) of wind_speed readings sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005576 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: depth, qc, value, type
Sensor: evaporation | fields: unit, value, ts, lon
Task: Retrieve level from air_quality whose ts is found in evaporation records where depth matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005577 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: qc, reading, type, value
Sensor: evaporation | fields: unit, type, value, qc
Task: Retrieve lat from humidity that have at least one matching reading in evaporation sharing the same depth.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005578 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: depth, unit, qc, type
Sensor: air_quality | fields: reading, qc, unit, depth
Task: Get lon from lightning where a corresponding entry exists in air_quality with the same qc.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005579 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: qc, lat, ts, unit
Sensor: dew_point | fields: ts, value, level, reading
Task: Retrieve level from cloud_cover whose type is found in dew_point records where unit matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005580 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: level, lon, ts, qc
Sensor: snow_depth | fields: depth, unit, value, type
Task: Retrieve lat from visibility that have at least one matching reading in snow_depth sharing the same type.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005581 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: reading, unit, value, lon
Sensor: sunlight | fields: depth, qc, ts, unit
Task: Get value from drought_index where a corresponding entry exists in sunlight with the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005582 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: lon, type, level, ts
Sensor: temperature | fields: qc, reading, type, ts
Task: Get lat from turbidity where depth appears in temperature readings with matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="ts",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005583 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: depth, lat, type, lon
Sensor: evaporation | fields: depth, unit, reading, qc
Task: Retrieve level from temperature with reading above the SUM(value) of evaporation readings sharing the same unit.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005584 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: qc, reading, unit, lon
Sensor: visibility | fields: depth, unit, level, value
Task: Fetch depth from temperature where ts exists in visibility sensor data for the same type.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="type",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005585 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: depth, type, ts, reading
Sensor: turbidity | fields: lat, lon, ts, reading
Task: Get value from humidity where value exceeds the total value from turbidity for the same type.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005586 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: depth, reading, level, ts
Sensor: air_quality | fields: unit, type, ts, reading
Task: Retrieve depth from rainfall whose qc is found in air_quality records where depth matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005587 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: ts, qc, level, depth
Sensor: humidity | fields: ts, depth, qc, unit
Task: Retrieve reading from temperature that have at least one matching reading in humidity sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005588 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: lon, unit, level, lat
Sensor: wind_speed | fields: type, depth, ts, lon
Task: Retrieve reading from dew_point that have at least one matching reading in wind_speed sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005589 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: unit, type, value, ts
Sensor: dew_point | fields: value, lat, ts, level
Task: Fetch value from turbidity where unit exists in dew_point sensor data for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005590 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: type, reading, lat, value
Sensor: turbidity | fields: type, value, ts, reading
Task: Retrieve level from visibility that have at least one matching reading in turbidity sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005591 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: depth, lon, level, reading
Sensor: sunlight | fields: lat, type, lon, unit
Task: Get level from wind_speed where unit appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005592 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: ts, lon, level, value
Sensor: lightning | fields: lon, value, level, type
Task: Get lon from uv_index where depth appears in lightning readings with matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005593 | train |
v1 | Sensor network script:
Node: temperature | code: clr | fields: lat, type, reading, depth
Sensor: air_quality | fields: type, depth, qc, level
Task: Get reading from temperature where depth appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005594 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: lon, value, lat, unit
Sensor: snow_depth | fields: depth, unit, level, ts
Task: Get lat from cloud_cover where ts appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005595 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: value, qc, reading, lat
Sensor: air_quality | fields: lon, reading, ts, depth
Task: Get level from rainfall where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005596 | train |
v3 | Sensor network script:
Node: temperature | code: gst | fields: unit, lat, lon, value
Sensor: air_quality | fields: depth, value, unit, level
Task: Fetch lon from temperature where value is greater than the total of depth in air_quality for matching depth.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005597 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: unit, type, value, lon
Sensor: rainfall | fields: type, qc, lat, lon
Task: Retrieve depth from dew_point that have at least one matching reading in rainfall sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_005598 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: unit, lon, lat, qc
Sensor: air_quality | fields: unit, depth, reading, type
Task: Get reading from soil_moisture where ts appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_005599 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.