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: wind_speed | code: clr | fields: type, ts, qc, value
Sensor: humidity | fields: depth, type, qc, reading
Task: Get depth from wind_speed where reading exceeds the count of value from humidity for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "value",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072100 | train |
v2 | Sensor network script:
Node: sunlight | code: prt | fields: lon, qc, level, lat
Sensor: soil_moisture | fields: depth, level, reading, lat
Task: Get lon from sunlight where a corresponding entry exists in soil_moisture with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072101 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: unit, type, lat, reading
Sensor: air_quality | fields: depth, ts, type, reading
Task: Get depth from visibility where ts appears in air_quality readings with matching qc.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072102 | train |
v1 | Sensor network script:
Node: drought_index | code: ref | fields: unit, qc, type, depth
Sensor: uv_index | fields: type, unit, qc, ts
Task: Retrieve value from drought_index whose depth is found in uv_index records where type matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="type",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072103 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: value, level, depth, lon
Sensor: visibility | fields: lat, depth, qc, level
Task: Retrieve value from dew_point whose type is found in visibility records where depth matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072104 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: type, unit, depth, ts
Sensor: drought_index | fields: lon, type, level, reading
Task: Retrieve level from snow_depth that have at least one matching reading in drought_index sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072105 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: lon, value, lat, ts
Sensor: uv_index | fields: reading, level, value, lon
Task: Retrieve lon from temperature whose depth is found in uv_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072106 | train |
v3 | Sensor network script:
Node: pressure | code: mst | fields: lon, qc, ts, reading
Sensor: turbidity | fields: lon, unit, qc, lat
Task: Fetch reading from pressure where value is greater than the total of reading in turbidity for matching unit.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("turbidity", code="ftu"),
match="unit"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072107 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: depth, reading, lat, ts
Sensor: visibility | fields: lat, depth, value, unit
Task: Get lat from turbidity where ts appears in visibility readings with matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="depth",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072108 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: depth, type, lon, unit
Sensor: cloud_cover | fields: ts, type, value, level
Task: Get level from snow_depth where depth exceeds the total value from cloud_cover for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("cloud_cover", code="nbl"),
match="unit"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072109 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: ts, unit, lon, type
Sensor: soil_moisture | fields: ts, lat, lon, unit
Task: Retrieve reading from air_quality that have at least one matching reading in soil_moisture sharing 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_072110 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: ts, reading, value, level
Sensor: lightning | fields: ts, qc, level, lon
Task: Get lat from cloud_cover where value exceeds the maximum value from lightning for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072111 | train |
v3 | Sensor network script:
Node: snow_depth | code: gst | fields: level, type, lon, depth
Sensor: turbidity | fields: depth, ts, lon, qc
Task: Get level from snow_depth where depth exceeds the maximum value from turbidity for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072112 | train |
v3 | Sensor network script:
Node: frost | code: stn | fields: unit, value, qc, depth
Sensor: cloud_cover | fields: unit, depth, ts, lon
Task: Fetch lat from frost where depth is greater than the maximum of depth in cloud_cover for matching ts.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072113 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: level, depth, value, unit
Sensor: temperature | fields: qc, type, value, reading
Task: Fetch depth from sunlight that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072114 | train |
v1 | Sensor network script:
Node: rainfall | code: ref | fields: lat, unit, reading, lon
Sensor: sunlight | fields: level, lat, ts, lon
Task: Retrieve value from rainfall whose type is found in sunlight records where qc matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072115 | train |
v1 | Sensor network script:
Node: lightning | code: thr | fields: unit, level, reading, lon
Sensor: sunlight | fields: type, depth, lat, value
Task: Get value from lightning where ts appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072116 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: unit, depth, level, lon
Sensor: wind_speed | fields: depth, qc, ts, type
Task: Fetch depth from uv_index where depth is greater than the average of value in wind_speed for matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072117 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: qc, depth, level, value
Sensor: turbidity | fields: ts, unit, level, depth
Task: Get lon from pressure where ts appears in turbidity readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072118 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: lat, value, qc, lon
Sensor: wind_speed | fields: level, reading, qc, unit
Task: Fetch lon from sunlight where unit exists in wind_speed sensor data for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072119 | train |
v3 | Sensor network script:
Node: temperature | code: prt | fields: unit, lat, type, depth
Sensor: pressure | fields: unit, depth, ts, reading
Task: Get lat from temperature where value exceeds the minimum value from pressure for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072120 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: level, lat, depth, unit
Sensor: frost | fields: value, ts, type, qc
Task: Fetch lon from wind_speed where type exists in frost sensor data for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="qc",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072121 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: value, lat, depth, unit
Sensor: uv_index | fields: type, depth, value, lat
Task: Retrieve value from humidity whose ts is found in uv_index records where ts matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="ts",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072122 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: ts, lon, type, level
Sensor: humidity | fields: level, depth, unit, lat
Task: Get lon from snow_depth where unit appears in humidity readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="depth",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072123 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: reading, unit, value, level
Sensor: wind_speed | fields: value, lon, depth, qc
Task: Get reading from turbidity where qc appears in wind_speed readings with matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072124 | train |
v1 | Sensor network script:
Node: evaporation | code: stn | fields: reading, lon, qc, lat
Sensor: visibility | fields: level, lat, ts, value
Task: Fetch reading from evaporation where depth exists in visibility sensor data for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="type",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072125 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: unit, lat, type, level
Sensor: soil_moisture | fields: reading, type, depth, lon
Task: Retrieve value from sunlight that have at least one matching reading in soil_moisture sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072126 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: reading, ts, depth, level
Sensor: wind_speed | fields: lat, value, qc, level
Task: Retrieve lon from rainfall that have at least one matching reading in wind_speed sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072127 | train |
v1 | Sensor network script:
Node: evaporation | code: gst | fields: ts, qc, lon, reading
Sensor: rainfall | fields: depth, ts, qc, lon
Task: Fetch lon from evaporation where type exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=set_member(
field="type",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072128 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: unit, ts, type, lat
Sensor: lightning | fields: level, unit, lon, qc
Task: Fetch lon from air_quality that have at least one corresponding lightning measurement for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072129 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: ts, unit, type, lon
Sensor: soil_moisture | fields: depth, qc, ts, lat
Task: Retrieve reading from cloud_cover that have at least one matching reading in soil_moisture sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"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_072130 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: ts, type, lat, qc
Sensor: visibility | fields: level, depth, unit, ts
Task: Retrieve value from sunlight that have at least one matching reading in visibility sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072131 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: lat, value, qc, ts
Sensor: lightning | fields: ts, value, lat, level
Task: Get value from cloud_cover where a corresponding entry exists in lightning with the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="unit",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072132 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: level, unit, ts, type
Sensor: drought_index | fields: depth, level, lon, reading
Task: Retrieve depth from soil_moisture that have at least one matching reading in drought_index sharing the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072133 | train |
v3 | Sensor network script:
Node: rainfall | code: prt | fields: reading, lat, lon, level
Sensor: sunlight | fields: unit, ts, qc, level
Task: Fetch value from rainfall where reading is greater than the total of reading in sunlight for matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072134 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: lon, depth, value, level
Sensor: sunlight | fields: reading, qc, type, value
Task: Fetch reading from cloud_cover where ts exists in sunlight sensor data for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072135 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: depth, lon, ts, qc
Sensor: lightning | fields: lon, reading, value, unit
Task: Retrieve level from evaporation that have at least one matching reading in lightning sharing the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072136 | train |
v2 | Sensor network script:
Node: humidity | code: hub | fields: lon, type, lat, reading
Sensor: frost | fields: lat, qc, reading, ts
Task: Get lat from humidity where a corresponding entry exists in frost with the same ts.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072137 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: type, ts, unit, lon
Sensor: wind_speed | fields: depth, lat, reading, value
Task: Get reading from lightning where depth exceeds the total reading from wind_speed for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072138 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: ts, qc, lat, type
Sensor: turbidity | fields: lat, ts, unit, depth
Task: Fetch depth from visibility where unit exists in turbidity sensor data for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072139 | train |
v3 | Sensor network script:
Node: temperature | code: gst | fields: depth, lon, lat, unit
Sensor: sunlight | fields: value, reading, ts, depth
Task: Fetch value from temperature where value is greater than the maximum of reading in sunlight for matching unit.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072140 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: lon, qc, reading, type
Sensor: air_quality | fields: reading, value, lat, lon
Task: Get value from soil_moisture where unit appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072141 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: qc, lon, lat, level
Sensor: wind_speed | fields: type, ts, lat, unit
Task: Fetch lon from pressure that have at least one corresponding wind_speed measurement for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072142 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: depth, lat, reading, level
Sensor: dew_point | fields: lon, level, ts, qc
Task: Retrieve reading from rainfall that have at least one matching reading in dew_point sharing the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072143 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: ts, value, lon, depth
Sensor: soil_moisture | fields: depth, reading, lat, qc
Task: Get reading from pressure where ts appears in soil_moisture readings with matching unit.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072144 | train |
v2 | Sensor network script:
Node: soil_moisture | code: thr | fields: ts, qc, depth, value
Sensor: snow_depth | fields: ts, level, lat, lon
Task: Fetch value from soil_moisture that have at least one corresponding snow_depth measurement for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072145 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: value, lon, reading, lat
Sensor: evaporation | fields: reading, depth, ts, type
Task: Get level from air_quality where depth appears in evaporation readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072146 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: qc, lat, level, value
Sensor: lightning | fields: unit, depth, reading, value
Task: Fetch reading from snow_depth that have at least one corresponding lightning measurement for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072147 | train |
v1 | Sensor network script:
Node: lightning | code: clr | fields: value, depth, type, lon
Sensor: snow_depth | fields: lat, ts, level, lon
Task: Get reading from lightning where type appears in snow_depth readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072148 | train |
v1 | Sensor network script:
Node: uv_index | code: clr | fields: unit, lat, depth, type
Sensor: temperature | fields: ts, type, unit, level
Task: Get lat from uv_index where ts appears in temperature readings with matching type.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="type",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072149 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: depth, lon, value, level
Sensor: frost | fields: level, unit, lat, reading
Task: Fetch lon from dew_point where type exists in frost sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="type",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072150 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: depth, value, level, unit
Sensor: temperature | fields: lon, level, qc, reading
Task: Retrieve value from sunlight that have at least one matching reading in temperature sharing the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072151 | train |
v3 | Sensor network script:
Node: uv_index | code: clr | fields: type, reading, ts, level
Sensor: frost | fields: lon, unit, ts, type
Task: Retrieve level from uv_index with reading above the MIN(reading) of frost readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("frost", code="frs"),
match="type"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072152 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: ts, value, depth, qc
Sensor: frost | fields: reading, depth, ts, lon
Task: Get lat from sunlight where a corresponding entry exists in frost with the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072153 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: value, level, unit, reading
Sensor: humidity | fields: level, reading, value, type
Task: Fetch reading from lightning where unit exists in humidity sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="unit",
source=Probe("humidity", code="hgr"),
match="type",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072154 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: type, ts, qc, value
Sensor: sunlight | fields: level, qc, unit, value
Task: Retrieve depth from soil_moisture that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072155 | train |
v3 | Sensor network script:
Node: turbidity | code: clr | fields: ts, reading, lat, type
Sensor: pressure | fields: level, qc, type, ts
Task: Fetch lat from turbidity where depth is greater than the total of value in pressure for matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("pressure", code="mbl"),
match="depth"),
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072156 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: reading, ts, depth, lon
Sensor: pressure | fields: type, lon, level, depth
Task: Retrieve reading from humidity that have at least one matching reading in pressure sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072157 | train |
v2 | Sensor network script:
Node: wind_speed | code: thr | fields: depth, qc, lon, unit
Sensor: visibility | fields: unit, level, qc, depth
Task: Retrieve depth from wind_speed that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072158 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: value, lon, unit, qc
Sensor: lightning | fields: unit, value, lat, reading
Task: Fetch depth from soil_moisture where reading is greater than the average of depth in lightning for matching ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072159 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: qc, value, lon, unit
Sensor: sunlight | fields: value, lon, depth, level
Task: Fetch lat from uv_index where depth exists in sunlight sensor data for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072160 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: lon, depth, value, type
Sensor: sunlight | fields: lat, type, lon, depth
Task: Get lat from humidity where a corresponding entry exists in sunlight with the same qc.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072161 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: level, unit, value, qc
Sensor: evaporation | fields: type, ts, unit, lat
Task: Get lon from frost where ts appears in evaporation readings with matching depth.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072162 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: level, depth, reading, unit
Sensor: sunlight | fields: type, unit, reading, qc
Task: Retrieve value from visibility with reading above the SUM(depth) of sunlight readings sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072163 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: reading, depth, ts, unit
Sensor: wind_speed | fields: level, reading, lon, qc
Task: Fetch lon from temperature where unit exists in wind_speed sensor data for the same unit.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072164 | train |
v1 | Sensor network script:
Node: frost | code: clr | fields: lon, type, value, depth
Sensor: dew_point | fields: lon, ts, type, qc
Task: Get lon from frost where depth appears in dew_point readings with matching ts.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072165 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: level, lon, depth, value
Sensor: cloud_cover | fields: type, lat, qc, value
Task: Fetch lon from snow_depth that have at least one corresponding cloud_cover measurement for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="qc",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072166 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: level, lon, type, value
Sensor: pressure | fields: qc, level, ts, value
Task: Get lon from wind_speed where depth appears in pressure readings with matching type.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="type",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072167 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: qc, unit, depth, lat
Sensor: lightning | fields: level, lon, type, ts
Task: Retrieve level from frost whose depth is found in lightning records where qc matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072168 | train |
v3 | Sensor network script:
Node: lightning | code: stn | fields: reading, value, unit, lon
Sensor: soil_moisture | fields: type, ts, level, reading
Task: Retrieve value from lightning with reading above the MAX(depth) of soil_moisture readings sharing the same qc.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072169 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: unit, qc, reading, lon
Sensor: drought_index | fields: lat, depth, ts, type
Task: Fetch value from dew_point where qc exists in drought_index sensor data for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="type",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072170 | train |
v3 | Sensor network script:
Node: uv_index | code: stn | fields: value, lon, unit, level
Sensor: sunlight | fields: ts, lon, reading, level
Task: Get level from uv_index where depth exceeds the average value from sunlight for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "stn",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072171 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: reading, unit, value, depth
Sensor: sunlight | fields: qc, lon, reading, type
Task: Get value from lightning where reading exceeds the minimum reading from sunlight for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("sunlight", code="brt"),
match="depth"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072172 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: level, unit, lat, value
Sensor: temperature | fields: value, unit, qc, depth
Task: Fetch lat from dew_point that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072173 | train |
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: lon, lat, level, type
Sensor: visibility | fields: value, level, reading, depth
Task: Retrieve depth from cloud_cover with value above the COUNT(value) of visibility readings sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072174 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: lat, reading, unit, lon
Sensor: soil_moisture | fields: depth, ts, unit, lat
Task: Retrieve level from visibility with reading above the MIN(reading) of soil_moisture readings sharing the same ts.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072175 | train |
v1 | Sensor network script:
Node: humidity | code: prt | fields: reading, value, ts, unit
Sensor: snow_depth | fields: depth, reading, qc, unit
Task: Get value from humidity where depth appears in snow_depth readings with matching depth.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072176 | train |
v3 | Sensor network script:
Node: wind_speed | code: hub | fields: ts, qc, lon, reading
Sensor: evaporation | fields: unit, lat, level, value
Task: Retrieve lon from wind_speed with reading above the COUNT(depth) of evaporation readings sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"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_072177 | train |
v2 | Sensor network script:
Node: humidity | code: mst | fields: depth, value, unit, qc
Sensor: rainfall | fields: level, value, reading, lon
Task: Get depth from humidity where a corresponding entry exists in rainfall with the same type.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072178 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: level, type, lon, lat
Sensor: sunlight | fields: ts, value, lon, unit
Task: Retrieve lon from wind_speed whose type is found in sunlight records where type matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="type",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072179 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: reading, unit, value, ts
Sensor: uv_index | fields: depth, lon, unit, qc
Task: Fetch lon from dew_point that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072180 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: value, reading, qc, ts
Sensor: lightning | fields: reading, qc, ts, depth
Task: Get depth from frost where value exceeds the average reading from lightning for the same depth.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"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_072181 | train |
v3 | Sensor network script:
Node: air_quality | code: stn | fields: level, reading, ts, qc
Sensor: frost | fields: value, level, reading, qc
Task: Fetch lat from air_quality where depth is greater than the average of reading in frost for matching type.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("frost", code="frs"),
match="type"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072182 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: unit, depth, level, ts
Sensor: uv_index | fields: type, lon, ts, lat
Task: Get lon from temperature where value exceeds the maximum value from uv_index for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("uv_index", code="flx"),
match="depth"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072183 | train |
v1 | Sensor network script:
Node: visibility | code: clr | fields: unit, lon, lat, level
Sensor: pressure | fields: lon, value, qc, lat
Task: Get value from visibility where qc appears in pressure readings with matching ts.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072184 | train |
v3 | Sensor network script:
Node: cloud_cover | code: prt | fields: level, type, reading, lon
Sensor: evaporation | fields: depth, qc, value, lon
Task: Fetch lat from cloud_cover where reading is greater than the total of depth in evaporation for matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072185 | train |
v1 | Sensor network script:
Node: dew_point | code: stn | fields: qc, depth, lon, reading
Sensor: visibility | fields: unit, qc, depth, lat
Task: Get reading from dew_point where qc appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="qc",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072186 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: lon, level, ts, qc
Sensor: wind_speed | fields: depth, level, lat, unit
Task: Retrieve lat from dew_point that have at least one matching reading in wind_speed sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072187 | train |
v3 | Sensor network script:
Node: temperature | code: stn | fields: lat, type, ts, qc
Sensor: dew_point | fields: reading, unit, qc, depth
Task: Retrieve depth from temperature with value above the SUM(depth) of dew_point readings sharing the same qc.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072188 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: qc, lat, level, lon
Sensor: frost | fields: lat, value, type, depth
Task: Retrieve value from rainfall whose ts is found in frost records where unit matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="ts",
source=Probe("frost", code="frs"),
match="unit",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072189 | train |
v2 | Sensor network script:
Node: wind_speed | code: stn | fields: type, value, level, ts
Sensor: cloud_cover | fields: value, type, unit, reading
Task: Get level from wind_speed where a corresponding entry exists in cloud_cover with the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072190 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: reading, lat, qc, lon
Sensor: drought_index | fields: value, ts, lat, lon
Task: Fetch depth from cloud_cover where depth exists in drought_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072191 | train |
v1 | Sensor network script:
Node: dew_point | code: thr | fields: depth, ts, type, unit
Sensor: soil_moisture | fields: level, ts, value, unit
Task: Get reading from dew_point where qc appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072192 | train |
v2 | Sensor network script:
Node: temperature | code: ref | fields: value, unit, lon, qc
Sensor: sunlight | fields: value, lon, level, depth
Task: Get level from temperature where a corresponding entry exists in sunlight with the same unit.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="unit",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072193 | train |
v2 | Sensor network script:
Node: lightning | code: stn | fields: qc, type, unit, lon
Sensor: cloud_cover | fields: qc, lon, type, reading
Task: Retrieve value from lightning that have at least one matching reading in cloud_cover sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072194 | train |
v3 | Sensor network script:
Node: turbidity | code: hub | fields: type, unit, value, ts
Sensor: temperature | fields: value, unit, reading, lon
Task: Fetch reading from turbidity where depth is greater than the minimum of depth in temperature for matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "temperature",
"outer_alias": "hub",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072195 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: reading, ts, type, value
Sensor: cloud_cover | fields: level, depth, type, lat
Task: Get reading from snow_depth where depth exceeds the minimum reading from cloud_cover for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072196 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: level, qc, reading, value
Sensor: turbidity | fields: depth, type, unit, ts
Task: Get value from air_quality where ts appears in turbidity readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072197 | train |
v3 | Sensor network script:
Node: cloud_cover | code: prt | fields: lat, type, value, level
Sensor: temperature | fields: lat, qc, ts, level
Task: Retrieve level from cloud_cover with value above the COUNT(value) of temperature readings sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_072198 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: level, qc, depth, value
Sensor: pressure | fields: lon, depth, qc, type
Task: Retrieve lat from drought_index that have at least one matching reading in pressure sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_072199 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.