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: snow_depth | code: gst | fields: ts, unit, lon, type
Sensor: lightning | fields: reading, lat, qc, unit
Task: Fetch value from snow_depth that have at least one corresponding lightning measurement for the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069100 | train |
v3 | Sensor network script:
Node: frost | code: hub | fields: lon, depth, value, reading
Sensor: uv_index | fields: lon, type, lat, level
Task: Retrieve lon from frost with depth above the AVG(reading) of uv_index readings sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069101 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: level, unit, qc, lon
Sensor: cloud_cover | fields: qc, level, depth, value
Task: Retrieve reading from uv_index whose type is found in cloud_cover records where unit matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069102 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: lon, qc, level, unit
Sensor: pressure | fields: level, ts, lat, reading
Task: Get reading from dew_point where value exceeds the total value from pressure for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069103 | train |
v3 | Sensor network script:
Node: visibility | code: stn | fields: ts, value, lon, qc
Sensor: turbidity | fields: lon, type, unit, depth
Task: Fetch level from visibility where reading is greater than the maximum of value in turbidity for matching type.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069104 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: level, unit, value, lon
Sensor: drought_index | fields: level, qc, depth, value
Task: Get reading from humidity where qc appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069105 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: ts, level, depth, qc
Sensor: rainfall | fields: unit, lat, type, depth
Task: Get lat from humidity where qc appears in rainfall readings with matching depth.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069106 | train |
v3 | Sensor network script:
Node: visibility | code: gst | fields: unit, level, depth, type
Sensor: turbidity | fields: value, type, lon, depth
Task: Get level from visibility where depth exceeds the maximum value from turbidity for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069107 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: unit, type, qc, reading
Sensor: soil_moisture | fields: unit, depth, reading, ts
Task: Retrieve lon from sunlight whose qc is found in soil_moisture records where ts matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069108 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: qc, level, depth, reading
Sensor: wind_speed | fields: value, qc, lat, unit
Task: Retrieve level from cloud_cover whose type is found in wind_speed records where depth matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069109 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: value, qc, level, ts
Sensor: wind_speed | fields: level, unit, lat, lon
Task: Fetch depth from evaporation where type exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069110 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: unit, qc, ts, lon
Sensor: snow_depth | fields: reading, level, lat, unit
Task: Fetch level from visibility that have at least one corresponding snow_depth measurement for the same type.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069111 | train |
v1 | Sensor network script:
Node: temperature | code: clr | fields: depth, qc, value, level
Sensor: soil_moisture | fields: lon, unit, value, level
Task: Retrieve value from temperature whose qc is found in soil_moisture records where ts matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069112 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: depth, unit, lat, type
Sensor: wind_speed | fields: type, reading, lat, level
Task: Retrieve depth from soil_moisture that have at least one matching reading in wind_speed sharing the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069113 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: depth, type, qc, level
Sensor: temperature | fields: lon, value, depth, reading
Task: Get level from sunlight where reading exceeds the count of reading from temperature for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069114 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: level, unit, lon, lat
Sensor: wind_speed | fields: qc, level, unit, depth
Task: Get depth from dew_point where a corresponding entry exists in wind_speed with the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="depth",
) | {
"outer_table": "dew_point",
"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_069115 | train |
v3 | Sensor network script:
Node: turbidity | code: clr | fields: ts, lat, unit, lon
Sensor: soil_moisture | fields: lat, depth, lon, level
Task: Retrieve lon from turbidity with reading above the SUM(value) of soil_moisture readings sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069116 | train |
v2 | Sensor network script:
Node: evaporation | code: gst | fields: lat, lon, reading, value
Sensor: soil_moisture | fields: lon, level, lat, value
Task: Retrieve reading from evaporation that have at least one matching reading in soil_moisture sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069117 | train |
v1 | Sensor network script:
Node: humidity | code: prt | fields: lon, level, type, qc
Sensor: sunlight | fields: type, depth, ts, unit
Task: Get lon from humidity where depth appears in sunlight readings with matching depth.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069118 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: lat, level, value, depth
Sensor: visibility | fields: lat, ts, depth, qc
Task: Get lon from lightning where type appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069119 | train |
v2 | Sensor network script:
Node: wind_speed | code: thr | fields: lat, ts, depth, reading
Sensor: rainfall | fields: reading, depth, level, ts
Task: Fetch level from wind_speed that have at least one corresponding rainfall measurement for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069120 | train |
v2 | Sensor network script:
Node: lightning | code: clr | fields: reading, value, lon, level
Sensor: frost | fields: lon, lat, depth, type
Task: Retrieve depth from lightning that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069121 | train |
v3 | Sensor network script:
Node: turbidity | code: thr | fields: reading, ts, lat, level
Sensor: humidity | fields: reading, value, depth, qc
Task: Retrieve value from turbidity with value above the SUM(depth) of humidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "value",
"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_069122 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: lon, type, value, lat
Sensor: air_quality | fields: level, type, qc, depth
Task: Get value from drought_index where a corresponding entry exists in air_quality with the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069123 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: reading, depth, type, lat
Sensor: rainfall | fields: unit, qc, depth, lon
Task: Fetch reading from pressure that have at least one corresponding rainfall measurement for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069124 | train |
v1 | Sensor network script:
Node: pressure | code: ref | fields: lon, lat, unit, qc
Sensor: lightning | fields: unit, type, reading, qc
Task: Retrieve depth from pressure whose ts is found in lightning records where depth matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069125 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: qc, ts, level, type
Sensor: dew_point | fields: type, value, unit, qc
Task: Get value from sunlight where a corresponding entry exists in dew_point with the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069126 | train |
v2 | Sensor network script:
Node: dew_point | code: ref | fields: value, reading, ts, depth
Sensor: turbidity | fields: depth, unit, reading, lon
Task: Get level from dew_point where a corresponding entry exists in turbidity with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069127 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: level, type, qc, lon
Sensor: wind_speed | fields: lon, lat, qc, depth
Task: Fetch lon from cloud_cover where value is greater than the total of value in wind_speed for matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069128 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: depth, lon, reading, ts
Sensor: drought_index | fields: depth, value, lon, ts
Task: Get reading from wind_speed where depth exceeds the total value from drought_index for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069129 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: lat, qc, depth, ts
Sensor: snow_depth | fields: qc, level, value, reading
Task: Get level from air_quality where reading exceeds the count of value from snow_depth for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069130 | train |
v3 | Sensor network script:
Node: cloud_cover | code: hub | fields: qc, unit, depth, level
Sensor: wind_speed | fields: depth, value, lon, ts
Task: Get lat from cloud_cover where reading exceeds the minimum reading from wind_speed for the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069131 | train |
v1 | Sensor network script:
Node: uv_index | code: hub | fields: type, lon, reading, level
Sensor: turbidity | fields: value, depth, reading, lat
Task: Get lat from uv_index where depth appears in turbidity readings with matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069132 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: type, reading, lat, qc
Sensor: dew_point | fields: depth, value, level, qc
Task: Fetch lon from rainfall that have at least one corresponding dew_point measurement for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069133 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: level, lon, lat, value
Sensor: uv_index | fields: lon, qc, ts, unit
Task: Fetch depth from cloud_cover where value is greater than the maximum of value in uv_index for matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("uv_index", code="flx"),
match="ts"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069134 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: value, type, ts, unit
Sensor: cloud_cover | fields: depth, qc, unit, lat
Task: Fetch level from evaporation that have at least one corresponding cloud_cover measurement for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069135 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: reading, type, ts, level
Sensor: evaporation | fields: qc, lon, lat, depth
Task: Retrieve lon from turbidity whose type is found in evaporation records where unit matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069136 | train |
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: reading, qc, depth, unit
Sensor: lightning | fields: value, reading, unit, depth
Task: Retrieve depth from wind_speed with depth above the COUNT(value) of lightning readings sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069137 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: ts, qc, type, value
Sensor: air_quality | fields: unit, depth, ts, lat
Task: Retrieve value from humidity that have at least one matching reading in air_quality sharing the same qc.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069138 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: ts, qc, depth, unit
Sensor: soil_moisture | fields: level, depth, type, reading
Task: Fetch lon from wind_speed that have at least one corresponding soil_moisture measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069139 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: value, qc, depth, ts
Sensor: rainfall | fields: value, lon, lat, depth
Task: Retrieve level from pressure that have at least one matching reading in rainfall sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069140 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: depth, level, lat, value
Sensor: drought_index | fields: depth, ts, value, level
Task: Retrieve lon from uv_index whose qc is found in drought_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069141 | train |
v3 | Sensor network script:
Node: evaporation | code: mst | fields: reading, unit, qc, lat
Sensor: air_quality | fields: reading, qc, lon, unit
Task: Get lat from evaporation where reading exceeds the minimum depth from air_quality for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069142 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: level, depth, qc, ts
Sensor: rainfall | fields: unit, lon, qc, depth
Task: Fetch depth from visibility where ts exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069143 | train |
v3 | Sensor network script:
Node: uv_index | code: stn | fields: type, level, value, unit
Sensor: visibility | fields: depth, reading, lat, lon
Task: Fetch depth from uv_index where value is greater than the average of value in visibility for matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("visibility", code="clr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069144 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: level, ts, lat, reading
Sensor: wind_speed | fields: unit, lat, type, value
Task: Retrieve lat from humidity with reading above the SUM(reading) of wind_speed readings sharing the same depth.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069145 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: level, value, lon, reading
Sensor: wind_speed | fields: value, depth, unit, ts
Task: Get value from air_quality where depth exceeds the count of reading from wind_speed for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069146 | train |
v3 | Sensor network script:
Node: frost | code: ref | fields: level, ts, type, depth
Sensor: snow_depth | fields: type, lon, unit, value
Task: Fetch lat from frost where value is greater than the average of value in snow_depth for matching unit.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069147 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: reading, lon, value, depth
Sensor: lightning | fields: lat, depth, reading, value
Task: Fetch reading from pressure that have at least one corresponding lightning measurement for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069148 | train |
v2 | Sensor network script:
Node: temperature | code: stn | fields: reading, lat, lon, unit
Sensor: wind_speed | fields: depth, reading, unit, lon
Task: Fetch lat from temperature that have at least one corresponding wind_speed measurement for the same type.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069149 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: reading, lon, unit, depth
Sensor: lightning | fields: type, depth, value, reading
Task: Retrieve depth from snow_depth whose unit is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069150 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: lat, qc, value, ts
Sensor: uv_index | fields: type, ts, unit, reading
Task: Fetch lat from rainfall where reading is greater than the minimum of depth in uv_index for matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069151 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: level, lon, lat, ts
Sensor: cloud_cover | fields: lat, value, unit, lon
Task: Fetch depth from dew_point where type exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069152 | train |
v3 | Sensor network script:
Node: cloud_cover | code: hub | fields: unit, value, lat, ts
Sensor: sunlight | fields: lon, depth, unit, ts
Task: Fetch level from cloud_cover where value is greater than the maximum of reading in sunlight for matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "level",
"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_069153 | train |
v3 | Sensor network script:
Node: uv_index | code: prt | fields: unit, value, level, lat
Sensor: temperature | fields: value, level, reading, ts
Task: Retrieve value from uv_index with depth above the COUNT(depth) of temperature readings sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("temperature", code="thr"),
match="qc"),
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069154 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: level, lat, unit, reading
Sensor: cloud_cover | fields: lat, depth, value, lon
Task: Get reading from turbidity where unit appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069155 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: lon, unit, ts, value
Sensor: rainfall | fields: type, unit, qc, ts
Task: Fetch level from cloud_cover where reading is greater than the count of of value in rainfall for matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069156 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: qc, value, ts, lon
Sensor: dew_point | fields: type, level, lat, value
Task: Get depth from frost where type appears in dew_point readings with matching type.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069157 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: ts, type, value, depth
Sensor: cloud_cover | fields: depth, ts, lat, value
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_069158 | train |
v1 | Sensor network script:
Node: visibility | code: gst | fields: reading, value, ts, level
Sensor: frost | fields: reading, lat, qc, value
Task: Fetch lon from visibility where qc exists in frost sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="qc",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069159 | train |
v3 | Sensor network script:
Node: evaporation | code: mst | fields: qc, depth, value, type
Sensor: temperature | fields: lat, type, lon, depth
Task: Fetch depth from evaporation where reading is greater than the average of value in temperature for matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069160 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: lat, reading, type, lon
Sensor: drought_index | fields: reading, value, type, ts
Task: Get lon from frost where reading exceeds the total value from drought_index for the same qc.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069161 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: ts, depth, reading, type
Sensor: pressure | fields: ts, value, level, depth
Task: Get reading from evaporation where depth exceeds the average depth from pressure for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069162 | train |
v3 | Sensor network script:
Node: cloud_cover | code: stn | fields: lon, value, ts, lat
Sensor: visibility | fields: lat, unit, lon, qc
Task: Fetch lon from cloud_cover where value is greater than the maximum of reading in visibility for matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069163 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: ts, depth, lat, value
Sensor: evaporation | fields: lon, reading, ts, qc
Task: Get lon from rainfall where depth appears in evaporation readings with matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069164 | train |
v2 | Sensor network script:
Node: drought_index | code: hub | fields: qc, depth, type, unit
Sensor: snow_depth | fields: value, unit, level, lon
Task: Get value from drought_index where a corresponding entry exists in snow_depth with the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069165 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: unit, lat, qc, lon
Sensor: cloud_cover | fields: lon, level, value, lat
Task: Get lat from evaporation where unit appears in cloud_cover readings with matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069166 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: depth, type, value, lat
Sensor: wind_speed | fields: type, reading, ts, qc
Task: Get lon from air_quality where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069167 | train |
v2 | Sensor network script:
Node: lightning | code: ref | fields: level, lon, depth, ts
Sensor: visibility | fields: depth, qc, ts, lon
Task: Fetch level from lightning that have at least one corresponding visibility measurement for the same type.
Script: | readings = fetch(
node=Node("lightning", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069168 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: unit, lon, reading, depth
Sensor: temperature | fields: ts, value, unit, depth
Task: Get reading from cloud_cover where a corresponding entry exists in temperature with the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069169 | train |
v2 | Sensor network script:
Node: wind_speed | code: thr | fields: qc, reading, lon, depth
Sensor: lightning | fields: type, reading, depth, level
Task: Fetch level from wind_speed that have at least one corresponding lightning measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069170 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: lon, unit, level, type
Sensor: visibility | fields: depth, type, value, lat
Task: Retrieve lat from soil_moisture that have at least one matching reading in visibility sharing the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069171 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: level, lon, ts, unit
Sensor: rainfall | fields: type, level, lat, reading
Task: Retrieve reading from dew_point that have at least one matching reading in rainfall sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069172 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: lat, level, reading, ts
Sensor: sunlight | fields: reading, level, ts, lon
Task: Get lon from frost where value exceeds the count of depth from sunlight for the same depth.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069173 | train |
v3 | Sensor network script:
Node: evaporation | code: clr | fields: unit, ts, type, depth
Sensor: frost | fields: lat, lon, ts, level
Task: Get value from evaporation where depth exceeds the total reading from frost for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("frost", code="frs"),
match="depth"),
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069174 | train |
v2 | Sensor network script:
Node: evaporation | code: thr | fields: type, level, lon, unit
Sensor: humidity | fields: reading, qc, depth, ts
Task: Fetch value from evaporation that have at least one corresponding humidity measurement for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069175 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: lat, lon, qc, value
Sensor: sunlight | fields: value, reading, unit, qc
Task: Retrieve level from visibility with value above the MAX(value) of sunlight readings sharing the same type.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069176 | train |
v3 | Sensor network script:
Node: lightning | code: gst | fields: qc, ts, lon, type
Sensor: frost | fields: qc, type, unit, level
Task: Get depth from lightning where depth exceeds the count of value from frost for the same type.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("frost", code="frs"),
match="type"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069177 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: lat, type, value, ts
Sensor: sunlight | fields: value, level, lon, depth
Task: Retrieve lat from dew_point that have at least one matching reading in sunlight sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069178 | train |
v1 | Sensor network script:
Node: air_quality | code: mst | fields: lat, reading, value, lon
Sensor: visibility | fields: value, type, qc, lat
Task: Get value from air_quality where unit appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="qc",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069179 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: reading, type, lat, qc
Sensor: pressure | fields: unit, level, reading, lat
Task: Get lon from uv_index where reading exceeds the minimum reading from pressure for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069180 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: lon, qc, type, unit
Sensor: frost | fields: depth, lat, level, ts
Task: Retrieve depth from wind_speed that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069181 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: lon, reading, type, depth
Sensor: rainfall | fields: qc, lon, lat, type
Task: Retrieve depth from sunlight that have at least one matching reading in rainfall sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069182 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: lon, level, qc, type
Sensor: evaporation | fields: type, qc, unit, ts
Task: Retrieve level from temperature with value above the COUNT(value) of evaporation readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069183 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: reading, unit, lon, qc
Sensor: frost | fields: value, ts, level, lat
Task: Fetch lon from drought_index that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069184 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: type, ts, reading, unit
Sensor: rainfall | fields: qc, depth, unit, lat
Task: Fetch lat from dew_point where qc exists in rainfall sensor data for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069185 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: type, ts, value, level
Sensor: drought_index | fields: value, qc, depth, lon
Task: Get value from air_quality where a corresponding entry exists in drought_index with the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069186 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: value, ts, qc, depth
Sensor: evaporation | fields: lat, unit, depth, lon
Task: Retrieve lon from dew_point whose type is found in evaporation records where qc matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069187 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: reading, lon, unit, type
Sensor: air_quality | fields: lon, level, depth, qc
Task: Retrieve value from pressure whose qc is found in air_quality records where ts matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069188 | train |
v3 | Sensor network script:
Node: frost | code: prt | fields: ts, qc, unit, lat
Sensor: dew_point | fields: unit, lat, level, ts
Task: Get lon from frost where depth exceeds the total depth from dew_point for the same qc.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069189 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: depth, type, lon, qc
Sensor: turbidity | fields: reading, value, type, ts
Task: Get lat from evaporation where depth appears in turbidity readings with matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069190 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: type, value, depth, qc
Sensor: temperature | fields: reading, unit, ts, level
Task: Fetch level from uv_index where value is greater than the total of reading in temperature for matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069191 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: qc, unit, lat, reading
Sensor: pressure | fields: qc, level, lat, value
Task: Retrieve reading from air_quality whose type is found in pressure records where qc matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069192 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: qc, lat, value, depth
Sensor: rainfall | fields: ts, unit, qc, level
Task: Get lon from air_quality where type appears in rainfall readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069193 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: reading, qc, lon, lat
Sensor: humidity | fields: lat, reading, qc, type
Task: Get lat from sunlight where depth exceeds the minimum depth from humidity for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069194 | train |
v1 | Sensor network script:
Node: soil_moisture | code: gst | fields: depth, lat, lon, value
Sensor: turbidity | fields: lat, lon, unit, qc
Task: Fetch lat from soil_moisture where type exists in turbidity sensor data for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069195 | train |
v2 | Sensor network script:
Node: visibility | code: hub | fields: qc, level, lon, ts
Sensor: pressure | fields: qc, lat, value, lon
Task: Fetch lon from visibility that have at least one corresponding pressure measurement for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069196 | train |
v1 | Sensor network script:
Node: pressure | code: hub | fields: qc, lon, unit, value
Sensor: temperature | fields: lon, level, lat, reading
Task: Get lon from pressure where qc appears in temperature readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="type",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_069197 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: reading, type, depth, value
Sensor: dew_point | fields: reading, lat, qc, value
Task: Get lon from temperature where value exceeds the maximum value from dew_point for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069198 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: depth, reading, type, qc
Sensor: evaporation | fields: depth, lon, type, qc
Task: Get value from temperature where a corresponding entry exists in evaporation with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_069199 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.