variant stringclasses 3
values | prompt stringlengths 216 286 | query stringlengths 168 299 | metadata unknown | id stringlengths 28 28 | split stringclasses 1
value |
|---|---|---|---|---|---|
v3 | Sensor network script:
Node: cloud_cover | code: thr | fields: level, lon, qc, reading
Sensor: wind_speed | fields: reading, qc, value, ts
Task: Retrieve depth from cloud_cover with value above the COUNT(depth) of wind_speed readings sharing the same type.
Script: | readings = fetch(
node=Node("cloud_cover", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "depth",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "COUNT",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082900 | train |
v1 | Sensor network script:
Node: cloud_cover | code: ref | fields: depth, lon, unit, ts
Sensor: rainfall | fields: ts, lat, depth, level
Task: Fetch lon from cloud_cover where qc exists in rainfall sensor data for the same unit.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=set_member(
field="qc",
source=Probe("rainfall", code="rnfl"),
match="unit",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "ref",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082901 | train |
v1 | Sensor network script:
Node: air_quality | code: gst | fields: level, value, depth, unit
Sensor: turbidity | fields: depth, level, lon, type
Task: Get lat from air_quality where unit appears in turbidity readings with matching unit.
Script: | readings = fetch(
node=Node("air_quality", code="gst"),
filter=set_member(
field="unit",
source=Probe("turbidity", code="ftu"),
match="unit",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "turbidity",
"outer_alias": "gst",
"inner_alias": "ftu",
"proj_col": "lat",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082902 | train |
v1 | Sensor network script:
Node: sunlight | code: stn | fields: ts, value, level, lon
Sensor: cloud_cover | fields: unit, level, reading, lat
Task: Get level from sunlight where qc appears in cloud_cover readings with matching type.
Script: | readings = fetch(
node=Node("sunlight", code="stn"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="type",
),
output="level",
) | {
"outer_table": "sunlight",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "level",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082903 | train |
v1 | Sensor network script:
Node: temperature | code: thr | fields: level, depth, lon, reading
Sensor: air_quality | fields: ts, unit, type, level
Task: Get reading from temperature where depth appears in air_quality readings with matching ts.
Script: | readings = fetch(
node=Node("temperature", code="thr"),
filter=set_member(
field="depth",
source=Probe("air_quality", code="prt"),
match="ts",
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "ts",
"correlated_ref": "thr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082904 | train |
v1 | Sensor network script:
Node: dew_point | code: hub | fields: value, ts, lat, unit
Sensor: air_quality | fields: level, value, qc, depth
Task: Get level from dew_point where type appears in air_quality readings with matching unit.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=set_member(
field="type",
source=Probe("air_quality", code="prt"),
match="unit",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "air_quality",
"outer_alias": "hub",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "type",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082905 | train |
v2 | Sensor network script:
Node: wind_speed | code: thr | fields: reading, lon, qc, type
Sensor: frost | fields: reading, qc, lon, depth
Task: Fetch value from wind_speed that have at least one corresponding frost measurement for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="value",
) | {
"outer_table": "wind_speed",
"inner_table": "frost",
"outer_alias": "thr",
"inner_alias": "frs",
"proj_col": "value",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082906 | train |
v3 | Sensor network script:
Node: soil_moisture | code: thr | fields: ts, unit, reading, lat
Sensor: snow_depth | fields: lat, reading, depth, qc
Task: Retrieve value from soil_moisture with depth above the SUM(reading) of snow_depth readings sharing the same qc.
Script: | readings = fetch(
node=Node("soil_moisture", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "snow_depth",
"outer_alias": "thr",
"inner_alias": "snw",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082907 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: level, depth, unit, lon
Sensor: visibility | fields: lat, level, lon, type
Task: Fetch level from snow_depth where ts exists in visibility sensor data for the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="ts",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "ts",
"correlated_ref": "prt.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082908 | train |
v3 | Sensor network script:
Node: air_quality | code: mst | fields: lat, type, value, qc
Sensor: dew_point | fields: qc, lon, type, depth
Task: Fetch level from air_quality where depth is greater than the average of reading in dew_point for matching type.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "reading",
source=Probe("dew_point", code="cnd"),
match="type"),
),
output="level",
) | {
"outer_table": "air_quality",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082909 | train |
v1 | Sensor network script:
Node: visibility | code: mst | fields: ts, reading, unit, depth
Sensor: dew_point | fields: ts, value, lat, depth
Task: Retrieve reading from visibility whose depth is found in dew_point records where depth matches the outer node.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=set_member(
field="depth",
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "dew_point",
"outer_alias": "mst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082910 | train |
v2 | Sensor network script:
Node: cloud_cover | code: mst | fields: unit, lon, ts, reading
Sensor: snow_depth | fields: ts, type, reading, unit
Task: Retrieve depth from cloud_cover that have at least one matching reading in snow_depth sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="mst"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="ts",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "snow_depth",
"outer_alias": "mst",
"inner_alias": "snw",
"proj_col": "depth",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082911 | train |
v3 | Sensor network script:
Node: drought_index | code: ref | fields: depth, ts, lon, unit
Sensor: wind_speed | fields: lon, level, depth, type
Task: Fetch level from drought_index where value is greater than the maximum of depth in wind_speed for matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="ref"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("wind_speed", code="gst"),
match="depth"),
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "ref",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082912 | train |
v3 | Sensor network script:
Node: sunlight | code: mst | fields: reading, ts, lat, qc
Sensor: temperature | fields: value, unit, qc, reading
Task: Fetch depth from sunlight where reading is greater than the total of depth in temperature for matching ts.
Script: | readings = fetch(
node=Node("sunlight", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("SUM", "depth",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="depth",
) | {
"outer_table": "sunlight",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082913 | train |
v3 | Sensor network script:
Node: humidity | code: stn | fields: level, lon, type, depth
Sensor: frost | fields: lon, qc, lat, unit
Task: Get value from humidity where depth exceeds the total depth from frost for the same unit.
Script: | readings = fetch(
node=Node("humidity", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("frost", code="frs"),
match="unit"),
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "frost",
"outer_alias": "stn",
"inner_alias": "frs",
"proj_col": "value",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082914 | train |
v2 | Sensor network script:
Node: dew_point | code: mst | fields: qc, reading, ts, type
Sensor: pressure | fields: reading, qc, type, unit
Task: Retrieve level from dew_point that have at least one matching reading in pressure sharing the same ts.
Script: | readings = fetch(
node=Node("dew_point", code="mst"),
filter=has_match(
source=Probe("pressure", code="mbl"),
match="ts",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "pressure",
"outer_alias": "mst",
"inner_alias": "mbl",
"proj_col": "level",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082915 | train |
v2 | Sensor network script:
Node: snow_depth | code: clr | fields: value, lon, qc, unit
Sensor: uv_index | fields: depth, lon, lat, ts
Task: Retrieve level from snow_depth that have at least one matching reading in uv_index sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="type",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082916 | train |
v1 | Sensor network script:
Node: drought_index | code: thr | fields: lat, ts, lon, reading
Sensor: wind_speed | fields: level, lat, reading, depth
Task: Get level from drought_index where ts appears in wind_speed readings with matching depth.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=set_member(
field="ts",
source=Probe("wind_speed", code="gst"),
match="depth",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082917 | train |
v1 | Sensor network script:
Node: temperature | code: hub | fields: lat, type, level, value
Sensor: turbidity | fields: value, depth, reading, level
Task: Retrieve level from temperature whose qc is found in turbidity records where type matches the outer node.
Script: | readings = fetch(
node=Node("temperature", code="hub"),
filter=set_member(
field="qc",
source=Probe("turbidity", code="ftu"),
match="type",
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "level",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082918 | train |
v1 | Sensor network script:
Node: wind_speed | code: gst | fields: value, level, ts, lon
Sensor: soil_moisture | fields: lon, unit, ts, reading
Task: Get level from wind_speed where depth appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "gst",
"inner_alias": "grvl",
"proj_col": "level",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082919 | train |
v1 | Sensor network script:
Node: humidity | code: clr | fields: unit, qc, value, level
Sensor: uv_index | fields: value, lat, lon, depth
Task: Get lat from humidity where depth appears in uv_index readings with matching qc.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=set_member(
field="depth",
source=Probe("uv_index", code="flx"),
match="qc",
),
output="lat",
) | {
"outer_table": "humidity",
"inner_table": "uv_index",
"outer_alias": "clr",
"inner_alias": "flx",
"proj_col": "lat",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "clr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082920 | train |
v2 | Sensor network script:
Node: pressure | code: clr | fields: ts, depth, level, unit
Sensor: frost | fields: lat, value, level, qc
Task: Retrieve reading from pressure that have at least one matching reading in frost sharing the same depth.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "clr",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082921 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: lat, depth, type, level
Sensor: visibility | fields: lon, depth, ts, level
Task: Get level from pressure where type appears in visibility readings with matching ts.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="ts",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082922 | train |
v2 | Sensor network script:
Node: rainfall | code: gst | fields: type, qc, ts, lat
Sensor: drought_index | fields: depth, lat, unit, value
Task: Get lat from rainfall where a corresponding entry exists in drought_index with the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="unit",
),
output="lat",
) | {
"outer_table": "rainfall",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "unit",
"correlated_ref": "gst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082923 | train |
v2 | Sensor network script:
Node: snow_depth | code: stn | fields: reading, unit, value, ts
Sensor: uv_index | fields: lon, unit, ts, reading
Task: Fetch reading from snow_depth that have at least one corresponding uv_index measurement for the same depth.
Script: | readings = fetch(
node=Node("snow_depth", code="stn"),
filter=has_match(
source=Probe("uv_index", code="flx"),
match="depth",
),
output="reading",
) | {
"outer_table": "snow_depth",
"inner_table": "uv_index",
"outer_alias": "stn",
"inner_alias": "flx",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "stn.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082924 | train |
v1 | Sensor network script:
Node: cloud_cover | code: stn | fields: value, lon, level, reading
Sensor: evaporation | fields: level, depth, reading, qc
Task: Get depth from cloud_cover where qc appears in evaporation readings with matching type.
Script: | readings = fetch(
node=Node("cloud_cover", code="stn"),
filter=set_member(
field="qc",
source=Probe("evaporation", code="evp"),
match="type",
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "evaporation",
"outer_alias": "stn",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "qc",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082925 | train |
v2 | Sensor network script:
Node: air_quality | code: prt | fields: depth, qc, lon, ts
Sensor: frost | fields: lat, level, type, ts
Task: Get lat from air_quality where a corresponding entry exists in frost with the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="prt"),
filter=has_match(
source=Probe("frost", code="frs"),
match="depth",
),
output="lat",
) | {
"outer_table": "air_quality",
"inner_table": "frost",
"outer_alias": "prt",
"inner_alias": "frs",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082926 | train |
v2 | Sensor network script:
Node: sunlight | code: ref | fields: lon, reading, ts, type
Sensor: snow_depth | fields: lon, qc, value, ts
Task: Fetch reading from sunlight that have at least one corresponding snow_depth measurement for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="ref"),
filter=has_match(
source=Probe("snow_depth", code="snw"),
match="type",
),
output="reading",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "ref",
"inner_alias": "snw",
"proj_col": "reading",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082927 | train |
v3 | Sensor network script:
Node: visibility | code: thr | fields: reading, lon, depth, unit
Sensor: wind_speed | fields: lat, qc, ts, unit
Task: Get reading from visibility where reading exceeds the minimum reading from wind_speed for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="thr"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "reading",
source=Probe("wind_speed", code="gst"),
match="unit"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "thr.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082928 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: value, type, ts, qc
Sensor: visibility | fields: ts, level, unit, type
Task: Get level from pressure where ts appears in visibility readings with matching type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="ts",
source=Probe("visibility", code="clr"),
match="type",
),
output="level",
) | {
"outer_table": "pressure",
"inner_table": "visibility",
"outer_alias": "thr",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "ts",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082929 | train |
v3 | Sensor network script:
Node: evaporation | code: thr | fields: ts, unit, depth, lon
Sensor: uv_index | fields: unit, lat, value, depth
Task: Fetch depth from evaporation where value is greater than the minimum of reading in uv_index for matching type.
Script: | readings = fetch(
node=Node("evaporation", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("uv_index", code="flx"),
match="type"),
),
output="depth",
) | {
"outer_table": "evaporation",
"inner_table": "uv_index",
"outer_alias": "thr",
"inner_alias": "flx",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082930 | train |
v3 | Sensor network script:
Node: wind_speed | code: thr | fields: value, reading, type, ts
Sensor: dew_point | fields: value, type, level, unit
Task: Fetch reading from wind_speed where value is greater than the minimum of reading in dew_point for matching depth.
Script: | readings = fetch(
node=Node("wind_speed", code="thr"),
filter=exceeds(
field="value",
threshold=aggregate("MIN", "reading",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "dew_point",
"outer_alias": "thr",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "MIN",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082931 | train |
v2 | Sensor network script:
Node: drought_index | code: stn | fields: reading, value, unit, type
Sensor: visibility | fields: qc, value, reading, unit
Task: Retrieve value from drought_index that have at least one matching reading in visibility sharing the same type.
Script: | readings = fetch(
node=Node("drought_index", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="type",
),
output="value",
) | {
"outer_table": "drought_index",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "value",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082932 | train |
v2 | Sensor network script:
Node: air_quality | code: mst | fields: lat, level, qc, value
Sensor: wind_speed | fields: type, reading, qc, value
Task: Retrieve depth from air_quality that have at least one matching reading in wind_speed sharing the same type.
Script: | readings = fetch(
node=Node("air_quality", code="mst"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="depth",
) | {
"outer_table": "air_quality",
"inner_table": "wind_speed",
"outer_alias": "mst",
"inner_alias": "gst",
"proj_col": "depth",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082933 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: value, level, depth, lon
Sensor: sunlight | fields: reading, lat, unit, type
Task: Retrieve lon from snow_depth that have at least one matching reading in sunlight sharing the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("sunlight", code="brt"),
match="type",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082934 | train |
v3 | Sensor network script:
Node: air_quality | code: thr | fields: unit, lon, depth, ts
Sensor: rainfall | fields: value, ts, level, depth
Task: Get reading from air_quality where depth exceeds the total depth from rainfall for the same depth.
Script: | readings = fetch(
node=Node("air_quality", code="thr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("rainfall", code="rnfl"),
match="depth"),
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "rainfall",
"outer_alias": "thr",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "thr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082935 | train |
v2 | Sensor network script:
Node: snow_depth | code: gst | fields: unit, lon, type, lat
Sensor: temperature | fields: level, type, lon, reading
Task: Retrieve lat from snow_depth that have at least one matching reading in temperature sharing the same ts.
Script: | readings = fetch(
node=Node("snow_depth", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="lat",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "gst",
"inner_alias": "thr",
"proj_col": "lat",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082936 | train |
v1 | Sensor network script:
Node: snow_depth | code: prt | fields: depth, ts, qc, type
Sensor: cloud_cover | fields: level, reading, type, depth
Task: Get lon from snow_depth where unit appears in cloud_cover readings with matching unit.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=set_member(
field="unit",
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "cloud_cover",
"outer_alias": "prt",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082937 | train |
v2 | Sensor network script:
Node: uv_index | code: thr | fields: lat, level, value, qc
Sensor: drought_index | fields: unit, level, lon, qc
Task: Get depth from uv_index where a corresponding entry exists in drought_index with the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="thr"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="qc",
),
output="depth",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "thr",
"inner_alias": "drt",
"proj_col": "depth",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082938 | train |
v2 | Sensor network script:
Node: sunlight | code: hub | fields: depth, qc, level, lat
Sensor: soil_moisture | fields: lon, level, unit, qc
Task: Fetch lon from sunlight that have at least one corresponding soil_moisture measurement for the same depth.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082939 | train |
v1 | Sensor network script:
Node: pressure | code: thr | fields: reading, depth, qc, unit
Sensor: evaporation | fields: type, ts, unit, value
Task: Fetch depth from pressure where unit exists in evaporation sensor data for the same type.
Script: | readings = fetch(
node=Node("pressure", code="thr"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="type",
),
output="depth",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "thr",
"inner_alias": "evp",
"proj_col": "depth",
"filter_col": "unit",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082940 | train |
v2 | Sensor network script:
Node: snow_depth | code: mst | fields: level, depth, unit, lon
Sensor: temperature | fields: unit, level, reading, ts
Task: Get level from snow_depth where a corresponding entry exists in temperature with the same type.
Script: | readings = fetch(
node=Node("snow_depth", code="mst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="type",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "temperature",
"outer_alias": "mst",
"inner_alias": "thr",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "mst.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082941 | train |
v3 | Sensor network script:
Node: rainfall | code: stn | fields: type, ts, reading, value
Sensor: visibility | fields: unit, type, lon, reading
Task: Get reading from rainfall where reading exceeds the average reading from visibility for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "reading",
source=Probe("visibility", code="clr"),
match="unit"),
),
output="reading",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082942 | train |
v3 | Sensor network script:
Node: cloud_cover | code: clr | fields: lat, type, reading, level
Sensor: temperature | fields: lon, type, depth, unit
Task: Retrieve value from cloud_cover with reading above the COUNT(reading) of temperature readings sharing the same ts.
Script: | readings = fetch(
node=Node("cloud_cover", code="clr"),
filter=exceeds(
field="reading",
threshold=aggregate("COUNT", "reading",
source=Probe("temperature", code="thr"),
match="ts"),
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "temperature",
"outer_alias": "clr",
"inner_alias": "thr",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082943 | train |
v1 | Sensor network script:
Node: soil_moisture | code: mst | fields: reading, value, unit, type
Sensor: visibility | fields: qc, ts, value, lat
Task: Retrieve level from soil_moisture whose type is found in visibility records where ts matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="mst"),
filter=set_member(
field="type",
source=Probe("visibility", code="clr"),
match="ts",
),
output="level",
) | {
"outer_table": "soil_moisture",
"inner_table": "visibility",
"outer_alias": "mst",
"inner_alias": "clr",
"proj_col": "level",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "mst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082944 | train |
v3 | Sensor network script:
Node: turbidity | code: prt | fields: lon, ts, reading, unit
Sensor: rainfall | fields: qc, ts, unit, lat
Task: Fetch level from turbidity where depth is greater than the total of value in rainfall for matching type.
Script: | readings = fetch(
node=Node("turbidity", code="prt"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("rainfall", code="rnfl"),
match="type"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "prt.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082945 | train |
v1 | Sensor network script:
Node: air_quality | code: clr | fields: lat, reading, depth, qc
Sensor: sunlight | fields: lat, ts, depth, unit
Task: Get reading from air_quality where depth appears in sunlight readings with matching type.
Script: | readings = fetch(
node=Node("air_quality", code="clr"),
filter=set_member(
field="depth",
source=Probe("sunlight", code="brt"),
match="type",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "sunlight",
"outer_alias": "clr",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082946 | train |
v1 | Sensor network script:
Node: snow_depth | code: clr | fields: value, lat, level, type
Sensor: lightning | fields: lat, ts, level, reading
Task: Fetch lon from snow_depth where unit exists in lightning sensor data for the same unit.
Script: | readings = fetch(
node=Node("snow_depth", code="clr"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="unit",
),
output="lon",
) | {
"outer_table": "snow_depth",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082947 | train |
v2 | Sensor network script:
Node: rainfall | code: stn | fields: lon, qc, level, type
Sensor: visibility | fields: value, qc, type, lon
Task: Get level from rainfall where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="stn"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "stn",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082948 | train |
v1 | Sensor network script:
Node: evaporation | code: prt | fields: reading, lat, type, ts
Sensor: rainfall | fields: unit, level, ts, lon
Task: Fetch lon from evaporation where unit exists in rainfall sensor data for the same depth.
Script: | readings = fetch(
node=Node("evaporation", code="prt"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lon",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "prt",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082949 | train |
v3 | Sensor network script:
Node: evaporation | code: hub | fields: qc, level, lon, ts
Sensor: sunlight | fields: reading, depth, type, value
Task: Get reading from evaporation where depth exceeds the count of value from sunlight for the same qc.
Script: | readings = fetch(
node=Node("evaporation", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("sunlight", code="brt"),
match="qc"),
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "sunlight",
"outer_alias": "hub",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082950 | train |
v1 | Sensor network script:
Node: visibility | code: stn | fields: depth, lon, lat, reading
Sensor: temperature | fields: qc, ts, reading, depth
Task: Fetch reading from visibility where depth exists in temperature sensor data for the same type.
Script: | readings = fetch(
node=Node("visibility", code="stn"),
filter=set_member(
field="depth",
source=Probe("temperature", code="thr"),
match="type",
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "temperature",
"outer_alias": "stn",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "depth",
"join_col": "type",
"correlated_ref": "stn.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082951 | train |
v3 | Sensor network script:
Node: uv_index | code: prt | fields: ts, value, depth, unit
Sensor: drought_index | fields: qc, lon, lat, depth
Task: Get lat from uv_index where reading exceeds the average value from drought_index for the same qc.
Script: | readings = fetch(
node=Node("uv_index", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="lat",
) | {
"outer_table": "uv_index",
"inner_table": "drought_index",
"outer_alias": "prt",
"inner_alias": "drt",
"proj_col": "lat",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082952 | train |
v1 | Sensor network script:
Node: evaporation | code: gst | fields: reading, qc, ts, unit
Sensor: rainfall | fields: level, value, depth, qc
Task: Get reading from evaporation where ts appears in rainfall readings with matching depth.
Script: | readings = fetch(
node=Node("evaporation", code="gst"),
filter=set_member(
field="ts",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="reading",
) | {
"outer_table": "evaporation",
"inner_table": "rainfall",
"outer_alias": "gst",
"inner_alias": "rnfl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082953 | train |
v1 | Sensor network script:
Node: pressure | code: mst | fields: type, level, reading, depth
Sensor: cloud_cover | fields: ts, qc, value, lat
Task: Fetch lon from pressure where qc exists in cloud_cover sensor data for the same depth.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=set_member(
field="qc",
source=Probe("cloud_cover", code="nbl"),
match="depth",
),
output="lon",
) | {
"outer_table": "pressure",
"inner_table": "cloud_cover",
"outer_alias": "mst",
"inner_alias": "nbl",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082954 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: level, qc, unit, lat
Sensor: soil_moisture | fields: reading, depth, lon, value
Task: Get lat from frost where a corresponding entry exists in soil_moisture with the same depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="lat",
) | {
"outer_table": "frost",
"inner_table": "soil_moisture",
"outer_alias": "mst",
"inner_alias": "grvl",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082955 | train |
v1 | Sensor network script:
Node: wind_speed | code: clr | fields: ts, unit, level, lat
Sensor: soil_moisture | fields: level, ts, type, lon
Task: Fetch reading from wind_speed where ts exists in soil_moisture sensor data for the same depth.
Script: | readings = fetch(
node=Node("wind_speed", code="clr"),
filter=set_member(
field="ts",
source=Probe("soil_moisture", code="grvl"),
match="depth",
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "soil_moisture",
"outer_alias": "clr",
"inner_alias": "grvl",
"proj_col": "reading",
"filter_col": "ts",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082956 | train |
v2 | Sensor network script:
Node: dew_point | code: hub | fields: lat, qc, unit, level
Sensor: drought_index | fields: type, unit, value, reading
Task: Get lon from dew_point where a corresponding entry exists in drought_index with the same type.
Script: | readings = fetch(
node=Node("dew_point", code="hub"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="type",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "drought_index",
"outer_alias": "hub",
"inner_alias": "drt",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082957 | train |
v3 | Sensor network script:
Node: cloud_cover | code: ref | fields: lat, unit, type, depth
Sensor: humidity | fields: ts, lat, unit, qc
Task: Retrieve level from cloud_cover with depth above the AVG(depth) of humidity readings sharing the same depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="ref"),
filter=exceeds(
field="depth",
threshold=aggregate("AVG", "depth",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="level",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "ref.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082958 | train |
v2 | Sensor network script:
Node: air_quality | code: stn | fields: value, reading, type, unit
Sensor: lightning | fields: depth, unit, reading, value
Task: Fetch reading from air_quality that have at least one corresponding lightning measurement for the same qc.
Script: | readings = fetch(
node=Node("air_quality", code="stn"),
filter=has_match(
source=Probe("lightning", code="tnd"),
match="qc",
),
output="reading",
) | {
"outer_table": "air_quality",
"inner_table": "lightning",
"outer_alias": "stn",
"inner_alias": "tnd",
"proj_col": "reading",
"join_col": "qc",
"correlated_ref": "stn.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082959 | train |
v3 | Sensor network script:
Node: temperature | code: stn | fields: ts, qc, unit, lon
Sensor: wind_speed | fields: type, reading, qc, value
Task: Fetch level from temperature where depth is greater than the count of of value in wind_speed for matching ts.
Script: | readings = fetch(
node=Node("temperature", code="stn"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "value",
source=Probe("wind_speed", code="gst"),
match="ts"),
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "wind_speed",
"outer_alias": "stn",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "stn.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082960 | train |
v3 | Sensor network script:
Node: temperature | code: clr | fields: lat, value, reading, ts
Sensor: humidity | fields: lon, ts, reading, value
Task: Retrieve level from temperature with depth above the SUM(reading) of humidity readings sharing the same unit.
Script: | readings = fetch(
node=Node("temperature", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "reading",
source=Probe("humidity", code="hgr"),
match="unit"),
),
output="level",
) | {
"outer_table": "temperature",
"inner_table": "humidity",
"outer_alias": "clr",
"inner_alias": "hgr",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "clr.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082961 | train |
v3 | Sensor network script:
Node: wind_speed | code: gst | fields: level, reading, type, value
Sensor: lightning | fields: depth, ts, value, type
Task: Get lon from wind_speed where reading exceeds the average value from lightning for the same qc.
Script: | readings = fetch(
node=Node("wind_speed", code="gst"),
filter=exceeds(
field="reading",
threshold=aggregate("AVG", "value",
source=Probe("lightning", code="tnd"),
match="qc"),
),
output="lon",
) | {
"outer_table": "wind_speed",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "lon",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "AVG",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082962 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: lat, ts, qc, level
Sensor: visibility | fields: level, reading, lon, unit
Task: Get depth from rainfall where a corresponding entry exists in visibility with the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "visibility",
"outer_alias": "hub",
"inner_alias": "clr",
"proj_col": "depth",
"join_col": "unit",
"correlated_ref": "hub.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082963 | train |
v3 | Sensor network script:
Node: sunlight | code: hub | fields: ts, depth, qc, lat
Sensor: soil_moisture | fields: level, ts, type, unit
Task: Get lat from sunlight where value exceeds the total reading from soil_moisture for the same type.
Script: | readings = fetch(
node=Node("sunlight", code="hub"),
filter=exceeds(
field="value",
threshold=aggregate("SUM", "reading",
source=Probe("soil_moisture", code="grvl"),
match="type"),
),
output="lat",
) | {
"outer_table": "sunlight",
"inner_table": "soil_moisture",
"outer_alias": "hub",
"inner_alias": "grvl",
"proj_col": "lat",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082964 | train |
v2 | Sensor network script:
Node: dew_point | code: stn | fields: lat, depth, reading, level
Sensor: cloud_cover | fields: type, value, lat, qc
Task: Retrieve level from dew_point that have at least one matching reading in cloud_cover sharing the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="stn"),
filter=has_match(
source=Probe("cloud_cover", code="nbl"),
match="unit",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "cloud_cover",
"outer_alias": "stn",
"inner_alias": "nbl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "stn.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082965 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: ts, reading, level, depth
Sensor: wind_speed | fields: value, level, reading, lon
Task: Fetch level from drought_index that have at least one corresponding wind_speed measurement for the same type.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("wind_speed", code="gst"),
match="type",
),
output="level",
) | {
"outer_table": "drought_index",
"inner_table": "wind_speed",
"outer_alias": "thr",
"inner_alias": "gst",
"proj_col": "level",
"join_col": "type",
"correlated_ref": "thr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082966 | train |
v2 | Sensor network script:
Node: sunlight | code: gst | fields: lon, depth, reading, lat
Sensor: temperature | fields: depth, qc, type, level
Task: Fetch value from sunlight that have at least one corresponding temperature measurement for the same ts.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=has_match(
source=Probe("temperature", code="thr"),
match="ts",
),
output="value",
) | {
"outer_table": "sunlight",
"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_082967 | train |
v3 | Sensor network script:
Node: air_quality | code: ref | fields: unit, depth, value, lon
Sensor: drought_index | fields: level, unit, value, depth
Task: Fetch value from air_quality where reading is greater than the maximum of value in drought_index for matching qc.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("drought_index", code="drt"),
match="qc"),
),
output="value",
) | {
"outer_table": "air_quality",
"inner_table": "drought_index",
"outer_alias": "ref",
"inner_alias": "drt",
"proj_col": "value",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082968 | train |
v3 | Sensor network script:
Node: cloud_cover | code: prt | fields: value, ts, depth, lon
Sensor: humidity | fields: value, level, qc, unit
Task: Fetch depth from cloud_cover where reading is greater than the maximum of depth in humidity for matching depth.
Script: | readings = fetch(
node=Node("cloud_cover", code="prt"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "depth",
source=Probe("humidity", code="hgr"),
match="depth"),
),
output="depth",
) | {
"outer_table": "cloud_cover",
"inner_table": "humidity",
"outer_alias": "prt",
"inner_alias": "hgr",
"proj_col": "depth",
"filter_col": "reading",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "depth",
"correlated_ref": "prt.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082969 | train |
v2 | Sensor network script:
Node: drought_index | code: thr | fields: unit, depth, reading, value
Sensor: air_quality | fields: level, unit, lat, qc
Task: Fetch lon from drought_index that have at least one corresponding air_quality measurement for the same qc.
Script: | readings = fetch(
node=Node("drought_index", code="thr"),
filter=has_match(
source=Probe("air_quality", code="prt"),
match="qc",
),
output="lon",
) | {
"outer_table": "drought_index",
"inner_table": "air_quality",
"outer_alias": "thr",
"inner_alias": "prt",
"proj_col": "lon",
"join_col": "qc",
"correlated_ref": "thr.qc",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082970 | train |
v3 | Sensor network script:
Node: lightning | code: mst | fields: depth, lon, unit, type
Sensor: frost | fields: value, qc, depth, type
Task: Get level from lightning where value exceeds the average reading from frost for the same depth.
Script: | readings = fetch(
node=Node("lightning", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("AVG", "reading",
source=Probe("frost", code="frs"),
match="depth"),
),
output="level",
) | {
"outer_table": "lightning",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "level",
"filter_col": "value",
"agg_col": "reading",
"agg_fn": "AVG",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082971 | train |
v2 | Sensor network script:
Node: wind_speed | code: prt | fields: qc, lat, ts, depth
Sensor: visibility | fields: unit, lon, type, ts
Task: Retrieve level from wind_speed that have at least one matching reading in visibility sharing the same unit.
Script: | readings = fetch(
node=Node("wind_speed", code="prt"),
filter=has_match(
source=Probe("visibility", code="clr"),
match="unit",
),
output="level",
) | {
"outer_table": "wind_speed",
"inner_table": "visibility",
"outer_alias": "prt",
"inner_alias": "clr",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082972 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: unit, reading, level, value
Sensor: humidity | fields: level, lat, unit, value
Task: Get lon from dew_point where qc appears in humidity readings with matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="qc",
source=Probe("humidity", code="hgr"),
match="qc",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "humidity",
"outer_alias": "ref",
"inner_alias": "hgr",
"proj_col": "lon",
"filter_col": "qc",
"join_col": "qc",
"correlated_ref": "ref.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082973 | train |
v3 | Sensor network script:
Node: rainfall | code: mst | fields: lat, depth, reading, level
Sensor: sunlight | fields: value, unit, lon, depth
Task: Get depth from rainfall where value exceeds the maximum depth from sunlight for the same unit.
Script: | readings = fetch(
node=Node("rainfall", code="mst"),
filter=exceeds(
field="value",
threshold=aggregate("MAX", "depth",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="depth",
) | {
"outer_table": "rainfall",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "depth",
"filter_col": "value",
"agg_col": "depth",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082974 | train |
v1 | Sensor network script:
Node: soil_moisture | code: gst | fields: qc, depth, unit, value
Sensor: dew_point | fields: type, reading, lon, unit
Task: Retrieve value from soil_moisture whose ts is found in dew_point records where qc matches the outer node.
Script: | readings = fetch(
node=Node("soil_moisture", code="gst"),
filter=set_member(
field="ts",
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="value",
) | {
"outer_table": "soil_moisture",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "value",
"filter_col": "ts",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082975 | train |
v3 | Sensor network script:
Node: rainfall | code: clr | fields: unit, ts, type, qc
Sensor: wind_speed | fields: unit, reading, qc, level
Task: Fetch level from rainfall where depth is greater than the maximum of value in wind_speed for matching type.
Script: | readings = fetch(
node=Node("rainfall", code="clr"),
filter=exceeds(
field="depth",
threshold=aggregate("MAX", "value",
source=Probe("wind_speed", code="gst"),
match="type"),
),
output="level",
) | {
"outer_table": "rainfall",
"inner_table": "wind_speed",
"outer_alias": "clr",
"inner_alias": "gst",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "type",
"correlated_ref": "clr.type",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082976 | train |
v1 | Sensor network script:
Node: dew_point | code: ref | fields: type, lat, ts, lon
Sensor: evaporation | fields: lat, ts, reading, type
Task: Fetch lon from dew_point where unit exists in evaporation sensor data for the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="ref"),
filter=set_member(
field="unit",
source=Probe("evaporation", code="evp"),
match="unit",
),
output="lon",
) | {
"outer_table": "dew_point",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082977 | train |
v1 | Sensor network script:
Node: cloud_cover | code: gst | fields: ts, value, qc, lon
Sensor: lightning | fields: reading, qc, type, unit
Task: Retrieve value from cloud_cover whose unit is found in lightning records where depth matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="gst"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="depth",
),
output="value",
) | {
"outer_table": "cloud_cover",
"inner_table": "lightning",
"outer_alias": "gst",
"inner_alias": "tnd",
"proj_col": "value",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082978 | train |
v1 | Sensor network script:
Node: rainfall | code: gst | fields: lon, reading, level, value
Sensor: evaporation | fields: level, qc, value, reading
Task: Get lon from rainfall where type appears in evaporation readings with matching ts.
Script: | readings = fetch(
node=Node("rainfall", code="gst"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "evaporation",
"outer_alias": "gst",
"inner_alias": "evp",
"proj_col": "lon",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082979 | train |
v3 | Sensor network script:
Node: wind_speed | code: mst | fields: lat, ts, type, level
Sensor: air_quality | fields: reading, lat, unit, qc
Task: Fetch reading from wind_speed where reading is greater than the maximum of value in air_quality for matching unit.
Script: | readings = fetch(
node=Node("wind_speed", code="mst"),
filter=exceeds(
field="reading",
threshold=aggregate("MAX", "value",
source=Probe("air_quality", code="prt"),
match="unit"),
),
output="reading",
) | {
"outer_table": "wind_speed",
"inner_table": "air_quality",
"outer_alias": "mst",
"inner_alias": "prt",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MAX",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082980 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: value, unit, level, lat
Sensor: evaporation | fields: lat, value, ts, unit
Task: Fetch reading from pressure where type exists in evaporation sensor data for the same ts.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="type",
source=Probe("evaporation", code="evp"),
match="ts",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "evaporation",
"outer_alias": "clr",
"inner_alias": "evp",
"proj_col": "reading",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082981 | train |
v2 | Sensor network script:
Node: dew_point | code: prt | fields: reading, level, value, type
Sensor: soil_moisture | fields: value, level, unit, reading
Task: Get level from dew_point where a corresponding entry exists in soil_moisture with the same unit.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=has_match(
source=Probe("soil_moisture", code="grvl"),
match="unit",
),
output="level",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "level",
"join_col": "unit",
"correlated_ref": "prt.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082982 | train |
v2 | Sensor network script:
Node: pressure | code: mst | fields: level, value, lat, lon
Sensor: frost | fields: ts, lat, level, qc
Task: Get reading from pressure where a corresponding entry exists in frost with the same unit.
Script: | readings = fetch(
node=Node("pressure", code="mst"),
filter=has_match(
source=Probe("frost", code="frs"),
match="unit",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "frost",
"outer_alias": "mst",
"inner_alias": "frs",
"proj_col": "reading",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082983 | train |
v2 | Sensor network script:
Node: rainfall | code: hub | fields: qc, reading, unit, level
Sensor: frost | fields: value, type, reading, lon
Task: Get value from rainfall where a corresponding entry exists in frost with the same qc.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=has_match(
source=Probe("frost", code="frs"),
match="qc",
),
output="value",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "value",
"join_col": "qc",
"correlated_ref": "hub.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082984 | train |
v1 | Sensor network script:
Node: dew_point | code: prt | fields: ts, type, level, lat
Sensor: soil_moisture | fields: value, reading, depth, level
Task: Get depth from dew_point where depth appears in soil_moisture readings with matching qc.
Script: | readings = fetch(
node=Node("dew_point", code="prt"),
filter=set_member(
field="depth",
source=Probe("soil_moisture", code="grvl"),
match="qc",
),
output="depth",
) | {
"outer_table": "dew_point",
"inner_table": "soil_moisture",
"outer_alias": "prt",
"inner_alias": "grvl",
"proj_col": "depth",
"filter_col": "depth",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082985 | train |
v2 | Sensor network script:
Node: frost | code: mst | fields: ts, level, reading, lat
Sensor: evaporation | fields: reading, depth, level, value
Task: Get reading from frost where a corresponding entry exists in evaporation with the same depth.
Script: | readings = fetch(
node=Node("frost", code="mst"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="depth",
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "evaporation",
"outer_alias": "mst",
"inner_alias": "evp",
"proj_col": "reading",
"join_col": "depth",
"correlated_ref": "mst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082986 | train |
v3 | Sensor network script:
Node: frost | code: ref | fields: depth, unit, reading, lat
Sensor: temperature | fields: ts, unit, qc, reading
Task: Retrieve reading from frost with reading above the MIN(value) of temperature readings sharing the same unit.
Script: | readings = fetch(
node=Node("frost", code="ref"),
filter=exceeds(
field="reading",
threshold=aggregate("MIN", "value",
source=Probe("temperature", code="thr"),
match="unit"),
),
output="reading",
) | {
"outer_table": "frost",
"inner_table": "temperature",
"outer_alias": "ref",
"inner_alias": "thr",
"proj_col": "reading",
"filter_col": "reading",
"agg_col": "value",
"agg_fn": "MIN",
"join_col": "unit",
"correlated_ref": "ref.unit",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082987 | train |
v3 | Sensor network script:
Node: visibility | code: mst | fields: value, reading, ts, unit
Sensor: sunlight | fields: reading, ts, type, lat
Task: Get reading from visibility where depth exceeds the total depth from sunlight for the same unit.
Script: | readings = fetch(
node=Node("visibility", code="mst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "depth",
source=Probe("sunlight", code="brt"),
match="unit"),
),
output="reading",
) | {
"outer_table": "visibility",
"inner_table": "sunlight",
"outer_alias": "mst",
"inner_alias": "brt",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "depth",
"agg_fn": "SUM",
"join_col": "unit",
"correlated_ref": "mst.unit",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082988 | train |
v2 | Sensor network script:
Node: snow_depth | code: prt | fields: lon, lat, ts, qc
Sensor: dew_point | fields: depth, unit, value, level
Task: Fetch level from snow_depth that have at least one corresponding dew_point measurement for the same qc.
Script: | readings = fetch(
node=Node("snow_depth", code="prt"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="qc",
),
output="level",
) | {
"outer_table": "snow_depth",
"inner_table": "dew_point",
"outer_alias": "prt",
"inner_alias": "cnd",
"proj_col": "level",
"join_col": "qc",
"correlated_ref": "prt.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082989 | train |
v1 | Sensor network script:
Node: humidity | code: hub | fields: depth, ts, lon, type
Sensor: turbidity | fields: ts, depth, level, lon
Task: Retrieve value from humidity whose type is found in turbidity records where ts matches the outer node.
Script: | readings = fetch(
node=Node("humidity", code="hub"),
filter=set_member(
field="type",
source=Probe("turbidity", code="ftu"),
match="ts",
),
output="value",
) | {
"outer_table": "humidity",
"inner_table": "turbidity",
"outer_alias": "hub",
"inner_alias": "ftu",
"proj_col": "value",
"filter_col": "type",
"join_col": "ts",
"correlated_ref": "hub.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082990 | train |
v3 | Sensor network script:
Node: sunlight | code: gst | fields: type, qc, ts, unit
Sensor: snow_depth | fields: reading, qc, level, lat
Task: Retrieve lon from sunlight with value above the COUNT(value) of snow_depth readings sharing the same qc.
Script: | readings = fetch(
node=Node("sunlight", code="gst"),
filter=exceeds(
field="value",
threshold=aggregate("COUNT", "value",
source=Probe("snow_depth", code="snw"),
match="qc"),
),
output="lon",
) | {
"outer_table": "sunlight",
"inner_table": "snow_depth",
"outer_alias": "gst",
"inner_alias": "snw",
"proj_col": "lon",
"filter_col": "value",
"agg_col": "value",
"agg_fn": "COUNT",
"join_col": "qc",
"correlated_ref": "gst.qc",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082991 | train |
v3 | Sensor network script:
Node: turbidity | code: gst | fields: reading, type, level, qc
Sensor: air_quality | fields: ts, qc, type, value
Task: Fetch level from turbidity where depth is greater than the count of of reading in air_quality for matching ts.
Script: | readings = fetch(
node=Node("turbidity", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("COUNT", "reading",
source=Probe("air_quality", code="prt"),
match="ts"),
),
output="level",
) | {
"outer_table": "turbidity",
"inner_table": "air_quality",
"outer_alias": "gst",
"inner_alias": "prt",
"proj_col": "level",
"filter_col": "depth",
"agg_col": "reading",
"agg_fn": "COUNT",
"join_col": "ts",
"correlated_ref": "gst.ts",
"token_group": "T1",
"fan_out": 1
} | sensor_fixed_v1_train_082992 | train |
v2 | Sensor network script:
Node: humidity | code: clr | fields: qc, lon, value, level
Sensor: dew_point | fields: ts, type, reading, value
Task: Fetch lon from humidity that have at least one corresponding dew_point measurement for the same depth.
Script: | readings = fetch(
node=Node("humidity", code="clr"),
filter=has_match(
source=Probe("dew_point", code="cnd"),
match="depth",
),
output="lon",
) | {
"outer_table": "humidity",
"inner_table": "dew_point",
"outer_alias": "clr",
"inner_alias": "cnd",
"proj_col": "lon",
"join_col": "depth",
"correlated_ref": "clr.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082993 | train |
v1 | Sensor network script:
Node: cloud_cover | code: hub | fields: lat, level, reading, lon
Sensor: rainfall | fields: qc, lat, level, unit
Task: Retrieve lon from cloud_cover whose unit is found in rainfall records where depth matches the outer node.
Script: | readings = fetch(
node=Node("cloud_cover", code="hub"),
filter=set_member(
field="unit",
source=Probe("rainfall", code="rnfl"),
match="depth",
),
output="lon",
) | {
"outer_table": "cloud_cover",
"inner_table": "rainfall",
"outer_alias": "hub",
"inner_alias": "rnfl",
"proj_col": "lon",
"filter_col": "unit",
"join_col": "depth",
"correlated_ref": "hub.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082994 | train |
v2 | Sensor network script:
Node: temperature | code: gst | fields: ts, reading, level, type
Sensor: drought_index | fields: type, ts, level, reading
Task: Fetch lat from temperature that have at least one corresponding drought_index measurement for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=has_match(
source=Probe("drought_index", code="drt"),
match="depth",
),
output="lat",
) | {
"outer_table": "temperature",
"inner_table": "drought_index",
"outer_alias": "gst",
"inner_alias": "drt",
"proj_col": "lat",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082995 | train |
v3 | Sensor network script:
Node: temperature | code: gst | fields: qc, unit, lon, value
Sensor: dew_point | fields: level, ts, type, reading
Task: Get reading from temperature where depth exceeds the total value from dew_point for the same depth.
Script: | readings = fetch(
node=Node("temperature", code="gst"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("dew_point", code="cnd"),
match="depth"),
),
output="reading",
) | {
"outer_table": "temperature",
"inner_table": "dew_point",
"outer_alias": "gst",
"inner_alias": "cnd",
"proj_col": "reading",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "depth",
"correlated_ref": "gst.depth",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082996 | train |
v1 | Sensor network script:
Node: pressure | code: clr | fields: unit, type, depth, value
Sensor: lightning | fields: lon, unit, depth, type
Task: Get reading from pressure where unit appears in lightning readings with matching ts.
Script: | readings = fetch(
node=Node("pressure", code="clr"),
filter=set_member(
field="unit",
source=Probe("lightning", code="tnd"),
match="ts",
),
output="reading",
) | {
"outer_table": "pressure",
"inner_table": "lightning",
"outer_alias": "clr",
"inner_alias": "tnd",
"proj_col": "reading",
"filter_col": "unit",
"join_col": "ts",
"correlated_ref": "clr.ts",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082997 | train |
v2 | Sensor network script:
Node: air_quality | code: ref | fields: value, qc, type, lat
Sensor: evaporation | fields: lon, type, qc, value
Task: Get lon from air_quality where a corresponding entry exists in evaporation with the same type.
Script: | readings = fetch(
node=Node("air_quality", code="ref"),
filter=has_match(
source=Probe("evaporation", code="evp"),
match="type",
),
output="lon",
) | {
"outer_table": "air_quality",
"inner_table": "evaporation",
"outer_alias": "ref",
"inner_alias": "evp",
"proj_col": "lon",
"join_col": "type",
"correlated_ref": "ref.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082998 | train |
v3 | Sensor network script:
Node: rainfall | code: hub | fields: reading, type, qc, ts
Sensor: frost | fields: lat, qc, depth, level
Task: Fetch lon from rainfall where depth is greater than the total of value in frost for matching type.
Script: | readings = fetch(
node=Node("rainfall", code="hub"),
filter=exceeds(
field="depth",
threshold=aggregate("SUM", "value",
source=Probe("frost", code="frs"),
match="type"),
),
output="lon",
) | {
"outer_table": "rainfall",
"inner_table": "frost",
"outer_alias": "hub",
"inner_alias": "frs",
"proj_col": "lon",
"filter_col": "depth",
"agg_col": "value",
"agg_fn": "SUM",
"join_col": "type",
"correlated_ref": "hub.type",
"token_group": "T2",
"fan_out": null
} | sensor_fixed_v1_train_082999 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.