variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v2 | Sensor network script:
Node: temperature | code: clr | fields: qc, reading, lat, depth
Sensor: uv_index | fields: lon, type, qc, value
Task: Fetch value from temperature that have at least one corresponding uv_index measurement for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="qc",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019200 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: type, depth, level, lat
Sensor: sunlight | fields: unit, lat, level, depth
Task: Fetch value from pressure that have at least one corresponding sunlight measurement for the same type.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019201 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: type, lat, ts, reading
Sensor: snow_depth | fields: lon, type, ts, reading
Task: Retrieve reading from lightning that have at least one matching reading in snow_depth sharing the same unit.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019202 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: type, reading, qc, level
Sensor: wind_speed | fields: value, type, level, lon
Task: Retrieve value from air_quality with depth above the MAX(depth) of wind_speed readings sharing the same type.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019203 | train |
v3 | Sensor network script:
Node: dew_point | code: prt | fields: level, type, lon, reading
Sensor: soil_moisture | fields: value, type, ts, reading
Task: Fetch lat from dew_point where value is greater than the count of of value in soil_moisture for matching type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019204 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: ts, type, level, lat
Sensor: wind_speed | fields: lon, lat, type, value
Task: Get lon from evaporation where unit appears in wind_speed readings with matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019205 | train |
v3 | Sensor network script:
Node: evaporation | code: ref | fields: value, lon, qc, level
Sensor: lightning | fields: lat, level, qc, type
Task: Get level from evaporation where depth exceeds the count of depth from lightning for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019206 | train |
v1 | Sensor network script:
Node: dew_point | code: clr | fields: type, lon, level, depth
Sensor: soil_moisture | fields: level, depth, ts, reading
Task: Fetch value from dew_point where type exists in soil_moisture sensor data for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019207 | train |
v1 | Sensor network script:
Node: evaporation | code: clr | fields: reading, type, lat, depth
Sensor: frost | fields: qc, type, level, depth
Task: Fetch value from evaporation where type exists in frost sensor data for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="type",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019208 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: lon, depth, ts, value
Sensor: uv_index | fields: type, unit, lat, level
Task: Retrieve value from turbidity whose type is found in uv_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="type",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019209 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: qc, ts, value, unit
Sensor: dew_point | fields: depth, ts, lat, type
Task: Retrieve lon from air_quality whose type is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019210 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: value, lon, ts, lat
Sensor: sunlight | fields: level, unit, ts, value
Task: Get depth from visibility where unit appears in sunlight readings with matching depth.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="unit",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019211 | train |
v3 | Sensor network script:
Node: frost | code: clr | fields: unit, depth, qc, type
Sensor: snow_depth | fields: depth, type, lon, qc
Task: Get lon from frost where value exceeds the maximum reading from snow_depth for the same qc.
Script: | readings = fetch(
node=Node("frost", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="lon",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "lon",
"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_019212 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: level, lon, value, ts
Sensor: visibility | fields: qc, depth, lon, value
Task: Fetch depth from temperature where depth exists in visibility sensor data for the same type.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="depth",
source=Probe("visibility", code="clr"),
match="type",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019213 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: lat, value, depth, qc
Sensor: turbidity | fields: qc, unit, ts, reading
Task: Retrieve reading from cloud_cover that have at least one matching reading in turbidity sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019214 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: qc, level, lon, ts
Sensor: pressure | fields: value, type, level, reading
Task: Get value from soil_moisture where a corresponding entry exists in pressure with the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019215 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: reading, level, type, ts
Sensor: dew_point | fields: depth, type, unit, lon
Task: Get lon from air_quality where a corresponding entry exists in dew_point with the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019216 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: reading, ts, type, depth
Sensor: pressure | fields: lat, unit, qc, type
Task: Fetch level from rainfall where depth exists in pressure sensor data for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019217 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: reading, lat, level, unit
Sensor: sunlight | fields: lat, ts, depth, value
Task: Fetch lat from soil_moisture where depth exists in sunlight sensor data for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="type",
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019218 | train |
v3 | Sensor network script:
Node: frost | code: stn | fields: lon, ts, unit, level
Sensor: snow_depth | fields: qc, lon, depth, unit
Task: Fetch depth from frost where value is greater than the minimum of reading in snow_depth for matching unit.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019219 | train |
v3 | Sensor network script:
Node: snow_depth | code: prt | fields: lon, ts, type, reading
Sensor: turbidity | fields: value, level, ts, depth
Task: Retrieve reading from snow_depth with value above the MAX(reading) of turbidity readings sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("turbidity", code="ftu"),
match="type"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019220 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: lon, lat, qc, level
Sensor: air_quality | fields: level, ts, value, lat
Task: Get value from evaporation where type appears in air_quality readings with matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="value",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019221 | train |
v2 | Sensor network script:
Node: drought_index | code: gst | fields: level, ts, lat, reading
Sensor: pressure | fields: lon, qc, ts, depth
Task: Fetch lat from drought_index that have at least one corresponding pressure measurement for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="type",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019222 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: lon, lat, reading, type
Sensor: evaporation | fields: unit, lat, value, depth
Task: Retrieve depth from wind_speed whose ts is found in evaporation records where unit matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="ts",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019223 | train |
v3 | Sensor network script:
Node: soil_moisture | code: clr | fields: qc, lon, level, value
Sensor: lightning | fields: reading, value, lon, lat
Task: Retrieve lat from soil_moisture with depth above the MIN(reading) of lightning readings sharing the same unit.
Script: | readings = fetch(
node=Node("soil_moisture", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("lightning", code="tnd"),
match="unit"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019224 | train |
v2 | Sensor network script:
Node: cloud_cover | code: clr | fields: lon, depth, value, level
Sensor: drought_index | fields: type, level, depth, qc
Task: Retrieve value from cloud_cover that have at least one matching reading in drought_index sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019225 | train |
v1 | Sensor network script:
Node: drought_index | code: thr | fields: ts, unit, lon, qc
Sensor: humidity | fields: lat, qc, level, depth
Task: Get lon from drought_index where ts appears in humidity readings with matching unit.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019226 | train |
v2 | Sensor network script:
Node: drought_index | code: prt | fields: unit, ts, reading, level
Sensor: pressure | fields: type, value, depth, lon
Task: Fetch value from drought_index that have at least one corresponding pressure measurement for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019227 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: depth, lat, reading, lon
Sensor: temperature | fields: type, lat, qc, unit
Task: Fetch depth from wind_speed where type exists in temperature sensor data for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="ts",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019228 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: reading, level, qc, lat
Sensor: dew_point | fields: level, ts, lon, type
Task: Fetch reading from sunlight where ts exists in dew_point sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019229 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: reading, value, level, depth
Sensor: visibility | fields: ts, unit, type, qc
Task: Get value from frost where qc appears in visibility readings with matching qc.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="qc",
source=Probe("visibility", code="clr"),
match="qc",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019230 | train |
v2 | Sensor network script:
Node: air_quality | code: gst | fields: lon, unit, value, level
Sensor: drought_index | fields: type, qc, ts, level
Task: Retrieve reading from air_quality that have at least one matching reading in drought_index sharing the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019231 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: level, lon, type, depth
Sensor: wind_speed | fields: lat, type, level, reading
Task: Fetch lat from lightning where ts exists in wind_speed sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019232 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: unit, lat, ts, depth
Sensor: drought_index | fields: ts, qc, lon, depth
Task: Get lat from temperature where depth appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019233 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: reading, value, lat, ts
Sensor: lightning | fields: qc, level, reading, unit
Task: Fetch lon from soil_moisture where depth exists in lightning sensor data for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019234 | train |
v3 | Sensor network script:
Node: soil_moisture | code: hub | fields: qc, unit, ts, lat
Sensor: humidity | fields: depth, reading, level, value
Task: Fetch depth from soil_moisture where value is greater than the total of depth in humidity for matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "depth",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019235 | train |
v3 | Sensor network script:
Node: snow_depth | code: mst | fields: reading, level, unit, ts
Sensor: evaporation | fields: level, type, qc, lat
Task: Fetch depth from snow_depth where reading is greater than the maximum of depth in evaporation for matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019236 | train |
v1 | Sensor network script:
Node: visibility | code: prt | fields: unit, lon, ts, value
Sensor: sunlight | fields: depth, reading, level, value
Task: Fetch depth from visibility where type exists in sunlight sensor data for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019237 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: value, type, depth, qc
Sensor: uv_index | fields: reading, lat, ts, qc
Task: Retrieve value from cloud_cover that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019238 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: lat, lon, qc, depth
Sensor: wind_speed | fields: ts, depth, reading, unit
Task: Get lat from lightning where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019239 | train |
v2 | Sensor network script:
Node: dew_point | code: gst | fields: depth, unit, qc, reading
Sensor: evaporation | fields: qc, reading, unit, type
Task: Fetch lat from dew_point that have at least one corresponding evaporation measurement for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019240 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: depth, ts, value, lon
Sensor: dew_point | fields: ts, level, unit, lon
Task: Fetch level from humidity where type exists in dew_point sensor data for the same ts.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019241 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: depth, reading, unit, ts
Sensor: cloud_cover | fields: lon, ts, depth, type
Task: Get level from wind_speed where qc appears in cloud_cover readings with matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019242 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: value, lat, qc, depth
Sensor: turbidity | fields: unit, level, reading, qc
Task: Retrieve value from sunlight whose depth is found in turbidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019243 | train |
v3 | Sensor network script:
Node: humidity | code: mst | fields: lon, reading, unit, type
Sensor: lightning | fields: type, unit, lon, qc
Task: Fetch reading from humidity where value is greater than the minimum of depth in lightning for matching ts.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "depth",
source=Probe("lightning", code="tnd"),
match="ts"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "mst",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019244 | train |
v2 | Sensor network script:
Node: pressure | code: thr | fields: unit, ts, value, level
Sensor: humidity | fields: ts, qc, reading, level
Task: Retrieve depth from pressure that have at least one matching reading in humidity sharing the same qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "thr",
"inner_alias": "hgr",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019245 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: level, value, unit, qc
Sensor: frost | fields: type, value, reading, lon
Task: Get depth from visibility where value exceeds the maximum depth from frost for the same ts.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("frost", code="frs"),
match="ts"),
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019246 | train |
v2 | Sensor network script:
Node: snow_depth | code: thr | fields: lon, type, unit, reading
Sensor: dew_point | fields: value, ts, type, lon
Task: Get depth from snow_depth where a corresponding entry exists in dew_point with the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019247 | train |
v3 | Sensor network script:
Node: frost | code: mst | fields: type, value, unit, reading
Sensor: air_quality | fields: value, type, level, lat
Task: Fetch value from frost where depth is greater than the minimum of reading in air_quality for matching depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019248 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: lat, type, reading, qc
Sensor: visibility | fields: reading, ts, depth, qc
Task: Fetch reading from dew_point that have at least one corresponding visibility measurement for the same type.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019249 | train |
v2 | Sensor network script:
Node: humidity | code: hub | fields: reading, qc, lat, level
Sensor: soil_moisture | fields: level, qc, depth, value
Task: Get reading from humidity where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019250 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: ts, qc, reading, lat
Sensor: snow_depth | fields: type, depth, qc, level
Task: Get reading from cloud_cover where a corresponding entry exists in snow_depth with the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019251 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: lon, ts, lat, unit
Sensor: sunlight | fields: value, reading, level, lon
Task: Get level from air_quality where value exceeds the minimum value from sunlight for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019252 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: reading, value, lon, level
Sensor: rainfall | fields: type, value, qc, lat
Task: Fetch depth from air_quality where unit exists in rainfall sensor data for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019253 | train |
v1 | Sensor network script:
Node: drought_index | code: gst | fields: reading, value, type, ts
Sensor: turbidity | fields: lon, qc, lat, ts
Task: Retrieve level from drought_index whose depth is found in turbidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019254 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: lat, type, level, unit
Sensor: snow_depth | fields: type, lon, reading, ts
Task: Get value from turbidity where reading exceeds the count of depth from snow_depth for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019255 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: lat, depth, unit, value
Sensor: evaporation | fields: level, value, qc, depth
Task: Get lat from air_quality where depth appears in evaporation readings with matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019256 | train |
v1 | Sensor network script:
Node: humidity | code: ref | fields: type, level, qc, depth
Sensor: visibility | fields: type, unit, ts, level
Task: Get value from humidity where unit appears in visibility readings with matching type.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="type",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019257 | train |
v2 | Sensor network script:
Node: soil_moisture | code: hub | fields: reading, type, lat, qc
Sensor: wind_speed | fields: lon, ts, reading, unit
Task: Fetch value from soil_moisture that have at least one corresponding wind_speed measurement for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019258 | train |
v1 | Sensor network script:
Node: wind_speed | code: ref | fields: value, unit, lat, level
Sensor: temperature | fields: level, depth, unit, lon
Task: Fetch value from wind_speed where ts exists in temperature sensor data for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="ref"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="qc",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019259 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: ts, reading, type, lat
Sensor: soil_moisture | fields: lon, lat, level, ts
Task: Retrieve value from air_quality whose unit is found in soil_moisture records where type matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019260 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: depth, ts, unit, value
Sensor: turbidity | fields: unit, ts, lat, value
Task: Retrieve lon from pressure whose type is found in turbidity records where depth matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="depth",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019261 | train |
v3 | Sensor network script:
Node: temperature | code: thr | fields: level, depth, lon, qc
Sensor: dew_point | fields: lon, value, ts, depth
Task: Retrieve value from temperature with depth above the MAX(depth) of dew_point readings sharing the same type.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019262 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: reading, ts, value, unit
Sensor: dew_point | fields: lon, unit, depth, value
Task: Retrieve level from pressure with reading above the MAX(reading) of dew_point readings sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("dew_point", code="cnd"),
match="unit"),
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019263 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: depth, qc, lon, level
Sensor: humidity | fields: level, depth, unit, ts
Task: Fetch level from uv_index that have at least one corresponding humidity measurement for the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="ts",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019264 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: type, lon, level, value
Sensor: uv_index | fields: qc, lat, level, lon
Task: Retrieve level from humidity whose qc is found in uv_index records where type matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="type",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019265 | train |
v1 | Sensor network script:
Node: drought_index | code: stn | fields: ts, level, qc, reading
Sensor: lightning | fields: lon, qc, level, unit
Task: Get value from drought_index where depth appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=set_member(
field="depth",
source=Probe("lightning", code="tnd"),
match="type",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019266 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: ts, qc, lat, lon
Sensor: drought_index | fields: lat, value, type, qc
Task: Retrieve reading from sunlight with reading above the SUM(depth) of drought_index readings sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019267 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: level, ts, reading, lat
Sensor: drought_index | fields: lat, ts, level, qc
Task: Fetch lat from air_quality where value is greater than the maximum of depth in drought_index for matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("drought_index", code="drt"),
match="depth"),
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019268 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: lon, type, ts, lat
Sensor: pressure | fields: type, qc, depth, unit
Task: Get reading from sunlight where a corresponding entry exists in pressure with the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019269 | train |
v2 | Sensor network script:
Node: air_quality | code: clr | fields: ts, level, depth, unit
Sensor: humidity | fields: ts, qc, unit, level
Task: Get value from air_quality where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019270 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: unit, reading, lat, lon
Sensor: wind_speed | fields: ts, lat, depth, reading
Task: Get lon from air_quality where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019271 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: depth, reading, lat, value
Sensor: snow_depth | fields: value, type, depth, qc
Task: Fetch level from cloud_cover where depth is greater than the average of value in snow_depth for matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019272 | train |
v2 | Sensor network script:
Node: visibility | code: ref | fields: qc, unit, level, type
Sensor: soil_moisture | fields: depth, lat, lon, unit
Task: Retrieve depth from visibility that have at least one matching reading in soil_moisture sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019273 | train |
v2 | Sensor network script:
Node: turbidity | code: prt | fields: reading, lat, type, level
Sensor: sunlight | fields: value, unit, qc, reading
Task: Retrieve lat from turbidity that have at least one matching reading in sunlight sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019274 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: reading, value, unit, lon
Sensor: drought_index | fields: level, type, depth, reading
Task: Retrieve reading from pressure that have at least one matching reading in drought_index sharing the same type.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019275 | train |
v3 | Sensor network script:
Node: drought_index | code: stn | fields: qc, type, depth, ts
Sensor: turbidity | fields: value, ts, lat, qc
Task: Get reading from drought_index where depth exceeds the maximum value from turbidity for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019276 | train |
v3 | Sensor network script:
Node: drought_index | code: prt | fields: lat, level, ts, unit
Sensor: dew_point | fields: reading, ts, level, qc
Task: Fetch lon from drought_index where depth is greater than the total of reading in dew_point for matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019277 | train |
v3 | Sensor network script:
Node: drought_index | code: mst | fields: type, lon, level, ts
Sensor: pressure | fields: qc, depth, reading, lon
Task: Get value from drought_index where depth exceeds the minimum depth from pressure for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019278 | train |
v2 | Sensor network script:
Node: snow_depth | code: thr | fields: ts, lat, type, depth
Sensor: sunlight | fields: lat, unit, ts, lon
Task: Retrieve lat from snow_depth that have at least one matching reading in sunlight sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "thr",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019279 | train |
v1 | Sensor network script:
Node: turbidity | code: hub | fields: lon, ts, unit, lat
Sensor: air_quality | fields: depth, type, reading, qc
Task: Get level from turbidity where ts appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019280 | train |
v1 | Sensor network script:
Node: wind_speed | code: clr | fields: level, unit, lon, qc
Sensor: sunlight | fields: lat, depth, qc, ts
Task: Fetch depth from wind_speed where qc exists in sunlight sensor data for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="qc",
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019281 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: level, depth, qc, ts
Sensor: uv_index | fields: ts, depth, reading, qc
Task: Fetch value from sunlight where ts exists in uv_index sensor data for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019282 | train |
v2 | Sensor network script:
Node: pressure | code: prt | fields: ts, unit, value, depth
Sensor: rainfall | fields: lat, ts, depth, unit
Task: Retrieve lon from pressure that have at least one matching reading in rainfall sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019283 | train |
v1 | Sensor network script:
Node: rainfall | code: gst | fields: lon, lat, unit, level
Sensor: air_quality | fields: level, reading, lat, unit
Task: Fetch value from rainfall where ts exists in air_quality sensor data for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019284 | train |
v3 | Sensor network script:
Node: pressure | code: stn | fields: type, lat, qc, reading
Sensor: air_quality | fields: type, reading, unit, lon
Task: Get lon from pressure where depth exceeds the count of depth from air_quality for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019285 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: lon, level, ts, type
Sensor: rainfall | fields: lat, value, ts, depth
Task: Get lat from pressure where a corresponding entry exists in rainfall with the same ts.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019286 | train |
v2 | Sensor network script:
Node: evaporation | code: gst | fields: lon, reading, qc, lat
Sensor: visibility | fields: ts, lat, depth, level
Task: Get depth from evaporation where a corresponding entry exists in visibility with the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="depth",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019287 | train |
v1 | Sensor network script:
Node: humidity | code: prt | fields: lat, lon, qc, ts
Sensor: turbidity | fields: level, unit, value, qc
Task: Retrieve depth from humidity whose unit is found in turbidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "prt",
"inner_alias": "ftu",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019288 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: ts, unit, value, depth
Sensor: visibility | fields: ts, depth, type, lat
Task: Get depth from soil_moisture where value exceeds the minimum value from visibility for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019289 | train |
v3 | Sensor network script:
Node: frost | code: ref | fields: level, unit, qc, type
Sensor: snow_depth | fields: depth, lon, reading, value
Task: Retrieve depth from frost with depth above the MIN(reading) of snow_depth readings sharing the same ts.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019290 | train |
v1 | Sensor network script:
Node: snow_depth | code: hub | fields: reading, level, qc, lat
Sensor: sunlight | fields: lon, lat, reading, value
Task: Get lon from snow_depth where ts appears in sunlight readings with matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="unit",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019291 | train |
v2 | Sensor network script:
Node: evaporation | code: clr | fields: reading, unit, ts, qc
Sensor: sunlight | fields: level, value, qc, ts
Task: Get level from evaporation where a corresponding entry exists in sunlight with the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019292 | train |
v1 | Sensor network script:
Node: uv_index | code: gst | fields: level, depth, qc, unit
Sensor: snow_depth | fields: ts, depth, lat, type
Task: Retrieve value from uv_index whose depth is found in snow_depth records where ts matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=set_member(
field="depth",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019293 | train |
v1 | Sensor network script:
Node: soil_moisture | code: hub | fields: reading, type, unit, level
Sensor: air_quality | fields: unit, level, value, reading
Task: Retrieve depth from soil_moisture whose unit is found in air_quality records where depth matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="hub"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019294 | train |
v2 | Sensor network script:
Node: turbidity | code: prt | fields: lat, value, unit, depth
Sensor: frost | fields: level, lon, reading, depth
Task: Get lat from turbidity where a corresponding entry exists in frost with the same unit.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019295 | train |
v1 | Sensor network script:
Node: evaporation | code: gst | fields: lon, level, type, lat
Sensor: uv_index | fields: value, reading, qc, lat
Task: Get lat from evaporation where ts appears in uv_index readings with matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019296 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: qc, unit, depth, value
Sensor: lightning | fields: lon, level, reading, lat
Task: Fetch reading from humidity where depth is greater than the count of of value in lightning for matching qc.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "lightning",
"outer_alias": "ref",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019297 | train |
v2 | Sensor network script:
Node: pressure | code: ref | fields: lat, qc, ts, level
Sensor: air_quality | fields: unit, level, value, reading
Task: Retrieve depth from pressure that have at least one matching reading in air_quality sharing the same ts.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="ts",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_019298 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: depth, lon, ts, type
Sensor: cloud_cover | fields: ts, qc, lat, value
Task: Get lat from air_quality where qc appears in cloud_cover readings with matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_019299 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.