variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: level, qc, unit, lat
Sensor: rainfall | fields: reading, level, ts, unit
Task: Get reading from soil_moisture where a corresponding entry exists in rainfall with the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078900 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: depth, unit, reading, ts
Sensor: sunlight | fields: lon, unit, value, qc
Task: Fetch level from cloud_cover that have at least one corresponding sunlight measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078901 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: level, qc, type, value
Sensor: air_quality | fields: value, type, unit, qc
Task: Fetch reading from wind_speed where depth is greater than the minimum of depth in air_quality for matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078902 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: reading, lat, depth, lon
Sensor: air_quality | fields: reading, lon, level, unit
Task: Fetch value from evaporation where ts exists in air_quality sensor data for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="type",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078903 | train |
v3 | Sensor network script:
Node: snow_depth | code: ref | fields: value, lon, type, ts
Sensor: uv_index | fields: lon, value, reading, qc
Task: Fetch lon from snow_depth where value is greater than the count of of value in uv_index for matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("uv_index", code="flx"),
match="type"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078904 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: ts, type, lon, value
Sensor: dew_point | fields: depth, unit, value, reading
Task: Fetch reading from temperature where depth exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078905 | train |
v3 | Sensor network script:
Node: uv_index | code: stn | fields: lat, value, ts, reading
Sensor: temperature | fields: unit, level, reading, qc
Task: Retrieve value from uv_index with depth above the AVG(depth) of temperature readings sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078906 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: ts, reading, unit, level
Sensor: wind_speed | fields: type, lon, lat, reading
Task: Get depth from visibility where a corresponding entry exists in wind_speed with the same depth.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078907 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: unit, reading, lat, value
Sensor: lightning | fields: reading, depth, ts, lon
Task: Retrieve lat from snow_depth that have at least one matching reading in lightning sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078908 | train |
v3 | Sensor network script:
Node: temperature | code: prt | fields: type, qc, reading, level
Sensor: turbidity | fields: type, unit, reading, lat
Task: Fetch value from temperature where reading is greater than the count of of reading in turbidity for matching depth.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078909 | train |
v3 | Sensor network script:
Node: turbidity | code: clr | fields: reading, lon, depth, level
Sensor: wind_speed | fields: lon, reading, unit, depth
Task: Retrieve lon from turbidity with depth above the MIN(depth) of wind_speed readings sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078910 | train |
v3 | Sensor network script:
Node: drought_index | code: mst | fields: qc, ts, level, lat
Sensor: air_quality | fields: reading, level, ts, type
Task: Get lat from drought_index where value exceeds the average depth from air_quality for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("air_quality", code="prt"),
match="type"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078911 | train |
v3 | Sensor network script:
Node: lightning | code: stn | fields: qc, type, lat, reading
Sensor: air_quality | fields: lon, lat, depth, unit
Task: Fetch lon from lightning where depth is greater than the minimum of depth in air_quality for matching depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078912 | train |
v1 | Sensor network script:
Node: cloud_cover | code: clr | fields: reading, type, value, lon
Sensor: dew_point | fields: unit, ts, lat, reading
Task: Retrieve reading from cloud_cover whose unit is found in dew_point records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078913 | train |
v3 | Sensor network script:
Node: uv_index | code: clr | fields: reading, lon, depth, lat
Sensor: rainfall | fields: level, lon, depth, unit
Task: Retrieve lon from uv_index with reading above the MAX(depth) of rainfall readings sharing the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078914 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: qc, lat, value, ts
Sensor: humidity | fields: lon, lat, ts, level
Task: Fetch level from temperature where reading is greater than the minimum of depth in humidity for matching unit.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078915 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: type, unit, value, qc
Sensor: turbidity | fields: reading, lat, ts, value
Task: Get lat from sunlight where a corresponding entry exists in turbidity with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078916 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: qc, lat, depth, unit
Sensor: sunlight | fields: reading, unit, qc, lon
Task: Fetch depth from humidity where qc exists in sunlight sensor data for the same type.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="type",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078917 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: level, depth, lon, qc
Sensor: soil_moisture | fields: type, lat, unit, ts
Task: Fetch value from turbidity that have at least one corresponding soil_moisture measurement for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078918 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: unit, reading, lat, ts
Sensor: visibility | fields: lon, type, reading, ts
Task: Fetch lat from turbidity that have at least one corresponding visibility measurement for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078919 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: type, qc, level, value
Sensor: temperature | fields: lat, lon, type, reading
Task: Retrieve reading from sunlight that have at least one matching reading in temperature sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078920 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: lat, qc, depth, type
Sensor: humidity | fields: ts, depth, unit, reading
Task: Fetch reading from uv_index where ts exists in humidity sensor data for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078921 | train |
v3 | Sensor network script:
Node: lightning | code: ref | fields: ts, depth, value, type
Sensor: rainfall | fields: reading, level, ts, type
Task: Get depth from lightning where value exceeds the minimum reading from rainfall for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078922 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: lon, depth, lat, unit
Sensor: turbidity | fields: lon, type, level, value
Task: Get reading from uv_index where unit appears in turbidity readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078923 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: lat, level, lon, reading
Sensor: frost | fields: qc, reading, lat, value
Task: Retrieve lon from air_quality that have at least one matching reading in frost sharing the same type.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078924 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: level, unit, type, value
Sensor: uv_index | fields: qc, type, ts, value
Task: Retrieve reading from dew_point that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078925 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: type, unit, value, ts
Sensor: drought_index | fields: level, value, qc, unit
Task: Fetch reading from uv_index that have at least one corresponding drought_index measurement for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078926 | train |
v1 | Sensor network script:
Node: sunlight | code: clr | fields: lat, type, unit, lon
Sensor: evaporation | fields: depth, reading, ts, qc
Task: Get value from sunlight where ts appears in evaporation readings with matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078927 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: ts, value, type, reading
Sensor: frost | fields: type, level, qc, reading
Task: Retrieve lat from uv_index that have at least one matching reading in frost sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078928 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: level, ts, qc, type
Sensor: sunlight | fields: type, ts, level, lon
Task: Retrieve level from soil_moisture that have at least one matching reading in sunlight sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078929 | train |
v1 | Sensor network script:
Node: air_quality | code: prt | fields: type, ts, value, qc
Sensor: dew_point | fields: unit, ts, qc, type
Task: Retrieve lon from air_quality whose qc is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078930 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: ts, unit, depth, lat
Sensor: turbidity | fields: value, lon, ts, reading
Task: Retrieve level from cloud_cover that have at least one matching reading in turbidity sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078931 | train |
v1 | Sensor network script:
Node: frost | code: stn | fields: depth, reading, qc, lat
Sensor: pressure | fields: level, ts, unit, reading
Task: Fetch lon from frost where depth exists in pressure sensor data for the same depth.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078932 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: depth, unit, level, value
Sensor: pressure | fields: ts, depth, type, value
Task: Retrieve lon from air_quality with reading above the MAX(value) of pressure readings sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078933 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: unit, lat, reading, ts
Sensor: pressure | fields: level, value, lat, lon
Task: Retrieve reading from sunlight with depth above the COUNT(value) of pressure readings sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078934 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: qc, lon, ts, depth
Sensor: soil_moisture | fields: level, depth, qc, value
Task: Fetch depth from sunlight that have at least one corresponding soil_moisture measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078935 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: type, lat, lon, ts
Sensor: cloud_cover | fields: lat, reading, value, level
Task: Fetch lat from drought_index that have at least one corresponding cloud_cover measurement for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078936 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: value, reading, lat, lon
Sensor: rainfall | fields: depth, value, level, type
Task: Fetch value from temperature that have at least one corresponding rainfall measurement for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078937 | train |
v1 | Sensor network script:
Node: dew_point | code: hub | fields: value, type, lat, level
Sensor: air_quality | fields: ts, depth, type, unit
Task: Fetch reading from dew_point where depth exists in air_quality sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078938 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: unit, qc, lat, reading
Sensor: wind_speed | fields: type, qc, unit, ts
Task: Get reading from temperature where value exceeds the minimum value from wind_speed for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078939 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: value, depth, lat, type
Sensor: dew_point | fields: ts, level, unit, reading
Task: Fetch value from pressure that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078940 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: value, depth, lon, ts
Sensor: drought_index | fields: unit, ts, lat, lon
Task: Fetch lon from turbidity where qc exists in drought_index sensor data for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="type",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078941 | train |
v3 | Sensor network script:
Node: evaporation | code: clr | fields: value, reading, lon, lat
Sensor: dew_point | fields: reading, value, ts, level
Task: Fetch depth from evaporation where value is greater than the minimum of depth in dew_point for matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078942 | train |
v2 | Sensor network script:
Node: temperature | code: stn | fields: value, ts, type, unit
Sensor: cloud_cover | fields: lon, lat, value, depth
Task: Fetch value from temperature that have at least one corresponding cloud_cover measurement for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078943 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: reading, qc, type, unit
Sensor: rainfall | fields: value, level, lat, ts
Task: Get value from frost where depth exceeds the maximum reading from rainfall for the same ts.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078944 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: lat, lon, value, reading
Sensor: rainfall | fields: value, reading, lon, depth
Task: Get reading from wind_speed where depth appears in rainfall readings with matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078945 | train |
v3 | Sensor network script:
Node: pressure | code: hub | fields: unit, qc, type, ts
Sensor: frost | fields: qc, lon, unit, type
Task: Fetch lat from pressure where value is greater than the average of value in frost for matching ts.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("frost", code="frs"),
match="ts"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078946 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: ts, depth, level, unit
Sensor: pressure | fields: type, ts, lon, depth
Task: Fetch lon from humidity where unit exists in pressure sensor data for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078947 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: value, qc, type, lon
Sensor: evaporation | fields: ts, lon, unit, depth
Task: Get reading from wind_speed where value exceeds the minimum reading from evaporation for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078948 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: lon, depth, value, reading
Sensor: air_quality | fields: lon, value, lat, depth
Task: Fetch depth from pressure where qc exists in air_quality sensor data for the same type.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078949 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: ts, level, value, type
Sensor: frost | fields: reading, depth, lon, type
Task: Get depth from air_quality where a corresponding entry exists in frost with the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078950 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: qc, value, lon, level
Sensor: snow_depth | fields: level, lon, type, ts
Task: Retrieve lat from pressure that have at least one matching reading in snow_depth sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078951 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: type, level, depth, value
Sensor: uv_index | fields: type, lon, depth, value
Task: Fetch reading from humidity where qc exists in uv_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078952 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: ts, qc, reading, value
Sensor: cloud_cover | fields: lat, depth, level, qc
Task: Retrieve lon from uv_index whose unit is found in cloud_cover records where qc matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078953 | train |
v3 | Sensor network script:
Node: turbidity | code: clr | fields: reading, lat, unit, ts
Sensor: cloud_cover | fields: ts, type, lat, level
Task: Fetch lat from turbidity where value is greater than the average of depth in cloud_cover for matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078954 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: depth, qc, lat, level
Sensor: sunlight | fields: type, level, qc, value
Task: Retrieve value from frost with reading above the COUNT(depth) of sunlight readings sharing the same depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078955 | train |
v3 | Sensor network script:
Node: uv_index | code: clr | fields: depth, reading, lon, lat
Sensor: rainfall | fields: type, value, lon, qc
Task: Fetch level from uv_index where depth is greater than the maximum of value in rainfall for matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078956 | train |
v1 | Sensor network script:
Node: wind_speed | code: clr | fields: lon, ts, qc, lat
Sensor: lightning | fields: unit, reading, qc, ts
Task: Fetch value from wind_speed where qc exists in lightning sensor data for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078957 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: level, value, lon, depth
Sensor: turbidity | fields: ts, level, reading, lon
Task: Fetch lon from wind_speed that have at least one corresponding turbidity measurement for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078958 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: qc, unit, lon, level
Sensor: drought_index | fields: qc, reading, lat, ts
Task: Fetch lat from cloud_cover where qc exists in drought_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078959 | train |
v2 | Sensor network script:
Node: wind_speed | code: mst | fields: lon, lat, type, depth
Sensor: humidity | fields: value, qc, reading, type
Task: Fetch lon from wind_speed that have at least one corresponding humidity measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078960 | train |
v3 | Sensor network script:
Node: air_quality | code: gst | fields: unit, lat, qc, type
Sensor: cloud_cover | fields: type, level, qc, lon
Task: Get depth from air_quality where value exceeds the total value from cloud_cover for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078961 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: ts, value, lat, unit
Sensor: visibility | fields: lat, level, unit, depth
Task: Get level from pressure where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078962 | train |
v2 | Sensor network script:
Node: snow_depth | code: thr | fields: value, type, reading, qc
Sensor: dew_point | fields: lat, ts, value, type
Task: Retrieve level from snow_depth that have at least one matching reading in dew_point sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078963 | train |
v2 | Sensor network script:
Node: air_quality | code: hub | fields: qc, unit, value, type
Sensor: temperature | fields: reading, lat, level, lon
Task: Fetch depth from air_quality that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078964 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: lat, qc, reading, unit
Sensor: cloud_cover | fields: ts, lon, depth, lat
Task: Fetch value from lightning that have at least one corresponding cloud_cover measurement for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078965 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: qc, level, value, depth
Sensor: sunlight | fields: depth, ts, lat, qc
Task: Fetch value from frost where type exists in sunlight sensor data for the same ts.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078966 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: reading, lat, qc, type
Sensor: lightning | fields: unit, reading, depth, value
Task: Retrieve level from cloud_cover that have at least one matching reading in lightning sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078967 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: value, lat, type, lon
Sensor: lightning | fields: unit, type, depth, reading
Task: Get lat from wind_speed where reading exceeds the minimum depth from lightning for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078968 | train |
v1 | Sensor network script:
Node: lightning | code: prt | fields: depth, qc, lon, reading
Sensor: evaporation | fields: lon, depth, value, level
Task: Get lat from lightning where type appears in evaporation readings with matching unit.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078969 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: level, lat, reading, type
Sensor: evaporation | fields: ts, depth, lat, unit
Task: Fetch level from uv_index where type exists in evaporation sensor data for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078970 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: unit, ts, depth, value
Sensor: sunlight | fields: unit, lon, lat, reading
Task: Get lat from snow_depth where unit appears in sunlight readings with matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078971 | train |
v2 | Sensor network script:
Node: humidity | code: gst | fields: value, level, reading, qc
Sensor: cloud_cover | fields: lon, lat, unit, ts
Task: Get lon from humidity where a corresponding entry exists in cloud_cover with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078972 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: ts, lon, level, unit
Sensor: frost | fields: reading, lon, qc, ts
Task: Fetch lat from cloud_cover that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078973 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: lat, ts, value, level
Sensor: drought_index | fields: lon, value, depth, unit
Task: Fetch lat from frost where reading is greater than the maximum of value in drought_index for matching ts.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078974 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: reading, unit, lat, lon
Sensor: snow_depth | fields: unit, lon, ts, value
Task: Get depth from wind_speed where a corresponding entry exists in snow_depth with the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078975 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: lon, depth, qc, ts
Sensor: turbidity | fields: type, lon, qc, ts
Task: Retrieve lat from temperature whose qc is found in turbidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="qc",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078976 | train |
v1 | Sensor network script:
Node: dew_point | code: hub | fields: reading, qc, level, value
Sensor: soil_moisture | fields: lon, type, reading, qc
Task: Fetch value from dew_point where unit exists in soil_moisture sensor data for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078977 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: type, depth, value, level
Sensor: wind_speed | fields: type, reading, depth, level
Task: Retrieve depth from pressure with depth above the MIN(depth) of wind_speed readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078978 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: lat, lon, reading, value
Sensor: rainfall | fields: unit, level, type, lon
Task: Get value from lightning where a corresponding entry exists in rainfall with the same ts.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078979 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: value, reading, depth, lat
Sensor: air_quality | fields: type, ts, depth, reading
Task: Fetch value from cloud_cover where value is greater than the minimum of reading in air_quality for matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("air_quality", code="prt"),
match="type"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078980 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: unit, depth, type, reading
Sensor: dew_point | fields: depth, level, value, lat
Task: Retrieve lon from pressure whose unit is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078981 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: qc, depth, lon, ts
Sensor: wind_speed | fields: lon, qc, value, lat
Task: Fetch depth from rainfall that have at least one corresponding wind_speed measurement for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078982 | train |
v3 | Sensor network script:
Node: humidity | code: mst | fields: reading, depth, level, qc
Sensor: lightning | fields: type, unit, reading, ts
Task: Get value from humidity where depth exceeds the minimum value from lightning for the same type.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078983 | train |
v3 | Sensor network script:
Node: soil_moisture | code: clr | fields: lon, lat, qc, type
Sensor: lightning | fields: lat, unit, level, qc
Task: Retrieve lat from soil_moisture with value above the AVG(value) of lightning readings sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078984 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: unit, qc, depth, value
Sensor: sunlight | fields: depth, level, ts, reading
Task: Retrieve value from cloud_cover whose depth is found in sunlight records where type matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="type",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078985 | train |
v2 | Sensor network script:
Node: air_quality | code: gst | fields: value, depth, lon, type
Sensor: pressure | fields: value, level, depth, lon
Task: Get lat from air_quality where a corresponding entry exists in pressure with the same type.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078986 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: depth, reading, lon, ts
Sensor: snow_depth | fields: lat, ts, value, qc
Task: Get reading from cloud_cover where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078987 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: lat, reading, qc, unit
Sensor: drought_index | fields: level, lon, unit, qc
Task: Fetch value from frost where reading is greater than the total of depth in drought_index for matching unit.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078988 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: type, value, qc, reading
Sensor: uv_index | fields: type, value, unit, lon
Task: Retrieve level from drought_index with reading above the MAX(reading) of uv_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078989 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: lat, type, lon, reading
Sensor: uv_index | fields: qc, lat, depth, lon
Task: Retrieve lon from temperature that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078990 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: lon, reading, depth, value
Sensor: visibility | fields: reading, qc, unit, depth
Task: Get depth from uv_index where reading exceeds the average value from visibility for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078991 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: unit, level, lat, ts
Sensor: snow_depth | fields: depth, lon, type, unit
Task: Retrieve lat from turbidity with depth above the MAX(depth) of snow_depth readings sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lat",
"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_078992 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: lon, level, value, depth
Sensor: dew_point | fields: qc, type, value, level
Task: Retrieve reading from rainfall with value above the MAX(depth) of dew_point readings sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078993 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: ts, lon, depth, level
Sensor: rainfall | fields: ts, reading, lat, unit
Task: Get value from sunlight where reading exceeds the maximum reading from rainfall for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078994 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: qc, depth, unit, type
Sensor: temperature | fields: reading, qc, lat, value
Task: Retrieve lon from wind_speed whose unit is found in temperature records where ts matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="ts",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_078995 | train |
v1 | Sensor network script:
Node: humidity | code: hub | fields: level, qc, unit, reading
Sensor: snow_depth | fields: reading, level, depth, lon
Task: Get lat from humidity where qc appears in snow_depth readings with matching unit.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078996 | train |
v1 | Sensor network script:
Node: humidity | code: prt | fields: reading, value, type, lat
Sensor: rainfall | fields: level, qc, reading, lon
Task: Get lat from humidity where ts appears in rainfall readings with matching depth.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078997 | train |
v1 | Sensor network script:
Node: uv_index | code: stn | fields: type, qc, lat, ts
Sensor: rainfall | fields: value, lat, level, qc
Task: Fetch level from uv_index where qc exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078998 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: unit, type, level, qc
Sensor: humidity | fields: value, level, depth, qc
Task: Retrieve lon from cloud_cover that have at least one matching reading in humidity sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_078999 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.