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: prt | fields: depth, value, ts, reading
Sensor: evaporation | fields: reading, unit, value, ts
Task: Retrieve value from pressure with value above the MAX(value) of evaporation readings sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("evaporation", code="evp"),
match="unit"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079000 | train |
v1 | Sensor network script:
Node: lightning | code: stn | fields: level, qc, lat, ts
Sensor: frost | fields: lon, qc, value, type
Task: Retrieve reading from lightning whose unit is found in frost records where depth matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="stn"),
filter=set_member(
field="unit",
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079001 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: ts, lon, type, qc
Sensor: lightning | fields: level, qc, reading, type
Task: Get depth from snow_depth where a corresponding entry exists in lightning with the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079002 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: depth, level, type, unit
Sensor: soil_moisture | fields: level, ts, type, value
Task: Fetch lon from dew_point that have at least one corresponding soil_moisture measurement for the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079003 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: level, lon, lat, qc
Sensor: turbidity | fields: level, reading, ts, type
Task: Get lon from soil_moisture where value exceeds the count of reading from turbidity for the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079004 | train |
v3 | Sensor network script:
Node: visibility | code: clr | fields: level, qc, depth, lat
Sensor: air_quality | fields: lat, lon, type, reading
Task: Retrieve level from visibility with depth above the MIN(reading) of air_quality readings sharing the same unit.
Script: | readings = fetch(
node=Node("visibility", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079005 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: lat, reading, level, type
Sensor: soil_moisture | fields: type, level, qc, lon
Task: Get lon from rainfall where a corresponding entry exists in soil_moisture with the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="type",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079006 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: depth, unit, qc, reading
Sensor: drought_index | fields: reading, unit, value, lon
Task: Get lat from wind_speed where ts appears in drought_index readings with matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="ts",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lat",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079007 | train |
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: lat, qc, depth, lon
Sensor: visibility | fields: ts, type, reading, unit
Task: Get lon from wind_speed where value exceeds the count of depth from visibility for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("visibility", code="clr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079008 | train |
v1 | Sensor network script:
Node: rainfall | code: hub | fields: unit, level, qc, ts
Sensor: drought_index | fields: lat, reading, ts, value
Task: Fetch level from rainfall where unit exists in drought_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079009 | train |
v1 | Sensor network script:
Node: frost | code: prt | fields: unit, reading, value, type
Sensor: humidity | fields: unit, ts, reading, lat
Task: Get lat from frost where depth appears in humidity readings with matching unit.
Script: | readings = fetch(
node=Node("frost", code="prt"),
filter=set_member(
field="depth",
source=Probe("humidity", code="hgr"),
match="unit",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079010 | train |
v2 | Sensor network script:
Node: evaporation | code: stn | fields: depth, lat, qc, type
Sensor: frost | fields: unit, lon, type, value
Task: Retrieve level from evaporation that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079011 | train |
v3 | Sensor network script:
Node: humidity | code: ref | fields: lon, reading, unit, value
Sensor: sunlight | fields: level, reading, unit, depth
Task: Get value from humidity where value exceeds the count of reading from sunlight for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079012 | train |
v1 | Sensor network script:
Node: air_quality | code: mst | fields: depth, type, value, level
Sensor: dew_point | fields: value, unit, level, ts
Task: Get reading from air_quality where ts appears in dew_point readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079013 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: type, level, value, reading
Sensor: evaporation | fields: reading, value, type, level
Task: Retrieve value from cloud_cover whose type is found in evaporation records where type matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079014 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: ts, lon, unit, level
Sensor: evaporation | fields: type, value, level, unit
Task: Get value from humidity where a corresponding entry exists in evaporation with the same depth.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079015 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: type, lon, value, level
Sensor: dew_point | fields: lon, depth, qc, type
Task: Fetch lon from sunlight where reading is greater than the total of reading in dew_point for matching qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079016 | train |
v3 | Sensor network script:
Node: pressure | code: gst | fields: unit, reading, qc, level
Sensor: humidity | fields: level, value, type, lat
Task: Retrieve value from pressure with depth above the MAX(reading) of humidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079017 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: lat, reading, depth, level
Sensor: dew_point | fields: type, ts, qc, reading
Task: Get level from rainfall where value exceeds the maximum value from dew_point for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "value",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079018 | train |
v3 | Sensor network script:
Node: humidity | code: thr | fields: lon, reading, unit, level
Sensor: snow_depth | fields: reading, lat, unit, value
Task: Fetch level from humidity where reading is greater than the total of reading in snow_depth for matching unit.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079019 | train |
v1 | Sensor network script:
Node: frost | code: gst | fields: lat, type, level, unit
Sensor: humidity | fields: lon, type, lat, value
Task: Fetch value from frost where type exists in humidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=set_member(
field="type",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "humidity",
"outer_alias": "gst",
"inner_alias": "hgr",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079020 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: ts, level, type, reading
Sensor: evaporation | fields: level, value, ts, depth
Task: Fetch lat from sunlight where depth exists in evaporation sensor data for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079021 | train |
v2 | Sensor network script:
Node: turbidity | code: mst | fields: value, type, reading, lon
Sensor: cloud_cover | fields: lon, lat, level, ts
Task: Fetch level from turbidity that have at least one corresponding cloud_cover measurement for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079022 | train |
v1 | Sensor network script:
Node: sunlight | code: thr | fields: depth, lat, level, reading
Sensor: snow_depth | fields: reading, type, depth, unit
Task: Fetch value from sunlight where ts exists in snow_depth sensor data for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="thr"),
filter=set_member(
field="ts",
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079023 | train |
v2 | Sensor network script:
Node: rainfall | code: ref | fields: ts, depth, qc, value
Sensor: sunlight | fields: value, level, depth, unit
Task: Retrieve lon from rainfall that have at least one matching reading in sunlight sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="ref"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="unit",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079024 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: type, level, unit, reading
Sensor: soil_moisture | fields: level, reading, unit, type
Task: Retrieve value from cloud_cover that have at least one matching reading in soil_moisture sharing the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079025 | train |
v2 | Sensor network script:
Node: drought_index | code: gst | fields: unit, reading, lon, value
Sensor: sunlight | fields: type, qc, ts, lon
Task: Fetch value from drought_index that have at least one corresponding sunlight measurement for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="ts",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079026 | train |
v2 | Sensor network script:
Node: air_quality | code: hub | fields: unit, reading, level, type
Sensor: lightning | fields: type, unit, qc, reading
Task: Fetch lat from air_quality that have at least one corresponding lightning measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079027 | train |
v2 | Sensor network script:
Node: wind_speed | code: mst | fields: lat, reading, unit, type
Sensor: turbidity | fields: ts, lat, level, qc
Task: Get value from wind_speed where a corresponding entry exists in turbidity with the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="type",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079028 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: lon, lat, value, qc
Sensor: sunlight | fields: reading, unit, level, depth
Task: Retrieve value from visibility whose type is found in sunlight records where type matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="type",
source=Probe("sunlight", code="brt"),
match="type",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079029 | train |
v1 | Sensor network script:
Node: rainfall | code: prt | fields: level, value, depth, qc
Sensor: evaporation | fields: lon, lat, level, depth
Task: Retrieve level from rainfall whose type is found in evaporation records where type matches the outer node.
Script: | readings = fetch(
node=Node("rainfall", code="prt"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="type",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "level",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079030 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: level, type, qc, ts
Sensor: cloud_cover | fields: lon, reading, ts, depth
Task: Get value from sunlight where ts appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079031 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: type, reading, unit, lon
Sensor: air_quality | fields: unit, reading, value, qc
Task: Fetch reading from pressure where depth is greater than the average of reading in air_quality for matching depth.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079032 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: qc, ts, level, reading
Sensor: drought_index | fields: level, qc, depth, reading
Task: Get level from wind_speed where depth appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079033 | train |
v2 | Sensor network script:
Node: snow_depth | code: thr | fields: depth, unit, ts, type
Sensor: evaporation | fields: lon, qc, reading, level
Task: Get lon from snow_depth where a corresponding entry exists in evaporation with the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079034 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: lon, reading, depth, value
Sensor: humidity | fields: level, type, unit, reading
Task: Retrieve value from rainfall with reading above the MIN(reading) of humidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "value",
"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_079035 | train |
v1 | Sensor network script:
Node: air_quality | code: stn | fields: lon, depth, unit, ts
Sensor: temperature | fields: lon, value, ts, unit
Task: Fetch lon from air_quality where ts exists in temperature sensor data for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="depth",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079036 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: depth, reading, ts, lon
Sensor: temperature | fields: lon, unit, lat, reading
Task: Get depth from pressure where ts appears in temperature readings with matching ts.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="ts",
source=Probe("temperature", code="thr"),
match="ts",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079037 | train |
v3 | Sensor network script:
Node: air_quality | code: prt | fields: value, reading, level, unit
Sensor: pressure | fields: lon, type, reading, qc
Task: Fetch depth from air_quality where depth is greater than the maximum of value in pressure for matching ts.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079038 | train |
v3 | Sensor network script:
Node: visibility | code: prt | fields: ts, level, type, unit
Sensor: frost | fields: lat, qc, reading, depth
Task: Fetch lon from visibility where depth is greater than the average of value in frost for matching depth.
Script: | readings = fetch(
node=Node("visibility", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("frost", code="frs"),
match="depth"),
),
output="lon",
) | {
"outer_table": "visibility",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079039 | train |
v2 | Sensor network script:
Node: cloud_cover | code: thr | fields: level, lat, unit, depth
Sensor: uv_index | fields: value, unit, reading, lat
Task: Get level from cloud_cover where a corresponding entry exists in uv_index with the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="unit",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079040 | train |
v2 | Sensor network script:
Node: snow_depth | code: stn | fields: lat, lon, level, ts
Sensor: visibility | fields: lon, type, depth, value
Task: Get lon from snow_depth where a corresponding entry exists in visibility with the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079041 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: lat, reading, type, unit
Sensor: frost | fields: ts, depth, lat, lon
Task: Get lon from wind_speed where value exceeds the maximum reading from frost for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("frost", code="frs"),
match="qc"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079042 | train |
v3 | Sensor network script:
Node: lightning | code: clr | fields: ts, level, value, reading
Sensor: rainfall | fields: reading, value, qc, unit
Task: Get value from lightning where depth exceeds the maximum reading from rainfall for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079043 | train |
v1 | Sensor network script:
Node: pressure | code: prt | fields: lat, depth, ts, level
Sensor: dew_point | fields: type, ts, level, lon
Task: Get level from pressure where unit appears in dew_point readings with matching qc.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079044 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: depth, type, lon, value
Sensor: cloud_cover | fields: unit, ts, value, lon
Task: Fetch value from frost where value is greater than the count of of reading in cloud_cover for matching depth.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079045 | train |
v1 | Sensor network script:
Node: visibility | code: hub | fields: level, reading, type, qc
Sensor: uv_index | fields: level, depth, lon, unit
Task: Get value from visibility where qc appears in uv_index readings with matching qc.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079046 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: level, lat, qc, depth
Sensor: temperature | fields: unit, lon, reading, level
Task: Get lon from rainfall where depth exceeds the total value from temperature for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079047 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: depth, type, lon, level
Sensor: lightning | fields: lon, level, depth, lat
Task: Get lat from snow_depth where qc appears in lightning readings with matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="qc",
source=Probe("lightning", code="tnd"),
match="qc",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079048 | train |
v2 | Sensor network script:
Node: sunlight | code: clr | fields: type, reading, value, lat
Sensor: snow_depth | fields: lon, lat, qc, unit
Task: Retrieve reading from sunlight that have at least one matching reading in snow_depth sharing the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079049 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: depth, ts, reading, level
Sensor: dew_point | fields: ts, level, depth, qc
Task: Fetch depth from temperature where value is greater than the average of depth in dew_point for matching depth.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079050 | train |
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: reading, level, lon, value
Sensor: uv_index | fields: unit, value, lat, level
Task: Fetch lon from wind_speed where value is greater than the count of of depth in uv_index for matching unit.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079051 | train |
v2 | Sensor network script:
Node: visibility | code: ref | fields: ts, unit, lat, level
Sensor: wind_speed | fields: type, depth, lon, lat
Task: Fetch lat from visibility that have at least one corresponding wind_speed measurement for the same qc.
Script: | readings = fetch(
node=Node("visibility", code="ref"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079052 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: unit, lat, qc, value
Sensor: visibility | fields: value, depth, level, unit
Task: Get reading from drought_index where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079053 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: unit, qc, reading, depth
Sensor: drought_index | fields: depth, lat, ts, qc
Task: Retrieve depth from soil_moisture whose unit is found in drought_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079054 | train |
v1 | Sensor network script:
Node: turbidity | code: stn | fields: lon, lat, value, depth
Sensor: soil_moisture | fields: level, ts, unit, lon
Task: Fetch reading from turbidity where ts exists in soil_moisture sensor data for the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079055 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: qc, value, ts, type
Sensor: dew_point | fields: depth, ts, unit, level
Task: Retrieve lat from uv_index whose qc is found in dew_point records where ts matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="qc",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079056 | train |
v3 | Sensor network script:
Node: humidity | code: mst | fields: lat, unit, reading, value
Sensor: sunlight | fields: reading, qc, depth, lon
Task: Retrieve level from humidity with depth above the MAX(reading) of sunlight readings sharing the same unit.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "reading",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079057 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: lon, qc, type, level
Sensor: uv_index | fields: level, depth, value, ts
Task: Retrieve lon from temperature whose unit is found in uv_index records where type matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="unit",
source=Probe("uv_index", code="flx"),
match="type",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079058 | train |
v1 | Sensor network script:
Node: sunlight | code: ref | fields: level, lat, type, ts
Sensor: turbidity | fields: ts, level, lat, unit
Task: Retrieve lon from sunlight whose ts is found in turbidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=set_member(
field="ts",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079059 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: qc, reading, lat, ts
Sensor: snow_depth | fields: reading, lon, lat, value
Task: Get value from humidity where depth exceeds the average reading from snow_depth for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079060 | train |
v3 | Sensor network script:
Node: snow_depth | code: ref | fields: value, lat, unit, type
Sensor: sunlight | fields: lon, lat, reading, type
Task: Fetch reading from snow_depth where depth is greater than the count of of value in sunlight for matching ts.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("sunlight", code="brt"),
match="ts"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079061 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: ts, value, unit, lon
Sensor: drought_index | fields: value, lon, ts, depth
Task: Get level from wind_speed where unit appears in drought_index readings with matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="unit",
source=Probe("drought_index", code="drt"),
match="ts",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079062 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: lon, value, reading, qc
Sensor: snow_depth | fields: unit, level, reading, value
Task: Fetch value from humidity where depth is greater than the total of value in snow_depth for matching type.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("snow_depth", code="snw"),
match="type"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "stn",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079063 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: level, lat, type, qc
Sensor: pressure | fields: type, value, lon, unit
Task: Fetch lat from uv_index where depth is greater than the total of value in pressure for matching qc.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079064 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: type, value, ts, unit
Sensor: evaporation | fields: ts, lat, lon, unit
Task: Get value from cloud_cover where a corresponding entry exists in evaporation with the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079065 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: level, ts, type, reading
Sensor: snow_depth | fields: ts, depth, unit, reading
Task: Retrieve lat from rainfall that have at least one matching reading in snow_depth sharing the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079066 | train |
v1 | Sensor network script:
Node: sunlight | code: mst | fields: lon, ts, qc, lat
Sensor: wind_speed | fields: ts, unit, qc, reading
Task: Get lon from sunlight where qc appears in wind_speed readings with matching type.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079067 | train |
v1 | Sensor network script:
Node: temperature | code: gst | fields: qc, reading, level, depth
Sensor: lightning | fields: lat, qc, type, reading
Task: Get reading from temperature where ts appears in lightning readings with matching type.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="type",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079068 | train |
v1 | Sensor network script:
Node: rainfall | code: stn | fields: depth, lon, value, lat
Sensor: temperature | fields: lat, lon, value, level
Task: Get depth from rainfall where type appears in temperature readings with matching depth.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="depth",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079069 | train |
v3 | Sensor network script:
Node: visibility | code: hub | fields: lon, lat, reading, qc
Sensor: snow_depth | fields: lat, value, type, qc
Task: Fetch lat from visibility where depth is greater than the minimum of depth in snow_depth for matching ts.
Script: | readings = fetch(
node=Node("visibility", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("snow_depth", code="snw"),
match="ts"),
),
output="lat",
) | {
"outer_table": "visibility",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079070 | train |
v1 | Sensor network script:
Node: evaporation | code: gst | fields: value, depth, lon, type
Sensor: air_quality | fields: lat, ts, depth, level
Task: Retrieve depth from evaporation whose unit is found in air_quality records where depth matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079071 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: level, reading, qc, type
Sensor: visibility | fields: lat, type, level, unit
Task: Get reading from frost where a corresponding entry exists in visibility with the same ts.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="ts",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079072 | train |
v3 | Sensor network script:
Node: pressure | code: thr | fields: value, unit, depth, qc
Sensor: air_quality | fields: depth, qc, reading, type
Task: Retrieve lon from pressure with reading above the MIN(depth) of air_quality readings sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079073 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: level, lat, unit, ts
Sensor: rainfall | fields: reading, qc, level, ts
Task: Get reading from dew_point where a corresponding entry exists in rainfall with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "rainfall",
"outer_alias": "mst",
"inner_alias": "rnfl",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079074 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: qc, lat, type, level
Sensor: cloud_cover | fields: lat, depth, ts, reading
Task: Fetch depth from sunlight where value is greater than the average of value in cloud_cover for matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079075 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: qc, value, type, depth
Sensor: soil_moisture | fields: type, lat, level, ts
Task: Get value from drought_index where reading exceeds the average depth from soil_moisture for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "depth",
source=Probe("soil_moisture", code="grvl"),
match="ts"),
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079076 | train |
v3 | Sensor network script:
Node: lightning | code: prt | fields: value, depth, unit, reading
Sensor: humidity | fields: ts, unit, qc, lat
Task: Retrieve lon from lightning with reading above the MIN(value) of humidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079077 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: reading, qc, lon, level
Sensor: soil_moisture | fields: lat, lon, ts, depth
Task: Get lon from drought_index where a corresponding entry exists in soil_moisture with the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079078 | train |
v3 | Sensor network script:
Node: lightning | code: thr | fields: lat, qc, depth, type
Sensor: drought_index | fields: unit, reading, lon, qc
Task: Retrieve lat from lightning with reading above the SUM(reading) of drought_index readings sharing the same qc.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079079 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: level, ts, reading, unit
Sensor: sunlight | fields: ts, qc, unit, lon
Task: Fetch level from pressure that have at least one corresponding sunlight measurement for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079080 | train |
v3 | Sensor network script:
Node: snow_depth | code: thr | fields: unit, lat, type, qc
Sensor: soil_moisture | fields: reading, ts, depth, level
Task: Retrieve lon from snow_depth with depth above the SUM(depth) of soil_moisture readings sharing the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("soil_moisture", code="grvl"),
match="qc"),
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079081 | train |
v2 | Sensor network script:
Node: uv_index | code: ref | fields: lat, unit, ts, type
Sensor: soil_moisture | fields: qc, type, lon, level
Task: Fetch lon from uv_index that have at least one corresponding soil_moisture measurement for the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079082 | train |
v2 | Sensor network script:
Node: cloud_cover | code: hub | fields: qc, reading, lon, level
Sensor: humidity | fields: ts, lon, depth, qc
Task: Retrieve level from cloud_cover that have at least one matching reading in humidity sharing the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="qc",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079083 | train |
v3 | Sensor network script:
Node: sunlight | code: prt | fields: level, depth, qc, unit
Sensor: snow_depth | fields: qc, reading, depth, unit
Task: Fetch value from sunlight where reading is greater than the total of reading in snow_depth for matching depth.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="depth"),
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079084 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: qc, reading, unit, type
Sensor: humidity | fields: type, level, value, lat
Task: Fetch level from wind_speed where ts exists in humidity sensor data for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="ts",
source=Probe("humidity", code="hgr"),
match="type",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079085 | train |
v1 | Sensor network script:
Node: turbidity | code: prt | fields: lat, level, depth, value
Sensor: humidity | fields: value, level, type, depth
Task: Retrieve lon from turbidity whose qc is found in humidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="ts",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079086 | train |
v2 | Sensor network script:
Node: frost | code: gst | fields: depth, unit, qc, value
Sensor: sunlight | fields: unit, value, qc, type
Task: Fetch level from frost that have at least one corresponding sunlight measurement for the same type.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079087 | train |
v1 | Sensor network script:
Node: evaporation | code: thr | fields: value, level, type, qc
Sensor: drought_index | fields: level, ts, qc, type
Task: Retrieve depth from evaporation whose qc is found in drought_index records where depth matches the outer node.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="depth",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079088 | train |
v1 | Sensor network script:
Node: evaporation | code: ref | fields: qc, lon, lat, value
Sensor: soil_moisture | fields: ts, type, lat, level
Task: Fetch depth from evaporation where depth exists in soil_moisture sensor data for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="ref"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079089 | train |
v3 | Sensor network script:
Node: wind_speed | code: stn | fields: lon, qc, lat, value
Sensor: cloud_cover | fields: lon, type, lat, reading
Task: Get value from wind_speed where depth exceeds the minimum reading from cloud_cover for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "reading",
source=Probe("cloud_cover", code="nbl"),
match="type"),
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079090 | train |
v3 | Sensor network script:
Node: evaporation | code: stn | fields: reading, unit, level, value
Sensor: pressure | fields: level, unit, type, value
Task: Fetch level from evaporation where depth is greater than the count of of reading in pressure for matching type.
Script: | readings = fetch(
node=Node("evaporation", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079091 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: reading, ts, type, unit
Sensor: snow_depth | fields: value, level, ts, depth
Task: Fetch depth from dew_point that have at least one corresponding snow_depth measurement for the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "snow_depth",
"outer_alias": "prt",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079092 | train |
v3 | Sensor network script:
Node: lightning | code: gst | fields: lat, qc, ts, value
Sensor: rainfall | fields: type, reading, lon, ts
Task: Retrieve value from lightning with reading above the COUNT(reading) of rainfall readings sharing the same qc.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("rainfall", code="rnfl"),
match="qc"),
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079093 | train |
v2 | Sensor network script:
Node: dew_point | code: thr | fields: type, reading, lat, unit
Sensor: lightning | fields: level, type, lon, qc
Task: Fetch lat 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="lat",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079094 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: reading, type, level, qc
Sensor: air_quality | fields: lat, lon, type, qc
Task: Fetch depth from temperature where ts exists in air_quality sensor data for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="ts",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "depth",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079095 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: unit, value, level, lon
Sensor: cloud_cover | fields: reading, value, level, ts
Task: Fetch reading from evaporation that have at least one corresponding cloud_cover measurement for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079096 | train |
v1 | Sensor network script:
Node: pressure | code: hub | fields: level, lon, unit, depth
Sensor: dew_point | fields: unit, ts, value, depth
Task: Retrieve lon from pressure whose unit is found in dew_point records where qc matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079097 | train |
v2 | Sensor network script:
Node: dew_point | code: clr | fields: level, depth, reading, type
Sensor: air_quality | fields: type, level, unit, reading
Task: Retrieve depth from dew_point that have at least one matching reading in air_quality sharing the same type.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_079098 | train |
v1 | Sensor network script:
Node: humidity | code: mst | fields: unit, ts, value, level
Sensor: pressure | fields: ts, lon, type, unit
Task: Get lat from humidity where qc appears in pressure readings with matching type.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=set_member(
field="qc",
source=Probe("pressure", code="mbl"),
match="type",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_079099 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.