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: drought_index | code: mst | fields: unit, qc, depth, type
Sensor: turbidity | fields: reading, ts, lon, value
Task: Retrieve level from drought_index that have at least one matching reading in turbidity sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080400 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: depth, value, lat, qc
Sensor: sunlight | fields: qc, value, level, type
Task: Get lat from temperature where a corresponding entry exists in sunlight with the same ts.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080401 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: lat, qc, level, reading
Sensor: wind_speed | fields: reading, depth, lat, level
Task: Retrieve reading from visibility whose ts is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080402 | train |
v2 | Sensor network script:
Node: dew_point | code: ref | fields: reading, lat, unit, depth
Sensor: frost | fields: reading, depth, level, lon
Task: Retrieve lon from dew_point that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080403 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: depth, level, qc, lat
Sensor: humidity | fields: qc, reading, type, value
Task: Retrieve depth from turbidity whose type is found in humidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="type",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080404 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: depth, level, lat, qc
Sensor: evaporation | fields: depth, unit, value, reading
Task: Retrieve level from frost that have at least one matching reading in evaporation sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080405 | train |
v3 | Sensor network script:
Node: uv_index | code: thr | fields: lat, type, qc, level
Sensor: evaporation | fields: value, type, unit, qc
Task: Retrieve reading from uv_index with reading above the COUNT(value) of evaporation readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080406 | train |
v2 | Sensor network script:
Node: humidity | code: mst | fields: qc, lat, level, type
Sensor: evaporation | fields: value, depth, reading, qc
Task: Get lat from humidity where a corresponding entry exists in evaporation with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080407 | train |
v1 | Sensor network script:
Node: air_quality | code: mst | fields: lat, reading, lon, value
Sensor: humidity | fields: depth, type, ts, lat
Task: Retrieve lat from air_quality whose type is found in humidity records where unit matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080408 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: ts, lon, reading, unit
Sensor: evaporation | fields: level, type, unit, qc
Task: Retrieve lon from frost with value above the MAX(depth) of evaporation readings sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080409 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: level, unit, lat, qc
Sensor: lightning | fields: lat, type, lon, level
Task: Retrieve reading from cloud_cover whose qc is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080410 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: value, lat, lon, unit
Sensor: air_quality | fields: level, qc, lon, reading
Task: Get lat from cloud_cover where a corresponding entry exists in air_quality with the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080411 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: unit, depth, lat, level
Sensor: sunlight | fields: lat, value, unit, depth
Task: Retrieve reading from frost that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080412 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: lat, qc, unit, reading
Sensor: snow_depth | fields: level, value, lat, type
Task: Get value from frost where depth exceeds the average depth from snow_depth for the same depth.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080413 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: lon, reading, lat, type
Sensor: snow_depth | fields: unit, ts, level, type
Task: Fetch level from temperature where ts exists in snow_depth sensor data for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080414 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: reading, type, value, depth
Sensor: dew_point | fields: level, lat, type, reading
Task: Fetch lon from humidity where type exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080415 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: depth, value, type, lon
Sensor: pressure | fields: depth, value, level, unit
Task: Fetch lon from snow_depth that have at least one corresponding pressure measurement for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080416 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: lon, unit, level, depth
Sensor: visibility | fields: reading, unit, type, level
Task: Retrieve lat from evaporation whose qc is found in visibility records where qc matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080417 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: value, level, qc, lon
Sensor: snow_depth | fields: value, lat, type, ts
Task: Get lon from frost where depth appears in snow_depth readings with matching depth.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080418 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: type, lat, level, qc
Sensor: air_quality | fields: depth, ts, lat, qc
Task: Get depth from sunlight where ts appears in air_quality readings with matching type.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="type",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080419 | train |
v1 | Sensor network script:
Node: humidity | code: hub | fields: lat, type, reading, depth
Sensor: pressure | fields: value, lat, reading, level
Task: Fetch lon from humidity where unit exists in pressure sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080420 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: ts, value, depth, qc
Sensor: rainfall | fields: ts, type, reading, qc
Task: Retrieve value from soil_moisture with value above the COUNT(reading) of rainfall readings sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080421 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: lon, value, unit, ts
Sensor: humidity | fields: reading, unit, ts, qc
Task: Retrieve depth from frost with reading above the SUM(depth) of humidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080422 | train |
v3 | Sensor network script:
Node: turbidity | code: clr | fields: lon, reading, qc, ts
Sensor: temperature | fields: depth, ts, level, unit
Task: Get value from turbidity where reading exceeds the total reading from temperature for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080423 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: lat, type, value, reading
Sensor: air_quality | fields: lat, level, type, unit
Task: Fetch lon from drought_index where reading is greater than the total of depth in air_quality for matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080424 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: reading, lon, type, qc
Sensor: humidity | fields: level, lon, value, unit
Task: Fetch lat from uv_index that have at least one corresponding humidity measurement for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080425 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: lon, lat, ts, value
Sensor: snow_depth | fields: qc, type, level, lon
Task: Retrieve reading from humidity that have at least one matching reading in snow_depth sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080426 | train |
v3 | Sensor network script:
Node: temperature | code: clr | fields: lon, qc, lat, reading
Sensor: drought_index | fields: unit, ts, lat, lon
Task: Get reading from temperature where depth exceeds the maximum reading from drought_index for the same type.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080427 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: reading, qc, level, value
Sensor: pressure | fields: depth, reading, ts, unit
Task: Fetch value from visibility where qc exists in pressure sensor data for the same type.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="type",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080428 | train |
v2 | Sensor network script:
Node: drought_index | code: mst | fields: depth, lon, lat, type
Sensor: air_quality | fields: type, reading, unit, lon
Task: Fetch lon from drought_index that have at least one corresponding air_quality measurement for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080429 | train |
v3 | Sensor network script:
Node: visibility | code: stn | fields: level, depth, reading, ts
Sensor: dew_point | fields: qc, reading, value, lat
Task: Get value from visibility where reading exceeds the count of reading from dew_point for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080430 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: level, qc, lon, reading
Sensor: temperature | fields: ts, unit, value, lat
Task: Fetch level from uv_index where depth exists in temperature sensor data for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="qc",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080431 | train |
v1 | Sensor network script:
Node: humidity | code: gst | fields: lat, level, type, qc
Sensor: evaporation | fields: ts, lon, type, reading
Task: Retrieve lat from humidity whose depth is found in evaporation records where ts matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080432 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: value, depth, qc, lon
Sensor: wind_speed | fields: depth, lat, unit, qc
Task: Get level from sunlight where a corresponding entry exists in wind_speed with the same type.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080433 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: lat, depth, level, reading
Sensor: rainfall | fields: depth, unit, reading, lon
Task: Retrieve depth from visibility whose ts is found in rainfall records where qc matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080434 | train |
v3 | Sensor network script:
Node: drought_index | code: stn | fields: unit, ts, lon, level
Sensor: snow_depth | fields: level, ts, qc, depth
Task: Fetch level from drought_index where depth is greater than the total of reading in snow_depth for matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080435 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: level, type, reading, value
Sensor: lightning | fields: type, lon, qc, lat
Task: Fetch lon from uv_index that have at least one corresponding lightning measurement for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080436 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: qc, ts, depth, unit
Sensor: drought_index | fields: depth, type, qc, unit
Task: Retrieve level from sunlight whose type is found in drought_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080437 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: qc, reading, type, level
Sensor: dew_point | fields: ts, unit, level, type
Task: Get lat from sunlight where type appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080438 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: type, reading, level, value
Sensor: wind_speed | fields: lon, value, ts, reading
Task: Fetch lat from rainfall that have at least one corresponding wind_speed measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080439 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: lon, qc, value, level
Sensor: air_quality | fields: lon, lat, reading, unit
Task: Retrieve value from evaporation with value above the COUNT(depth) of air_quality readings sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080440 | train |
v2 | Sensor network script:
Node: air_quality | code: gst | fields: type, value, ts, depth
Sensor: soil_moisture | fields: unit, depth, lon, reading
Task: Fetch depth from air_quality that have at least one corresponding soil_moisture measurement for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080441 | train |
v1 | Sensor network script:
Node: lightning | code: ref | fields: unit, lat, depth, reading
Sensor: pressure | fields: value, lon, reading, type
Task: Fetch lat from lightning where depth exists in pressure sensor data for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080442 | train |
v3 | Sensor network script:
Node: rainfall | code: clr | fields: type, value, qc, level
Sensor: sunlight | fields: lat, ts, value, lon
Task: Get reading from rainfall where reading exceeds the average value from sunlight for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080443 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: type, reading, qc, lon
Sensor: sunlight | fields: level, lon, lat, qc
Task: Fetch value from rainfall that have at least one corresponding sunlight measurement for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080444 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: qc, lat, value, reading
Sensor: lightning | fields: unit, qc, type, value
Task: Retrieve depth from drought_index whose depth is found in lightning records where unit matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080445 | train |
v2 | Sensor network script:
Node: soil_moisture | code: gst | fields: depth, reading, value, lon
Sensor: lightning | fields: unit, lon, value, reading
Task: Retrieve level from soil_moisture that have at least one matching reading in lightning sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080446 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: lon, qc, unit, reading
Sensor: dew_point | fields: depth, reading, lon, type
Task: Retrieve lat from turbidity that have at least one matching reading in dew_point sharing the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080447 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: qc, level, ts, depth
Sensor: humidity | fields: lon, value, lat, type
Task: Retrieve lat from drought_index whose type is found in humidity records where qc matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080448 | train |
v3 | Sensor network script:
Node: temperature | code: clr | fields: lon, ts, type, lat
Sensor: humidity | fields: level, unit, depth, ts
Task: Fetch lon from temperature where depth is greater than the count of of depth in humidity for matching unit.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080449 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: lat, type, value, ts
Sensor: cloud_cover | fields: unit, type, value, reading
Task: Retrieve value from uv_index whose depth is found in cloud_cover records where qc matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080450 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: unit, level, lon, value
Sensor: air_quality | fields: lon, reading, value, depth
Task: Fetch depth from drought_index where depth is greater than the average of value in air_quality for matching type.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("air_quality", code="prt"),
match="type"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080451 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: value, reading, ts, lon
Sensor: wind_speed | fields: type, unit, depth, lon
Task: Retrieve depth from sunlight that have at least one matching reading in wind_speed sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080452 | train |
v2 | Sensor network script:
Node: uv_index | code: mst | fields: depth, unit, reading, type
Sensor: rainfall | fields: lon, unit, value, depth
Task: Retrieve level from uv_index that have at least one matching reading in rainfall sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080453 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: type, lat, depth, ts
Sensor: frost | fields: reading, ts, qc, value
Task: Get lat from dew_point where type appears in frost readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="depth",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080454 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: ts, value, reading, depth
Sensor: turbidity | fields: reading, value, lon, qc
Task: Get level from evaporation where type appears in turbidity readings with matching type.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080455 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: lat, unit, lon, depth
Sensor: rainfall | fields: lon, unit, level, type
Task: Fetch level from frost that have at least one corresponding rainfall measurement for the same ts.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080456 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: depth, reading, level, lat
Sensor: frost | fields: reading, ts, depth, qc
Task: Get level from sunlight where unit appears in frost readings with matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="depth",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080457 | train |
v3 | Sensor network script:
Node: visibility | code: stn | fields: reading, value, lon, depth
Sensor: temperature | fields: lon, depth, level, lat
Task: Get level from visibility where value exceeds the minimum reading from temperature for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080458 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: depth, reading, level, unit
Sensor: snow_depth | fields: ts, lat, level, type
Task: Get reading from lightning where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080459 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: reading, level, type, ts
Sensor: turbidity | fields: ts, type, qc, unit
Task: Fetch level from rainfall where type exists in turbidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080460 | train |
v2 | Sensor network script:
Node: lightning | code: ref | fields: ts, lat, type, qc
Sensor: drought_index | fields: type, reading, qc, depth
Task: Get depth from lightning where a corresponding entry exists in drought_index with the same qc.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080461 | train |
v2 | Sensor network script:
Node: soil_moisture | code: clr | fields: reading, type, value, ts
Sensor: cloud_cover | fields: reading, lat, ts, value
Task: Get level from soil_moisture where a corresponding entry exists in cloud_cover with the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080462 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: lat, lon, value, level
Sensor: air_quality | fields: unit, reading, lon, value
Task: Retrieve lat from cloud_cover that have at least one matching reading in air_quality sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080463 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: depth, ts, type, lat
Sensor: lightning | fields: qc, depth, type, ts
Task: Retrieve value from pressure whose ts is found in lightning records where ts matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080464 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: lat, ts, qc, unit
Sensor: air_quality | fields: qc, reading, ts, unit
Task: Fetch lon from drought_index where qc exists in air_quality sensor data for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="type",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080465 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: type, lat, depth, reading
Sensor: rainfall | fields: level, reading, type, lon
Task: Retrieve lat from visibility that have at least one matching reading in rainfall sharing the same type.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080466 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: reading, lat, lon, depth
Sensor: evaporation | fields: type, depth, unit, reading
Task: Retrieve depth from pressure that have at least one matching reading in evaporation sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080467 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: ts, qc, depth, lon
Sensor: rainfall | fields: unit, depth, ts, value
Task: Fetch reading from air_quality where value is greater than the minimum of depth in rainfall for matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080468 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: lat, reading, level, type
Sensor: cloud_cover | fields: value, qc, depth, type
Task: Retrieve lat from turbidity that have at least one matching reading in cloud_cover sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080469 | train |
v1 | Sensor network script:
Node: wind_speed | code: thr | fields: lon, type, lat, value
Sensor: air_quality | fields: level, depth, reading, lat
Task: Get lat from wind_speed where ts appears in air_quality readings with matching unit.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080470 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: level, value, unit, lat
Sensor: air_quality | fields: value, type, depth, qc
Task: Get lon from sunlight where depth exceeds the minimum reading from air_quality for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080471 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: ts, reading, lon, qc
Sensor: sunlight | fields: lat, reading, qc, value
Task: Fetch level from frost where ts exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080472 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: lat, value, type, ts
Sensor: pressure | fields: reading, lat, value, depth
Task: Retrieve reading from frost with depth above the MIN(value) of pressure readings sharing the same qc.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080473 | train |
v2 | Sensor network script:
Node: humidity | code: hub | fields: ts, lat, type, level
Sensor: temperature | fields: ts, lon, depth, qc
Task: Fetch lon from humidity that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080474 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: type, lon, level, depth
Sensor: pressure | fields: reading, qc, value, lat
Task: Fetch reading from cloud_cover where ts exists in pressure sensor data for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080475 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: reading, lat, level, type
Sensor: temperature | fields: depth, reading, lat, ts
Task: Get reading from uv_index where value exceeds the maximum value from temperature for the same type.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("temperature", code="thr"),
match="type"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080476 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: lat, type, value, qc
Sensor: air_quality | fields: lat, qc, type, lon
Task: Get lat from cloud_cover where depth appears in air_quality readings with matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="type",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080477 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: qc, unit, value, reading
Sensor: frost | fields: level, depth, reading, type
Task: Fetch lon from temperature that have at least one corresponding frost measurement for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080478 | train |
v3 | Sensor network script:
Node: drought_index | code: mst | fields: reading, type, ts, lat
Sensor: turbidity | fields: ts, lat, reading, unit
Task: Get depth from drought_index where value exceeds the minimum reading from turbidity for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080479 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: type, lat, qc, depth
Sensor: soil_moisture | fields: lat, depth, value, unit
Task: Get lon from snow_depth where depth appears in soil_moisture readings with matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080480 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: lon, lat, reading, type
Sensor: drought_index | fields: unit, reading, value, depth
Task: Retrieve depth from cloud_cover whose unit is found in drought_index records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080481 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: lat, ts, depth, qc
Sensor: snow_depth | fields: level, unit, lat, type
Task: Fetch level from humidity that have at least one corresponding snow_depth measurement for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080482 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: unit, level, lon, type
Sensor: air_quality | fields: qc, ts, unit, lon
Task: Retrieve lat from snow_depth with reading above the MAX(depth) of air_quality readings sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lat",
"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_080483 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: value, ts, depth, lat
Sensor: evaporation | fields: type, level, reading, lon
Task: Retrieve value from soil_moisture that have at least one matching reading in evaporation sharing the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080484 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: depth, reading, type, value
Sensor: lightning | fields: type, value, unit, lon
Task: Retrieve lat from turbidity whose unit is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080485 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: reading, type, lon, ts
Sensor: cloud_cover | fields: value, lat, lon, unit
Task: Retrieve depth from temperature with depth above the MIN(depth) of cloud_cover readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "depth",
"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_080486 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: ts, level, unit, lon
Sensor: evaporation | fields: ts, unit, lat, qc
Task: Retrieve level from cloud_cover that have at least one matching reading in evaporation sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080487 | train |
v3 | Sensor network script:
Node: air_quality | code: gst | fields: qc, depth, unit, reading
Sensor: snow_depth | fields: value, ts, lon, lat
Task: Get value from air_quality where value exceeds the count of depth from snow_depth for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080488 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: unit, type, qc, lon
Sensor: dew_point | fields: unit, qc, type, lon
Task: Fetch depth from cloud_cover that have at least one corresponding dew_point measurement for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080489 | train |
v2 | Sensor network script:
Node: wind_speed | code: clr | fields: depth, reading, level, lon
Sensor: turbidity | fields: depth, lat, ts, level
Task: Fetch lon from wind_speed that have at least one corresponding turbidity measurement for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080490 | train |
v3 | Sensor network script:
Node: humidity | code: thr | fields: reading, depth, level, qc
Sensor: dew_point | fields: reading, type, depth, unit
Task: Fetch reading from humidity where value is greater than the average of value in dew_point for matching type.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080491 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: lon, qc, level, unit
Sensor: frost | fields: type, ts, lon, level
Task: Get level from dew_point where qc appears in frost readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="depth",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080492 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: level, lat, qc, reading
Sensor: evaporation | fields: unit, depth, reading, qc
Task: Get reading from soil_moisture where depth exceeds the count of value from evaporation for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080493 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: lat, value, reading, type
Sensor: wind_speed | fields: lon, level, value, unit
Task: Fetch lon from temperature that have at least one corresponding wind_speed measurement for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080494 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: level, unit, lon, ts
Sensor: temperature | fields: type, unit, lon, ts
Task: Get level from drought_index where qc appears in temperature readings with matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080495 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: value, level, qc, ts
Sensor: visibility | fields: qc, ts, unit, type
Task: Retrieve lat from dew_point whose unit is found in visibility records where depth matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080496 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: ts, depth, lat, level
Sensor: sunlight | fields: lon, level, depth, qc
Task: Fetch depth from turbidity where depth exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080497 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: level, qc, type, lon
Sensor: cloud_cover | fields: qc, unit, ts, depth
Task: Get lat from turbidity where reading exceeds the average reading from cloud_cover for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_080498 | train |
v3 | Sensor network script:
Node: pressure | code: mst | fields: depth, level, qc, type
Sensor: wind_speed | fields: level, value, qc, depth
Task: Retrieve value from pressure with depth above the MAX(reading) of wind_speed readings sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_080499 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.