variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: drought_index | code: gst | fields: reading, ts, value, qc Sensor: lightning | fields: unit, lon, level, ts Task: Fetch lon from drought_index where ts exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013100
train
v3
Sensor network script: Node: drought_index | code: mst | fields: qc, value, depth, unit Sensor: turbidity | fields: lon, depth, value, type Task: Get lon from drought_index where depth exceeds the average value from turbidity for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013101
train
v2
Sensor network script: Node: evaporation | code: ref | fields: qc, reading, ts, type Sensor: rainfall | fields: type, depth, qc, unit Task: Fetch level from evaporation that have at least one corresponding rainfall measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013102
train
v1
Sensor network script: Node: dew_point | code: thr | fields: lat, depth, ts, qc Sensor: visibility | fields: lat, ts, value, depth Task: Get lat from dew_point where ts appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013103
train
v2
Sensor network script: Node: frost | code: prt | fields: reading, value, level, depth Sensor: temperature | fields: type, value, qc, ts Task: Get lon from frost where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013104
train
v3
Sensor network script: Node: lightning | code: prt | fields: lon, lat, qc, value Sensor: humidity | fields: unit, lon, reading, lat Task: Fetch level from lightning where depth is greater than the total of value in humidity for matching qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013105
train
v1
Sensor network script: Node: drought_index | code: hub | fields: lon, reading, unit, value Sensor: temperature | fields: depth, lon, level, reading Task: Fetch depth from drought_index where ts exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013106
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: value, unit, lon, reading Sensor: uv_index | fields: unit, depth, level, qc Task: Retrieve reading from soil_moisture that have at least one matching reading in uv_index sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013107
train
v3
Sensor network script: Node: visibility | code: mst | fields: qc, lat, reading, unit Sensor: soil_moisture | fields: level, depth, type, reading Task: Retrieve reading from visibility with value above the SUM(value) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013108
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: lat, unit, ts, type Sensor: temperature | fields: depth, lon, type, value Task: Fetch depth from snow_depth where unit exists in temperature sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013109
train
v3
Sensor network script: Node: pressure | code: ref | fields: value, ts, lat, lon Sensor: temperature | fields: ts, qc, unit, lat Task: Get reading from pressure where depth exceeds the average reading from temperature for the same depth. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013110
train
v3
Sensor network script: Node: lightning | code: ref | fields: reading, depth, lon, value Sensor: dew_point | fields: reading, depth, qc, ts Task: Retrieve lon from lightning with value above the COUNT(reading) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013111
train
v2
Sensor network script: Node: humidity | code: gst | fields: lon, value, level, ts Sensor: dew_point | fields: unit, level, ts, lon Task: Retrieve lat from humidity that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013112
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: type, unit, level, qc Sensor: air_quality | fields: value, reading, ts, lat Task: Get lat from snow_depth where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013113
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: reading, type, value, level Sensor: sunlight | fields: qc, ts, depth, unit Task: Retrieve lon from snow_depth whose depth is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013114
train
v3
Sensor network script: Node: drought_index | code: mst | fields: level, ts, lon, depth Sensor: cloud_cover | fields: reading, qc, lat, unit Task: Get lat from drought_index where depth exceeds the maximum reading from cloud_cover for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013115
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: lon, depth, value, type Sensor: pressure | fields: qc, value, lon, level Task: Retrieve lat from soil_moisture that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013116
train
v3
Sensor network script: Node: dew_point | code: gst | fields: level, depth, reading, type Sensor: rainfall | fields: lon, ts, qc, type Task: Get depth from dew_point where depth exceeds the maximum reading from rainfall for the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013117
train
v2
Sensor network script: Node: rainfall | code: thr | fields: qc, lat, reading, value Sensor: air_quality | fields: qc, value, type, lat Task: Fetch lon from rainfall that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013118
train
v1
Sensor network script: Node: turbidity | code: mst | fields: ts, lat, level, reading Sensor: evaporation | fields: unit, ts, level, qc Task: Get lat from turbidity where qc appears in evaporation readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013119
train
v1
Sensor network script: Node: humidity | code: clr | fields: level, lat, ts, unit Sensor: dew_point | fields: lon, type, depth, level Task: Fetch level from humidity where type exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013120
train
v2
Sensor network script: Node: air_quality | code: gst | fields: lon, unit, depth, level Sensor: drought_index | fields: level, unit, depth, reading Task: Fetch reading from air_quality that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013121
train
v3
Sensor network script: Node: dew_point | code: clr | fields: ts, unit, lat, depth Sensor: humidity | fields: depth, reading, qc, unit Task: Fetch value from dew_point where value is greater than the maximum of value in humidity for matching qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013122
train
v2
Sensor network script: Node: frost | code: stn | fields: value, lon, type, ts Sensor: temperature | fields: lat, depth, lon, unit Task: Retrieve lat from frost that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013123
train
v1
Sensor network script: Node: humidity | code: thr | fields: lat, value, level, qc Sensor: visibility | fields: ts, depth, lon, lat Task: Get level from humidity where unit appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013124
train
v2
Sensor network script: Node: pressure | code: gst | fields: reading, value, depth, ts Sensor: soil_moisture | fields: unit, type, reading, lon Task: Fetch lon from pressure that have at least one corresponding soil_moisture measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013125
train
v2
Sensor network script: Node: uv_index | code: ref | fields: level, lat, reading, depth Sensor: evaporation | fields: value, depth, lat, unit Task: Retrieve lat from uv_index that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013126
train
v3
Sensor network script: Node: uv_index | code: clr | fields: unit, level, type, depth Sensor: sunlight | fields: reading, unit, lon, value Task: Get reading from uv_index where reading exceeds the count of reading from sunlight for the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013127
train
v2
Sensor network script: Node: lightning | code: thr | fields: lon, reading, qc, level Sensor: cloud_cover | fields: qc, reading, value, type Task: Fetch lat from lightning that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013128
train
v3
Sensor network script: Node: pressure | code: ref | fields: unit, lat, value, reading Sensor: visibility | fields: qc, lon, depth, ts Task: Get lat from pressure where reading exceeds the maximum value from visibility for the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013129
train
v2
Sensor network script: Node: frost | code: gst | fields: unit, type, lat, value Sensor: pressure | fields: reading, unit, depth, value Task: Retrieve level from frost that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013130
train
v1
Sensor network script: Node: uv_index | code: prt | fields: depth, reading, unit, value Sensor: cloud_cover | fields: ts, level, unit, depth Task: Retrieve level from uv_index whose qc is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013131
train
v2
Sensor network script: Node: sunlight | code: thr | fields: reading, type, lon, unit Sensor: humidity | fields: unit, reading, lon, type Task: Retrieve level from sunlight that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013132
train
v2
Sensor network script: Node: dew_point | code: gst | fields: reading, qc, unit, value Sensor: uv_index | fields: qc, ts, unit, lat Task: Fetch reading from dew_point that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013133
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: depth, ts, level, unit Sensor: temperature | fields: lon, ts, level, depth Task: Fetch level from snow_depth where value is greater than the total of value in temperature for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013134
train
v3
Sensor network script: Node: evaporation | code: hub | fields: reading, value, ts, qc Sensor: humidity | fields: qc, level, ts, reading Task: Fetch value from evaporation where value is greater than the minimum of value in humidity for matching unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="unit"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013135
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: depth, type, reading, level Sensor: air_quality | fields: reading, unit, ts, lon Task: Retrieve reading from snow_depth whose type is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013136
train
v3
Sensor network script: Node: uv_index | code: thr | fields: lat, level, value, type Sensor: soil_moisture | fields: lon, level, type, lat Task: Fetch reading from uv_index where reading is greater than the maximum of value in soil_moisture for matching depth. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013137
train
v1
Sensor network script: Node: turbidity | code: mst | fields: unit, depth, lat, value Sensor: sunlight | fields: qc, value, reading, depth Task: Fetch lon from turbidity where qc exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013138
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: reading, depth, qc, level Sensor: drought_index | fields: unit, qc, lon, ts Task: Fetch reading from wind_speed where depth is greater than the total of depth in drought_index for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="ts"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013139
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: lon, unit, ts, reading Sensor: dew_point | fields: level, lat, ts, qc Task: Get lon from snow_depth where type appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013140
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: qc, depth, ts, lon Sensor: sunlight | fields: type, unit, depth, qc Task: Get value from snow_depth where depth appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013141
train
v3
Sensor network script: Node: lightning | code: stn | fields: level, depth, qc, reading Sensor: rainfall | fields: qc, ts, lat, type Task: Get value from lightning where value exceeds the average value from rainfall for the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013142
train
v3
Sensor network script: Node: rainfall | code: ref | fields: lon, level, value, ts Sensor: wind_speed | fields: unit, lon, reading, qc Task: Fetch lon from rainfall where value is greater than the count of of value in wind_speed for matching type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013143
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: unit, type, ts, depth Sensor: frost | fields: level, reading, lat, type Task: Retrieve lat from wind_speed whose qc is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013144
train
v2
Sensor network script: Node: lightning | code: clr | fields: value, qc, lat, reading Sensor: drought_index | fields: qc, unit, type, level Task: Get level from lightning where a corresponding entry exists in drought_index with the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013145
train
v1
Sensor network script: Node: drought_index | code: ref | fields: value, lon, qc, ts Sensor: lightning | fields: reading, level, value, type Task: Fetch value from drought_index where ts exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013146
train
v3
Sensor network script: Node: air_quality | code: thr | fields: level, lon, value, qc Sensor: wind_speed | fields: depth, value, reading, qc Task: Retrieve level from air_quality with depth above the MIN(depth) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013147
train
v3
Sensor network script: Node: sunlight | code: clr | fields: lat, reading, level, value Sensor: cloud_cover | fields: qc, lon, depth, lat Task: Fetch lat from sunlight where reading is greater than the average of reading in cloud_cover for matching type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013148
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: lon, unit, lat, qc Sensor: sunlight | fields: depth, ts, type, lat Task: Get value from wind_speed where reading exceeds the count of value from sunlight for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013149
train
v3
Sensor network script: Node: dew_point | code: stn | fields: type, qc, reading, value Sensor: rainfall | fields: lat, qc, unit, value Task: Retrieve level from dew_point with depth above the MIN(reading) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013150
train
v3
Sensor network script: Node: frost | code: gst | fields: ts, type, depth, lat Sensor: visibility | fields: type, ts, reading, value Task: Retrieve level from frost with reading above the SUM(depth) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="level", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013151
train
v1
Sensor network script: Node: turbidity | code: hub | fields: unit, value, lon, reading Sensor: air_quality | fields: type, lon, unit, value Task: Fetch lat from turbidity where qc exists in air_quality sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013152
train
v3
Sensor network script: Node: frost | code: gst | fields: unit, lat, depth, type Sensor: uv_index | fields: unit, qc, ts, type Task: Fetch lon from frost where depth is greater than the count of of value in uv_index for matching qc. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013153
train
v1
Sensor network script: Node: pressure | code: stn | fields: lon, level, ts, lat Sensor: cloud_cover | fields: depth, value, lon, reading Task: Get reading from pressure where qc appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013154
train
v2
Sensor network script: Node: visibility | code: gst | fields: level, type, unit, qc Sensor: soil_moisture | fields: unit, qc, ts, lon Task: Retrieve reading from visibility that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013155
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: lat, unit, depth, reading Sensor: humidity | fields: qc, lat, level, value Task: Retrieve lon from wind_speed whose depth is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013156
train
v2
Sensor network script: Node: rainfall | code: prt | fields: value, lon, lat, reading Sensor: cloud_cover | fields: ts, qc, level, reading Task: Retrieve level from rainfall that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013157
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: qc, value, lon, unit Sensor: visibility | fields: lat, qc, depth, type Task: Fetch level from snow_depth where type exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013158
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: reading, value, ts, unit Sensor: pressure | fields: depth, unit, type, value Task: Fetch lat from wind_speed that have at least one corresponding pressure measurement for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013159
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: ts, reading, lat, lon Sensor: cloud_cover | fields: lon, type, level, unit Task: Fetch reading from soil_moisture where unit exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013160
train
v3
Sensor network script: Node: air_quality | code: stn | fields: value, level, lat, lon Sensor: drought_index | fields: level, ts, lon, lat Task: Fetch lon from air_quality where reading is greater than the minimum of value in drought_index for matching depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013161
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: lon, reading, depth, value Sensor: humidity | fields: ts, qc, level, reading Task: Retrieve level from soil_moisture that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013162
train
v1
Sensor network script: Node: uv_index | code: stn | fields: type, lon, reading, qc Sensor: wind_speed | fields: lat, ts, level, qc Task: Fetch level from uv_index where qc exists in wind_speed sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013163
train
v3
Sensor network script: Node: evaporation | code: thr | fields: lon, ts, depth, qc Sensor: humidity | fields: unit, lon, qc, reading Task: Retrieve reading from evaporation with depth above the SUM(reading) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013164
train
v1
Sensor network script: Node: pressure | code: hub | fields: lat, value, reading, qc Sensor: turbidity | fields: value, level, lon, type Task: Get lat from pressure where ts appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013165
train
v1
Sensor network script: Node: frost | code: gst | fields: ts, reading, lat, depth Sensor: pressure | fields: ts, value, level, qc Task: Retrieve level from frost whose qc is found in pressure records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013166
train
v3
Sensor network script: Node: pressure | code: mst | fields: depth, qc, type, unit Sensor: dew_point | fields: lon, level, value, type Task: Get value from pressure where reading exceeds the maximum depth from dew_point for the same qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("dew_point", code="cnd"), match="qc"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013167
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: depth, ts, level, lon Sensor: frost | fields: level, lat, type, value Task: Retrieve value from snow_depth with reading above the MAX(value) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013168
train
v1
Sensor network script: Node: uv_index | code: mst | fields: type, value, qc, ts Sensor: dew_point | fields: type, value, unit, ts Task: Retrieve level from uv_index whose depth is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013169
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: level, value, unit, lon Sensor: frost | fields: ts, level, depth, value Task: Fetch level from wind_speed that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013170
train
v2
Sensor network script: Node: visibility | code: gst | fields: depth, unit, reading, lon Sensor: drought_index | fields: lon, lat, type, qc Task: Retrieve lon from visibility that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013171
train
v2
Sensor network script: Node: visibility | code: ref | fields: lon, ts, type, unit Sensor: snow_depth | fields: type, depth, ts, reading Task: Retrieve level from visibility that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013172
train
v3
Sensor network script: Node: humidity | code: gst | fields: type, qc, level, depth Sensor: air_quality | fields: type, value, reading, lon Task: Retrieve lon from humidity with reading above the SUM(reading) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013173
train
v2
Sensor network script: Node: air_quality | code: mst | fields: lat, value, lon, qc Sensor: evaporation | fields: depth, qc, level, value Task: Retrieve depth from air_quality that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013174
train
v1
Sensor network script: Node: evaporation | code: thr | fields: unit, level, lon, type Sensor: cloud_cover | fields: reading, depth, lat, level Task: Retrieve value from evaporation whose depth is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013175
train
v1
Sensor network script: Node: dew_point | code: thr | fields: lat, ts, depth, unit Sensor: snow_depth | fields: ts, unit, lat, value Task: Get level from dew_point where qc appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013176
train
v2
Sensor network script: Node: uv_index | code: clr | fields: level, type, lat, qc Sensor: drought_index | fields: reading, value, lon, depth Task: Retrieve lat from uv_index that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013177
train
v3
Sensor network script: Node: air_quality | code: mst | fields: lon, unit, reading, qc Sensor: uv_index | fields: reading, ts, lon, type Task: Get depth from air_quality where reading exceeds the maximum reading from uv_index for the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013178
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: qc, lon, reading, level Sensor: evaporation | fields: level, depth, lat, reading Task: Fetch lon from cloud_cover where type exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013179
train
v3
Sensor network script: Node: pressure | code: clr | fields: reading, lon, value, ts Sensor: temperature | fields: unit, reading, type, ts Task: Fetch value from pressure where value is greater than the total of depth in temperature for matching depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013180
train
v3
Sensor network script: Node: dew_point | code: hub | fields: lon, ts, depth, reading Sensor: drought_index | fields: lon, lat, unit, reading Task: Retrieve value from dew_point with value above the SUM(value) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013181
train
v3
Sensor network script: Node: drought_index | code: clr | fields: lat, depth, level, qc Sensor: humidity | fields: lon, reading, qc, ts Task: Fetch depth from drought_index where reading is greater than the minimum of reading in humidity for matching depth. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013182
train
v1
Sensor network script: Node: visibility | code: mst | fields: qc, unit, depth, value Sensor: sunlight | fields: value, depth, level, lat Task: Get depth from visibility where ts appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013183
train
v3
Sensor network script: Node: drought_index | code: mst | fields: unit, lat, value, level Sensor: temperature | fields: level, lat, ts, lon Task: Retrieve lat from drought_index with value above the MIN(reading) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013184
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: depth, lon, reading, unit Sensor: humidity | fields: lon, reading, level, qc Task: Get lon from cloud_cover where unit appears in humidity readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013185
train
v3
Sensor network script: Node: lightning | code: mst | fields: unit, level, lat, depth Sensor: soil_moisture | fields: unit, qc, value, reading Task: Retrieve lat from lightning with reading above the COUNT(value) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013186
train
v1
Sensor network script: Node: air_quality | code: mst | fields: lon, qc, unit, value Sensor: wind_speed | fields: unit, lon, level, type Task: Retrieve level from air_quality whose unit is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013187
train
v2
Sensor network script: Node: temperature | code: mst | fields: ts, depth, reading, level Sensor: wind_speed | fields: qc, reading, value, unit Task: Retrieve depth from temperature that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013188
train
v3
Sensor network script: Node: turbidity | code: thr | fields: reading, depth, ts, lat Sensor: sunlight | fields: level, depth, lon, value Task: Get reading from turbidity where depth exceeds the count of reading from sunlight for the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013189
train
v2
Sensor network script: Node: pressure | code: prt | fields: ts, lon, lat, type Sensor: turbidity | fields: lon, type, reading, qc Task: Fetch depth from pressure that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013190
train
v2
Sensor network script: Node: pressure | code: mst | fields: lon, value, type, reading Sensor: frost | fields: reading, depth, value, type Task: Fetch value from pressure that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013191
train
v2
Sensor network script: Node: drought_index | code: prt | fields: qc, level, type, depth Sensor: rainfall | fields: lon, unit, value, ts Task: Fetch reading from drought_index that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013192
train
v3
Sensor network script: Node: humidity | code: ref | fields: unit, qc, lat, level Sensor: uv_index | fields: unit, ts, reading, value Task: Get lat from humidity where depth exceeds the count of value from uv_index for the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013193
train
v1
Sensor network script: Node: sunlight | code: hub | fields: reading, qc, lon, level Sensor: cloud_cover | fields: level, ts, depth, lon Task: Get depth from sunlight where type appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013194
train
v1
Sensor network script: Node: evaporation | code: stn | fields: qc, ts, lat, type Sensor: drought_index | fields: value, depth, lon, lat Task: Retrieve reading from evaporation whose qc is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013195
train
v1
Sensor network script: Node: evaporation | code: clr | fields: lat, level, qc, ts Sensor: lightning | fields: value, level, ts, unit Task: Get depth from evaporation where type appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013196
train
v3
Sensor network script: Node: rainfall | code: clr | fields: lon, level, depth, reading Sensor: drought_index | fields: type, reading, qc, depth Task: Retrieve level from rainfall with reading above the MAX(value) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013197
train
v3
Sensor network script: Node: temperature | code: ref | fields: depth, type, lon, value Sensor: turbidity | fields: value, qc, unit, level Task: Fetch reading from temperature where depth is greater than the count of of reading in turbidity for matching unit. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013198
train
v3
Sensor network script: Node: pressure | code: thr | fields: lat, qc, reading, value Sensor: evaporation | fields: reading, qc, type, value Task: Fetch level from pressure where reading is greater than the total of depth in evaporation for matching qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013199
train