variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v1 | Sensor network script:
Node: turbidity | code: gst | fields: depth, unit, type, value
Sensor: dew_point | fields: depth, lat, type, reading
Task: Get lat from turbidity where depth appears in dew_point readings with matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083700 | train |
v3 | Sensor network script:
Node: dew_point | code: stn | fields: unit, reading, value, qc
Sensor: snow_depth | fields: type, value, qc, reading
Task: Get reading from dew_point where reading exceeds the maximum depth from snow_depth for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083701 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: depth, reading, lat, ts
Sensor: evaporation | fields: level, type, value, ts
Task: Fetch value from drought_index where reading is greater than the minimum of depth in evaporation for matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083702 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: reading, type, qc, lat
Sensor: humidity | fields: type, unit, qc, ts
Task: Retrieve lat from dew_point that have at least one matching reading in humidity sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083703 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: qc, type, ts, value
Sensor: drought_index | fields: type, value, depth, lon
Task: Get lat from temperature where depth appears in drought_index readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="type",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083704 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: depth, level, lat, lon
Sensor: turbidity | fields: level, type, ts, unit
Task: Get lat from evaporation where a corresponding entry exists in turbidity with the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083705 | train |
v2 | Sensor network script:
Node: cloud_cover | code: ref | fields: level, reading, value, type
Sensor: dew_point | fields: level, unit, qc, type
Task: Retrieve reading from cloud_cover that have at least one matching reading in dew_point sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083706 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: value, lat, lon, depth
Sensor: frost | fields: lon, ts, depth, lat
Task: Retrieve reading from rainfall with value above the SUM(depth) of frost readings sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("frost", code="frs"),
match="depth"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083707 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: ts, reading, lat, level
Sensor: air_quality | fields: ts, lat, reading, type
Task: Fetch lat from evaporation where unit exists in air_quality sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083708 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: level, unit, reading, depth
Sensor: turbidity | fields: unit, lon, level, lat
Task: Get level from pressure where depth appears in turbidity readings with matching depth.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083709 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: reading, unit, level, qc
Sensor: snow_depth | fields: ts, reading, unit, value
Task: Fetch level from air_quality where ts exists in snow_depth sensor data for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083710 | train |
v3 | Sensor network script:
Node: uv_index | code: hub | fields: reading, value, ts, unit
Sensor: soil_moisture | fields: unit, level, lat, value
Task: Fetch reading from uv_index where depth is greater than the total of reading in soil_moisture for matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083711 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: value, type, unit, ts
Sensor: wind_speed | fields: reading, depth, value, lat
Task: Retrieve reading from turbidity whose depth is found in wind_speed records where unit matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083712 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: ts, depth, reading, lon
Sensor: temperature | fields: level, unit, qc, reading
Task: Get reading from dew_point where value exceeds the maximum reading from temperature for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083713 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: unit, type, lat, value
Sensor: rainfall | fields: depth, ts, type, unit
Task: Retrieve lon from drought_index whose qc is found in rainfall records where ts matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083714 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: lat, reading, unit, depth
Sensor: humidity | fields: level, ts, reading, qc
Task: Fetch depth from temperature that have at least one corresponding humidity measurement for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083715 | train |
v1 | Sensor network script:
Node: visibility | code: prt | fields: qc, level, value, depth
Sensor: soil_moisture | fields: unit, depth, level, lat
Task: Retrieve lat from visibility whose depth is found in soil_moisture records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083716 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: type, reading, qc, depth
Sensor: pressure | fields: lat, lon, level, depth
Task: Get level from frost where depth exceeds the average reading from pressure for the same type.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083717 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: lat, type, reading, level
Sensor: soil_moisture | fields: lat, ts, reading, lon
Task: Retrieve value from rainfall that have at least one matching reading in soil_moisture sharing the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083718 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: type, level, reading, value
Sensor: air_quality | fields: depth, type, level, ts
Task: Retrieve lat from uv_index that have at least one matching reading in air_quality sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083719 | train |
v2 | Sensor network script:
Node: frost | code: clr | fields: type, lon, lat, value
Sensor: cloud_cover | fields: qc, value, unit, ts
Task: Retrieve level from frost that have at least one matching reading in cloud_cover sharing the same depth.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083720 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: ts, unit, type, qc
Sensor: turbidity | fields: lat, unit, qc, value
Task: Fetch reading from frost that have at least one corresponding turbidity measurement for the same ts.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083721 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: reading, type, level, lat
Sensor: turbidity | fields: unit, depth, reading, type
Task: Retrieve lon from rainfall with value above the MIN(depth) of turbidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083722 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: lon, reading, qc, value
Sensor: uv_index | fields: qc, level, depth, lat
Task: Get lon from snow_depth where a corresponding entry exists in uv_index with the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083723 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: ts, lat, value, lon
Sensor: sunlight | fields: lon, reading, value, unit
Task: Fetch lat from wind_speed where depth is greater than the minimum of value in sunlight for matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lat",
"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_083724 | train |
v2 | Sensor network script:
Node: visibility | code: clr | fields: value, level, depth, ts
Sensor: air_quality | fields: lon, depth, level, unit
Task: Get level from visibility where a corresponding entry exists in air_quality with the same ts.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083725 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: reading, unit, lat, value
Sensor: rainfall | fields: type, ts, reading, lat
Task: Get lon from soil_moisture where value exceeds the count of value from rainfall for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083726 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: lat, value, type, level
Sensor: snow_depth | fields: unit, lat, reading, qc
Task: Get depth from cloud_cover where qc appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083727 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: depth, level, lat, value
Sensor: uv_index | fields: level, depth, lat, ts
Task: Fetch lon from pressure where depth exists in uv_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083728 | train |
v3 | Sensor network script:
Node: cloud_cover | code: hub | fields: lon, depth, type, lat
Sensor: humidity | fields: lat, reading, type, level
Task: Fetch depth from cloud_cover where value is greater than the maximum of reading in humidity for matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083729 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: qc, ts, level, depth
Sensor: frost | fields: qc, depth, type, unit
Task: Retrieve depth from sunlight that have at least one matching reading in frost sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083730 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: lon, depth, level, ts
Sensor: frost | fields: qc, unit, value, ts
Task: Fetch level from dew_point that have at least one corresponding frost measurement for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083731 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: reading, lon, depth, unit
Sensor: snow_depth | fields: depth, value, lon, reading
Task: Retrieve value from rainfall whose depth is found in snow_depth records where depth matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083732 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: type, level, reading, ts
Sensor: cloud_cover | fields: lat, reading, value, qc
Task: Fetch depth from dew_point where qc exists in cloud_cover sensor data for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083733 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: unit, reading, ts, qc
Sensor: drought_index | fields: type, value, depth, ts
Task: Fetch reading from sunlight where depth is greater than the maximum of value in drought_index for matching unit.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083734 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: unit, value, level, type
Sensor: drought_index | fields: lon, qc, depth, ts
Task: Get depth from visibility where ts appears in drought_index readings with matching qc.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="ts",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083735 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: qc, ts, unit, lat
Sensor: frost | fields: reading, lat, value, type
Task: Fetch reading from turbidity where depth exists in frost sensor data for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="qc",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083736 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: lat, level, unit, value
Sensor: humidity | fields: ts, lon, reading, depth
Task: Fetch value from rainfall where value is greater than the total of depth in humidity for matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083737 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: value, qc, lon, unit
Sensor: pressure | fields: qc, type, lon, ts
Task: Get lon from humidity where type appears in pressure readings with matching unit.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083738 | train |
v2 | Sensor network script:
Node: soil_moisture | code: gst | fields: level, qc, reading, value
Sensor: pressure | fields: reading, lat, level, lon
Task: Get value from soil_moisture where a corresponding entry exists in pressure with the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083739 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: reading, lat, unit, level
Sensor: temperature | fields: unit, lon, level, reading
Task: Retrieve reading from evaporation whose unit is found in temperature records where type matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="unit",
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083740 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: unit, lat, reading, type
Sensor: lightning | fields: level, qc, type, lat
Task: Fetch lon from soil_moisture that have at least one corresponding lightning measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083741 | train |
v2 | Sensor network script:
Node: soil_moisture | code: ref | fields: lat, unit, type, level
Sensor: dew_point | fields: type, reading, level, lat
Task: Fetch reading from soil_moisture that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083742 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: type, value, lat, ts
Sensor: pressure | fields: ts, lon, unit, qc
Task: Get level from lightning where a corresponding entry exists in pressure with the same ts.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083743 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: lon, qc, unit, lat
Sensor: lightning | fields: lat, type, qc, value
Task: Get reading from pressure where value exceeds the total depth from lightning for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083744 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: unit, reading, lon, value
Sensor: turbidity | fields: lon, level, value, lat
Task: Retrieve level from sunlight whose depth is found in turbidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083745 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: reading, lat, depth, value
Sensor: rainfall | fields: lon, depth, type, value
Task: Get depth from frost where reading exceeds the total reading from rainfall for the same depth.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083746 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: type, ts, qc, lat
Sensor: evaporation | fields: lat, ts, qc, depth
Task: Get lon from rainfall where a corresponding entry exists in evaporation with the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083747 | train |
v3 | Sensor network script:
Node: humidity | code: clr | fields: lon, depth, ts, value
Sensor: dew_point | fields: value, level, qc, type
Task: Fetch depth from humidity where reading is greater than the maximum of value in dew_point for matching unit.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083748 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: level, lat, reading, qc
Sensor: humidity | fields: level, lat, unit, lon
Task: Retrieve lon from uv_index that have at least one matching reading in humidity sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083749 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: type, ts, value, unit
Sensor: visibility | fields: reading, depth, unit, value
Task: Retrieve level from frost that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083750 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: ts, lat, qc, lon
Sensor: lightning | fields: type, lon, level, depth
Task: Fetch lon from pressure that have at least one corresponding lightning measurement for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083751 | train |
v1 | Sensor network script:
Node: rainfall | code: prt | fields: lat, lon, depth, ts
Sensor: pressure | fields: depth, ts, lon, qc
Task: Get value from rainfall where qc appears in pressure readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083752 | train |
v1 | Sensor network script:
Node: turbidity | code: clr | fields: unit, qc, level, lon
Sensor: dew_point | fields: reading, value, lon, type
Task: Retrieve depth from turbidity whose unit is found in dew_point records where unit matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083753 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: lon, unit, reading, ts
Sensor: cloud_cover | fields: ts, reading, lon, qc
Task: Fetch lat from frost where ts exists in cloud_cover sensor data for the same ts.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083754 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: level, reading, lon, qc
Sensor: dew_point | fields: depth, level, type, value
Task: Get level from sunlight where a corresponding entry exists in dew_point with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083755 | train |
v2 | Sensor network script:
Node: wind_speed | code: ref | fields: qc, lon, type, ts
Sensor: pressure | fields: type, depth, lat, unit
Task: Retrieve value from wind_speed that have at least one matching reading in pressure sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083756 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: value, qc, depth, unit
Sensor: uv_index | fields: lat, ts, depth, type
Task: Fetch lat from temperature where depth exists in uv_index sensor data for the same type.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="type",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083757 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: unit, qc, type, level
Sensor: pressure | fields: lon, depth, unit, reading
Task: Get lat from visibility where a corresponding entry exists in pressure with the same qc.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083758 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: level, value, ts, qc
Sensor: visibility | fields: level, lon, lat, ts
Task: Retrieve lon from lightning that have at least one matching reading in visibility sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083759 | train |
v3 | Sensor network script:
Node: snow_depth | code: ref | fields: level, type, ts, value
Sensor: pressure | fields: unit, level, lon, ts
Task: Retrieve value from snow_depth with depth above the MIN(reading) of pressure readings sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083760 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: unit, type, qc, value
Sensor: turbidity | fields: value, depth, lon, qc
Task: Get level from uv_index where a corresponding entry exists in turbidity with the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083761 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: unit, qc, lon, ts
Sensor: cloud_cover | fields: level, depth, reading, qc
Task: Get lat from sunlight where type appears in cloud_cover readings with matching type.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083762 | train |
v3 | Sensor network script:
Node: rainfall | code: clr | fields: qc, lon, type, ts
Sensor: wind_speed | fields: level, type, lon, ts
Task: Retrieve level from rainfall with reading above the COUNT(depth) of wind_speed readings sharing the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083763 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: unit, lat, lon, value
Sensor: frost | fields: qc, type, ts, level
Task: Retrieve reading from wind_speed whose type is found in frost records where depth matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083764 | train |
v1 | Sensor network script:
Node: uv_index | code: hub | fields: lon, qc, depth, level
Sensor: evaporation | fields: lat, level, value, ts
Task: Retrieve value from uv_index whose qc is found in evaporation records where type matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083765 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: unit, level, value, reading
Sensor: humidity | fields: lon, depth, ts, qc
Task: Get value from cloud_cover where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083766 | train |
v1 | Sensor network script:
Node: evaporation | code: gst | fields: reading, unit, lon, ts
Sensor: lightning | fields: reading, unit, qc, lon
Task: Retrieve lat from evaporation whose type is found in lightning records where ts matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083767 | train |
v2 | Sensor network script:
Node: visibility | code: ref | fields: value, reading, level, depth
Sensor: uv_index | fields: depth, value, type, qc
Task: Get level from visibility where a corresponding entry exists in uv_index with the same depth.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083768 | train |
v1 | Sensor network script:
Node: cloud_cover | code: prt | fields: level, unit, qc, reading
Sensor: temperature | fields: type, lat, reading, lon
Task: Get level from cloud_cover where ts appears in temperature readings with matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="ts",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083769 | train |
v1 | Sensor network script:
Node: snow_depth | code: thr | fields: ts, reading, type, depth
Sensor: frost | fields: ts, value, type, level
Task: Fetch reading from snow_depth where type exists in frost sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083770 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: qc, value, reading, depth
Sensor: wind_speed | fields: lon, value, ts, unit
Task: Retrieve lat from dew_point whose type is found in wind_speed records where qc matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083771 | train |
v1 | Sensor network script:
Node: frost | code: prt | fields: qc, lat, unit, ts
Sensor: sunlight | fields: ts, type, reading, unit
Task: Get lon from frost where qc appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=set_member(
field="qc",
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": "qc",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083772 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: type, level, qc, value
Sensor: humidity | fields: depth, qc, value, level
Task: Fetch depth from visibility where depth exists in humidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083773 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: lat, qc, value, type
Sensor: drought_index | fields: value, level, qc, ts
Task: Get lat from temperature where type appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083774 | train |
v3 | Sensor network script:
Node: snow_depth | code: ref | fields: level, ts, qc, lon
Sensor: evaporation | fields: level, lon, unit, value
Task: Retrieve lon from snow_depth with value above the COUNT(value) of evaporation readings sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"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_083775 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: depth, ts, reading, type
Sensor: visibility | fields: unit, type, reading, depth
Task: Retrieve lat from temperature whose type is found in visibility records where type matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="type",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083776 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: lat, lon, ts, depth
Sensor: uv_index | fields: lon, value, level, lat
Task: Get level from humidity where ts appears in uv_index readings with matching depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083777 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: level, unit, ts, lon
Sensor: drought_index | fields: level, lon, depth, value
Task: Fetch depth from turbidity where value is greater than the average of reading in drought_index for matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083778 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: lon, reading, depth, type
Sensor: frost | fields: qc, reading, type, lat
Task: Get value from rainfall where unit appears in frost readings with matching depth.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="depth",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083779 | train |
v3 | Sensor network script:
Node: lightning | code: hub | fields: lon, ts, type, unit
Sensor: pressure | fields: lat, qc, type, value
Task: Get lon from lightning where reading exceeds the average value from pressure for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083780 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: ts, value, lon, reading
Sensor: cloud_cover | fields: level, unit, reading, value
Task: Retrieve reading from uv_index with depth above the SUM(value) of cloud_cover readings sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083781 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: lat, qc, type, ts
Sensor: frost | fields: type, unit, level, lat
Task: Retrieve level from rainfall whose depth is found in frost records where type matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="type",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083782 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: lon, unit, type, qc
Sensor: drought_index | fields: value, unit, type, lon
Task: Retrieve level from temperature with depth above the COUNT(reading) of drought_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083783 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: lon, qc, level, type
Sensor: visibility | fields: ts, type, level, unit
Task: Get value from turbidity where depth appears in visibility readings with matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="ts",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083784 | train |
v1 | Sensor network script:
Node: snow_depth | code: ref | fields: depth, lat, reading, level
Sensor: wind_speed | fields: lon, value, type, reading
Task: Fetch value from snow_depth where unit exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083785 | train |
v2 | Sensor network script:
Node: temperature | code: mst | fields: lon, reading, depth, level
Sensor: sunlight | fields: lon, ts, level, unit
Task: Retrieve reading from temperature that have at least one matching reading in sunlight sharing the same qc.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083786 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: level, reading, depth, type
Sensor: drought_index | fields: qc, depth, lon, lat
Task: Retrieve lon from cloud_cover whose unit is found in drought_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083787 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: reading, unit, depth, lon
Sensor: humidity | fields: type, value, lat, qc
Task: Retrieve reading from dew_point whose depth is found in humidity records where unit matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083788 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: lat, value, reading, qc
Sensor: sunlight | fields: unit, ts, type, lat
Task: Get reading from lightning where qc appears in sunlight readings with matching ts.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083789 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: unit, level, lon, qc
Sensor: visibility | fields: reading, qc, level, lon
Task: Retrieve depth from turbidity whose type is found in visibility records where ts matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="ts",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083790 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: qc, reading, ts, value
Sensor: temperature | fields: ts, qc, unit, reading
Task: Retrieve depth from sunlight with depth above the MAX(value) of temperature readings sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083791 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: lon, value, level, qc
Sensor: cloud_cover | fields: ts, reading, qc, level
Task: Retrieve level from evaporation whose unit is found in cloud_cover records where unit matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083792 | train |
v1 | Sensor network script:
Node: humidity | code: prt | fields: lon, level, depth, qc
Sensor: lightning | fields: value, level, lon, lat
Task: Get value from humidity where depth appears in lightning readings with matching qc.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083793 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: lon, level, depth, lat
Sensor: dew_point | fields: lon, type, reading, level
Task: Fetch reading from pressure where depth exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083794 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: level, unit, value, reading
Sensor: uv_index | fields: value, ts, depth, level
Task: Fetch lat from cloud_cover where depth exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083795 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: unit, lon, reading, level
Sensor: cloud_cover | fields: value, level, lat, type
Task: Retrieve value from pressure with reading above the AVG(value) of cloud_cover readings sharing the same ts.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083796 | train |
v3 | Sensor network script:
Node: dew_point | code: gst | fields: type, lat, level, depth
Sensor: sunlight | fields: lat, depth, type, ts
Task: Fetch depth from dew_point where depth is greater than the maximum of depth in sunlight for matching ts.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083797 | train |
v3 | Sensor network script:
Node: cloud_cover | code: stn | fields: type, lon, reading, level
Sensor: wind_speed | fields: reading, qc, type, unit
Task: Fetch lon from cloud_cover where depth is greater than the average of value in wind_speed for matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_083798 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: value, reading, type, lat
Sensor: sunlight | fields: value, level, qc, lat
Task: Retrieve lon from wind_speed with value above the MIN(depth) of sunlight readings sharing the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_083799 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.