variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v1 | Sensor network script:
Node: frost | code: stn | fields: reading, type, qc, depth
Sensor: rainfall | fields: reading, lat, value, unit
Task: Fetch reading from frost where ts exists in rainfall sensor data for the same qc.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076000 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: unit, lat, value, level
Sensor: frost | fields: lon, depth, ts, reading
Task: Fetch level from cloud_cover where reading is greater than the minimum of depth in frost for matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("frost", code="frs"),
match="depth"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076001 | train |
v2 | Sensor network script:
Node: soil_moisture | code: stn | fields: value, type, lat, depth
Sensor: pressure | fields: value, type, qc, unit
Task: Retrieve reading from soil_moisture that have at least one matching reading in pressure sharing the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076002 | train |
v2 | Sensor network script:
Node: wind_speed | code: ref | fields: depth, lon, type, reading
Sensor: air_quality | fields: ts, depth, lat, level
Task: Retrieve level from wind_speed that have at least one matching reading in air_quality sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076003 | train |
v2 | Sensor network script:
Node: air_quality | code: clr | fields: lon, ts, type, depth
Sensor: humidity | fields: lat, value, level, reading
Task: Fetch depth from air_quality that have at least one corresponding humidity measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076004 | train |
v1 | Sensor network script:
Node: dew_point | code: hub | fields: value, ts, type, unit
Sensor: lightning | fields: lat, unit, level, type
Task: Get value from dew_point where ts appears in lightning readings with matching depth.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076005 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: type, value, depth, lat
Sensor: frost | fields: qc, ts, reading, unit
Task: Retrieve level from drought_index whose type is found in frost records where ts matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="ts",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076006 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: qc, value, depth, type
Sensor: soil_moisture | fields: depth, type, level, reading
Task: Retrieve value from sunlight with value above the SUM(reading) of soil_moisture readings sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076007 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: qc, depth, reading, ts
Sensor: drought_index | fields: level, unit, lat, reading
Task: Retrieve level from dew_point that have at least one matching reading in drought_index sharing the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076008 | train |
v2 | Sensor network script:
Node: uv_index | code: prt | fields: level, lon, lat, qc
Sensor: snow_depth | fields: lon, lat, qc, value
Task: Get lat from uv_index where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076009 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: unit, lat, depth, type
Sensor: humidity | fields: qc, lon, unit, lat
Task: Retrieve value from frost with value above the AVG(reading) of humidity readings sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076010 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: lat, reading, depth, ts
Sensor: temperature | fields: type, unit, lon, value
Task: Get lon from soil_moisture where reading exceeds the total depth from temperature for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076011 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: depth, qc, lon, reading
Sensor: humidity | fields: qc, lat, lon, depth
Task: Retrieve level from air_quality whose unit is found in humidity records where qc matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076012 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: value, depth, unit, ts
Sensor: temperature | fields: type, value, level, lon
Task: Retrieve depth from turbidity that have at least one matching reading in temperature sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076013 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: lat, depth, value, type
Sensor: visibility | fields: type, depth, lon, ts
Task: Retrieve depth from cloud_cover whose type is found in visibility records where qc matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="qc",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076014 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: type, reading, lon, ts
Sensor: humidity | fields: lon, level, ts, value
Task: Fetch reading from cloud_cover that have at least one corresponding humidity measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="depth",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076015 | train |
v2 | Sensor network script:
Node: turbidity | code: clr | fields: ts, level, qc, lon
Sensor: temperature | fields: type, unit, lat, lon
Task: Retrieve reading from turbidity that have at least one matching reading in temperature sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076016 | train |
v3 | Sensor network script:
Node: cloud_cover | code: stn | fields: type, qc, lat, level
Sensor: drought_index | fields: type, unit, qc, lat
Task: Fetch lat from cloud_cover where reading is greater than the average of depth in drought_index for matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076017 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: level, depth, reading, unit
Sensor: visibility | fields: reading, unit, lon, type
Task: Fetch depth from rainfall that have at least one corresponding visibility measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076018 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: level, unit, depth, ts
Sensor: air_quality | fields: value, level, lon, depth
Task: Fetch lat from pressure that have at least one corresponding air_quality measurement for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076019 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: qc, value, level, lon
Sensor: pressure | fields: lon, type, value, ts
Task: Get lon from rainfall where a corresponding entry exists in pressure with the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076020 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: type, lat, lon, reading
Sensor: turbidity | fields: reading, unit, depth, lat
Task: Get depth from humidity where depth appears in turbidity readings with matching unit.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076021 | train |
v1 | Sensor network script:
Node: uv_index | code: prt | fields: unit, depth, lon, level
Sensor: evaporation | fields: lat, unit, type, lon
Task: Retrieve depth from uv_index whose ts is found in evaporation records where unit matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076022 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: ts, type, level, qc
Sensor: pressure | fields: value, unit, depth, ts
Task: Get reading from rainfall where a corresponding entry exists in pressure with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076023 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: unit, reading, lat, lon
Sensor: snow_depth | fields: depth, unit, level, ts
Task: Get lat from rainfall where a corresponding entry exists in snow_depth with the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076024 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: depth, type, ts, lat
Sensor: dew_point | fields: lat, unit, lon, depth
Task: Fetch level from evaporation that have at least one corresponding dew_point measurement for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076025 | train |
v3 | Sensor network script:
Node: soil_moisture | code: clr | fields: depth, reading, value, qc
Sensor: frost | fields: level, qc, reading, type
Task: Get depth from soil_moisture where depth exceeds the minimum value from frost for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("frost", code="frs"),
match="type"),
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076026 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: type, depth, ts, value
Sensor: snow_depth | fields: qc, type, level, reading
Task: Fetch lon from temperature that have at least one corresponding snow_depth measurement for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076027 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: depth, value, lon, lat
Sensor: drought_index | fields: type, lat, qc, depth
Task: Retrieve reading from turbidity that have at least one matching reading in drought_index sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076028 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: level, ts, lat, type
Sensor: temperature | fields: ts, lat, depth, level
Task: Get lon from cloud_cover where a corresponding entry exists in temperature with the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076029 | train |
v1 | Sensor network script:
Node: temperature | code: prt | fields: lat, depth, lon, ts
Sensor: visibility | fields: ts, lon, reading, qc
Task: Get lon from temperature where depth appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="qc",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076030 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: qc, depth, lon, unit
Sensor: dew_point | fields: type, lat, reading, ts
Task: Retrieve reading from humidity whose type is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076031 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: lon, qc, unit, reading
Sensor: temperature | fields: ts, qc, lon, type
Task: Get lat from rainfall where qc appears in temperature readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="ts",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076032 | train |
v1 | Sensor network script:
Node: rainfall | code: gst | fields: lon, value, reading, lat
Sensor: turbidity | fields: ts, type, lat, level
Task: Get reading from rainfall where type appears in turbidity readings with matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076033 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: value, reading, ts, lon
Sensor: uv_index | fields: qc, value, ts, depth
Task: Fetch depth from drought_index where depth is greater than the count of of reading in uv_index for matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076034 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: type, value, depth, qc
Sensor: frost | fields: value, level, unit, lon
Task: Fetch lon from drought_index where depth exists in frost sensor data for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="qc",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076035 | train |
v3 | Sensor network script:
Node: temperature | code: ref | fields: reading, lon, depth, value
Sensor: air_quality | fields: level, ts, value, depth
Task: Fetch lon from temperature where value is greater than the maximum of depth in air_quality for matching depth.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076036 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: ts, qc, type, reading
Sensor: sunlight | fields: reading, qc, unit, type
Task: Fetch lon from temperature where type exists in sunlight sensor data for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076037 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: value, reading, level, lon
Sensor: air_quality | fields: value, unit, depth, type
Task: Retrieve lon from pressure whose qc is found in air_quality records where type matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="type",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076038 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: type, lon, lat, qc
Sensor: humidity | fields: unit, level, type, lon
Task: Get reading from pressure where unit appears in humidity readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="type",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076039 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: type, unit, lat, reading
Sensor: humidity | fields: lon, ts, lat, value
Task: Fetch depth from visibility where value is greater than the average of reading in humidity for matching depth.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076040 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: reading, level, type, ts
Sensor: humidity | fields: reading, type, lat, unit
Task: Fetch level from wind_speed where ts exists in humidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076041 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: value, lat, type, depth
Sensor: cloud_cover | fields: ts, depth, reading, unit
Task: Fetch reading from drought_index that have at least one corresponding cloud_cover measurement for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076042 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: lon, level, type, reading
Sensor: sunlight | fields: level, qc, reading, lon
Task: Retrieve lon from uv_index that have at least one matching reading in sunlight sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076043 | train |
v2 | Sensor network script:
Node: pressure | code: clr | fields: unit, qc, depth, ts
Sensor: frost | fields: depth, lat, type, reading
Task: Retrieve level from pressure that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076044 | train |
v3 | Sensor network script:
Node: rainfall | code: thr | fields: ts, reading, lon, level
Sensor: frost | fields: ts, reading, depth, level
Task: Fetch lat from rainfall where reading is greater than the count of of reading in frost for matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("frost", code="frs"),
match="qc"),
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076045 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: unit, value, level, depth
Sensor: pressure | fields: type, unit, level, reading
Task: Get level from air_quality where value exceeds the count of reading from pressure for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076046 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: depth, lon, qc, type
Sensor: pressure | fields: lon, qc, value, type
Task: Retrieve depth from temperature that have at least one matching reading in pressure sharing the same qc.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076047 | train |
v2 | Sensor network script:
Node: frost | code: prt | fields: lat, unit, type, lon
Sensor: dew_point | fields: depth, reading, qc, lat
Task: Retrieve depth from frost that have at least one matching reading in dew_point sharing the same depth.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076048 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: value, unit, ts, lon
Sensor: air_quality | fields: value, type, qc, ts
Task: Get value from humidity where unit appears in air_quality readings with matching unit.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076049 | train |
v1 | Sensor network script:
Node: humidity | code: hub | fields: reading, value, level, lat
Sensor: wind_speed | fields: type, ts, lat, unit
Task: Fetch reading from humidity where ts exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076050 | train |
v1 | Sensor network script:
Node: snow_depth | code: mst | fields: type, reading, depth, value
Sensor: turbidity | fields: lat, level, reading, lon
Task: Get value from snow_depth where depth appears in turbidity readings with matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="qc",
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076051 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: type, ts, unit, level
Sensor: humidity | fields: type, lon, depth, ts
Task: Get value from lightning where unit appears in humidity readings with matching unit.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076052 | train |
v1 | Sensor network script:
Node: temperature | code: prt | fields: lon, qc, lat, depth
Sensor: humidity | fields: depth, ts, level, value
Task: Get value from temperature where depth appears in humidity readings with matching unit.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076053 | train |
v3 | Sensor network script:
Node: snow_depth | code: gst | fields: unit, lat, reading, depth
Sensor: frost | fields: lon, lat, type, depth
Task: Retrieve reading from snow_depth with reading above the MAX(depth) of frost readings sharing the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("frost", code="frs"),
match="depth"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076054 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: reading, level, value, ts
Sensor: visibility | fields: value, reading, unit, depth
Task: Retrieve depth from soil_moisture whose depth is found in visibility records where type matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="type",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076055 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: reading, type, lon, depth
Sensor: temperature | fields: unit, qc, type, level
Task: Fetch lat from sunlight that have at least one corresponding temperature measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="lat",
) | {
"outer_table": "sunlight",
"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_076056 | train |
v1 | Sensor network script:
Node: visibility | code: ref | fields: type, level, unit, ts
Sensor: uv_index | fields: value, ts, type, lat
Task: Get lon from visibility where type appears in uv_index readings with matching depth.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076057 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: reading, value, type, ts
Sensor: air_quality | fields: qc, lat, type, depth
Task: Get reading from temperature where qc appears in air_quality readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="type",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076058 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: type, ts, lat, level
Sensor: sunlight | fields: reading, lat, depth, unit
Task: Retrieve level from wind_speed whose type is found in sunlight records where qc matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076059 | train |
v3 | Sensor network script:
Node: dew_point | code: prt | fields: lon, unit, level, ts
Sensor: cloud_cover | fields: lat, unit, depth, level
Task: Fetch lon from dew_point where value is greater than the maximum of depth in cloud_cover for matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076060 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: ts, qc, reading, unit
Sensor: sunlight | fields: level, unit, reading, depth
Task: Fetch level from dew_point where qc exists in sunlight sensor data for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076061 | train |
v3 | Sensor network script:
Node: wind_speed | code: ref | fields: qc, lon, level, unit
Sensor: lightning | fields: value, lon, depth, unit
Task: Get level from wind_speed where reading exceeds the minimum reading from lightning for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "level",
"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_076062 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: depth, ts, lat, lon
Sensor: snow_depth | fields: lon, unit, reading, level
Task: Retrieve value from wind_speed whose depth is found in snow_depth records where type matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076063 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: type, reading, lon, value
Sensor: air_quality | fields: type, lat, qc, depth
Task: Get level from frost where a corresponding entry exists in air_quality with the same ts.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076064 | train |
v2 | Sensor network script:
Node: air_quality | code: hub | fields: ts, depth, qc, unit
Sensor: dew_point | fields: type, unit, qc, ts
Task: Get reading from air_quality where a corresponding entry exists in dew_point with the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076065 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: value, depth, level, ts
Sensor: dew_point | fields: lon, value, lat, level
Task: Retrieve depth from air_quality with reading above the SUM(depth) of dew_point readings sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076066 | train |
v1 | Sensor network script:
Node: drought_index | code: clr | fields: qc, ts, depth, reading
Sensor: uv_index | fields: qc, depth, lon, value
Task: Get depth from drought_index where ts appears in uv_index readings with matching type.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="type",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076067 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: ts, qc, level, reading
Sensor: visibility | fields: ts, lon, level, lat
Task: Get lat from temperature where ts appears in visibility readings with matching depth.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076068 | train |
v2 | Sensor network script:
Node: evaporation | code: ref | fields: lon, unit, reading, value
Sensor: uv_index | fields: reading, value, level, depth
Task: Retrieve depth from evaporation that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076069 | train |
v1 | Sensor network script:
Node: air_quality | code: mst | fields: unit, reading, lon, level
Sensor: wind_speed | fields: type, ts, level, lat
Task: Fetch value from air_quality where ts exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076070 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: type, value, lat, depth
Sensor: air_quality | fields: depth, lat, type, value
Task: Fetch lat from cloud_cover where qc exists in air_quality sensor data for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076071 | train |
v2 | Sensor network script:
Node: temperature | code: mst | fields: type, unit, depth, reading
Sensor: lightning | fields: depth, qc, lon, ts
Task: Fetch level from temperature that have at least one corresponding lightning measurement for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076072 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: unit, type, ts, reading
Sensor: wind_speed | fields: lat, value, ts, type
Task: Fetch lat from cloud_cover that have at least one corresponding wind_speed measurement for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"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_076073 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: unit, qc, ts, depth
Sensor: lightning | fields: qc, value, reading, lon
Task: Fetch reading from frost where reading is greater than the count of of reading in lightning for matching ts.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076074 | train |
v1 | Sensor network script:
Node: temperature | code: prt | fields: level, ts, depth, value
Sensor: pressure | fields: value, lon, type, qc
Task: Get lat from temperature where ts appears in pressure readings with matching unit.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076075 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: unit, level, ts, qc
Sensor: dew_point | fields: depth, unit, type, qc
Task: Retrieve lon from rainfall with reading above the COUNT(depth) of dew_point readings sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076076 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: qc, reading, type, ts
Sensor: drought_index | fields: level, qc, lat, reading
Task: Retrieve value from uv_index that have at least one matching reading in drought_index sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076077 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: level, type, value, ts
Sensor: turbidity | fields: type, ts, depth, reading
Task: Retrieve level from lightning with value above the SUM(value) of turbidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("turbidity", code="ftu"),
match="depth"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076078 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: ts, level, depth, lat
Sensor: pressure | fields: unit, lon, level, type
Task: Retrieve lon from cloud_cover that have at least one matching reading in pressure sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076079 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: value, level, ts, lon
Sensor: visibility | fields: lon, qc, reading, ts
Task: Retrieve level from sunlight that have at least one matching reading in visibility sharing the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076080 | train |
v1 | Sensor network script:
Node: visibility | code: gst | fields: value, lon, lat, ts
Sensor: rainfall | fields: value, reading, unit, lat
Task: Fetch value from visibility where ts exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076081 | train |
v3 | Sensor network script:
Node: lightning | code: stn | fields: unit, type, reading, depth
Sensor: drought_index | fields: qc, level, value, depth
Task: Retrieve lon from lightning with depth above the AVG(depth) of drought_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076082 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: type, lon, lat, qc
Sensor: snow_depth | fields: type, unit, level, lat
Task: Fetch level from rainfall that have at least one corresponding snow_depth measurement for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076083 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: unit, qc, reading, level
Sensor: air_quality | fields: depth, qc, type, ts
Task: Retrieve depth from rainfall whose depth is found in air_quality records where unit matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076084 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: depth, reading, ts, unit
Sensor: frost | fields: type, lon, depth, lat
Task: Retrieve lat from cloud_cover whose qc is found in frost records where unit matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="unit",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076085 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: unit, type, qc, reading
Sensor: snow_depth | fields: value, level, lat, type
Task: Get level from drought_index where depth appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076086 | train |
v1 | Sensor network script:
Node: soil_moisture | code: gst | fields: lat, level, unit, reading
Sensor: pressure | fields: lat, unit, qc, type
Task: Fetch reading from soil_moisture where type exists in pressure sensor data for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="type",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076087 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: reading, lat, qc, unit
Sensor: air_quality | fields: lat, unit, lon, level
Task: Get level from pressure where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "pressure",
"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_076088 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: depth, value, reading, level
Sensor: uv_index | fields: ts, reading, qc, depth
Task: Retrieve depth from evaporation with reading above the SUM(value) of uv_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076089 | train |
v3 | Sensor network script:
Node: dew_point | code: hub | fields: reading, level, ts, unit
Sensor: uv_index | fields: lon, qc, type, level
Task: Retrieve lon from dew_point with value above the AVG(reading) of uv_index readings sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("uv_index", code="flx"),
match="type"),
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076090 | train |
v3 | Sensor network script:
Node: cloud_cover | code: gst | fields: lat, type, level, qc
Sensor: snow_depth | fields: unit, value, lon, qc
Task: Fetch value from cloud_cover where depth is greater than the average of value in snow_depth for matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076091 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: qc, unit, reading, level
Sensor: rainfall | fields: value, depth, level, lat
Task: Get lat from lightning where a corresponding entry exists in rainfall with the same qc.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076092 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: qc, level, value, type
Sensor: soil_moisture | fields: qc, lat, value, type
Task: Fetch reading from wind_speed where unit exists in soil_moisture sensor data for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076093 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: unit, depth, level, value
Sensor: frost | fields: lon, qc, ts, unit
Task: Get value from sunlight where reading exceeds the average depth from frost for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("frost", code="frs"),
match="ts"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076094 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: ts, unit, level, qc
Sensor: cloud_cover | fields: lon, value, lat, unit
Task: Fetch depth from pressure that have at least one corresponding cloud_cover measurement for the same type.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076095 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: lon, type, value, ts
Sensor: uv_index | fields: value, unit, level, lat
Task: Retrieve lon from turbidity that have at least one matching reading in uv_index sharing the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076096 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: lat, value, qc, unit
Sensor: wind_speed | fields: reading, lat, unit, ts
Task: Get lat from temperature where depth appears in wind_speed readings with matching qc.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="depth",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076097 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: type, unit, reading, lon
Sensor: air_quality | fields: reading, level, value, lon
Task: Retrieve lon from turbidity that have at least one matching reading in air_quality sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_076098 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: lon, type, level, value
Sensor: dew_point | fields: lat, unit, reading, depth
Task: Fetch lat from visibility where reading is greater than the total of depth in dew_point for matching unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_076099 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.