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: sunlight | code: thr | fields: type, value, unit, qc
Sensor: wind_speed | fields: ts, depth, type, unit
Task: Fetch level from sunlight where reading is greater than the maximum of depth in wind_speed for matching type.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069700 | train |
v2 | Sensor network script:
Node: temperature | code: prt | fields: value, level, depth, ts
Sensor: drought_index | fields: unit, lat, type, value
Task: Fetch level from temperature that have at least one corresponding drought_index measurement for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069701 | train |
v1 | Sensor network script:
Node: soil_moisture | code: gst | fields: type, reading, lat, lon
Sensor: pressure | fields: ts, value, reading, depth
Task: Fetch value from soil_moisture where depth exists in pressure sensor data for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="type",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069702 | train |
v1 | Sensor network script:
Node: sunlight | code: thr | fields: qc, value, lon, type
Sensor: rainfall | fields: type, level, ts, reading
Task: Fetch value from sunlight where qc exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069703 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: level, type, reading, qc
Sensor: lightning | fields: type, ts, value, level
Task: Fetch lat from visibility where qc exists in lightning sensor data for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069704 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: depth, lat, qc, level
Sensor: evaporation | fields: value, depth, lon, ts
Task: Get lat from sunlight where depth exceeds the minimum value from evaporation for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069705 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: reading, lat, ts, value
Sensor: wind_speed | fields: level, lon, ts, reading
Task: Get depth from sunlight where a corresponding entry exists in wind_speed with the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069706 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: lon, level, reading, lat
Sensor: drought_index | fields: unit, ts, lon, type
Task: Fetch value from visibility that have at least one corresponding drought_index measurement for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069707 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: unit, depth, lon, value
Sensor: frost | fields: reading, lat, lon, ts
Task: Fetch lon from turbidity where value is greater than the minimum of reading in frost for matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("frost", code="frs"),
match="ts"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069708 | train |
v3 | Sensor network script:
Node: evaporation | code: clr | fields: level, lon, depth, reading
Sensor: turbidity | fields: type, unit, qc, ts
Task: Get lon from evaporation where reading exceeds the count of depth from turbidity for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069709 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: reading, level, depth, ts
Sensor: drought_index | fields: qc, reading, level, unit
Task: Fetch depth from air_quality where depth exists in drought_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069710 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: qc, depth, ts, type
Sensor: sunlight | fields: depth, lon, unit, ts
Task: Fetch reading from snow_depth where depth exists in sunlight sensor data for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="type",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069711 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: lon, value, ts, lat
Sensor: cloud_cover | fields: level, type, depth, qc
Task: Fetch depth from air_quality that have at least one corresponding cloud_cover measurement for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069712 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: qc, value, unit, type
Sensor: rainfall | fields: value, depth, reading, lon
Task: Fetch level from humidity where ts exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069713 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: reading, lat, unit, level
Sensor: temperature | fields: qc, lon, unit, depth
Task: Get level from snow_depth where a corresponding entry exists in temperature with the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069714 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: depth, qc, lon, value
Sensor: wind_speed | fields: lat, value, depth, type
Task: Fetch value from pressure where ts exists in wind_speed sensor data for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069715 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: depth, lon, reading, value
Sensor: pressure | fields: level, value, unit, lat
Task: Retrieve lon from sunlight with depth above the MAX(reading) of pressure readings sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069716 | train |
v3 | Sensor network script:
Node: cloud_cover | code: stn | fields: unit, lat, ts, value
Sensor: humidity | fields: unit, qc, depth, type
Task: Fetch level from cloud_cover where value is greater than the total of value in humidity for matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069717 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: type, value, level, lon
Sensor: humidity | fields: unit, type, lat, reading
Task: Fetch lon from sunlight where qc exists in humidity sensor data for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="type",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069718 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: unit, level, type, depth
Sensor: uv_index | fields: level, lon, qc, value
Task: Get value from air_quality where depth appears in uv_index readings with matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069719 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: ts, qc, reading, lon
Sensor: wind_speed | fields: depth, unit, level, type
Task: Get reading from rainfall where qc appears in wind_speed readings with matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069720 | train |
v2 | Sensor network script:
Node: wind_speed | code: stn | fields: value, type, unit, lat
Sensor: frost | fields: value, ts, type, qc
Task: Get lon from wind_speed where a corresponding entry exists in frost with the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069721 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: ts, level, lon, reading
Sensor: visibility | fields: level, type, qc, lat
Task: Fetch value from evaporation where value is greater than the minimum of depth in visibility for matching type.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("visibility", code="clr"),
match="type"),
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069722 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: reading, lat, value, lon
Sensor: frost | fields: type, lat, depth, ts
Task: Fetch reading from evaporation where ts exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069723 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: level, value, reading, ts
Sensor: drought_index | fields: lat, ts, qc, value
Task: Retrieve lon from sunlight whose unit is found in drought_index records where qc matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069724 | train |
v1 | Sensor network script:
Node: pressure | code: hub | fields: lat, ts, unit, level
Sensor: frost | fields: qc, type, lat, unit
Task: Fetch lon from pressure where unit exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069725 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: ts, lat, reading, qc
Sensor: soil_moisture | fields: lat, qc, level, unit
Task: Retrieve value from uv_index with depth above the MAX(depth) of soil_moisture readings sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069726 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: reading, ts, lon, type
Sensor: turbidity | fields: type, lat, unit, level
Task: Retrieve lon from frost with depth above the MAX(depth) of turbidity readings sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069727 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: lon, type, unit, lat
Sensor: air_quality | fields: unit, lon, level, value
Task: Retrieve lon from drought_index that have at least one matching reading in air_quality sharing the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069728 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: unit, qc, lat, value
Sensor: humidity | fields: lat, depth, lon, level
Task: Fetch depth from turbidity where unit exists in humidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069729 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: lon, depth, ts, value
Sensor: evaporation | fields: unit, level, value, reading
Task: Retrieve value from air_quality with depth above the MAX(value) of evaporation readings sharing the same type.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069730 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: value, lat, reading, depth
Sensor: wind_speed | fields: lat, level, depth, unit
Task: Get reading from cloud_cover where ts appears in wind_speed readings with matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069731 | train |
v2 | Sensor network script:
Node: snow_depth | code: stn | fields: qc, depth, unit, lat
Sensor: soil_moisture | fields: qc, type, ts, level
Task: Get lon from snow_depth where a corresponding entry exists in soil_moisture with the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069732 | train |
v1 | Sensor network script:
Node: lightning | code: ref | fields: depth, ts, qc, level
Sensor: visibility | fields: lat, value, depth, unit
Task: Fetch lon from lightning where qc exists in visibility sensor data for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="depth",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069733 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: type, lat, reading, value
Sensor: visibility | fields: lon, value, ts, depth
Task: Get level from wind_speed where unit appears in visibility readings with matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="type",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069734 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: lon, value, ts, qc
Sensor: drought_index | fields: qc, reading, lon, ts
Task: Get value from temperature where reading exceeds the total value from drought_index for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069735 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: qc, value, reading, depth
Sensor: snow_depth | fields: reading, unit, value, ts
Task: Fetch lat from drought_index where ts exists in snow_depth sensor data for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069736 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: value, lon, ts, lat
Sensor: temperature | fields: type, level, lon, depth
Task: Fetch lon from soil_moisture where value is greater than the minimum of depth in temperature for matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("temperature", code="thr"),
match="type"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069737 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: level, reading, ts, lat
Sensor: uv_index | fields: reading, qc, type, unit
Task: Fetch level from air_quality that have at least one corresponding uv_index measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069738 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: depth, value, ts, qc
Sensor: visibility | fields: level, lon, value, ts
Task: Retrieve reading from pressure that have at least one matching reading in visibility sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069739 | train |
v2 | Sensor network script:
Node: temperature | code: prt | fields: value, qc, ts, type
Sensor: humidity | fields: qc, lat, value, level
Task: Get lat from temperature where a corresponding entry exists in humidity with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069740 | train |
v3 | Sensor network script:
Node: soil_moisture | code: thr | fields: depth, unit, ts, lat
Sensor: snow_depth | fields: depth, type, reading, ts
Task: Fetch value from soil_moisture where reading is greater than the average of reading in snow_depth for matching qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069741 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: value, type, reading, lon
Sensor: turbidity | fields: type, ts, qc, reading
Task: Fetch reading from wind_speed where unit exists in turbidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069742 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: type, level, lat, qc
Sensor: humidity | fields: depth, qc, unit, lon
Task: Retrieve lon from dew_point that have at least one matching reading in humidity sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lon",
) | {
"outer_table": "dew_point",
"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_069743 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: lat, qc, depth, level
Sensor: dew_point | fields: type, level, value, lat
Task: Get value from wind_speed where ts appears in dew_point readings with matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069744 | train |
v1 | Sensor network script:
Node: rainfall | code: prt | fields: qc, lon, lat, ts
Sensor: turbidity | fields: value, level, reading, ts
Task: Fetch depth from rainfall where ts exists in turbidity sensor data for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069745 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: reading, depth, level, value
Sensor: visibility | fields: lon, ts, qc, reading
Task: Get value from turbidity where ts appears in visibility readings with matching type.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069746 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: qc, ts, lon, type
Sensor: sunlight | fields: level, type, value, lat
Task: Fetch level from visibility where qc exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069747 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: reading, value, ts, depth
Sensor: sunlight | fields: lon, unit, level, reading
Task: Fetch depth from dew_point where depth is greater than the average of depth in sunlight for matching ts.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069748 | train |
v1 | Sensor network script:
Node: sunlight | code: thr | fields: unit, lat, reading, ts
Sensor: pressure | fields: level, type, value, depth
Task: Retrieve value from sunlight whose qc is found in pressure records where unit matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069749 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: reading, unit, type, level
Sensor: sunlight | fields: ts, reading, unit, lat
Task: Get reading from cloud_cover where depth exceeds the maximum value from sunlight for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069750 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: type, qc, unit, ts
Sensor: dew_point | fields: ts, level, depth, type
Task: Get reading from soil_moisture where unit appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069751 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: depth, ts, qc, unit
Sensor: sunlight | fields: type, lat, reading, level
Task: Fetch reading from temperature where depth exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069752 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: unit, type, level, qc
Sensor: rainfall | fields: unit, depth, ts, reading
Task: Fetch depth from evaporation where value is greater than the total of reading in rainfall for matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069753 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: value, depth, unit, qc
Sensor: cloud_cover | fields: value, ts, lon, unit
Task: Fetch lat from snow_depth where unit exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069754 | train |
v1 | Sensor network script:
Node: visibility | code: prt | fields: qc, ts, level, depth
Sensor: humidity | fields: lat, qc, type, value
Task: Retrieve level from visibility whose depth is found in humidity records where unit matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069755 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: qc, lon, reading, ts
Sensor: wind_speed | fields: ts, unit, lon, level
Task: Retrieve lat from drought_index with reading above the MIN(value) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069756 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: lon, reading, type, unit
Sensor: snow_depth | fields: ts, reading, unit, level
Task: Retrieve value from soil_moisture with reading above the MAX(depth) of snow_depth readings sharing the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069757 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: type, ts, reading, level
Sensor: rainfall | fields: lat, reading, ts, unit
Task: Fetch reading from frost that have at least one corresponding rainfall measurement for the same depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069758 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: reading, lat, qc, lon
Sensor: visibility | fields: lon, reading, lat, type
Task: Fetch depth from snow_depth where unit exists in visibility sensor data for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069759 | train |
v1 | Sensor network script:
Node: dew_point | code: mst | fields: lat, lon, type, unit
Sensor: visibility | fields: ts, level, lon, depth
Task: Get reading from dew_point where ts appears in visibility readings with matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="unit",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069760 | train |
v3 | Sensor network script:
Node: temperature | code: clr | fields: depth, type, qc, level
Sensor: wind_speed | fields: lat, lon, type, level
Task: Fetch depth from temperature where value is greater than the maximum of reading in wind_speed for matching type.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069761 | train |
v1 | Sensor network script:
Node: drought_index | code: thr | fields: lon, qc, value, ts
Sensor: soil_moisture | fields: value, qc, lat, reading
Task: Fetch value from drought_index where unit exists in soil_moisture sensor data for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069762 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: depth, ts, lat, type
Sensor: visibility | fields: lon, type, unit, reading
Task: Get lon from lightning where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069763 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: lon, reading, level, type
Sensor: frost | fields: ts, lon, type, lat
Task: Get level from wind_speed where a corresponding entry exists in frost with the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069764 | train |
v1 | Sensor network script:
Node: air_quality | code: prt | fields: qc, lat, level, value
Sensor: wind_speed | fields: level, unit, value, ts
Task: Fetch value from air_quality where ts exists in wind_speed sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069765 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: type, unit, ts, depth
Sensor: lightning | fields: value, depth, lon, unit
Task: Get value from turbidity where reading exceeds the minimum depth from lightning for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069766 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: level, reading, type, depth
Sensor: temperature | fields: type, ts, lon, qc
Task: Get level from rainfall where ts appears in temperature readings with matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="qc",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069767 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: type, depth, lon, value
Sensor: sunlight | fields: ts, lon, type, unit
Task: Retrieve depth from cloud_cover whose type is found in sunlight records where ts matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069768 | train |
v3 | Sensor network script:
Node: uv_index | code: prt | fields: lon, value, reading, depth
Sensor: snow_depth | fields: level, qc, reading, lat
Task: Get value from uv_index where depth exceeds the maximum value from snow_depth for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069769 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: qc, value, ts, type
Sensor: humidity | fields: ts, unit, depth, value
Task: Retrieve level from soil_moisture whose depth is found in humidity records where unit matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069770 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: type, value, qc, lat
Sensor: sunlight | fields: qc, depth, unit, value
Task: Get value from lightning where reading exceeds the minimum value from sunlight for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069771 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: type, value, depth, lat
Sensor: evaporation | fields: level, value, type, lat
Task: Fetch depth from sunlight that have at least one corresponding evaporation measurement for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069772 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: reading, type, depth, unit
Sensor: dew_point | fields: type, depth, lat, reading
Task: Retrieve value from wind_speed that have at least one matching reading in dew_point sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069773 | train |
v2 | Sensor network script:
Node: visibility | code: stn | fields: depth, type, qc, lon
Sensor: dew_point | fields: reading, qc, type, lon
Task: Retrieve level from visibility that have at least one matching reading in dew_point sharing the same type.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069774 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: reading, value, level, depth
Sensor: temperature | fields: qc, lat, type, level
Task: Retrieve value from soil_moisture whose qc is found in temperature records where ts matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="ts",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069775 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: reading, depth, level, type
Sensor: dew_point | fields: lat, ts, value, depth
Task: Retrieve lon from uv_index that have at least one matching reading in dew_point sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069776 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: unit, value, lon, ts
Sensor: sunlight | fields: lat, qc, lon, level
Task: Get depth from rainfall where a corresponding entry exists in sunlight with the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069777 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: level, ts, lat, type
Sensor: humidity | fields: lon, level, value, qc
Task: Fetch level from rainfall where reading is greater than the total of value in humidity for matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("humidity", code="hgr"),
match="ts"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069778 | train |
v3 | Sensor network script:
Node: evaporation | code: clr | fields: level, unit, lat, qc
Sensor: pressure | fields: type, unit, reading, lat
Task: Retrieve lon from evaporation with depth above the COUNT(reading) of pressure readings sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069779 | train |
v3 | Sensor network script:
Node: uv_index | code: clr | fields: level, lon, ts, depth
Sensor: dew_point | fields: value, ts, reading, depth
Task: Fetch depth from uv_index where depth is greater than the minimum of reading in dew_point for matching depth.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069780 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: type, ts, unit, lon
Sensor: sunlight | fields: lon, type, value, reading
Task: Get reading from humidity where ts appears in sunlight readings with matching qc.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069781 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: reading, depth, level, value
Sensor: drought_index | fields: unit, type, lat, depth
Task: Get depth from pressure where value exceeds the maximum depth from drought_index for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069782 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: reading, lat, unit, value
Sensor: lightning | fields: unit, qc, lon, depth
Task: Retrieve reading from visibility with depth above the SUM(reading) of lightning readings sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069783 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: lon, value, reading, depth
Sensor: rainfall | fields: depth, reading, level, lat
Task: Get reading from humidity where a corresponding entry exists in rainfall with the same ts.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069784 | train |
v1 | Sensor network script:
Node: snow_depth | code: thr | fields: reading, lon, ts, type
Sensor: wind_speed | fields: lon, qc, depth, value
Task: Retrieve lat from snow_depth whose unit is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069785 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: reading, ts, lon, depth
Sensor: dew_point | fields: lat, depth, qc, unit
Task: Fetch depth from rainfall where depth exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069786 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: unit, level, depth, value
Sensor: evaporation | fields: reading, depth, qc, level
Task: Fetch value from cloud_cover that have at least one corresponding evaporation measurement for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="ts",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069787 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: level, ts, lat, depth
Sensor: lightning | fields: lon, ts, unit, qc
Task: Fetch depth from rainfall where ts exists in lightning sensor data for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069788 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: level, qc, lon, unit
Sensor: evaporation | fields: depth, ts, value, reading
Task: Get level from pressure where reading exceeds the average depth from evaporation for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069789 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: level, qc, value, reading
Sensor: rainfall | fields: depth, lon, qc, level
Task: Fetch value from lightning where reading is greater than the total of reading in rainfall for matching type.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069790 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: ts, unit, lon, type
Sensor: cloud_cover | fields: qc, level, ts, lon
Task: Fetch lat from dew_point where type exists in cloud_cover sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069791 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: depth, lon, value, level
Sensor: soil_moisture | fields: lat, value, ts, depth
Task: Fetch lon from lightning where value is greater than the average of reading in soil_moisture for matching type.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069792 | train |
v1 | Sensor network script:
Node: evaporation | code: gst | fields: reading, lon, unit, ts
Sensor: temperature | fields: ts, value, reading, level
Task: Fetch value from evaporation where type exists in temperature sensor data for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="ts",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069793 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: level, lon, depth, unit
Sensor: pressure | fields: reading, type, unit, ts
Task: Retrieve level from snow_depth whose type is found in pressure records where depth matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069794 | train |
v1 | Sensor network script:
Node: temperature | code: mst | fields: value, depth, reading, lat
Sensor: visibility | fields: depth, qc, ts, reading
Task: Retrieve reading from temperature whose type is found in visibility records where type matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="type",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069795 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: lat, depth, qc, level
Sensor: humidity | fields: depth, level, unit, reading
Task: Retrieve lon from cloud_cover with reading above the MAX(value) of humidity readings sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069796 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: lon, value, qc, lat
Sensor: lightning | fields: qc, ts, level, type
Task: Get reading from air_quality where value exceeds the total reading from lightning for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069797 | train |
v1 | Sensor network script:
Node: evaporation | code: ref | fields: value, unit, lat, lon
Sensor: wind_speed | fields: level, value, lon, ts
Task: Retrieve lon from evaporation whose depth is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069798 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: depth, ts, reading, unit
Sensor: lightning | fields: unit, level, lon, depth
Task: Fetch reading from dew_point that have at least one corresponding lightning measurement for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069799 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.