variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: depth, unit, type, value
Sensor: uv_index | fields: qc, type, unit, lat
Task: Fetch lon from wind_speed where depth exists in uv_index sensor data for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="type",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082700 | train |
v3 | Sensor network script:
Node: evaporation | code: gst | fields: ts, lon, unit, qc
Sensor: uv_index | fields: value, reading, lon, type
Task: Get reading from evaporation where reading exceeds the count of depth from uv_index for the same unit.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082701 | train |
v1 | Sensor network script:
Node: humidity | code: gst | fields: reading, depth, ts, type
Sensor: visibility | fields: type, value, unit, ts
Task: Fetch level from humidity where unit exists in visibility sensor data for the same qc.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=set_member(
field="unit",
source=Probe("visibility", code="clr"),
match="qc",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082702 | train |
v1 | Sensor network script:
Node: visibility | code: gst | fields: type, depth, lat, reading
Sensor: uv_index | fields: lon, lat, level, reading
Task: Get reading from visibility where depth appears in uv_index readings with matching type.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="type",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082703 | train |
v1 | Sensor network script:
Node: pressure | code: ref | fields: unit, type, reading, value
Sensor: air_quality | fields: lat, reading, lon, level
Task: Get value from pressure where type appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("pressure", code="ref"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082704 | train |
v3 | Sensor network script:
Node: pressure | code: prt | fields: depth, value, type, ts
Sensor: rainfall | fields: value, ts, unit, level
Task: Fetch value from pressure where depth is greater than the total of depth in rainfall for matching unit.
Script: | readings = fetch(
node=Node("pressure", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082705 | train |
v1 | Sensor network script:
Node: snow_depth | code: gst | fields: lat, lon, type, reading
Sensor: cloud_cover | fields: lon, lat, depth, reading
Task: Fetch reading from snow_depth where unit exists in cloud_cover sensor data for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082706 | train |
v1 | Sensor network script:
Node: uv_index | code: hub | fields: type, lon, ts, lat
Sensor: soil_moisture | fields: value, lat, qc, level
Task: Fetch reading from uv_index where unit exists in soil_moisture sensor data for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=set_member(
field="unit",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082707 | train |
v2 | Sensor network script:
Node: uv_index | code: gst | fields: type, reading, lon, unit
Sensor: cloud_cover | fields: type, ts, qc, level
Task: Retrieve value from uv_index that have at least one matching reading in cloud_cover sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082708 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: level, type, ts, depth
Sensor: pressure | fields: qc, unit, level, lon
Task: Get lon from sunlight where value exceeds the count of depth from pressure for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("pressure", code="mbl"),
match="ts"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082709 | train |
v1 | Sensor network script:
Node: pressure | code: hub | fields: level, depth, qc, lon
Sensor: dew_point | fields: ts, qc, type, depth
Task: Fetch lon from pressure where type exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082710 | train |
v1 | Sensor network script:
Node: soil_moisture | code: ref | fields: lat, depth, level, qc
Sensor: air_quality | fields: unit, reading, value, lat
Task: Retrieve value from soil_moisture whose type is found in air_quality records where depth matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "air_quality",
"outer_alias": "ref",
"inner_alias": "prt",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082711 | train |
v3 | Sensor network script:
Node: humidity | code: gst | fields: depth, reading, ts, level
Sensor: uv_index | fields: unit, lat, ts, qc
Task: Fetch lon from humidity where reading is greater than the minimum of reading in uv_index for matching qc.
Script: | readings = fetch(
node=Node("humidity", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "gst",
"inner_alias": "flx",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082712 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: depth, value, lon, reading
Sensor: dew_point | fields: unit, depth, qc, lat
Task: Retrieve reading from frost whose depth is found in dew_point records where unit matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082713 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: qc, depth, level, ts
Sensor: drought_index | fields: type, lon, depth, qc
Task: Get level from snow_depth where a corresponding entry exists in drought_index with the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082714 | train |
v1 | Sensor network script:
Node: evaporation | code: mst | fields: lat, qc, reading, ts
Sensor: frost | fields: type, level, lat, unit
Task: Fetch lat from evaporation where depth exists in frost sensor data for the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="ts",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082715 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: depth, level, qc, lat
Sensor: soil_moisture | fields: level, ts, reading, type
Task: Retrieve level from lightning with value above the COUNT(reading) of soil_moisture readings sharing the same depth.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "reading",
source=Probe("soil_moisture", code="grvl"),
match="depth"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082716 | train |
v3 | Sensor network script:
Node: cloud_cover | code: hub | fields: depth, type, ts, unit
Sensor: air_quality | fields: type, ts, qc, lat
Task: Fetch reading from cloud_cover where value is greater than the count of of value in air_quality for matching ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="reading",
) | {
"outer_table": "cloud_cover",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082717 | train |
v1 | Sensor network script:
Node: temperature | code: gst | fields: lon, value, reading, qc
Sensor: frost | fields: lon, level, type, lat
Task: Fetch depth from temperature where qc exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="depth",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082718 | train |
v2 | Sensor network script:
Node: humidity | code: hub | fields: unit, qc, ts, lat
Sensor: air_quality | fields: qc, type, lon, level
Task: Fetch level from humidity that have at least one corresponding air_quality measurement for the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082719 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: type, lat, level, reading
Sensor: evaporation | fields: depth, unit, 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="ref"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="type",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "value",
"filter_col": "type",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082720 | train |
v3 | Sensor network script:
Node: sunlight | code: clr | fields: qc, depth, lon, value
Sensor: frost | fields: lon, unit, reading, lat
Task: Get level from sunlight where depth exceeds the count of depth from frost for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("frost", code="frs"),
match="qc"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082721 | train |
v1 | Sensor network script:
Node: temperature | code: stn | fields: type, depth, qc, unit
Sensor: turbidity | fields: level, reading, depth, type
Task: Retrieve lon from temperature whose depth is found in turbidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "stn",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082722 | train |
v3 | Sensor network script:
Node: temperature | code: clr | fields: type, depth, level, reading
Sensor: rainfall | fields: lon, qc, lat, value
Task: Retrieve depth from temperature with reading above the MAX(value) of rainfall readings sharing the same ts.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("rainfall", code="rnfl"),
match="ts"),
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082723 | train |
v1 | Sensor network script:
Node: sunlight | code: gst | fields: lon, lat, level, type
Sensor: cloud_cover | fields: lon, value, unit, type
Task: Fetch value from sunlight where depth exists in cloud_cover sensor data for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="ts",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082724 | train |
v2 | Sensor network script:
Node: humidity | code: ref | fields: lon, value, level, qc
Sensor: temperature | fields: ts, unit, level, lon
Task: Fetch lon from humidity that have at least one corresponding temperature measurement for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082725 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: unit, value, type, ts
Sensor: dew_point | fields: unit, level, depth, lon
Task: Fetch value from cloud_cover that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082726 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: value, qc, type, reading
Sensor: visibility | fields: reading, qc, unit, lat
Task: Fetch lat from dew_point where type exists in visibility sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="unit",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082727 | train |
v1 | Sensor network script:
Node: uv_index | code: hub | fields: level, ts, qc, depth
Sensor: pressure | fields: depth, ts, reading, value
Task: Get level from uv_index where type appears in pressure readings with matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=set_member(
field="type",
source=Probe("pressure", code="mbl"),
match="ts",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082728 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: reading, level, lon, ts
Sensor: dew_point | fields: value, depth, unit, reading
Task: Get value from snow_depth where depth exceeds the total reading from dew_point for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("dew_point", code="cnd"),
match="ts"),
),
output="value",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082729 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: lat, unit, value, depth
Sensor: dew_point | fields: lat, qc, level, ts
Task: Fetch level from humidity where type exists in dew_point sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082730 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: qc, value, type, ts
Sensor: drought_index | fields: reading, depth, ts, unit
Task: Fetch reading from pressure where type exists in drought_index sensor data for the same qc.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="qc",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082731 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: qc, lat, value, ts
Sensor: frost | fields: lon, lat, qc, type
Task: Get lon from humidity where depth appears in frost readings with matching qc.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="depth",
source=Probe("frost", code="frs"),
match="qc",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082732 | train |
v1 | Sensor network script:
Node: air_quality | code: thr | fields: value, reading, ts, qc
Sensor: drought_index | fields: lon, qc, value, lat
Task: Fetch value from air_quality where depth exists in drought_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=set_member(
field="depth",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082733 | train |
v3 | Sensor network script:
Node: rainfall | code: gst | fields: qc, unit, lon, depth
Sensor: pressure | fields: value, reading, lat, qc
Task: Fetch value from rainfall where value is greater than the total of value in pressure for matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("pressure", code="mbl"),
match="unit"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082734 | train |
v1 | Sensor network script:
Node: temperature | code: gst | fields: lat, type, qc, depth
Sensor: air_quality | fields: qc, level, value, ts
Task: Fetch reading from temperature where depth exists in air_quality sensor data for the same type.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="type",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082735 | train |
v3 | Sensor network script:
Node: turbidity | code: thr | fields: qc, unit, reading, lon
Sensor: frost | fields: type, value, reading, lon
Task: Retrieve lon from turbidity with depth above the AVG(reading) of frost readings sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("frost", code="frs"),
match="type"),
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082736 | train |
v2 | Sensor network script:
Node: evaporation | code: prt | fields: lat, level, unit, value
Sensor: temperature | fields: type, qc, lon, depth
Task: Get level from evaporation where a corresponding entry exists in temperature with the same ts.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082737 | train |
v1 | Sensor network script:
Node: uv_index | code: gst | fields: depth, qc, unit, value
Sensor: frost | fields: lon, ts, reading, type
Task: Retrieve reading from uv_index whose qc is found in frost records where qc matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="qc",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "gst",
"inner_alias": "frs",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082738 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: unit, type, qc, reading
Sensor: wind_speed | fields: value, qc, reading, depth
Task: Retrieve level from turbidity whose unit is found in wind_speed records where ts matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082739 | train |
v1 | Sensor network script:
Node: pressure | code: stn | fields: type, value, reading, unit
Sensor: dew_point | fields: value, unit, depth, lon
Task: Retrieve depth from pressure whose unit is found in dew_point records where depth matches the outer node.
Script: | readings = fetch(
node=Node("pressure", code="stn"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "dew_point",
"outer_alias": "stn",
"inner_alias": "cnd",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082740 | train |
v1 | Sensor network script:
Node: frost | code: mst | fields: unit, lon, reading, lat
Sensor: air_quality | fields: value, reading, lat, qc
Task: Retrieve level from frost whose unit is found in air_quality records where qc matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082741 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: type, qc, lon, lat
Sensor: cloud_cover | fields: level, type, unit, qc
Task: Retrieve lat from uv_index with reading above the COUNT(depth) of cloud_cover readings sharing the same ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("cloud_cover", code="nbl"),
match="ts"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082742 | train |
v2 | Sensor network script:
Node: frost | code: hub | fields: level, lon, value, lat
Sensor: lightning | fields: depth, qc, ts, lon
Task: Get lat from frost where a corresponding entry exists in lightning with the same ts.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "lightning",
"outer_alias": "hub",
"inner_alias": "tnd",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082743 | train |
v1 | Sensor network script:
Node: wind_speed | code: hub | fields: qc, value, lat, lon
Sensor: uv_index | fields: ts, depth, lon, unit
Task: Retrieve level from wind_speed whose qc is found in uv_index records where type matches the outer node.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=set_member(
field="qc",
source=Probe("uv_index", code="flx"),
match="type",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082744 | train |
v3 | Sensor network script:
Node: temperature | code: mst | fields: type, value, level, depth
Sensor: turbidity | fields: value, reading, qc, lon
Task: Retrieve lon from temperature with reading above the COUNT(depth) of turbidity readings sharing the same qc.
Script: | readings = fetch(
node=Node("temperature", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "depth",
source=Probe("turbidity", code="ftu"),
match="qc"),
),
output="lon",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082745 | train |
v3 | Sensor network script:
Node: humidity | code: hub | fields: reading, type, unit, ts
Sensor: uv_index | fields: type, depth, lon, ts
Task: Get depth from humidity where depth exceeds the minimum depth from uv_index for the same type.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="type"),
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "hub",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082746 | train |
v2 | Sensor network script:
Node: sunlight | code: stn | fields: value, reading, lat, qc
Sensor: evaporation | fields: level, depth, lat, lon
Task: Fetch reading from sunlight that have at least one corresponding evaporation measurement for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082747 | train |
v2 | Sensor network script:
Node: pressure | code: gst | fields: depth, reading, unit, ts
Sensor: visibility | fields: type, value, lat, depth
Task: Fetch level from pressure that have at least one corresponding visibility measurement for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082748 | train |
v3 | Sensor network script:
Node: visibility | code: stn | fields: reading, qc, ts, level
Sensor: rainfall | fields: reading, unit, level, ts
Task: Get level from visibility where value exceeds the minimum reading from rainfall for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("rainfall", code="rnfl"),
match="unit"),
),
output="level",
) | {
"outer_table": "visibility",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "level",
"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_082749 | train |
v1 | Sensor network script:
Node: sunlight | code: hub | fields: qc, level, lat, value
Sensor: frost | fields: unit, level, lon, reading
Task: Get value from sunlight where type appears in frost readings with matching unit.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=set_member(
field="type",
source=Probe("frost", code="frs"),
match="unit",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082750 | train |
v3 | Sensor network script:
Node: lightning | code: hub | fields: depth, type, unit, qc
Sensor: snow_depth | fields: lat, depth, ts, lon
Task: Get lat from lightning where reading exceeds the count of reading from snow_depth for the same unit.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("snow_depth", code="snw"),
match="unit"),
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082751 | train |
v1 | Sensor network script:
Node: sunlight | code: prt | fields: lat, type, depth, lon
Sensor: temperature | fields: value, lat, lon, unit
Task: Fetch depth from sunlight where qc exists in temperature sensor data for the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="prt"),
filter=set_member(
field="qc",
source=Probe("temperature", code="thr"),
match="qc",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082752 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: lat, depth, type, unit
Sensor: visibility | fields: ts, value, qc, lat
Task: Retrieve lat from drought_index that have at least one matching reading in visibility sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082753 | train |
v1 | Sensor network script:
Node: snow_depth | code: mst | fields: type, qc, reading, level
Sensor: cloud_cover | fields: level, type, lat, depth
Task: Fetch level from snow_depth where ts exists in cloud_cover sensor data for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082754 | train |
v1 | Sensor network script:
Node: frost | code: ref | fields: lon, value, qc, level
Sensor: pressure | fields: type, lon, value, ts
Task: Retrieve value from frost whose depth is found in pressure records where unit matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="unit",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "value",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082755 | train |
v1 | Sensor network script:
Node: snow_depth | code: hub | fields: lat, depth, type, value
Sensor: sunlight | fields: ts, lon, type, depth
Task: Get lat from snow_depth where qc appears in sunlight readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=set_member(
field="qc",
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082756 | train |
v3 | Sensor network script:
Node: turbidity | code: stn | fields: qc, lat, unit, reading
Sensor: visibility | fields: lat, level, depth, value
Task: Fetch value from turbidity where depth is greater than the total of reading in visibility for matching unit.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082757 | train |
v3 | Sensor network script:
Node: dew_point | code: ref | fields: depth, value, lat, ts
Sensor: humidity | fields: level, value, unit, lon
Task: Fetch reading from dew_point where value is greater than the maximum of depth in humidity for matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082758 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: lon, depth, ts, qc
Sensor: pressure | fields: depth, type, reading, ts
Task: Get level from frost where a corresponding entry exists in pressure with the same depth.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="depth",
),
output="level",
) | {
"outer_table": "frost",
"inner_table": "pressure",
"outer_alias": "stn",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082759 | train |
v3 | Sensor network script:
Node: dew_point | code: prt | fields: unit, value, depth, type
Sensor: humidity | fields: value, reading, depth, qc
Task: Fetch reading from dew_point where reading is greater than the maximum of depth in humidity for matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="reading",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082760 | train |
v1 | Sensor network script:
Node: humidity | code: stn | fields: value, qc, lat, lon
Sensor: temperature | fields: ts, value, qc, lat
Task: Retrieve depth from humidity whose type is found in temperature records where depth matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=set_member(
field="type",
source=Probe("temperature", code="thr"),
match="depth",
),
output="depth",
) | {
"outer_table": "humidity",
"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_082761 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: reading, ts, qc, lon
Sensor: wind_speed | fields: type, reading, unit, ts
Task: Retrieve level from drought_index that have at least one matching reading in wind_speed sharing the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082762 | train |
v3 | Sensor network script:
Node: uv_index | code: gst | fields: lon, value, unit, type
Sensor: drought_index | fields: level, qc, value, depth
Task: Fetch depth from uv_index where value is greater than the average of depth in drought_index for matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "depth",
source=Probe("drought_index", code="drt"),
match="unit"),
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082763 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: ts, depth, value, lon
Sensor: dew_point | fields: lat, reading, qc, depth
Task: Get value from uv_index where unit appears in dew_point readings with matching ts.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082764 | train |
v1 | Sensor network script:
Node: humidity | code: prt | fields: depth, lat, unit, lon
Sensor: soil_moisture | fields: reading, lon, qc, type
Task: Retrieve lon from humidity whose qc is found in soil_moisture records where depth matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082765 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: depth, qc, unit, level
Sensor: wind_speed | fields: depth, ts, level, qc
Task: Fetch lon from air_quality where unit exists in wind_speed sensor data for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="unit",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "hub",
"inner_alias": "gst",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082766 | train |
v2 | Sensor network script:
Node: snow_depth | code: ref | fields: lon, lat, qc, ts
Sensor: pressure | fields: lon, type, unit, lat
Task: Retrieve level from snow_depth that have at least one matching reading in pressure sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="unit",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082767 | train |
v3 | Sensor network script:
Node: snow_depth | code: stn | fields: qc, ts, reading, level
Sensor: uv_index | fields: reading, type, unit, lat
Task: Retrieve reading from snow_depth with value above the MIN(value) of uv_index readings sharing the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082768 | train |
v2 | Sensor network script:
Node: drought_index | code: clr | fields: level, lon, type, depth
Sensor: snow_depth | fields: unit, value, reading, ts
Task: Retrieve depth from drought_index that have at least one matching reading in snow_depth sharing the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "snow_depth",
"outer_alias": "clr",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082769 | train |
v2 | Sensor network script:
Node: uv_index | code: clr | fields: unit, depth, level, value
Sensor: drought_index | fields: lat, level, value, reading
Task: Retrieve level from uv_index that have at least one matching reading in drought_index sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082770 | train |
v3 | Sensor network script:
Node: dew_point | code: clr | fields: unit, value, depth, ts
Sensor: sunlight | fields: value, ts, qc, lat
Task: Fetch lat from dew_point where reading is greater than the minimum of value in sunlight for matching type.
Script: | readings = fetch(
node=Node("dew_point", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("sunlight", code="brt"),
match="type"),
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082771 | train |
v1 | Sensor network script:
Node: lightning | code: gst | fields: depth, ts, reading, lon
Sensor: visibility | fields: ts, reading, unit, level
Task: Retrieve lat from lightning whose ts is found in visibility records where type matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="type",
),
output="lat",
) | {
"outer_table": "lightning",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082772 | train |
v1 | Sensor network script:
Node: evaporation | code: hub | fields: depth, reading, type, lon
Sensor: frost | fields: ts, unit, lat, depth
Task: Fetch level from evaporation where qc exists in frost sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=set_member(
field="qc",
source=Probe("frost", code="frs"),
match="depth",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082773 | train |
v3 | Sensor network script:
Node: dew_point | code: gst | fields: lat, reading, unit, depth
Sensor: cloud_cover | fields: value, reading, type, ts
Task: Retrieve value from dew_point with depth above the COUNT(depth) of cloud_cover readings sharing the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "depth",
source=Probe("cloud_cover", code="nbl"),
match="depth"),
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "gst",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082774 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: lat, ts, depth, level
Sensor: visibility | fields: lat, level, reading, ts
Task: Get level from air_quality where ts appears in visibility readings with matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="depth",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "visibility",
"outer_alias": "ref",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082775 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: lon, depth, lat, qc
Sensor: uv_index | fields: depth, unit, level, value
Task: Get depth from humidity where a corresponding entry exists in uv_index with the same type.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="depth",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "prt",
"inner_alias": "flx",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082776 | train |
v1 | Sensor network script:
Node: frost | code: thr | fields: lat, depth, qc, ts
Sensor: soil_moisture | fields: qc, lat, unit, reading
Task: Retrieve value from frost whose type is found in soil_moisture records where unit matches the outer node.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=set_member(
field="type",
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="value",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "thr",
"inner_alias": "grvl",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082777 | train |
v2 | Sensor network script:
Node: uv_index | code: hub | fields: level, lat, value, depth
Sensor: sunlight | fields: type, value, qc, lat
Task: Get value from uv_index where a corresponding entry exists in sunlight with the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="hub"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="value",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082778 | train |
v2 | Sensor network script:
Node: air_quality | code: gst | fields: unit, value, lat, level
Sensor: dew_point | fields: value, ts, reading, level
Task: Fetch reading from air_quality that have at least one corresponding dew_point measurement for the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082779 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: ts, qc, value, depth
Sensor: turbidity | fields: ts, unit, reading, lat
Task: Get reading from wind_speed where depth exceeds the minimum depth from turbidity for the same ts.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("turbidity", code="ftu"),
match="ts"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082780 | train |
v1 | Sensor network script:
Node: temperature | code: ref | fields: unit, level, type, value
Sensor: turbidity | fields: value, reading, lon, level
Task: Fetch value from temperature where depth exists in turbidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("temperature", code="ref"),
filter=set_member(
field="depth",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="value",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "ref.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082781 | train |
v2 | Sensor network script:
Node: uv_index | code: mst | fields: level, type, ts, lat
Sensor: snow_depth | fields: level, ts, value, qc
Task: Get lon from uv_index where a corresponding entry exists in snow_depth with the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="depth",
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082782 | train |
v3 | Sensor network script:
Node: frost | code: thr | fields: level, lon, value, lat
Sensor: dew_point | fields: unit, level, type, qc
Task: Fetch reading from frost where value is greater than the total of value in dew_point for matching depth.
Script: | readings = fetch(
node=Node("frost", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082783 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: qc, value, ts, depth
Sensor: frost | fields: depth, qc, ts, reading
Task: Fetch depth from soil_moisture that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082784 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: type, reading, depth, lon
Sensor: sunlight | fields: unit, level, qc, lon
Task: Retrieve value from dew_point that have at least one matching reading in sunlight sharing the same qc.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="qc",
),
output="value",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082785 | train |
v1 | Sensor network script:
Node: uv_index | code: gst | fields: type, ts, value, level
Sensor: air_quality | fields: lat, value, lon, reading
Task: Get lat from uv_index where qc appears in air_quality readings with matching unit.
Script: | readings = fetch(
node=Node("uv_index", code="gst"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082786 | train |
v2 | Sensor network script:
Node: evaporation | code: thr | fields: level, reading, lon, qc
Sensor: wind_speed | fields: level, type, lat, reading
Task: Fetch lat from evaporation that have at least one corresponding wind_speed measurement for the same type.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="lat",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082787 | train |
v1 | Sensor network script:
Node: rainfall | code: clr | fields: lat, level, depth, type
Sensor: turbidity | fields: reading, level, type, ts
Task: Fetch level from rainfall where unit exists in turbidity sensor data for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "turbidity",
"outer_alias": "clr",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082788 | train |
v2 | Sensor network script:
Node: drought_index | code: gst | fields: unit, type, lat, value
Sensor: rainfall | fields: ts, level, lon, reading
Task: Fetch value from drought_index that have at least one corresponding rainfall measurement for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="gst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082789 | train |
v2 | Sensor network script:
Node: soil_moisture | code: gst | fields: depth, type, reading, value
Sensor: rainfall | fields: value, ts, lon, lat
Task: Fetch lon from soil_moisture that have at least one corresponding rainfall measurement for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082790 | train |
v2 | Sensor network script:
Node: sunlight | code: mst | fields: value, lon, depth, reading
Sensor: wind_speed | fields: ts, value, reading, lat
Task: Fetch depth from sunlight that have at least one corresponding wind_speed measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082791 | train |
v2 | Sensor network script:
Node: rainfall | code: mst | fields: value, reading, depth, lon
Sensor: air_quality | fields: unit, lat, qc, level
Task: Retrieve reading from rainfall that have at least one matching reading in air_quality sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="type",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082792 | train |
v3 | Sensor network script:
Node: frost | code: gst | fields: lon, depth, level, ts
Sensor: drought_index | fields: qc, level, ts, lon
Task: Get lat from frost where depth exceeds the maximum value from drought_index for the same ts.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("drought_index", code="drt"),
match="ts"),
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082793 | train |
v3 | Sensor network script:
Node: rainfall | code: thr | fields: value, lon, unit, type
Sensor: lightning | fields: qc, level, lat, ts
Task: Retrieve value from rainfall with reading above the MIN(depth) of lightning readings sharing the same type.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("lightning", code="tnd"),
match="type"),
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082794 | train |
v1 | Sensor network script:
Node: visibility | code: thr | fields: unit, type, value, lon
Sensor: cloud_cover | fields: unit, ts, type, value
Task: Get value from visibility where type appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=set_member(
field="type",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "thr",
"inner_alias": "nbl",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082795 | train |
v3 | Sensor network script:
Node: soil_moisture | code: ref | fields: depth, ts, qc, value
Sensor: pressure | fields: reading, lon, level, ts
Task: Fetch lon from soil_moisture where value is greater than the average of value in pressure for matching qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "value",
source=Probe("pressure", code="mbl"),
match="qc"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "pressure",
"outer_alias": "ref",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082796 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: type, depth, lon, unit
Sensor: evaporation | fields: level, depth, reading, ts
Task: Get lon from lightning where a corresponding entry exists in evaporation with the same qc.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="qc",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082797 | train |
v2 | Sensor network script:
Node: air_quality | code: clr | fields: type, level, value, lat
Sensor: rainfall | fields: unit, level, lon, reading
Task: Get lat from air_quality where a corresponding entry exists in rainfall with the same unit.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082798 | train |
v2 | Sensor network script:
Node: humidity | code: mst | fields: lat, level, unit, depth
Sensor: cloud_cover | fields: lon, ts, level, qc
Task: Fetch lon from humidity that have at least one corresponding cloud_cover measurement for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082799 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.