variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v2 | Sensor network script:
Node: wind_speed | code: hub | fields: lat, unit, ts, depth
Sensor: evaporation | fields: lat, level, depth, lon
Task: Fetch level from wind_speed that have at least one corresponding evaporation measurement for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071700 | train |
v1 | Sensor network script:
Node: frost | code: hub | fields: lat, level, depth, lon
Sensor: snow_depth | fields: depth, type, value, reading
Task: Get depth from frost where type appears in snow_depth readings with matching unit.
Script: | readings = fetch(
node=Node("frost", code="hub"),
filter=set_member(
field="type",
source=Probe("snow_depth", code="snw"),
match="unit",
),
output="depth",
) | {
"outer_table": "frost",
"inner_table": "snow_depth",
"outer_alias": "hub",
"inner_alias": "snw",
"proj_col": "depth",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071701 | train |
v2 | Sensor network script:
Node: humidity | code: prt | fields: qc, type, depth, ts
Sensor: sunlight | fields: unit, ts, level, lon
Task: Retrieve lon from humidity that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("humidity", code="prt"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "sunlight",
"outer_alias": "prt",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071702 | train |
v3 | Sensor network script:
Node: pressure | code: clr | fields: unit, type, reading, depth
Sensor: air_quality | fields: lon, value, depth, reading
Task: Get lon from pressure where reading exceeds the maximum reading from air_quality for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "air_quality",
"outer_alias": "clr",
"inner_alias": "prt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071703 | train |
v3 | Sensor network script:
Node: soil_moisture | code: stn | fields: type, lat, lon, ts
Sensor: humidity | fields: level, lat, reading, qc
Task: Get lat from soil_moisture where reading exceeds the total reading from humidity for the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("humidity", code="hgr"),
match="type"),
),
output="lat",
) | {
"outer_table": "soil_moisture",
"inner_table": "humidity",
"outer_alias": "stn",
"inner_alias": "hgr",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071704 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: unit, qc, ts, level
Sensor: frost | fields: lat, lon, level, unit
Task: Fetch lat from drought_index where depth is greater than the total of depth in frost for matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("frost", code="frs"),
match="qc"),
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "frost",
"outer_alias": "ref",
"inner_alias": "frs",
"proj_col": "lat",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071705 | train |
v3 | Sensor network script:
Node: uv_index | code: mst | fields: unit, value, lat, reading
Sensor: sunlight | fields: level, reading, value, lon
Task: Get level from uv_index where depth exceeds the average depth from sunlight for the same unit.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071706 | train |
v2 | Sensor network script:
Node: cloud_cover | code: prt | fields: lat, qc, unit, type
Sensor: pressure | fields: ts, level, lon, depth
Task: Fetch value from cloud_cover that have at least one corresponding pressure measurement for the same qc.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "pressure",
"outer_alias": "prt",
"inner_alias": "mbl",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071707 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: reading, type, ts, lat
Sensor: temperature | fields: qc, ts, type, level
Task: Fetch reading from sunlight that have at least one corresponding temperature measurement for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071708 | train |
v2 | Sensor network script:
Node: air_quality | code: clr | fields: reading, type, lon, unit
Sensor: uv_index | fields: ts, lon, level, qc
Task: Get reading from air_quality where a corresponding entry exists in uv_index with the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071709 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: lat, type, qc, depth
Sensor: turbidity | fields: value, lat, depth, type
Task: Fetch lon from sunlight that have at least one corresponding turbidity measurement for the same unit.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "turbidity",
"outer_alias": "ref",
"inner_alias": "ftu",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071710 | train |
v1 | Sensor network script:
Node: turbidity | code: mst | fields: qc, unit, lon, ts
Sensor: cloud_cover | fields: depth, unit, qc, level
Task: Fetch reading from turbidity where ts exists in cloud_cover sensor data for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="mst"),
filter=set_member(
field="ts",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="reading",
) | {
"outer_table": "turbidity",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071711 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: type, reading, lat, lon
Sensor: pressure | fields: lat, unit, level, qc
Task: Get lon from drought_index where depth exceeds the minimum depth from pressure for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071712 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: lon, qc, depth, unit
Sensor: humidity | fields: reading, qc, level, lon
Task: Retrieve level from snow_depth that have at least one matching reading in humidity sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "mst",
"inner_alias": "hgr",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071713 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: reading, unit, lon, qc
Sensor: evaporation | fields: qc, value, lon, level
Task: Get depth from wind_speed where reading exceeds the average reading from evaporation for the same type.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("evaporation", code="evp"),
match="type"),
),
output="depth",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071714 | train |
v3 | Sensor network script:
Node: air_quality | code: hub | fields: qc, depth, unit, reading
Sensor: drought_index | fields: lat, qc, level, lon
Task: Get reading from air_quality where depth exceeds the total depth from drought_index for the same type.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("drought_index", code="drt"),
match="type"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071715 | train |
v1 | Sensor network script:
Node: soil_moisture | code: gst | fields: value, ts, reading, qc
Sensor: rainfall | fields: depth, lat, ts, type
Task: Fetch depth from soil_moisture where depth exists in rainfall sensor data for the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=set_member(
field="depth",
source=Probe("rainfall", code="rnfl"),
match="qc",
),
output="depth",
) | {
"outer_table": "soil_moisture",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071716 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: lon, value, level, depth
Sensor: lightning | fields: depth, unit, value, type
Task: Get level from air_quality where unit appears in lightning readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "level",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071717 | train |
v2 | Sensor network script:
Node: frost | code: gst | fields: ts, value, lon, lat
Sensor: temperature | fields: depth, ts, reading, type
Task: Retrieve reading from frost that have at least one matching reading in temperature sharing the same type.
Script: | readings = fetch(
node=Node("frost", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071718 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: reading, unit, value, lat
Sensor: temperature | fields: value, reading, unit, depth
Task: Retrieve reading from pressure that have at least one matching reading in temperature sharing the same unit.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="unit",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071719 | train |
v2 | Sensor network script:
Node: turbidity | code: ref | fields: type, depth, qc, level
Sensor: dew_point | fields: level, lon, type, qc
Task: Fetch depth from turbidity that have at least one corresponding dew_point measurement for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="type",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "ref",
"inner_alias": "cnd",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071720 | train |
v1 | Sensor network script:
Node: cloud_cover | code: thr | fields: reading, depth, qc, level
Sensor: turbidity | fields: value, unit, reading, type
Task: Fetch value from cloud_cover where unit exists in turbidity sensor data for the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "thr",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071721 | train |
v1 | Sensor network script:
Node: humidity | code: thr | fields: lon, type, unit, lat
Sensor: air_quality | fields: reading, lat, ts, level
Task: Fetch level from humidity where qc exists in air_quality sensor data for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=set_member(
field="qc",
source=Probe("air_quality", code="prt"),
match="depth",
),
output="level",
) | {
"outer_table": "humidity",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071722 | train |
v1 | Sensor network script:
Node: snow_depth | code: mst | fields: lon, qc, type, depth
Sensor: air_quality | fields: qc, level, reading, type
Task: Get reading from snow_depth where unit appears in air_quality readings with matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=set_member(
field="unit",
source=Probe("air_quality", code="prt"),
match="qc",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071723 | train |
v2 | Sensor network script:
Node: frost | code: stn | fields: unit, lat, ts, value
Sensor: air_quality | fields: type, qc, unit, value
Task: Retrieve lat from frost that have at least one matching reading in air_quality sharing the same depth.
Script: | readings = fetch(
node=Node("frost", code="stn"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="depth",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "air_quality",
"outer_alias": "stn",
"inner_alias": "prt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071724 | train |
v2 | Sensor network script:
Node: cloud_cover | code: gst | fields: lon, qc, reading, unit
Sensor: sunlight | fields: qc, value, lat, type
Task: Retrieve level from cloud_cover that have at least one matching reading in sunlight sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "sunlight",
"outer_alias": "gst",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071725 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: ts, depth, qc, type
Sensor: visibility | fields: lat, value, level, unit
Task: Fetch value from soil_moisture where value is greater than the total of value in visibility for matching type.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "value",
source=Probe("visibility", code="clr"),
match="type"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "value",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071726 | train |
v1 | Sensor network script:
Node: lightning | code: clr | fields: ts, level, depth, type
Sensor: dew_point | fields: unit, qc, ts, type
Task: Fetch value from lightning where ts exists in dew_point sensor data for the same type.
Script: | readings = fetch(
node=Node("lightning", code="clr"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="type",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071727 | train |
v2 | Sensor network script:
Node: pressure | code: hub | fields: level, depth, lon, reading
Sensor: evaporation | fields: unit, depth, type, qc
Task: Fetch value from pressure that have at least one corresponding evaporation measurement for the same unit.
Script: | readings = fetch(
node=Node("pressure", code="hub"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "hub",
"inner_alias": "evp",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071728 | train |
v2 | Sensor network script:
Node: soil_moisture | code: mst | fields: lon, ts, type, level
Sensor: visibility | fields: lat, level, depth, ts
Task: Retrieve reading from soil_moisture that have at least one matching reading in visibility sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071729 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: lat, type, unit, depth
Sensor: sunlight | fields: ts, lon, lat, reading
Task: Fetch level from dew_point that have at least one corresponding sunlight measurement for the same depth.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071730 | train |
v3 | Sensor network script:
Node: soil_moisture | code: gst | fields: lon, level, lat, depth
Sensor: temperature | fields: reading, ts, qc, depth
Task: Get lon from soil_moisture where reading exceeds the maximum reading from temperature for the same depth.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "reading",
source=Probe("temperature", code="thr"),
match="depth"),
),
output="lon",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071731 | train |
v3 | Sensor network script:
Node: sunlight | code: stn | fields: lat, depth, ts, type
Sensor: soil_moisture | fields: ts, type, reading, unit
Task: Fetch lat from sunlight where value is greater than the maximum of reading in soil_moisture for matching unit.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("soil_moisture", code="grvl"),
match="unit"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071732 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: lon, level, value, unit
Sensor: soil_moisture | fields: reading, type, depth, level
Task: Retrieve level from rainfall that have at least one matching reading in soil_moisture sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071733 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: type, qc, reading, depth
Sensor: lightning | fields: lon, level, type, qc
Task: Retrieve level from soil_moisture that have at least one matching reading in lightning sharing the same type.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "lightning",
"outer_alias": "prt",
"inner_alias": "tnd",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071734 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: qc, level, lon, lat
Sensor: pressure | fields: unit, level, value, lat
Task: Retrieve reading from uv_index that have at least one matching reading in pressure sharing the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "uv_index",
"inner_table": "pressure",
"outer_alias": "thr",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071735 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: ts, lon, qc, reading
Sensor: sunlight | fields: reading, level, type, value
Task: Fetch lon from air_quality where reading is greater than the minimum of depth in sunlight for matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "depth",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "ref",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071736 | train |
v2 | Sensor network script:
Node: lightning | code: thr | fields: type, reading, ts, qc
Sensor: rainfall | fields: lon, lat, depth, reading
Task: Get depth from lightning where a corresponding entry exists in rainfall with the same unit.
Script: | readings = fetch(
node=Node("lightning", code="thr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="depth",
) | {
"outer_table": "lightning",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071737 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: type, lat, qc, reading
Sensor: wind_speed | fields: qc, level, lon, ts
Task: Fetch value from sunlight where type exists in wind_speed sensor data for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="type",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="value",
) | {
"outer_table": "sunlight",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "value",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071738 | train |
v2 | Sensor network script:
Node: temperature | code: clr | fields: type, depth, qc, lon
Sensor: drought_index | fields: level, value, unit, qc
Task: Fetch level from temperature that have at least one corresponding drought_index measurement for the same qc.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071739 | train |
v1 | Sensor network script:
Node: lightning | code: hub | fields: qc, depth, ts, type
Sensor: dew_point | fields: lon, value, unit, lat
Task: Retrieve lon from lightning whose type is found in dew_point records where depth matches the outer node.
Script: | readings = fetch(
node=Node("lightning", code="hub"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "lightning",
"inner_table": "dew_point",
"outer_alias": "hub",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "type",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071740 | train |
v1 | Sensor network script:
Node: turbidity | code: ref | fields: lat, value, level, type
Sensor: uv_index | fields: level, value, ts, reading
Task: Retrieve value from turbidity whose ts is found in uv_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("turbidity", code="ref"),
filter=set_member(
field="ts",
source=Probe("uv_index", code="flx"),
match="unit",
),
output="value",
) | {
"outer_table": "turbidity",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "value",
"filter_col": "ts",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071741 | train |
v3 | Sensor network script:
Node: drought_index | code: thr | fields: qc, ts, reading, lat
Sensor: air_quality | fields: level, lat, ts, value
Task: Get reading from drought_index where value exceeds the minimum value from air_quality for the same depth.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "value",
source=Probe("air_quality", code="prt"),
match="depth"),
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071742 | train |
v3 | Sensor network script:
Node: sunlight | code: ref | fields: level, type, lat, ts
Sensor: uv_index | fields: type, depth, value, lat
Task: Retrieve level from sunlight with depth above the MIN(depth) of uv_index readings sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("uv_index", code="flx"),
match="qc"),
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "uv_index",
"outer_alias": "ref",
"inner_alias": "flx",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071743 | train |
v2 | Sensor network script:
Node: soil_moisture | code: prt | fields: depth, value, level, lat
Sensor: temperature | fields: qc, level, value, lon
Task: Retrieve reading from soil_moisture that have at least one matching reading in temperature sharing the same ts.
Script: | readings = fetch(
node=Node("soil_moisture", code="prt"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="reading",
) | {
"outer_table": "soil_moisture",
"inner_table": "temperature",
"outer_alias": "prt",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071744 | train |
v1 | Sensor network script:
Node: rainfall | code: thr | fields: ts, level, type, unit
Sensor: wind_speed | fields: type, reading, qc, level
Task: Fetch level from rainfall where qc exists in wind_speed sensor data for the same ts.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=set_member(
field="qc",
source=Probe("wind_speed", code="gst"),
match="ts",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "qc",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071745 | train |
v2 | Sensor network script:
Node: lightning | code: gst | fields: qc, unit, ts, lat
Sensor: temperature | fields: unit, lat, ts, reading
Task: Retrieve value from lightning that have at least one matching reading in temperature sharing the same ts.
Script: | readings = fetch(
node=Node("lightning", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="value",
) | {
"outer_table": "lightning",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071746 | train |
v3 | Sensor network script:
Node: uv_index | code: ref | fields: level, qc, reading, ts
Sensor: soil_moisture | fields: unit, lat, value, qc
Task: Fetch lon from uv_index where depth is greater than the minimum of value in soil_moisture for matching type.
Script: | readings = fetch(
node=Node("uv_index", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "value",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lon",
) | {
"outer_table": "uv_index",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071747 | train |
v1 | Sensor network script:
Node: air_quality | code: ref | fields: type, lat, lon, value
Sensor: soil_moisture | fields: type, value, level, ts
Task: Retrieve reading from air_quality whose qc is found in soil_moisture records where qc matches the outer node.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=set_member(
field="qc",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "soil_moisture",
"outer_alias": "ref",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071748 | train |
v2 | Sensor network script:
Node: turbidity | code: gst | fields: type, reading, depth, level
Sensor: dew_point | fields: qc, level, ts, depth
Task: Retrieve lon from turbidity that have at least one matching reading in dew_point sharing the same depth.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071749 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: value, qc, lat, ts
Sensor: cloud_cover | fields: lat, unit, value, type
Task: Fetch lat from dew_point where depth exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "ref",
"inner_alias": "nbl",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071750 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: value, lat, depth, ts
Sensor: drought_index | fields: ts, lon, reading, lat
Task: Fetch level from dew_point where type exists in drought_index sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "level",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071751 | train |
v2 | Sensor network script:
Node: pressure | code: clr | fields: lon, unit, reading, depth
Sensor: rainfall | fields: depth, value, level, ts
Task: Retrieve value from pressure that have at least one matching reading in rainfall sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="value",
) | {
"outer_table": "pressure",
"inner_table": "rainfall",
"outer_alias": "clr",
"inner_alias": "rnfl",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071752 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: lon, value, type, lat
Sensor: pressure | fields: ts, type, level, reading
Task: Retrieve reading from humidity whose depth is found in pressure records where depth matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="depth",
source=Probe("pressure", code="mbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "humidity",
"inner_table": "pressure",
"outer_alias": "clr",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071753 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: level, lat, lon, reading
Sensor: soil_moisture | fields: lat, qc, depth, type
Task: Fetch lon from turbidity that have at least one corresponding soil_moisture measurement for the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="ts",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "stn",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071754 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: ts, reading, lon, type
Sensor: dew_point | fields: qc, lat, level, ts
Task: Get lon from turbidity where unit appears in dew_point readings with matching depth.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="unit",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "turbidity",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071755 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: type, qc, unit, value
Sensor: lightning | fields: qc, unit, value, lon
Task: Get value from visibility where type appears in lightning readings with matching unit.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="type",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="value",
) | {
"outer_table": "visibility",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071756 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: depth, unit, lon, reading
Sensor: rainfall | fields: reading, value, lon, level
Task: Fetch lat from drought_index that have at least one corresponding rainfall measurement for the same ts.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="ts",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071757 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: reading, lon, qc, value
Sensor: humidity | fields: type, unit, ts, value
Task: Get lat from dew_point where a corresponding entry exists in humidity with the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("humidity", code="hgr"),
match="type",
),
output="lat",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "lat",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071758 | train |
v3 | Sensor network script:
Node: evaporation | code: mst | fields: type, lat, value, reading
Sensor: uv_index | fields: value, depth, lat, qc
Task: Fetch depth from evaporation where depth is greater than the maximum of depth in uv_index for matching unit.
Script: | readings = fetch(
node=Node("evaporation", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "depth",
source=Probe("uv_index", code="flx"),
match="unit"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "mst",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071759 | train |
v1 | Sensor network script:
Node: drought_index | code: prt | fields: lon, level, qc, ts
Sensor: evaporation | fields: type, unit, reading, lat
Task: Get lat from drought_index where depth appears in evaporation readings with matching type.
Script: | readings = fetch(
node=Node("drought_index", code="prt"),
filter=set_member(
field="depth",
source=Probe("evaporation", code="evp"),
match="type",
),
output="lat",
) | {
"outer_table": "drought_index",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071760 | train |
v3 | Sensor network script:
Node: snow_depth | code: hub | fields: type, depth, level, reading
Sensor: humidity | fields: unit, level, reading, value
Task: Fetch depth from snow_depth where depth is greater than the minimum of depth in humidity for matching qc.
Script: | readings = fetch(
node=Node("snow_depth", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("MIN", "depth",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="depth",
) | {
"outer_table": "snow_depth",
"inner_table": "humidity",
"outer_alias": "hub",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071761 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: type, ts, reading, lon
Sensor: uv_index | fields: reading, type, lon, value
Task: Retrieve lon from drought_index that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071762 | train |
v2 | Sensor network script:
Node: temperature | code: thr | fields: reading, ts, depth, lon
Sensor: wind_speed | fields: ts, value, type, depth
Task: Get depth from temperature where a corresponding entry exists in wind_speed with the same qc.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="qc",
),
output="depth",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071763 | train |
v3 | Sensor network script:
Node: evaporation | code: prt | fields: lon, level, depth, lat
Sensor: wind_speed | fields: lon, lat, unit, type
Task: Fetch reading from evaporation where reading is greater than the count of of reading in wind_speed for matching qc.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("wind_speed", code="gst"),
match="qc"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071764 | train |
v3 | Sensor network script:
Node: drought_index | code: clr | fields: qc, unit, ts, depth
Sensor: cloud_cover | fields: unit, level, value, reading
Task: Fetch reading from drought_index where depth is greater than the maximum of value in cloud_cover for matching qc.
Script: | readings = fetch(
node=Node("drought_index", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("cloud_cover", code="nbl"),
match="qc"),
),
output="reading",
) | {
"outer_table": "drought_index",
"inner_table": "cloud_cover",
"outer_alias": "clr",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071765 | train |
v2 | Sensor network script:
Node: air_quality | code: clr | fields: type, value, lon, lat
Sensor: drought_index | fields: value, qc, ts, lon
Task: Get depth from air_quality where a corresponding entry exists in drought_index with the same ts.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="ts",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "clr",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071766 | train |
v1 | Sensor network script:
Node: snow_depth | code: ref | fields: value, depth, type, lon
Sensor: drought_index | fields: level, lon, lat, type
Task: Retrieve reading from snow_depth whose type is found in drought_index records where unit matches the outer node.
Script: | readings = fetch(
node=Node("snow_depth", code="ref"),
filter=set_member(
field="type",
source=Probe("drought_index", code="drt"),
match="unit",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "reading",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071767 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: value, ts, qc, lon
Sensor: evaporation | fields: depth, reading, ts, lon
Task: Fetch reading from drought_index that have at least one corresponding evaporation measurement for the same unit.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="unit",
),
output="reading",
) | {
"outer_table": "drought_index",
"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_071768 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: depth, lat, unit, lon
Sensor: temperature | fields: lat, qc, type, reading
Task: Fetch reading from sunlight that have at least one corresponding temperature measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="depth",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071769 | train |
v2 | Sensor network script:
Node: drought_index | code: ref | fields: lon, ts, qc, lat
Sensor: temperature | fields: qc, level, type, value
Task: Get depth from drought_index where a corresponding entry exists in temperature with the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="qc",
),
output="depth",
) | {
"outer_table": "drought_index",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071770 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: reading, unit, type, depth
Sensor: turbidity | fields: depth, value, lon, level
Task: Get value from cloud_cover where a corresponding entry exists in turbidity with the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "turbidity",
"outer_alias": "mst",
"inner_alias": "ftu",
"proj_col": "value",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071771 | train |
v2 | Sensor network script:
Node: evaporation | code: gst | fields: unit, depth, lat, reading
Sensor: visibility | fields: qc, type, depth, ts
Task: Fetch level from evaporation that have at least one corresponding visibility measurement for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="qc",
),
output="level",
) | {
"outer_table": "evaporation",
"inner_table": "visibility",
"outer_alias": "gst",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071772 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: lat, qc, type, level
Sensor: cloud_cover | fields: unit, level, reading, type
Task: Fetch level from snow_depth where depth exists in cloud_cover sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="depth",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071773 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: lat, ts, depth, qc
Sensor: drought_index | fields: level, reading, value, qc
Task: Get level from sunlight where a corresponding entry exists in drought_index with the same type.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071774 | train |
v3 | Sensor network script:
Node: air_quality | code: clr | fields: type, value, lat, level
Sensor: humidity | fields: lat, level, qc, value
Task: Fetch depth from air_quality where value is greater than the maximum of reading in humidity for matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("humidity", code="hgr"),
match="qc"),
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071775 | train |
v1 | Sensor network script:
Node: dew_point | code: gst | fields: lon, qc, unit, level
Sensor: lightning | fields: depth, lat, lon, level
Task: Retrieve lon from dew_point whose ts is found in lightning records where ts matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="gst"),
filter=set_member(
field="ts",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071776 | train |
v2 | Sensor network script:
Node: turbidity | code: stn | fields: unit, qc, lon, lat
Sensor: rainfall | fields: ts, type, unit, qc
Task: Fetch level from turbidity that have at least one corresponding rainfall measurement for the same type.
Script: | readings = fetch(
node=Node("turbidity", code="stn"),
filter=has_match(
source=Probe("rainfall", code="rnfl"),
match="type",
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "stn",
"inner_alias": "rnfl",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071777 | train |
v1 | Sensor network script:
Node: uv_index | code: mst | fields: depth, type, value, level
Sensor: soil_moisture | fields: type, level, lat, lon
Task: Retrieve reading from uv_index whose unit is found in soil_moisture records where qc matches the outer node.
Script: | readings = fetch(
node=Node("uv_index", code="mst"),
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": "mst",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "qc",
"correlated_ref": "mst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071778 | train |
v2 | Sensor network script:
Node: turbidity | code: thr | fields: value, ts, depth, qc
Sensor: lightning | fields: depth, reading, unit, lon
Task: Retrieve depth from turbidity that have at least one matching reading in lightning sharing the same type.
Script: | readings = fetch(
node=Node("turbidity", code="thr"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="type",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "lightning",
"outer_alias": "thr",
"inner_alias": "tnd",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071779 | train |
v2 | Sensor network script:
Node: turbidity | code: hub | fields: reading, qc, value, unit
Sensor: frost | fields: type, unit, lat, lon
Task: Retrieve depth from turbidity that have at least one matching reading in frost sharing the same ts.
Script: | readings = fetch(
node=Node("turbidity", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="ts",
),
output="depth",
) | {
"outer_table": "turbidity",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071780 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: ts, reading, qc, depth
Sensor: pressure | fields: level, lat, type, depth
Task: Retrieve reading from rainfall that have at least one matching reading in pressure sharing the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="qc",
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "pressure",
"outer_alias": "hub",
"inner_alias": "mbl",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071781 | train |
v1 | Sensor network script:
Node: snow_depth | code: stn | fields: depth, lat, value, type
Sensor: wind_speed | fields: value, depth, type, unit
Task: Get reading from snow_depth where ts appears in wind_speed readings with matching depth.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071782 | train |
v2 | Sensor network script:
Node: visibility | code: mst | fields: lat, value, ts, lon
Sensor: cloud_cover | fields: lat, ts, value, type
Task: Fetch depth from visibility that have at least one corresponding cloud_cover measurement for the same type.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="depth",
) | {
"outer_table": "visibility",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071783 | train |
v1 | Sensor network script:
Node: air_quality | code: mst | fields: depth, level, value, type
Sensor: drought_index | fields: value, unit, type, lon
Task: Get lat from air_quality where qc appears in drought_index readings with matching type.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=set_member(
field="qc",
source=Probe("drought_index", code="drt"),
match="type",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "mst",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071784 | train |
v2 | Sensor network script:
Node: humidity | code: thr | fields: unit, qc, lat, type
Sensor: snow_depth | fields: level, reading, type, qc
Task: Retrieve value from humidity that have at least one matching reading in snow_depth sharing the same ts.
Script: | readings = fetch(
node=Node("humidity", code="thr"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "value",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071785 | train |
v2 | Sensor network script:
Node: pressure | code: clr | fields: depth, unit, ts, lon
Sensor: sunlight | fields: ts, unit, qc, depth
Task: Retrieve lat from pressure that have at least one matching reading in sunlight sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="depth",
),
output="lat",
) | {
"outer_table": "pressure",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071786 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: lon, type, value, unit
Sensor: wind_speed | fields: level, lon, depth, lat
Task: Get lon from dew_point where a corresponding entry exists in wind_speed with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="unit",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "wind_speed",
"outer_alias": "prt",
"inner_alias": "gst",
"proj_col": "lon",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071787 | train |
v1 | Sensor network script:
Node: drought_index | code: mst | fields: lat, value, reading, depth
Sensor: sunlight | fields: depth, value, lat, level
Task: Get level from drought_index where ts appears in sunlight readings with matching ts.
Script: | readings = fetch(
node=Node("drought_index", code="mst"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="ts",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "level",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071788 | train |
v1 | Sensor network script:
Node: wind_speed | code: mst | fields: ts, reading, lon, unit
Sensor: dew_point | fields: lat, depth, qc, value
Task: Get lon from wind_speed where type appears in dew_point readings with matching ts.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=set_member(
field="type",
source=Probe("dew_point", code="cnd"),
match="ts",
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071789 | train |
v3 | Sensor network script:
Node: snow_depth | code: gst | fields: reading, ts, unit, lon
Sensor: dew_point | fields: reading, lon, level, depth
Task: Fetch reading from snow_depth where value is greater than the maximum of reading in dew_point for matching type.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "reading",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071790 | train |
v2 | Sensor network script:
Node: uv_index | code: stn | fields: qc, lon, type, level
Sensor: frost | fields: unit, value, ts, lat
Task: Retrieve level from uv_index that have at least one matching reading in frost sharing the same depth.
Script: | readings = fetch(
node=Node("uv_index", code="stn"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="level",
) | {
"outer_table": "uv_index",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "level",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071791 | train |
v3 | Sensor network script:
Node: wind_speed | code: prt | fields: type, unit, ts, reading
Sensor: evaporation | fields: lat, unit, qc, type
Task: Retrieve lon from wind_speed with value above the MIN(reading) of evaporation readings sharing the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("evaporation", code="evp"),
match="qc"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "evaporation",
"outer_alias": "prt",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071792 | train |
v2 | Sensor network script:
Node: wind_speed | code: mst | fields: type, level, qc, lon
Sensor: dew_point | fields: reading, unit, depth, qc
Task: Retrieve reading from wind_speed that have at least one matching reading in dew_point sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="unit",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071793 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: type, depth, unit, qc
Sensor: pressure | fields: unit, value, reading, qc
Task: Retrieve reading from sunlight with depth above the AVG(value) of pressure readings sharing the same type.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "value",
source=Probe("pressure", code="mbl"),
match="type"),
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "pressure",
"outer_alias": "gst",
"inner_alias": "mbl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "gst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071794 | train |
v1 | Sensor network script:
Node: dew_point | code: mst | fields: type, reading, lon, value
Sensor: sunlight | fields: type, level, reading, ts
Task: Retrieve lon from dew_point whose ts is found in sunlight records where type matches the outer node.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=set_member(
field="ts",
source=Probe("sunlight", code="brt"),
match="type",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lon",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071795 | train |
v1 | Sensor network script:
Node: air_quality | code: hub | fields: level, depth, ts, reading
Sensor: cloud_cover | fields: lat, lon, ts, unit
Task: Get reading from air_quality where qc appears in cloud_cover readings with matching depth.
Script: | readings = fetch(
node=Node("air_quality", code="hub"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "cloud_cover",
"outer_alias": "hub",
"inner_alias": "nbl",
"proj_col": "reading",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071796 | train |
v3 | Sensor network script:
Node: rainfall | code: thr | fields: ts, value, depth, reading
Sensor: wind_speed | fields: type, depth, level, lat
Task: Fetch level from rainfall where reading is greater than the total of reading in wind_speed for matching unit.
Script: | readings = fetch(
node=Node("rainfall", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "reading",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_071797 | train |
v2 | Sensor network script:
Node: visibility | code: gst | fields: ts, level, unit, type
Sensor: dew_point | fields: lat, qc, lon, ts
Task: Fetch reading from visibility that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("visibility", code="gst"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071798 | train |
v1 | Sensor network script:
Node: turbidity | code: gst | fields: level, lon, type, depth
Sensor: soil_moisture | fields: lat, lon, qc, ts
Task: Get lat from turbidity where ts appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="lat",
) | {
"outer_table": "turbidity",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_071799 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.