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: pressure | code: ref | fields: reading, level, qc, ts
Sensor: lightning | fields: lon, depth, value, qc
Task: Retrieve lat from pressure with reading above the MIN(reading) of lightning readings sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "lat",
"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_075900 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: ts, type, value, unit
Sensor: visibility | fields: lon, unit, type, ts
Task: Retrieve value from air_quality that have at least one matching reading in visibility sharing the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075901 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: value, type, qc, reading
Sensor: soil_moisture | fields: value, lat, type, depth
Task: Get depth from cloud_cover where a corresponding entry exists in soil_moisture with the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075902 | train |
v1 | Sensor network script:
Node: uv_index | code: ref | fields: qc, lon, type, value
Sensor: visibility | fields: lat, qc, depth, reading
Task: Retrieve reading from uv_index whose depth is found in visibility records where unit matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="unit",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075903 | train |
v1 | Sensor network script:
Node: uv_index | code: thr | fields: reading, type, depth, ts
Sensor: frost | fields: qc, type, unit, depth
Task: Retrieve value from uv_index whose type is found in frost records where type matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="type",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075904 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: type, value, ts, reading
Sensor: cloud_cover | fields: unit, lon, value, qc
Task: Get level from turbidity where a corresponding entry exists in cloud_cover with the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075905 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: lat, ts, value, reading
Sensor: wind_speed | fields: value, lon, lat, unit
Task: Get lat from air_quality where reading exceeds the maximum value from wind_speed for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075906 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: ts, depth, lon, unit
Sensor: temperature | fields: reading, type, qc, unit
Task: Retrieve reading from soil_moisture with value above the AVG(value) of temperature readings sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075907 | train |
v1 | Sensor network script:
Node: rainfall | code: mst | fields: ts, value, depth, type
Sensor: uv_index | fields: type, depth, unit, ts
Task: Retrieve reading from rainfall whose depth is found in uv_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075908 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: qc, reading, depth, unit
Sensor: rainfall | fields: type, level, lat, lon
Task: Get reading from lightning where value exceeds the maximum reading from rainfall for the same qc.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075909 | train |
v2 | Sensor network script:
Node: wind_speed | code: thr | fields: lon, lat, qc, unit
Sensor: rainfall | fields: lon, reading, depth, level
Task: Retrieve depth from wind_speed that have at least one matching reading in rainfall sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075910 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: type, unit, depth, lon
Sensor: cloud_cover | fields: lon, depth, type, lat
Task: Get lat from lightning where depth exceeds the average reading from cloud_cover for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075911 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: unit, ts, lon, lat
Sensor: sunlight | fields: unit, ts, value, lat
Task: Get value from evaporation where depth appears in sunlight readings with matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075912 | train |
v1 | Sensor network script:
Node: snow_depth | code: thr | fields: unit, level, depth, ts
Sensor: turbidity | fields: reading, ts, lon, lat
Task: Get lon from snow_depth where unit appears in turbidity readings with matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075913 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: level, reading, lat, depth
Sensor: temperature | fields: unit, value, level, qc
Task: Retrieve reading from air_quality that have at least one matching reading in temperature sharing the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075914 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: lon, unit, reading, level
Sensor: wind_speed | fields: value, reading, depth, unit
Task: Retrieve value from sunlight whose type is found in wind_speed records where type matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075915 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: ts, type, qc, lat
Sensor: lightning | fields: lon, value, unit, level
Task: Fetch value from dew_point that have at least one corresponding lightning measurement for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075916 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: qc, depth, ts, unit
Sensor: humidity | fields: depth, lat, unit, reading
Task: Get lon from lightning where depth exceeds the minimum value from humidity for the same qc.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075917 | train |
v2 | Sensor network script:
Node: cloud_cover | code: stn | fields: lat, level, type, qc
Sensor: soil_moisture | fields: unit, lat, value, type
Task: Retrieve depth from cloud_cover that have at least one matching reading in soil_moisture sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075918 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: depth, qc, lon, lat
Sensor: pressure | fields: depth, value, unit, reading
Task: Fetch lon from rainfall that have at least one corresponding pressure measurement for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075919 | train |
v3 | Sensor network script:
Node: visibility | code: ref | fields: reading, lat, level, unit
Sensor: snow_depth | fields: level, depth, qc, value
Task: Retrieve lon from visibility with reading above the COUNT(depth) of snow_depth readings sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075920 | train |
v2 | Sensor network script:
Node: humidity | code: stn | fields: ts, depth, type, value
Sensor: dew_point | fields: level, unit, type, qc
Task: Fetch lat from humidity that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075921 | train |
v3 | Sensor network script:
Node: visibility | code: gst | fields: reading, lon, depth, ts
Sensor: air_quality | fields: lat, unit, value, lon
Task: Retrieve lon from visibility with reading above the MAX(depth) of air_quality readings sharing the same depth.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075922 | train |
v3 | Sensor network script:
Node: cloud_cover | code: mst | fields: value, reading, type, depth
Sensor: snow_depth | fields: depth, reading, type, qc
Task: Fetch lat from cloud_cover where depth is greater than the total of depth in snow_depth for matching qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075923 | train |
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: ts, value, lat, depth
Sensor: rainfall | fields: depth, qc, unit, level
Task: Fetch lon from wind_speed that have at least one corresponding rainfall measurement for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075924 | train |
v2 | Sensor network script:
Node: frost | code: thr | fields: type, unit, depth, qc
Sensor: humidity | fields: lat, lon, value, ts
Task: Get lon from frost where a corresponding entry exists in humidity with the same unit.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075925 | train |
v3 | Sensor network script:
Node: soil_moisture | code: clr | fields: lat, ts, unit, reading
Sensor: rainfall | fields: type, qc, level, lon
Task: Fetch lat from soil_moisture where reading is greater than the average of value in rainfall for matching unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075926 | train |
v2 | Sensor network script:
Node: air_quality | code: gst | fields: qc, lat, ts, type
Sensor: visibility | fields: qc, level, lat, unit
Task: Get depth from air_quality where a corresponding entry exists in visibility with the same type.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075927 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: level, value, depth, lon
Sensor: snow_depth | fields: unit, reading, level, depth
Task: Get lat from dew_point where a corresponding entry exists in snow_depth with the same type.
Script: | readings = fetch(
node=Node("dew_point", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075928 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: type, lat, ts, qc
Sensor: air_quality | fields: depth, reading, level, lon
Task: Get value from humidity where a corresponding entry exists in air_quality with the same unit.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
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",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075929 | train |
v3 | Sensor network script:
Node: snow_depth | code: clr | fields: reading, type, value, level
Sensor: sunlight | fields: value, unit, level, ts
Task: Fetch level from snow_depth where reading is greater than the total of value in sunlight for matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075930 | train |
v3 | Sensor network script:
Node: evaporation | code: ref | fields: qc, lon, level, reading
Sensor: humidity | fields: depth, value, type, lon
Task: Get depth from evaporation where depth exceeds the maximum reading from humidity for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075931 | train |
v2 | Sensor network script:
Node: pressure | code: stn | fields: lat, level, unit, lon
Sensor: rainfall | fields: unit, value, qc, lon
Task: Fetch level from pressure that have at least one corresponding rainfall measurement for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075932 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: ts, lat, depth, type
Sensor: snow_depth | fields: type, qc, lat, unit
Task: Get reading from turbidity where depth appears in snow_depth readings with matching type.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075933 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: depth, level, qc, reading
Sensor: evaporation | fields: unit, lat, level, lon
Task: Retrieve reading from dew_point whose ts is found in evaporation records where depth matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="depth",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075934 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: depth, lat, qc, type
Sensor: dew_point | fields: reading, type, lat, qc
Task: Fetch value from cloud_cover where reading is greater than the count of of reading in dew_point for matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075935 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: lon, depth, unit, ts
Sensor: evaporation | fields: reading, value, depth, type
Task: Fetch lat from pressure where reading is greater than the total of reading in evaporation for matching ts.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("evaporation", code="evp"),
match="ts"),
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075936 | train |
v1 | Sensor network script:
Node: snow_depth | code: ref | fields: lon, value, lat, depth
Sensor: pressure | fields: level, lon, qc, value
Task: Get level from snow_depth where ts appears in pressure readings with matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="type",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075937 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: unit, lat, value, depth
Sensor: visibility | fields: qc, ts, unit, reading
Task: Fetch lat from lightning where depth is greater than the maximum of reading in visibility for matching type.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("visibility", code="clr"),
match="type"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075938 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: qc, lon, value, lat
Sensor: snow_depth | fields: level, value, unit, lat
Task: Get value from rainfall where type appears in snow_depth readings with matching qc.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075939 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: ts, unit, type, qc
Sensor: drought_index | fields: qc, type, value, lat
Task: Fetch lon from sunlight where reading is greater than the maximum of depth in drought_index for matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075940 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: value, lat, ts, lon
Sensor: soil_moisture | fields: lon, ts, qc, type
Task: Retrieve lon from air_quality whose ts is found in soil_moisture records where ts matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075941 | train |
v1 | Sensor network script:
Node: visibility | code: clr | fields: qc, unit, ts, depth
Sensor: uv_index | fields: ts, value, level, lon
Task: Get depth from visibility where qc appears in uv_index readings with matching qc.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075942 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: depth, value, reading, type
Sensor: soil_moisture | fields: lon, level, depth, qc
Task: Get lat from air_quality where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075943 | train |
v3 | Sensor network script:
Node: evaporation | code: gst | fields: lon, value, type, level
Sensor: turbidity | fields: type, value, qc, lat
Task: Fetch depth from evaporation where reading is greater than the total of value in turbidity for matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "value",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075944 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: lon, level, unit, value
Sensor: drought_index | fields: qc, ts, value, lon
Task: Get level from uv_index where a corresponding entry exists in drought_index with the same type.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075945 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: lon, ts, lat, unit
Sensor: snow_depth | fields: reading, ts, lon, level
Task: Get depth from dew_point where qc appears in snow_depth readings with matching type.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="qc",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075946 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: reading, lon, value, qc
Sensor: humidity | fields: ts, value, lon, unit
Task: Fetch depth from evaporation that have at least one corresponding humidity measurement for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075947 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: depth, lat, level, ts
Sensor: pressure | fields: type, lon, ts, depth
Task: Get value from lightning where depth appears in pressure readings with matching qc.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075948 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: unit, depth, value, level
Sensor: drought_index | fields: lon, value, type, ts
Task: Retrieve depth from snow_depth with depth above the MAX(depth) of drought_index readings sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075949 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: reading, lat, type, level
Sensor: temperature | fields: qc, level, lat, depth
Task: Get value from rainfall where a corresponding entry exists in temperature with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075950 | train |
v1 | Sensor network script:
Node: soil_moisture | code: prt | fields: level, lon, unit, ts
Sensor: frost | fields: type, depth, unit, lat
Task: Retrieve value from soil_moisture whose type is found in frost records where qc matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="qc",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075951 | train |
v2 | Sensor network script:
Node: rainfall | code: thr | fields: qc, level, lon, value
Sensor: frost | fields: lat, value, qc, type
Task: Retrieve depth from rainfall that have at least one matching reading in frost sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075952 | train |
v3 | Sensor network script:
Node: drought_index | code: hub | fields: qc, level, reading, type
Sensor: cloud_cover | fields: unit, qc, value, lon
Task: Fetch value from drought_index where depth is greater than the average of depth in cloud_cover for matching type.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075953 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: depth, level, lon, reading
Sensor: snow_depth | fields: level, value, lon, depth
Task: Retrieve lat from uv_index with value above the MIN(depth) of snow_depth readings sharing the same type.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075954 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: lon, type, depth, value
Sensor: visibility | fields: lon, type, depth, lat
Task: Fetch reading from pressure where depth exists in visibility sensor data for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075955 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: depth, value, reading, qc
Sensor: snow_depth | fields: depth, lat, ts, value
Task: Fetch value from cloud_cover where ts exists in snow_depth sensor data for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="type",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075956 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: unit, reading, value, qc
Sensor: dew_point | fields: ts, qc, type, reading
Task: Retrieve value from rainfall with depth above the SUM(reading) of dew_point readings sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075957 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: reading, unit, ts, depth
Sensor: sunlight | fields: ts, unit, lat, level
Task: Retrieve lat from dew_point that have at least one matching reading in sunlight sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="unit",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075958 | train |
v3 | Sensor network script:
Node: snow_depth | code: ref | fields: lon, type, lat, unit
Sensor: wind_speed | fields: ts, type, lat, qc
Task: Fetch level from snow_depth where value is greater than the maximum of depth in wind_speed for matching ts.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075959 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: depth, qc, unit, level
Sensor: lightning | fields: qc, lat, unit, value
Task: Retrieve reading from cloud_cover that have at least one matching reading in lightning sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075960 | train |
v3 | Sensor network script:
Node: lightning | code: hub | fields: lat, qc, level, ts
Sensor: pressure | fields: reading, lat, level, type
Task: Retrieve lon from lightning with reading above the MIN(value) of pressure readings sharing the same unit.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075961 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: ts, type, value, level
Sensor: drought_index | fields: depth, lat, lon, level
Task: Fetch lat from frost where qc exists in drought_index sensor data for the same type.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="type",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075962 | train |
v3 | Sensor network script:
Node: pressure | code: hub | fields: level, qc, lat, depth
Sensor: dew_point | fields: level, qc, lat, lon
Task: Get lon from pressure where value exceeds the average reading from dew_point for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075963 | train |
v2 | Sensor network script:
Node: wind_speed | code: ref | fields: value, lat, level, lon
Sensor: temperature | fields: type, ts, unit, lat
Task: Get value from wind_speed where a corresponding entry exists in temperature with the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075964 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: reading, depth, qc, type
Sensor: uv_index | fields: unit, qc, ts, lat
Task: Retrieve level from sunlight with reading above the MIN(depth) of uv_index readings sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075965 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: value, depth, type, unit
Sensor: drought_index | fields: qc, lon, type, unit
Task: Get level from frost where depth exceeds the total depth from drought_index for the same type.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075966 | train |
v2 | Sensor network script:
Node: wind_speed | code: stn | fields: reading, lat, value, ts
Sensor: soil_moisture | fields: value, qc, depth, lon
Task: Retrieve reading from wind_speed that have at least one matching reading in soil_moisture sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075967 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: qc, type, value, lon
Sensor: snow_depth | fields: type, qc, depth, unit
Task: Fetch level from humidity that have at least one corresponding snow_depth measurement for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075968 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: unit, qc, ts, lon
Sensor: turbidity | fields: unit, level, depth, ts
Task: Fetch depth from frost that have at least one corresponding turbidity measurement for the same ts.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075969 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: lon, unit, ts, qc
Sensor: snow_depth | fields: depth, type, lat, reading
Task: Retrieve lat from cloud_cover that have at least one matching reading in snow_depth sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lat",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075970 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: depth, lon, value, lat
Sensor: turbidity | fields: depth, ts, type, qc
Task: Fetch reading from uv_index where reading is greater than the minimum of reading in turbidity for matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075971 | train |
v2 | Sensor network script:
Node: wind_speed | code: gst | fields: qc, ts, lat, lon
Sensor: snow_depth | fields: reading, value, lat, lon
Task: Retrieve value from wind_speed that have at least one matching reading in snow_depth sharing the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075972 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: reading, depth, ts, lat
Sensor: wind_speed | fields: lon, level, lat, ts
Task: Retrieve reading from humidity whose qc is found in wind_speed records where unit matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075973 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: lat, qc, value, reading
Sensor: pressure | fields: level, reading, type, lon
Task: Retrieve depth from air_quality whose unit is found in pressure records where unit matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="unit",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075974 | train |
v2 | Sensor network script:
Node: rainfall | code: prt | fields: ts, type, lon, level
Sensor: lightning | fields: value, qc, unit, reading
Task: Fetch level from rainfall that have at least one corresponding lightning measurement for the same depth.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075975 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: lat, reading, level, qc
Sensor: drought_index | fields: depth, ts, lon, value
Task: Fetch level from lightning where qc exists in drought_index sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="type",
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075976 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: depth, lat, qc, level
Sensor: snow_depth | fields: unit, qc, depth, level
Task: Retrieve reading from pressure with reading above the COUNT(depth) of snow_depth readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075977 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: value, type, qc, level
Sensor: dew_point | fields: lon, type, lat, value
Task: Get reading from pressure where a corresponding entry exists in dew_point with the same depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075978 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: unit, ts, lon, qc
Sensor: drought_index | fields: type, level, lat, lon
Task: Retrieve reading from rainfall that have at least one matching reading in drought_index sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "stn",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075979 | train |
v3 | Sensor network script:
Node: wind_speed | code: clr | fields: qc, lat, value, type
Sensor: air_quality | fields: type, unit, value, reading
Task: Fetch level from wind_speed where value is greater than the average of depth in air_quality for matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075980 | train |
v1 | Sensor network script:
Node: wind_speed | code: prt | fields: level, lon, ts, qc
Sensor: temperature | fields: level, depth, qc, type
Task: Fetch lat from wind_speed where qc exists in temperature sensor data for the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="unit",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075981 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: unit, ts, depth, type
Sensor: cloud_cover | fields: type, depth, lat, lon
Task: Get lon from pressure where a corresponding entry exists in cloud_cover with the same depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075982 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: level, ts, reading, unit
Sensor: wind_speed | fields: unit, lat, type, level
Task: Fetch value from sunlight that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075983 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: unit, reading, level, type
Sensor: evaporation | fields: lat, qc, lon, unit
Task: Get depth from lightning where depth exceeds the count of value from evaporation for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("evaporation", code="evp"),
match="depth"),
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075984 | train |
v3 | Sensor network script:
Node: pressure | code: hub | fields: level, unit, reading, ts
Sensor: lightning | fields: lat, lon, qc, type
Task: Get reading from pressure where value exceeds the total value from lightning for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("lightning", code="tnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075985 | train |
v1 | Sensor network script:
Node: drought_index | code: hub | fields: lat, value, depth, lon
Sensor: pressure | fields: reading, ts, level, type
Task: Get lat from drought_index where ts appears in pressure readings with matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="hub"),
filter=set_member(
field="ts",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075986 | train |
v2 | Sensor network script:
Node: evaporation | code: mst | fields: type, depth, reading, ts
Sensor: humidity | fields: lon, unit, type, level
Task: Retrieve level from evaporation that have at least one matching reading in humidity sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="unit",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075987 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: qc, ts, level, value
Sensor: soil_moisture | fields: lat, value, ts, lon
Task: Retrieve level from evaporation with depth above the MIN(reading) of soil_moisture readings sharing the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075988 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: value, reading, lon, qc
Sensor: frost | fields: ts, level, unit, lat
Task: Fetch level from turbidity that have at least one corresponding frost measurement for the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075989 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: lat, type, qc, reading
Sensor: temperature | fields: lon, type, qc, unit
Task: Retrieve lon from air_quality that have at least one matching reading in temperature sharing the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="qc",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075990 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: lat, value, lon, type
Sensor: snow_depth | fields: depth, type, lat, qc
Task: Get lon from cloud_cover where unit appears in snow_depth readings with matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="unit",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075991 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: depth, lat, qc, level
Sensor: snow_depth | fields: reading, unit, lon, type
Task: Retrieve value from drought_index that have at least one matching reading in snow_depth sharing the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075992 | train |
v2 | Sensor network script:
Node: lightning | code: hub | fields: qc, depth, lat, unit
Sensor: frost | fields: unit, level, lon, qc
Task: Fetch lat from lightning that have at least one corresponding frost measurement for the same type.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="type",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075993 | train |
v1 | Sensor network script:
Node: turbidity | code: thr | fields: lat, unit, level, ts
Sensor: rainfall | fields: ts, lon, type, qc
Task: Fetch lon from turbidity where qc exists in rainfall sensor data for the same qc.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075994 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: unit, level, depth, lon
Sensor: rainfall | fields: lon, lat, qc, unit
Task: Retrieve value from temperature that have at least one matching reading in rainfall sharing the same depth.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075995 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: lat, ts, type, depth
Sensor: visibility | fields: level, depth, lon, lat
Task: Get value from evaporation where type appears in visibility readings with matching ts.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="ts",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075996 | train |
v2 | Sensor network script:
Node: rainfall | code: clr | fields: ts, lon, type, unit
Sensor: temperature | fields: type, reading, level, ts
Task: Fetch reading from rainfall that have at least one corresponding temperature measurement for the same type.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_075997 | train |
v3 | Sensor network script:
Node: soil_moisture | code: prt | fields: depth, unit, value, lat
Sensor: turbidity | fields: qc, lat, depth, type
Task: Retrieve value from soil_moisture with reading above the MAX(reading) of turbidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075998 | train |
v3 | Sensor network script:
Node: snow_depth | code: ref | fields: ts, unit, lon, lat
Sensor: drought_index | fields: level, ts, reading, lat
Task: Retrieve value from snow_depth with depth above the SUM(reading) of drought_index readings sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_075999 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.