variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: reading, qc, lat, ts
Sensor: soil_moisture | fields: lat, type, level, unit
Task: Fetch level from cloud_cover where reading is greater than the average of reading in soil_moisture for matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "level",
"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_076400 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: lon, ts, lat, type
Sensor: wind_speed | fields: lon, depth, level, type
Task: Retrieve lon from dew_point that have at least one matching reading in wind_speed sharing the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076401 | train |
v3 | Sensor network script:
Node: dew_point | code: stn | fields: qc, level, value, lat
Sensor: temperature | fields: reading, unit, lat, ts
Task: Fetch level from dew_point where depth is greater than the total of reading in temperature for matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076402 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: reading, qc, value, level
Sensor: temperature | fields: ts, lon, reading, lat
Task: Retrieve lon from rainfall that have at least one matching reading in temperature sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076403 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: qc, reading, unit, level
Sensor: turbidity | fields: level, unit, lat, depth
Task: Retrieve level from soil_moisture that have at least one matching reading in turbidity sharing the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076404 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: qc, depth, value, lon
Sensor: turbidity | fields: lon, value, ts, depth
Task: Fetch lon from sunlight where qc exists in turbidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="qc",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076405 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: unit, lat, value, ts
Sensor: snow_depth | fields: ts, lat, unit, type
Task: Get lon from dew_point where depth appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076406 | train |
v1 | Sensor network script:
Node: uv_index | code: stn | fields: ts, depth, type, lon
Sensor: evaporation | fields: lon, type, value, reading
Task: Get level from uv_index where ts appears in evaporation readings with matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076407 | train |
v1 | Sensor network script:
Node: snow_depth | code: hub | fields: lat, type, ts, level
Sensor: rainfall | fields: reading, lon, type, lat
Task: Fetch reading from snow_depth where unit exists in rainfall sensor data for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076408 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: reading, level, depth, value
Sensor: sunlight | fields: ts, depth, level, qc
Task: Fetch level from frost where value is greater than the minimum of value in sunlight for matching unit.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076409 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: unit, value, qc, ts
Sensor: soil_moisture | fields: lat, ts, unit, lon
Task: Get level from lightning where value exceeds the total value from soil_moisture for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076410 | train |
v1 | Sensor network script:
Node: evaporation | code: ref | fields: level, type, depth, unit
Sensor: turbidity | fields: type, value, depth, ts
Task: Fetch lon from evaporation where depth exists in turbidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076411 | train |
v3 | Sensor network script:
Node: air_quality | code: gst | fields: ts, qc, type, lat
Sensor: dew_point | fields: level, ts, type, value
Task: Retrieve reading from air_quality with depth above the AVG(reading) of dew_point readings sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076412 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: type, level, qc, value
Sensor: lightning | fields: level, reading, type, unit
Task: Retrieve value from wind_speed whose unit is found in lightning records where depth matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076413 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: reading, level, lat, unit
Sensor: drought_index | fields: lat, lon, ts, level
Task: Fetch value from evaporation where depth is greater than the maximum of depth in drought_index for matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076414 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: unit, qc, ts, lon
Sensor: visibility | fields: value, lat, lon, level
Task: Fetch lat from dew_point where qc exists in visibility sensor data for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076415 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: reading, lon, level, value
Sensor: evaporation | fields: unit, lat, qc, type
Task: Fetch lon from turbidity that have at least one corresponding evaporation measurement for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076416 | train |
v3 | Sensor network script:
Node: soil_moisture | code: mst | fields: level, ts, type, qc
Sensor: drought_index | fields: lon, reading, lat, qc
Task: Get reading from soil_moisture where depth exceeds the minimum depth from drought_index for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076417 | train |
v3 | Sensor network script:
Node: dew_point | code: gst | fields: value, level, reading, ts
Sensor: snow_depth | fields: ts, qc, lon, reading
Task: Fetch depth from dew_point where value is greater than the total of reading in snow_depth for matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076418 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: unit, value, depth, lon
Sensor: wind_speed | fields: unit, type, level, value
Task: Get reading from rainfall where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076419 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: depth, qc, lon, reading
Sensor: sunlight | fields: qc, reading, depth, unit
Task: Get reading from frost where unit appears in sunlight readings with matching qc.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076420 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: type, level, lat, ts
Sensor: dew_point | fields: type, lon, value, reading
Task: Fetch reading from lightning that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076421 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: lat, type, value, ts
Sensor: frost | fields: unit, lon, ts, value
Task: Fetch lon from turbidity where qc exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="unit",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076422 | train |
v3 | Sensor network script:
Node: temperature | code: stn | fields: type, lat, lon, depth
Sensor: sunlight | fields: ts, unit, value, reading
Task: Retrieve depth from temperature with depth above the COUNT(value) of sunlight readings sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076423 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: type, value, ts, reading
Sensor: humidity | fields: depth, type, qc, lat
Task: Get level from sunlight where value exceeds the minimum value from humidity for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076424 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: unit, qc, level, lon
Sensor: rainfall | fields: lon, reading, depth, level
Task: Retrieve lon from evaporation with depth above the AVG(reading) of rainfall readings sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076425 | train |
v3 | Sensor network script:
Node: dew_point | code: thr | fields: depth, lon, level, reading
Sensor: air_quality | fields: value, depth, ts, level
Task: Get lat from dew_point where value exceeds the minimum value from air_quality for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("air_quality", code="prt"),
match="type"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076426 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: depth, lon, lat, type
Sensor: rainfall | fields: depth, reading, ts, value
Task: Fetch depth from pressure where depth exists in rainfall sensor data for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076427 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: level, lat, unit, depth
Sensor: drought_index | fields: qc, type, depth, reading
Task: Get lat from frost where a corresponding entry exists in drought_index with the same unit.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076428 | train |
v3 | Sensor network script:
Node: visibility | code: clr | fields: lat, value, ts, qc
Sensor: dew_point | fields: value, reading, depth, level
Task: Fetch depth from visibility where value is greater than the average of reading in dew_point for matching depth.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076429 | train |
v2 | Sensor network script:
Node: lightning | code: ref | fields: type, ts, unit, reading
Sensor: soil_moisture | fields: ts, value, lon, qc
Task: Get lat from lightning where a corresponding entry exists in soil_moisture with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076430 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: qc, unit, lat, type
Sensor: evaporation | fields: type, depth, level, qc
Task: Get lat from cloud_cover where value exceeds the maximum reading from evaporation for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "lat",
"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_076431 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: type, reading, depth, qc
Sensor: drought_index | fields: reading, lon, qc, level
Task: Fetch level from frost where reading is greater than the count of of reading in drought_index for matching unit.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076432 | train |
v1 | Sensor network script:
Node: visibility | code: prt | fields: qc, value, lat, depth
Sensor: turbidity | fields: level, value, reading, qc
Task: Get level from visibility where unit appears in turbidity readings with matching unit.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076433 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: lat, type, ts, unit
Sensor: visibility | fields: reading, depth, type, level
Task: Retrieve value from lightning that have at least one matching reading in visibility sharing the same type.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076434 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: lon, depth, qc, value
Sensor: soil_moisture | fields: type, reading, qc, lon
Task: Retrieve reading from pressure with reading above the SUM(reading) of soil_moisture readings sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076435 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: unit, reading, lat, depth
Sensor: air_quality | fields: depth, level, value, lat
Task: Get depth from evaporation where a corresponding entry exists in air_quality with the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076436 | train |
v3 | Sensor network script:
Node: temperature | code: stn | fields: qc, unit, ts, value
Sensor: snow_depth | fields: level, depth, lat, lon
Task: Retrieve lon from temperature with reading above the AVG(reading) of snow_depth readings sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076437 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: depth, unit, lat, value
Sensor: sunlight | fields: lon, reading, depth, type
Task: Get reading from frost where type appears in sunlight readings with matching type.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="type",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076438 | train |
v3 | Sensor network script:
Node: sunlight | code: thr | fields: level, lat, qc, ts
Sensor: uv_index | fields: qc, type, lon, lat
Task: Get level from sunlight where reading exceeds the count of depth from uv_index for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076439 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: ts, lon, qc, lat
Sensor: drought_index | fields: level, type, lon, value
Task: Retrieve reading from turbidity whose type is found in drought_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076440 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: unit, depth, value, qc
Sensor: uv_index | fields: level, lon, qc, lat
Task: Get value from soil_moisture where a corresponding entry exists in uv_index with the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076441 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: lon, level, depth, lat
Sensor: visibility | fields: depth, unit, reading, value
Task: Get level from rainfall where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076442 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: lat, lon, type, qc
Sensor: uv_index | fields: reading, value, depth, qc
Task: Get depth from dew_point where qc appears in uv_index readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076443 | train |
v3 | Sensor network script:
Node: temperature | code: gst | fields: lon, value, ts, unit
Sensor: lightning | fields: level, type, ts, lat
Task: Retrieve lon from temperature with value above the MAX(reading) of lightning readings sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076444 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: level, lon, value, ts
Sensor: visibility | fields: type, level, lon, qc
Task: Get value from uv_index where qc appears in visibility readings with matching depth.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="depth",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076445 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: lon, reading, ts, value
Sensor: soil_moisture | fields: lat, unit, level, type
Task: Fetch level from rainfall that have at least one corresponding soil_moisture measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076446 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: lon, type, qc, depth
Sensor: visibility | fields: type, lat, reading, unit
Task: Fetch depth from air_quality where reading is greater than the maximum of depth in visibility for matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076447 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: lat, level, type, unit
Sensor: dew_point | fields: unit, ts, type, level
Task: Retrieve reading from snow_depth whose qc is found in dew_point records where qc matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076448 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: depth, ts, level, lon
Sensor: turbidity | fields: value, lat, unit, depth
Task: Get depth from wind_speed where reading exceeds the maximum value from turbidity for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076449 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: lon, ts, reading, value
Sensor: evaporation | fields: reading, value, qc, type
Task: Fetch value from sunlight where depth exists in evaporation sensor data for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076450 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: level, unit, lon, reading
Sensor: dew_point | fields: ts, value, lon, depth
Task: Fetch lat from evaporation that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076451 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: type, lon, level, reading
Sensor: wind_speed | fields: unit, lat, level, type
Task: Retrieve depth from rainfall with depth above the COUNT(value) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076452 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: reading, type, unit, lon
Sensor: pressure | fields: reading, type, lon, qc
Task: Get lon from visibility where a corresponding entry exists in pressure with the same type.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076453 | train |
v1 | Sensor network script:
Node: soil_moisture | code: prt | fields: qc, value, unit, reading
Sensor: turbidity | fields: depth, reading, lon, type
Task: Retrieve lat from soil_moisture whose ts is found in turbidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076454 | train |
v2 | Sensor network script:
Node: wind_speed | code: thr | fields: lon, depth, lat, level
Sensor: air_quality | fields: depth, value, type, lon
Task: Fetch value from wind_speed that have at least one corresponding air_quality measurement for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076455 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: depth, lat, unit, ts
Sensor: wind_speed | fields: reading, lon, level, unit
Task: Fetch reading from pressure that have at least one corresponding wind_speed measurement for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076456 | train |
v2 | Sensor network script:
Node: visibility | code: ref | fields: value, lat, qc, lon
Sensor: temperature | fields: ts, reading, unit, type
Task: Get lat from visibility where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076457 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: value, level, depth, type
Sensor: snow_depth | fields: type, ts, lon, qc
Task: Get depth from pressure where a corresponding entry exists in snow_depth with the same ts.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076458 | train |
v2 | Sensor network script:
Node: visibility | code: thr | fields: type, depth, unit, level
Sensor: drought_index | fields: value, depth, reading, level
Task: Retrieve lat from visibility that have at least one matching reading in drought_index sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076459 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: qc, ts, depth, level
Sensor: rainfall | fields: lat, unit, level, type
Task: Retrieve lat from drought_index with value above the MAX(depth) of rainfall readings sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076460 | train |
v2 | Sensor network script:
Node: temperature | code: prt | fields: ts, value, lat, reading
Sensor: lightning | fields: depth, level, qc, unit
Task: Fetch lon from temperature that have at least one corresponding lightning measurement for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076461 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: value, depth, type, lon
Sensor: sunlight | fields: lon, type, depth, qc
Task: Retrieve lat from snow_depth with reading above the MAX(value) of sunlight readings sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076462 | train |
v1 | Sensor network script:
Node: pressure | code: gst | fields: reading, lon, lat, type
Sensor: sunlight | fields: level, lon, qc, lat
Task: Retrieve lat from pressure whose unit is found in sunlight records where depth matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076463 | train |
v3 | Sensor network script:
Node: drought_index | code: stn | fields: type, depth, reading, lat
Sensor: temperature | fields: depth, qc, reading, lon
Task: Get lon from drought_index where value exceeds the count of depth from temperature for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076464 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: depth, level, type, reading
Sensor: visibility | fields: reading, qc, unit, type
Task: Retrieve lat from wind_speed with depth above the AVG(depth) of visibility readings sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076465 | train |
v2 | Sensor network script:
Node: soil_moisture | code: gst | fields: value, reading, level, qc
Sensor: sunlight | fields: ts, level, value, lon
Task: Retrieve lon from soil_moisture that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076466 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: qc, reading, lat, unit
Sensor: rainfall | fields: lon, depth, type, lat
Task: Retrieve depth from uv_index that have at least one matching reading in rainfall sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076467 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: reading, lon, value, ts
Sensor: humidity | fields: lon, qc, lat, ts
Task: Retrieve depth from temperature that have at least one matching reading in humidity sharing the same unit.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076468 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: reading, qc, lat, type
Sensor: wind_speed | fields: reading, lon, type, level
Task: Get lon from lightning where unit appears in wind_speed readings with matching depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076469 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: value, depth, lon, type
Sensor: dew_point | fields: reading, unit, level, qc
Task: Fetch level from lightning where depth is greater than the count of of depth in dew_point for matching depth.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076470 | train |
v1 | Sensor network script:
Node: air_quality | code: prt | fields: unit, ts, reading, lat
Sensor: frost | fields: reading, qc, type, lat
Task: Get depth from air_quality where type appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="unit",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076471 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: unit, lat, level, ts
Sensor: lightning | fields: type, reading, lon, ts
Task: Retrieve lat from evaporation with value above the MIN(depth) of lightning readings sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076472 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: value, reading, qc, depth
Sensor: snow_depth | fields: qc, lon, value, depth
Task: Retrieve depth from dew_point that have at least one matching reading in snow_depth sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076473 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: depth, level, ts, lat
Sensor: frost | fields: lat, level, reading, ts
Task: Fetch level from lightning where depth is greater than the average of reading in frost for matching type.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("frost", code="frs"),
match="type"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076474 | train |
v3 | Sensor network script:
Node: uv_index | code: prt | fields: level, qc, type, ts
Sensor: pressure | fields: value, level, type, unit
Task: Get lat from uv_index where reading exceeds the total depth from pressure for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076475 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: lon, ts, type, level
Sensor: soil_moisture | fields: depth, reading, unit, lat
Task: Fetch value from visibility where value is greater than the minimum of value in soil_moisture for matching ts.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076476 | train |
v3 | Sensor network script:
Node: wind_speed | code: ref | fields: lon, qc, level, reading
Sensor: temperature | fields: reading, depth, lon, lat
Task: Get lat from wind_speed where reading exceeds the average depth from temperature for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076477 | train |
v2 | Sensor network script:
Node: visibility | code: gst | fields: ts, lat, reading, level
Sensor: humidity | fields: type, lon, depth, ts
Task: Get lon from visibility where a corresponding entry exists in humidity with the same depth.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076478 | train |
v1 | Sensor network script:
Node: humidity | code: gst | fields: lat, depth, qc, unit
Sensor: rainfall | fields: unit, level, ts, depth
Task: Fetch value from humidity where ts exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076479 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: type, ts, reading, unit
Sensor: drought_index | fields: reading, depth, type, qc
Task: Get level from soil_moisture where a corresponding entry exists in drought_index with the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076480 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: lat, level, depth, value
Sensor: drought_index | fields: level, ts, value, qc
Task: Get depth from pressure where a corresponding entry exists in drought_index with the same type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076481 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: qc, lon, ts, unit
Sensor: dew_point | fields: qc, value, lon, unit
Task: Fetch reading from pressure that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076482 | train |
v2 | Sensor network script:
Node: humidity | code: mst | fields: value, qc, reading, depth
Sensor: soil_moisture | fields: ts, level, value, qc
Task: Fetch value from humidity that have at least one corresponding soil_moisture measurement for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076483 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: value, ts, type, reading
Sensor: turbidity | fields: level, unit, qc, type
Task: Retrieve depth from frost that have at least one matching reading in turbidity sharing the same depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076484 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: type, reading, lat, lon
Sensor: rainfall | fields: lon, ts, reading, qc
Task: Fetch value from pressure that have at least one corresponding rainfall measurement for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076485 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: value, qc, reading, level
Sensor: pressure | fields: depth, lat, qc, value
Task: Fetch value from evaporation where depth exists in pressure sensor data for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076486 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: lat, unit, lon, qc
Sensor: sunlight | fields: reading, depth, lon, lat
Task: Retrieve value from frost that have at least one matching reading in sunlight sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076487 | train |
v2 | Sensor network script:
Node: turbidity | code: prt | fields: lon, type, unit, value
Sensor: dew_point | fields: depth, lat, type, unit
Task: Fetch reading from turbidity that have at least one corresponding dew_point measurement for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076488 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: ts, unit, lon, qc
Sensor: turbidity | fields: unit, reading, type, depth
Task: Fetch lat from drought_index where reading is greater than the maximum of depth in turbidity for matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076489 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: level, depth, value, reading
Sensor: wind_speed | fields: type, qc, ts, value
Task: Get level from air_quality where depth exceeds the average value from wind_speed for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076490 | train |
v3 | Sensor network script:
Node: evaporation | code: clr | fields: unit, lat, value, reading
Sensor: pressure | fields: lat, qc, lon, value
Task: Retrieve lon from evaporation with reading above the MAX(value) of pressure readings sharing the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076491 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: depth, reading, lat, type
Sensor: dew_point | fields: depth, value, unit, ts
Task: Retrieve lon from humidity that have at least one matching reading in dew_point sharing the same qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076492 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: level, unit, depth, qc
Sensor: turbidity | fields: ts, depth, reading, level
Task: Retrieve reading from pressure that have at least one matching reading in turbidity sharing the same ts.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076493 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: lat, lon, qc, reading
Sensor: pressure | fields: lon, unit, value, type
Task: Fetch reading from humidity that have at least one corresponding pressure measurement for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076494 | train |
v1 | Sensor network script:
Node: cloud_cover | code: clr | fields: lat, type, unit, value
Sensor: rainfall | fields: lat, lon, level, reading
Task: Fetch value from cloud_cover where ts exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076495 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: lon, qc, unit, depth
Sensor: soil_moisture | fields: ts, lat, reading, value
Task: Retrieve depth from cloud_cover with depth above the COUNT(value) of soil_moisture readings sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076496 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: reading, depth, lon, unit
Sensor: rainfall | fields: lat, unit, lon, value
Task: Fetch depth from snow_depth where ts exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076497 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: unit, ts, reading, lon
Sensor: frost | fields: depth, reading, lat, value
Task: Retrieve level from sunlight with value above the AVG(value) of frost readings sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("frost", code="frs"),
match="ts"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076498 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: qc, lat, reading, ts
Sensor: evaporation | fields: qc, ts, lat, level
Task: Get lon from frost where unit appears in evaporation readings with matching qc.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076499 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.