variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v3 | Sensor network script:
Node: temperature | code: clr | fields: lat, lon, depth, value
Sensor: rainfall | fields: type, lat, lon, ts
Task: Retrieve depth from temperature with depth above the COUNT(depth) of rainfall readings sharing the same unit.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064300 | train |
v2 | Sensor network script:
Node: snow_depth | code: ref | fields: reading, lon, level, lat
Sensor: soil_moisture | fields: lat, level, qc, value
Task: Fetch depth from snow_depth that have at least one corresponding soil_moisture measurement for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064301 | train |
v3 | Sensor network script:
Node: uv_index | code: clr | fields: type, level, ts, lon
Sensor: frost | fields: reading, depth, lon, qc
Task: Retrieve lon from uv_index with reading above the COUNT(depth) of frost readings sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("frost", code="frs"),
match="ts"),
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064302 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: level, lat, reading, depth
Sensor: frost | fields: reading, qc, value, unit
Task: Fetch level from soil_moisture where reading is greater than the average of reading in frost for matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("frost", code="frs"),
match="ts"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064303 | train |
v2 | Sensor network script:
Node: dew_point | code: ref | fields: qc, level, ts, lat
Sensor: snow_depth | fields: depth, qc, ts, reading
Task: Retrieve depth from dew_point that have at least one matching reading in snow_depth sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064304 | train |
v2 | Sensor network script:
Node: drought_index | code: gst | fields: unit, depth, lat, qc
Sensor: snow_depth | fields: lon, qc, ts, level
Task: Get level from drought_index where a corresponding entry exists in snow_depth with the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064305 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: value, reading, depth, unit
Sensor: turbidity | fields: value, lon, qc, reading
Task: Fetch depth from cloud_cover that have at least one corresponding turbidity measurement for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064306 | train |
v2 | Sensor network script:
Node: drought_index | code: gst | fields: lat, level, lon, unit
Sensor: cloud_cover | fields: lon, qc, type, level
Task: Get depth from drought_index where a corresponding entry exists in cloud_cover with the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064307 | train |
v2 | Sensor network script:
Node: snow_depth | code: hub | fields: unit, type, lat, qc
Sensor: frost | fields: reading, lon, value, lat
Task: Retrieve value from snow_depth that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064308 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: unit, level, qc, lon
Sensor: visibility | fields: unit, reading, depth, ts
Task: Retrieve lon from snow_depth with value above the MAX(value) of visibility readings sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("visibility", code="clr"),
match="type"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064309 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: unit, value, lat, type
Sensor: turbidity | fields: type, ts, reading, lat
Task: Fetch lat from uv_index where depth is greater than the total of depth in turbidity for matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064310 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: lon, reading, depth, lat
Sensor: frost | fields: reading, lat, ts, qc
Task: Retrieve lat from visibility with value above the SUM(reading) of frost readings sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("frost", code="frs"),
match="unit"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064311 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: reading, type, value, unit
Sensor: pressure | fields: level, reading, unit, lon
Task: Fetch value from dew_point that have at least one corresponding pressure measurement for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064312 | train |
v3 | Sensor network script:
Node: temperature | code: thr | fields: qc, lon, reading, ts
Sensor: wind_speed | fields: depth, ts, value, lon
Task: Retrieve depth from temperature with depth above the MAX(depth) of wind_speed readings sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064313 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: unit, reading, qc, type
Sensor: dew_point | fields: lon, qc, depth, type
Task: Retrieve reading from visibility whose ts is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064314 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: lat, lon, type, value
Sensor: visibility | fields: depth, ts, value, qc
Task: Fetch depth from drought_index where ts exists in visibility sensor data for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="depth",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064315 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: lon, type, lat, unit
Sensor: turbidity | fields: lat, qc, level, reading
Task: Fetch depth from wind_speed that have at least one corresponding turbidity measurement for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064316 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: reading, type, level, unit
Sensor: humidity | fields: qc, unit, reading, level
Task: Retrieve value from dew_point that have at least one matching reading in humidity sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064317 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: depth, value, reading, unit
Sensor: humidity | fields: lat, reading, value, lon
Task: Retrieve level from pressure that have at least one matching reading in humidity sharing the same ts.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064318 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: unit, level, ts, lat
Sensor: wind_speed | fields: ts, depth, type, reading
Task: Fetch level from humidity where unit exists in wind_speed sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064319 | train |
v2 | Sensor network script:
Node: sunlight | code: thr | fields: lon, lat, unit, reading
Sensor: wind_speed | fields: lat, ts, unit, qc
Task: Retrieve lat from sunlight that have at least one matching reading in wind_speed sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064320 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: ts, depth, unit, value
Sensor: frost | fields: unit, level, type, depth
Task: Fetch lon from snow_depth that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064321 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: lat, reading, unit, ts
Sensor: frost | fields: reading, qc, level, lat
Task: Retrieve reading from rainfall that have at least one matching reading in frost sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064322 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: value, type, ts, depth
Sensor: air_quality | fields: value, level, lat, lon
Task: Get level from cloud_cover where depth appears in air_quality readings with matching unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064323 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: qc, depth, reading, unit
Sensor: temperature | fields: unit, ts, reading, level
Task: Get reading from uv_index where type appears in temperature readings with matching type.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064324 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: value, level, reading, qc
Sensor: drought_index | fields: ts, level, lat, lon
Task: Fetch value from dew_point that have at least one corresponding drought_index measurement for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064325 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: qc, lon, level, lat
Sensor: visibility | fields: lat, depth, type, lon
Task: Retrieve value from soil_moisture that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064326 | train |
v1 | Sensor network script:
Node: pressure | code: ref | fields: depth, lon, value, type
Sensor: sunlight | fields: reading, value, lat, type
Task: Fetch lon from pressure where unit exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064327 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: type, level, depth, qc
Sensor: lightning | fields: level, type, reading, ts
Task: Get reading from humidity where depth appears in lightning readings with matching unit.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064328 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: ts, qc, lat, unit
Sensor: frost | fields: depth, lat, reading, qc
Task: Fetch value from wind_speed where value is greater than the maximum of depth in frost for matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("frost", code="frs"),
match="ts"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064329 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: type, qc, level, unit
Sensor: sunlight | fields: level, reading, depth, lat
Task: Retrieve value from frost with depth above the MAX(reading) of sunlight readings sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064330 | train |
v2 | Sensor network script:
Node: visibility | code: ref | fields: value, lon, unit, depth
Sensor: sunlight | fields: lat, type, level, ts
Task: Fetch reading from visibility that have at least one corresponding sunlight measurement for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064331 | train |
v2 | Sensor network script:
Node: temperature | code: prt | fields: value, type, unit, qc
Sensor: snow_depth | fields: qc, level, reading, depth
Task: Get lat from temperature where a corresponding entry exists in snow_depth with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064332 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: value, qc, lat, unit
Sensor: evaporation | fields: ts, qc, lon, reading
Task: Get reading from rainfall where value exceeds the maximum value from evaporation for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064333 | train |
v3 | Sensor network script:
Node: lightning | code: gst | fields: level, unit, lat, ts
Sensor: pressure | fields: unit, lat, type, ts
Task: Get lat from lightning where reading exceeds the maximum reading from pressure for the same qc.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064334 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: unit, lon, qc, reading
Sensor: temperature | fields: depth, type, ts, unit
Task: Retrieve lat from uv_index whose depth is found in temperature records where type matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="type",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064335 | train |
v3 | Sensor network script:
Node: turbidity | code: ref | fields: level, value, type, reading
Sensor: drought_index | fields: value, lon, ts, depth
Task: Retrieve depth from turbidity with depth above the SUM(depth) of drought_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064336 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: type, lon, unit, ts
Sensor: rainfall | fields: type, lat, value, unit
Task: Fetch lon from cloud_cover where reading is greater than the average of value in rainfall for matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064337 | train |
v2 | Sensor network script:
Node: wind_speed | code: stn | fields: reading, value, level, lat
Sensor: temperature | fields: qc, ts, lon, type
Task: Get lat from wind_speed where a corresponding entry exists in temperature with the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064338 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: depth, ts, reading, type
Sensor: drought_index | fields: level, reading, lat, ts
Task: Retrieve value from wind_speed whose qc is found in drought_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064339 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: lon, qc, unit, level
Sensor: dew_point | fields: qc, value, lat, level
Task: Get level from drought_index where reading exceeds the minimum depth from dew_point for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064340 | train |
v3 | Sensor network script:
Node: drought_index | code: mst | fields: reading, ts, lon, value
Sensor: humidity | fields: qc, value, reading, unit
Task: Retrieve lon from drought_index with reading above the MIN(value) of humidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064341 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: value, ts, reading, type
Sensor: frost | fields: reading, qc, value, type
Task: Retrieve lat from uv_index that have at least one matching reading in frost sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064342 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: depth, reading, type, ts
Sensor: frost | fields: lat, reading, lon, qc
Task: Retrieve reading from turbidity that have at least one matching reading in frost sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064343 | train |
v1 | Sensor network script:
Node: frost | code: prt | fields: type, qc, ts, value
Sensor: cloud_cover | fields: ts, value, unit, type
Task: Retrieve depth from frost whose ts is found in cloud_cover records where ts matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064344 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: lat, lon, unit, depth
Sensor: drought_index | fields: reading, lon, unit, depth
Task: Retrieve lat from air_quality that have at least one matching reading in drought_index sharing the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064345 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: ts, level, type, reading
Sensor: pressure | fields: unit, ts, reading, value
Task: Get lat from turbidity where ts appears in pressure readings with matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064346 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: qc, type, value, lon
Sensor: temperature | fields: lon, qc, reading, ts
Task: Retrieve value from snow_depth that have at least one matching reading in temperature sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064347 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: lat, lon, qc, reading
Sensor: dew_point | fields: depth, level, lon, value
Task: Get level from snow_depth where unit appears in dew_point readings with matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064348 | train |
v1 | Sensor network script:
Node: pressure | code: ref | fields: level, type, ts, lon
Sensor: evaporation | fields: reading, lon, lat, level
Task: Get value from pressure where qc appears in evaporation readings with matching unit.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064349 | train |
v1 | Sensor network script:
Node: cloud_cover | code: mst | fields: reading, level, ts, type
Sensor: temperature | fields: value, lat, ts, reading
Task: Retrieve level from cloud_cover whose depth is found in temperature records where depth matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064350 | train |
v3 | Sensor network script:
Node: wind_speed | code: ref | fields: reading, qc, level, lon
Sensor: temperature | fields: lon, value, type, level
Task: Retrieve lon from wind_speed with reading above the MIN(depth) of temperature readings sharing the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("temperature", code="thr"),
match="type"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064351 | train |
v2 | Sensor network script:
Node: temperature | code: prt | fields: unit, depth, value, level
Sensor: wind_speed | fields: level, unit, lon, reading
Task: Retrieve value from temperature that have at least one matching reading in wind_speed sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064352 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: reading, depth, value, type
Sensor: dew_point | fields: reading, qc, unit, type
Task: Fetch lon from air_quality where depth is greater than the maximum of reading in dew_point for matching type.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064353 | train |
v3 | Sensor network script:
Node: pressure | code: ref | fields: level, reading, unit, lat
Sensor: lightning | fields: unit, depth, type, lon
Task: Get reading from pressure where value exceeds the total value from lightning for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064354 | train |
v1 | Sensor network script:
Node: drought_index | code: hub | fields: ts, qc, lon, depth
Sensor: rainfall | fields: reading, lon, depth, qc
Task: Retrieve lon from drought_index whose depth is found in rainfall records where type matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064355 | train |
v1 | Sensor network script:
Node: humidity | code: hub | fields: lon, value, reading, type
Sensor: visibility | fields: qc, reading, level, lat
Task: Fetch lon from humidity where type exists in visibility sensor data for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="ts",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064356 | train |
v1 | Sensor network script:
Node: soil_moisture | code: thr | fields: reading, qc, value, lat
Sensor: dew_point | fields: qc, level, lat, value
Task: Get reading from soil_moisture where unit appears in dew_point readings with matching depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064357 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: reading, depth, type, unit
Sensor: visibility | fields: lon, unit, type, value
Task: Fetch lat from evaporation where ts exists in visibility sensor data for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064358 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: value, reading, lat, ts
Sensor: air_quality | fields: qc, lat, level, unit
Task: Fetch value from frost where depth exists in air_quality sensor data for the same depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064359 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: unit, lat, type, ts
Sensor: evaporation | fields: ts, level, lon, depth
Task: Fetch lat from pressure where depth is greater than the minimum of depth in evaporation for matching qc.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064360 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: level, reading, type, ts
Sensor: turbidity | fields: lat, qc, ts, level
Task: Get depth from dew_point where ts appears in turbidity readings with matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064361 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: ts, value, lat, type
Sensor: pressure | fields: depth, ts, qc, unit
Task: Retrieve lat from humidity whose depth is found in pressure records where ts matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064362 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: ts, lat, reading, level
Sensor: lightning | fields: type, lat, lon, reading
Task: Retrieve level from temperature whose unit is found in lightning records where ts matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064363 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: lat, value, reading, lon
Sensor: uv_index | fields: unit, depth, lon, reading
Task: Retrieve lat from turbidity that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064364 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: type, depth, ts, lon
Sensor: snow_depth | fields: type, lat, qc, unit
Task: Fetch lat from humidity where reading is greater than the count of of depth in snow_depth for matching qc.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064365 | train |
v3 | Sensor network script:
Node: turbidity | code: mst | fields: unit, ts, type, qc
Sensor: drought_index | fields: lat, unit, lon, type
Task: Retrieve lon from turbidity with depth above the COUNT(reading) of drought_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064366 | train |
v3 | Sensor network script:
Node: evaporation | code: ref | fields: reading, qc, unit, type
Sensor: temperature | fields: reading, ts, level, qc
Task: Fetch lon from evaporation where value is greater than the maximum of depth in temperature for matching type.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("temperature", code="thr"),
match="type"),
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064367 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: qc, lat, depth, level
Sensor: pressure | fields: lon, value, reading, level
Task: Retrieve lon from uv_index whose qc is found in pressure records where ts matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064368 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: unit, ts, qc, depth
Sensor: air_quality | fields: lat, reading, depth, level
Task: Get value from sunlight where a corresponding entry exists in air_quality with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"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_064369 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: depth, ts, qc, unit
Sensor: visibility | fields: reading, type, value, lat
Task: Retrieve lat from rainfall that have at least one matching reading in visibility sharing the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064370 | train |
v2 | Sensor network script:
Node: frost | code: clr | fields: depth, value, lon, lat
Sensor: sunlight | fields: level, lon, type, lat
Task: Get lon from frost where a corresponding entry exists in sunlight with the same ts.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064371 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: unit, ts, reading, qc
Sensor: soil_moisture | fields: lon, value, unit, qc
Task: Get level from drought_index where a corresponding entry exists in soil_moisture with the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064372 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: type, reading, lon, qc
Sensor: wind_speed | fields: unit, ts, lon, level
Task: Get lon from rainfall where a corresponding entry exists in wind_speed with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064373 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: lon, lat, unit, reading
Sensor: rainfall | fields: lat, ts, type, lon
Task: Get level from turbidity where qc appears in rainfall readings with matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064374 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: lat, lon, level, reading
Sensor: air_quality | fields: qc, depth, reading, unit
Task: Fetch level from dew_point that have at least one corresponding air_quality measurement for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064375 | train |
v2 | Sensor network script:
Node: temperature | code: mst | fields: value, type, level, reading
Sensor: humidity | fields: lat, depth, reading, unit
Task: Fetch lat from temperature that have at least one corresponding humidity measurement for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064376 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: level, type, value, depth
Sensor: frost | fields: lon, type, unit, depth
Task: Retrieve lat from humidity that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064377 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: depth, type, value, lon
Sensor: wind_speed | fields: lat, value, ts, qc
Task: Get level from evaporation where value exceeds the maximum reading from wind_speed for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064378 | train |
v2 | Sensor network script:
Node: wind_speed | code: ref | fields: ts, reading, value, level
Sensor: drought_index | fields: lat, type, reading, unit
Task: Retrieve level from wind_speed that have at least one matching reading in drought_index sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064379 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: lon, type, depth, qc
Sensor: rainfall | fields: lat, reading, level, unit
Task: Get lat from lightning where a corresponding entry exists in rainfall with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064380 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: depth, type, ts, qc
Sensor: humidity | fields: unit, type, lon, level
Task: Fetch value from lightning where qc exists in humidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064381 | train |
v3 | Sensor network script:
Node: temperature | code: hub | fields: lat, value, type, ts
Sensor: air_quality | fields: unit, ts, lon, type
Task: Retrieve lon from temperature with value above the MIN(value) of air_quality readings sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064382 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: unit, level, qc, value
Sensor: soil_moisture | fields: level, ts, lon, reading
Task: Get lon from temperature where reading exceeds the count of reading from soil_moisture for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064383 | train |
v1 | Sensor network script:
Node: soil_moisture | code: stn | fields: depth, type, reading, ts
Sensor: wind_speed | fields: level, lat, lon, qc
Task: Retrieve reading from soil_moisture whose type is found in wind_speed records where type matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064384 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: type, lat, unit, reading
Sensor: temperature | fields: value, qc, ts, lat
Task: Fetch lon from turbidity where depth exists in temperature sensor data for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="type",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064385 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: reading, level, qc, value
Sensor: dew_point | fields: lon, reading, unit, depth
Task: Fetch depth from turbidity that have at least one corresponding dew_point measurement for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064386 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: type, depth, ts, level
Sensor: rainfall | fields: level, ts, unit, depth
Task: Retrieve value from turbidity with reading above the AVG(value) of rainfall readings sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064387 | train |
v3 | Sensor network script:
Node: soil_moisture | code: stn | fields: type, qc, value, reading
Sensor: pressure | fields: qc, value, lon, unit
Task: Get level from soil_moisture where depth exceeds the average depth from pressure for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064388 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: unit, reading, type, qc
Sensor: air_quality | fields: depth, unit, lon, ts
Task: Retrieve value from frost whose type is found in air_quality records where ts matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064389 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: qc, ts, lon, level
Sensor: visibility | fields: unit, reading, value, ts
Task: Retrieve reading from dew_point whose depth is found in visibility records where ts matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="ts",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064390 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: depth, lat, ts, value
Sensor: temperature | fields: unit, ts, lon, qc
Task: Retrieve level from uv_index whose qc is found in temperature records where unit matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="unit",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064391 | train |
v3 | Sensor network script:
Node: humidity | code: thr | fields: ts, lat, value, level
Sensor: lightning | fields: lat, ts, reading, depth
Task: Fetch lon from humidity where reading is greater than the maximum of depth in lightning for matching qc.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064392 | train |
v3 | Sensor network script:
Node: pressure | code: gst | fields: value, level, reading, qc
Sensor: rainfall | fields: type, ts, value, depth
Task: Retrieve level from pressure with depth above the MAX(value) of rainfall readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"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_064393 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: ts, level, lat, value
Sensor: air_quality | fields: reading, ts, value, type
Task: Fetch depth from rainfall where ts exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_064394 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: unit, level, value, lon
Sensor: turbidity | fields: qc, level, value, reading
Task: Fetch lat from pressure that have at least one corresponding turbidity measurement for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064395 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: value, depth, lat, unit
Sensor: dew_point | fields: type, unit, lat, level
Task: Fetch lat from sunlight where value is greater than the maximum of depth in dew_point for matching qc.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064396 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: level, type, qc, value
Sensor: evaporation | fields: lat, depth, level, unit
Task: Get lat from pressure where a corresponding entry exists in evaporation with the same unit.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064397 | train |
v1 | Sensor network script:
Node: wind_speed | code: thr | fields: reading, value, lon, ts
Sensor: humidity | fields: depth, value, unit, ts
Task: Fetch level from wind_speed where depth exists in humidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064398 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: level, qc, reading, type
Sensor: soil_moisture | fields: lat, depth, qc, unit
Task: Fetch reading from air_quality that have at least one corresponding soil_moisture measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_064399 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.