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: humidity | code: hub | fields: level, ts, value, lon
Sensor: lightning | fields: depth, lon, value, qc
Task: Get lon from humidity where value exceeds the minimum value from lightning for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002800 | train |
v2 | Sensor network script:
Node: visibility | code: thr | fields: lon, reading, depth, value
Sensor: soil_moisture | fields: level, unit, value, depth
Task: Get level from visibility where a corresponding entry exists in soil_moisture with the same qc.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002801 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: qc, level, value, ts
Sensor: wind_speed | fields: lon, lat, level, value
Task: Retrieve lat from dew_point whose unit is found in wind_speed records where depth matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002802 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: ts, level, type, value
Sensor: evaporation | fields: qc, type, ts, reading
Task: Fetch reading from pressure where reading is greater than the total of reading in evaporation for matching unit.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002803 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: ts, depth, lon, lat
Sensor: visibility | fields: type, reading, unit, level
Task: Get reading from humidity where a corresponding entry exists in visibility with the same ts.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002804 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: type, level, qc, reading
Sensor: frost | fields: lon, ts, depth, lat
Task: Retrieve value from rainfall that have at least one matching reading in frost sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002805 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: lon, reading, qc, lat
Sensor: dew_point | fields: depth, type, reading, level
Task: Get reading from temperature where a corresponding entry exists in dew_point with the same qc.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002806 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: qc, lon, type, level
Sensor: frost | fields: ts, depth, lon, level
Task: Retrieve reading from wind_speed with depth above the MAX(reading) of frost readings sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("frost", code="frs"),
match="unit"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002807 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: lon, level, ts, unit
Sensor: humidity | fields: ts, value, level, lat
Task: Retrieve lon from dew_point whose unit is found in humidity records where unit matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002808 | train |
v1 | Sensor network script:
Node: drought_index | code: thr | fields: lat, qc, reading, lon
Sensor: air_quality | fields: qc, ts, level, reading
Task: Get depth from drought_index where ts appears in air_quality readings with matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002809 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: lon, unit, reading, depth
Sensor: visibility | fields: unit, reading, type, lat
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="mst"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002810 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: reading, qc, depth, lat
Sensor: air_quality | fields: depth, qc, lon, value
Task: Get depth from uv_index where value exceeds the average reading from air_quality for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002811 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: lon, type, ts, lat
Sensor: dew_point | fields: level, lat, lon, type
Task: Retrieve lon from pressure with depth above the SUM(value) of dew_point readings sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002812 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: lat, reading, value, level
Sensor: wind_speed | fields: reading, ts, value, depth
Task: Retrieve reading from air_quality that have at least one matching reading in wind_speed sharing the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002813 | train |
v3 | Sensor network script:
Node: visibility | code: stn | fields: level, ts, reading, type
Sensor: rainfall | fields: lon, value, level, lat
Task: Retrieve lat from visibility with value above the AVG(value) of rainfall readings sharing the same qc.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002814 | train |
v1 | Sensor network script:
Node: lightning | code: mst | fields: lat, depth, value, qc
Sensor: snow_depth | fields: unit, reading, level, ts
Task: Get lon from lightning where depth appears in snow_depth readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002815 | train |
v3 | Sensor network script:
Node: drought_index | code: gst | fields: level, unit, lon, type
Sensor: snow_depth | fields: qc, level, unit, depth
Task: Get lon from drought_index where reading exceeds the average reading from snow_depth for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002816 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: reading, lat, unit, value
Sensor: visibility | fields: lat, lon, reading, ts
Task: Get value from wind_speed where reading exceeds the minimum value from visibility for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002817 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: type, qc, ts, reading
Sensor: wind_speed | fields: value, level, type, lat
Task: Retrieve lat from snow_depth that have at least one matching reading in wind_speed sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002818 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: qc, lat, value, depth
Sensor: drought_index | fields: qc, ts, lon, value
Task: Fetch lon from turbidity where value is greater than the maximum of reading in drought_index for matching type.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002819 | train |
v2 | Sensor network script:
Node: lightning | code: ref | fields: ts, qc, value, unit
Sensor: rainfall | fields: lon, type, level, value
Task: Retrieve level from lightning that have at least one matching reading in rainfall sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002820 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: depth, qc, level, value
Sensor: sunlight | fields: lon, ts, qc, unit
Task: Retrieve lon from wind_speed with depth above the MAX(depth) of sunlight readings sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002821 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: reading, ts, lon, qc
Sensor: turbidity | fields: value, lon, qc, reading
Task: Fetch lon from frost where unit exists in turbidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002822 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: lat, lon, type, unit
Sensor: visibility | fields: level, value, depth, lon
Task: Fetch lon from sunlight where ts exists in visibility sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="unit",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002823 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: depth, qc, type, reading
Sensor: temperature | fields: level, reading, lon, depth
Task: Retrieve lon from frost whose ts is found in temperature records where qc matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002824 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: ts, type, value, lat
Sensor: soil_moisture | fields: unit, lon, level, qc
Task: Retrieve level from rainfall that have at least one matching reading in soil_moisture sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002825 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: unit, lon, lat, level
Sensor: uv_index | fields: lat, ts, qc, value
Task: Get lat from cloud_cover where a corresponding entry exists in uv_index with the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002826 | train |
v1 | Sensor network script:
Node: evaporation | code: clr | fields: depth, ts, lat, unit
Sensor: wind_speed | fields: unit, lat, level, value
Task: Get lat from evaporation where qc appears in wind_speed readings with matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002827 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: level, reading, ts, lon
Sensor: visibility | fields: qc, depth, lat, type
Task: Retrieve reading from turbidity that have at least one matching reading in visibility sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002828 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: depth, level, qc, lat
Sensor: visibility | fields: type, value, reading, unit
Task: Get depth from sunlight where reading exceeds the maximum depth from visibility for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002829 | train |
v1 | Sensor network script:
Node: sunlight | code: thr | fields: lat, value, qc, lon
Sensor: uv_index | fields: level, type, depth, unit
Task: Retrieve reading from sunlight whose ts is found in uv_index records where type matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002830 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: depth, reading, type, value
Sensor: turbidity | fields: value, lon, unit, reading
Task: Retrieve lat from snow_depth that have at least one matching reading in turbidity sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002831 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: level, type, lon, lat
Sensor: temperature | fields: ts, value, type, unit
Task: Fetch lat from frost that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002832 | train |
v3 | Sensor network script:
Node: uv_index | code: stn | fields: lon, type, level, lat
Sensor: turbidity | fields: lon, depth, unit, qc
Task: Retrieve lat from uv_index with value above the COUNT(value) of turbidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002833 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: value, level, qc, reading
Sensor: temperature | fields: lat, reading, level, lon
Task: Retrieve level from wind_speed whose qc is found in temperature records where ts matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="ts",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002834 | train |
v1 | Sensor network script:
Node: temperature | code: gst | fields: type, lon, ts, depth
Sensor: pressure | fields: value, unit, depth, level
Task: Retrieve lon from temperature whose unit is found in pressure records where type matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="type",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002835 | train |
v3 | Sensor network script:
Node: drought_index | code: stn | fields: depth, unit, type, lat
Sensor: turbidity | fields: depth, reading, type, level
Task: Fetch level from drought_index where value is greater than the maximum of value in turbidity for matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002836 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: lat, value, ts, lon
Sensor: cloud_cover | fields: type, reading, qc, level
Task: Retrieve depth from air_quality that have at least one matching reading in cloud_cover sharing the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002837 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: ts, value, unit, level
Sensor: wind_speed | fields: depth, value, type, level
Task: Retrieve lat from frost with reading above the MIN(reading) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002838 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: lat, lon, depth, level
Sensor: lightning | fields: reading, depth, qc, type
Task: Get lat from dew_point where a corresponding entry exists in lightning with the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002839 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: type, ts, lon, lat
Sensor: soil_moisture | fields: qc, depth, ts, level
Task: Retrieve level from dew_point that have at least one matching reading in soil_moisture sharing the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002840 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: ts, qc, level, lat
Sensor: lightning | fields: lat, type, depth, level
Task: Retrieve level from uv_index with depth above the MIN(value) of lightning readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002841 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: value, unit, qc, reading
Sensor: wind_speed | fields: unit, qc, reading, type
Task: Retrieve level from drought_index that have at least one matching reading in wind_speed sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002842 | train |
v2 | Sensor network script:
Node: lightning | code: ref | fields: ts, lon, level, lat
Sensor: wind_speed | fields: unit, level, value, lon
Task: Fetch lon from lightning that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002843 | train |
v3 | Sensor network script:
Node: dew_point | code: stn | fields: value, lat, lon, type
Sensor: turbidity | fields: type, qc, lon, unit
Task: Get depth from dew_point where value exceeds the maximum reading from turbidity for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002844 | train |
v1 | Sensor network script:
Node: lightning | code: clr | fields: depth, level, reading, qc
Sensor: frost | fields: lat, type, value, ts
Task: Fetch level from lightning where depth exists in frost sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="type",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002845 | train |
v2 | Sensor network script:
Node: evaporation | code: gst | fields: unit, lon, lat, reading
Sensor: pressure | fields: lat, reading, qc, level
Task: Get lat from evaporation where a corresponding entry exists in pressure with the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002846 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: qc, level, type, reading
Sensor: humidity | fields: value, unit, lat, level
Task: Fetch reading from dew_point where ts exists in humidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002847 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: lon, ts, type, level
Sensor: visibility | fields: ts, type, level, depth
Task: Get reading from uv_index where a corresponding entry exists in visibility with the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="reading",
) | {
"outer_table": "uv_index",
"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_002848 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: value, level, unit, lat
Sensor: sunlight | fields: lat, depth, reading, ts
Task: Get lon from frost where value exceeds the minimum reading from sunlight for the same unit.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002849 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: type, value, depth, ts
Sensor: frost | fields: lat, type, ts, depth
Task: Fetch lon from visibility where unit exists in frost sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="qc",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002850 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: lat, ts, depth, type
Sensor: humidity | fields: level, ts, value, depth
Task: Get lon from uv_index where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002851 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: type, reading, value, depth
Sensor: frost | fields: lat, unit, reading, ts
Task: Retrieve lon from drought_index with value above the AVG(depth) of frost readings sharing the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("frost", code="frs"),
match="unit"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002852 | train |
v3 | Sensor network script:
Node: turbidity | code: thr | fields: unit, type, lon, ts
Sensor: humidity | fields: lat, value, ts, level
Task: Get value from turbidity where value exceeds the average value from humidity for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "value",
"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_002853 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: lat, unit, type, lon
Sensor: air_quality | fields: qc, type, lat, lon
Task: Fetch depth from wind_speed that have at least one corresponding air_quality measurement for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002854 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: reading, depth, level, lat
Sensor: lightning | fields: type, reading, qc, lat
Task: Get lon from frost where a corresponding entry exists in lightning with the same qc.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002855 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: reading, lon, type, unit
Sensor: wind_speed | fields: qc, value, reading, depth
Task: Fetch lat from snow_depth where reading is greater than the maximum of value in wind_speed for matching ts.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002856 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: value, lat, ts, lon
Sensor: air_quality | fields: type, reading, lat, unit
Task: Retrieve reading from temperature that have at least one matching reading in air_quality sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002857 | train |
v1 | Sensor network script:
Node: evaporation | code: ref | fields: reading, qc, lat, lon
Sensor: turbidity | fields: level, lat, unit, type
Task: Get lon from evaporation where type appears in turbidity readings with matching type.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002858 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: lat, ts, type, depth
Sensor: humidity | fields: ts, lat, type, depth
Task: Retrieve lat from turbidity with reading above the MIN(reading) of humidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002859 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: reading, depth, unit, lat
Sensor: soil_moisture | fields: ts, lon, unit, lat
Task: Fetch reading from wind_speed where depth is greater than the minimum of depth in soil_moisture for matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002860 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: ts, qc, depth, type
Sensor: wind_speed | fields: lon, qc, type, value
Task: Retrieve level from frost that have at least one matching reading in wind_speed sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002861 | train |
v2 | Sensor network script:
Node: temperature | code: hub | fields: qc, depth, value, level
Sensor: snow_depth | fields: lat, reading, unit, value
Task: Fetch depth from temperature that have at least one corresponding snow_depth measurement for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002862 | train |
v2 | Sensor network script:
Node: snow_depth | code: stn | fields: unit, type, depth, value
Sensor: lightning | fields: depth, qc, lon, ts
Task: Fetch lon from snow_depth that have at least one corresponding lightning measurement for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002863 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: lon, lat, reading, ts
Sensor: frost | fields: level, value, reading, ts
Task: Get depth from cloud_cover where ts appears in frost readings with matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="ts",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002864 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: lat, type, level, lon
Sensor: air_quality | fields: ts, depth, qc, value
Task: Retrieve lon from pressure whose unit is found in air_quality records where ts matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002865 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: reading, unit, depth, value
Sensor: drought_index | fields: lat, value, level, qc
Task: Retrieve reading from pressure whose ts is found in drought_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="ts",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002866 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: value, depth, unit, lat
Sensor: drought_index | fields: level, lat, unit, lon
Task: Fetch value from humidity that have at least one corresponding drought_index measurement for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002867 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: lat, value, ts, qc
Sensor: visibility | fields: qc, reading, ts, lon
Task: Get reading from drought_index where ts appears in visibility readings with matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="depth",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002868 | train |
v1 | Sensor network script:
Node: uv_index | code: hub | fields: unit, qc, type, value
Sensor: drought_index | fields: unit, reading, qc, ts
Task: Retrieve depth from uv_index whose depth is found in drought_index records where type matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="type",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002869 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: lat, level, value, reading
Sensor: drought_index | fields: depth, lat, level, lon
Task: Get depth from temperature where a corresponding entry exists in drought_index with the same type.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002870 | train |
v3 | Sensor network script:
Node: soil_moisture | code: thr | fields: level, depth, lon, ts
Sensor: drought_index | fields: qc, lat, value, ts
Task: Get level from soil_moisture where value exceeds the total depth from drought_index for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002871 | train |
v3 | Sensor network script:
Node: dew_point | code: thr | fields: lat, level, type, value
Sensor: visibility | fields: lon, depth, reading, unit
Task: Retrieve lon from dew_point with depth above the MAX(depth) of visibility readings sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("visibility", code="clr"),
match="type"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002872 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: qc, level, type, reading
Sensor: snow_depth | fields: depth, lat, value, type
Task: Retrieve depth from uv_index whose type is found in snow_depth records where type matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002873 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: value, qc, lon, depth
Sensor: drought_index | fields: depth, unit, type, level
Task: Get lon from rainfall where qc appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002874 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: depth, lat, reading, lon
Sensor: uv_index | fields: type, lat, value, level
Task: Fetch level from evaporation where depth exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002875 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: ts, reading, type, depth
Sensor: uv_index | fields: lat, unit, value, level
Task: Retrieve lon from evaporation that have at least one matching reading in uv_index sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002876 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: depth, qc, lon, level
Sensor: temperature | fields: unit, type, ts, lat
Task: Get value from soil_moisture where qc appears in temperature readings with matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="ts",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002877 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: depth, unit, type, value
Sensor: temperature | fields: type, level, value, qc
Task: Fetch value from visibility that have at least one corresponding temperature measurement for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002878 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: type, lat, value, depth
Sensor: dew_point | fields: type, ts, unit, qc
Task: Retrieve lon from visibility with reading above the AVG(value) of dew_point readings sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002879 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: depth, unit, lon, qc
Sensor: dew_point | fields: qc, level, reading, depth
Task: Get depth from drought_index where unit appears in dew_point readings with matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002880 | train |
v2 | Sensor network script:
Node: turbidity | code: thr | fields: value, qc, depth, reading
Sensor: humidity | fields: lon, unit, depth, reading
Task: Fetch level from turbidity that have at least one corresponding humidity measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002881 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: qc, unit, lon, depth
Sensor: air_quality | fields: value, depth, lat, lon
Task: Retrieve level from rainfall with depth above the MIN(reading) of air_quality readings sharing the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002882 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: ts, lon, reading, depth
Sensor: dew_point | fields: value, level, qc, lon
Task: Get lon from sunlight where a corresponding entry exists in dew_point with the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002883 | train |
v1 | Sensor network script:
Node: uv_index | code: gst | fields: reading, lat, ts, unit
Sensor: snow_depth | fields: reading, type, depth, lon
Task: Get value from uv_index where depth appears in snow_depth readings with matching type.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002884 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: ts, qc, reading, lon
Sensor: air_quality | fields: depth, value, lon, type
Task: Retrieve lat from dew_point that have at least one matching reading in air_quality sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002885 | train |
v3 | Sensor network script:
Node: uv_index | code: hub | fields: ts, reading, value, depth
Sensor: visibility | fields: value, unit, type, reading
Task: Get level from uv_index where depth exceeds the minimum reading from visibility for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002886 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: qc, level, type, lon
Sensor: pressure | fields: qc, lon, level, type
Task: Get lon from snow_depth where a corresponding entry exists in pressure with the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002887 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: unit, lat, value, qc
Sensor: temperature | fields: unit, lat, value, type
Task: Retrieve level from cloud_cover that have at least one matching reading in temperature sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="qc",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002888 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: value, depth, lat, unit
Sensor: cloud_cover | fields: reading, level, lat, qc
Task: Retrieve reading from wind_speed with reading above the AVG(reading) of cloud_cover readings sharing the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002889 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: lat, ts, unit, type
Sensor: sunlight | fields: reading, ts, type, lon
Task: Retrieve depth from rainfall with depth above the AVG(depth) of sunlight readings sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002890 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: reading, value, depth, qc
Sensor: cloud_cover | fields: unit, lat, reading, level
Task: Get value from rainfall where ts appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002891 | train |
v2 | Sensor network script:
Node: lightning | code: prt | fields: unit, lat, ts, reading
Sensor: rainfall | fields: type, lon, level, reading
Task: Get depth from lightning where a corresponding entry exists in rainfall with the same depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002892 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: depth, lat, ts, lon
Sensor: wind_speed | fields: depth, type, reading, qc
Task: Fetch lon from rainfall where depth exists in wind_speed sensor data for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002893 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: type, ts, lon, level
Sensor: wind_speed | fields: lon, qc, unit, level
Task: Retrieve level from dew_point that have at least one matching reading in wind_speed sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002894 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: depth, level, type, lat
Sensor: turbidity | fields: lat, lon, level, ts
Task: Get depth from visibility where depth appears in turbidity readings with matching depth.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002895 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: depth, level, qc, lon
Sensor: evaporation | fields: reading, depth, lon, qc
Task: Fetch reading from drought_index that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002896 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: lon, type, reading, qc
Sensor: evaporation | fields: value, level, reading, ts
Task: Get lat from pressure where qc appears in evaporation readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="type",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002897 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: lon, ts, reading, value
Sensor: turbidity | fields: qc, value, reading, type
Task: Fetch value from drought_index where type exists in turbidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_002898 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: reading, type, lon, depth
Sensor: air_quality | fields: ts, level, unit, lon
Task: Fetch lat from wind_speed where unit exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_002899 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.