variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: snow_depth | code: hub | fields: ts, value, level, lat Sensor: temperature | fields: value, ts, lon, lat Task: Get depth from snow_depth where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( 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", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007100
train
v2
Sensor network script: Node: pressure | code: stn | fields: ts, lat, qc, depth Sensor: visibility | fields: unit, depth, ts, value Task: Retrieve lon from pressure that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007101
train
v3
Sensor network script: Node: lightning | code: stn | fields: value, unit, qc, lat Sensor: air_quality | fields: qc, lon, unit, reading Task: Fetch depth from lightning where reading is greater than the maximum of depth in air_quality for matching qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007102
train
v2
Sensor network script: Node: pressure | code: mst | fields: type, level, lon, qc Sensor: frost | fields: value, lat, ts, unit Task: Retrieve level from pressure that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007103
train
v2
Sensor network script: Node: turbidity | code: stn | fields: reading, level, type, value Sensor: evaporation | fields: lat, qc, unit, depth Task: Get level from turbidity where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007104
train
v1
Sensor network script: Node: drought_index | code: hub | fields: lon, value, level, lat Sensor: lightning | fields: qc, depth, unit, lat Task: Fetch reading from drought_index where unit exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007105
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: ts, lon, unit, lat Sensor: humidity | fields: qc, lat, value, type Task: Fetch lon from soil_moisture where value is greater than the maximum of depth in humidity for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007106
train
v1
Sensor network script: Node: lightning | code: ref | fields: level, lat, lon, value Sensor: cloud_cover | fields: lat, depth, ts, unit Task: Fetch lat from lightning where ts exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007107
train
v1
Sensor network script: Node: temperature | code: clr | fields: unit, ts, qc, reading Sensor: drought_index | fields: lon, type, value, lat Task: Fetch depth from temperature where qc exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007108
train
v3
Sensor network script: Node: rainfall | code: ref | fields: qc, unit, lat, ts Sensor: visibility | fields: lat, depth, level, value Task: Retrieve lon from rainfall with reading above the AVG(depth) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007109
train
v3
Sensor network script: Node: rainfall | code: clr | fields: ts, level, qc, reading Sensor: frost | fields: level, lat, ts, type Task: Retrieve lon from rainfall with value above the AVG(depth) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007110
train
v3
Sensor network script: Node: frost | code: ref | fields: unit, level, lat, reading Sensor: wind_speed | fields: value, ts, reading, level Task: Fetch value from frost where reading is greater than the total of depth in wind_speed for matching ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="value", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007111
train
v1
Sensor network script: Node: turbidity | code: ref | fields: unit, reading, depth, lon Sensor: drought_index | fields: lon, qc, reading, value Task: Fetch reading from turbidity where unit exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007112
train
v2
Sensor network script: Node: turbidity | code: mst | fields: level, unit, ts, reading Sensor: sunlight | fields: qc, type, unit, level Task: Fetch value from turbidity that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007113
train
v3
Sensor network script: Node: visibility | code: clr | fields: lon, type, qc, level Sensor: turbidity | fields: depth, reading, lon, lat Task: Retrieve reading from visibility with value above the COUNT(reading) of turbidity readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007114
train
v2
Sensor network script: Node: uv_index | code: ref | fields: reading, lat, ts, depth Sensor: soil_moisture | fields: level, lon, lat, reading Task: Get depth from uv_index where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007115
train
v1
Sensor network script: Node: humidity | code: stn | fields: reading, value, level, lon Sensor: air_quality | fields: type, lon, ts, value Task: Fetch level from humidity where unit exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007116
train
v3
Sensor network script: Node: frost | code: mst | fields: reading, qc, depth, level Sensor: wind_speed | fields: type, ts, reading, unit Task: Fetch level from frost where value is greater than the count of of value in wind_speed for matching type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007117
train
v3
Sensor network script: Node: rainfall | code: thr | fields: reading, value, depth, level Sensor: dew_point | fields: type, depth, value, qc Task: Get lon from rainfall where value exceeds the average depth from dew_point for the same qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007118
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: qc, reading, lon, type Sensor: dew_point | fields: lat, unit, reading, level Task: Get lon from snow_depth where ts appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007119
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: reading, value, depth, qc Sensor: cloud_cover | fields: depth, value, ts, lat Task: Get level from soil_moisture where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007120
train
v1
Sensor network script: Node: visibility | code: gst | fields: depth, level, unit, type Sensor: drought_index | fields: reading, level, value, ts Task: Retrieve level from visibility whose unit is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007121
train
v1
Sensor network script: Node: turbidity | code: gst | fields: ts, qc, reading, type Sensor: visibility | fields: type, qc, unit, ts Task: Fetch lon from turbidity where qc exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007122
train
v2
Sensor network script: Node: uv_index | code: mst | fields: unit, type, level, lat Sensor: humidity | fields: lat, ts, reading, type Task: Get reading from uv_index where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007123
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: unit, lon, reading, qc Sensor: turbidity | fields: level, lon, reading, lat Task: Get value from soil_moisture where depth exceeds the minimum reading from turbidity for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007124
train
v3
Sensor network script: Node: rainfall | code: clr | fields: level, type, value, ts Sensor: air_quality | fields: qc, ts, unit, reading Task: Fetch lat from rainfall where reading is greater than the count of of reading in air_quality for matching depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007125
train
v2
Sensor network script: Node: dew_point | code: thr | fields: depth, reading, ts, value Sensor: air_quality | fields: type, lon, unit, qc Task: Fetch lon from dew_point that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007126
train
v3
Sensor network script: Node: air_quality | code: ref | fields: level, qc, value, type Sensor: temperature | fields: ts, value, depth, lat Task: Get lon from air_quality where value exceeds the average reading from temperature for the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007127
train
v2
Sensor network script: Node: visibility | code: hub | fields: qc, level, value, lat Sensor: snow_depth | fields: unit, lat, ts, depth Task: Retrieve reading from visibility that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007128
train
v2
Sensor network script: Node: humidity | code: clr | fields: ts, value, reading, lat Sensor: air_quality | fields: ts, unit, lat, level Task: Retrieve lon from humidity that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007129
train
v1
Sensor network script: Node: humidity | code: stn | fields: level, qc, reading, lat Sensor: snow_depth | fields: lon, qc, unit, level Task: Get lon from humidity where type appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007130
train
v1
Sensor network script: Node: sunlight | code: stn | fields: ts, lon, unit, value Sensor: snow_depth | fields: value, level, unit, depth Task: Get value from sunlight where unit appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007131
train
v3
Sensor network script: Node: humidity | code: stn | fields: type, level, depth, lat Sensor: uv_index | fields: type, unit, lat, qc Task: Get lat from humidity where depth exceeds the total depth from uv_index for the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("uv_index", code="flx"), match="unit"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lat", "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_007132
train
v3
Sensor network script: Node: turbidity | code: mst | fields: depth, lon, unit, ts Sensor: air_quality | fields: value, level, reading, qc Task: Get lon from turbidity where depth exceeds the minimum depth from air_quality for the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007133
train
v1
Sensor network script: Node: frost | code: mst | fields: type, value, ts, depth Sensor: uv_index | fields: value, lon, type, level Task: Get value from frost where qc appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007134
train
v3
Sensor network script: Node: lightning | code: hub | fields: unit, lat, level, qc Sensor: evaporation | fields: reading, lat, depth, ts Task: Retrieve level from lightning with reading above the COUNT(depth) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007135
train
v3
Sensor network script: Node: evaporation | code: prt | fields: unit, value, lat, ts Sensor: cloud_cover | fields: qc, ts, lon, level Task: Retrieve value from evaporation with value above the SUM(reading) of cloud_cover readings sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007136
train
v2
Sensor network script: Node: air_quality | code: hub | fields: ts, lon, unit, type Sensor: drought_index | fields: value, unit, ts, reading Task: Get depth from air_quality where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007137
train
v1
Sensor network script: Node: turbidity | code: hub | fields: lat, reading, value, unit Sensor: uv_index | fields: level, lon, depth, reading Task: Retrieve level from turbidity whose type is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007138
train
v3
Sensor network script: Node: rainfall | code: stn | fields: depth, level, lon, type Sensor: humidity | fields: level, unit, qc, ts Task: Get reading from rainfall where value exceeds the count of value from humidity for the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007139
train
v2
Sensor network script: Node: humidity | code: hub | fields: depth, type, reading, level Sensor: drought_index | fields: lon, qc, depth, level Task: Retrieve level from humidity that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007140
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: unit, qc, ts, lon Sensor: turbidity | fields: unit, reading, lat, level Task: Fetch level from wind_speed where ts exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007141
train
v2
Sensor network script: Node: frost | code: gst | fields: reading, ts, lon, unit Sensor: evaporation | fields: lat, reading, ts, value Task: Get depth from frost where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007142
train
v1
Sensor network script: Node: turbidity | code: mst | fields: level, reading, qc, lon Sensor: soil_moisture | fields: level, qc, depth, unit Task: Fetch level from turbidity where ts exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007143
train
v1
Sensor network script: Node: air_quality | code: clr | fields: qc, reading, type, lat Sensor: wind_speed | fields: level, type, ts, lat Task: Retrieve lon from air_quality whose qc is found in wind_speed records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007144
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: ts, reading, depth, unit Sensor: pressure | fields: lat, depth, lon, type Task: Fetch level from cloud_cover where reading is greater than the minimum of reading in pressure for matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007145
train
v2
Sensor network script: Node: frost | code: stn | fields: qc, depth, type, lat Sensor: temperature | fields: value, qc, type, level Task: Fetch depth from frost that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007146
train
v1
Sensor network script: Node: frost | code: hub | fields: ts, type, reading, lat Sensor: visibility | fields: depth, lon, type, level Task: Retrieve depth from frost whose ts is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007147
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: qc, lon, value, depth Sensor: turbidity | fields: lon, qc, value, depth Task: Fetch level from soil_moisture where unit exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007148
train
v3
Sensor network script: Node: rainfall | code: clr | fields: lon, reading, level, value Sensor: air_quality | fields: depth, qc, lat, level Task: Get level from rainfall where reading exceeds the maximum value from air_quality for the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007149
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: qc, lon, type, unit Sensor: pressure | fields: level, value, depth, lat Task: Get level from wind_speed where value exceeds the total value from pressure for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007150
train
v2
Sensor network script: Node: temperature | code: prt | fields: lat, value, level, lon Sensor: pressure | fields: reading, unit, qc, lat Task: Get reading from temperature where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007151
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: level, unit, ts, value Sensor: drought_index | fields: level, lon, lat, type Task: Fetch value from wind_speed where unit exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007152
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: qc, value, unit, lat Sensor: visibility | fields: unit, lat, lon, reading Task: Get lon from wind_speed where type appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007153
train
v1
Sensor network script: Node: humidity | code: gst | fields: qc, ts, value, reading Sensor: turbidity | fields: level, ts, lon, lat Task: Retrieve value from humidity whose type is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007154
train
v2
Sensor network script: Node: lightning | code: mst | fields: unit, lat, type, ts Sensor: temperature | fields: lon, type, unit, depth Task: Get lat from lightning where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007155
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: depth, level, unit, type Sensor: pressure | fields: unit, lon, reading, level Task: Retrieve reading from wind_speed that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007156
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: qc, type, reading, depth Sensor: frost | fields: lon, reading, unit, level Task: Retrieve depth from wind_speed that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007157
train
v1
Sensor network script: Node: rainfall | code: ref | fields: qc, depth, ts, unit Sensor: air_quality | fields: value, qc, lon, reading Task: Fetch value from rainfall where ts exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007158
train
v1
Sensor network script: Node: visibility | code: hub | fields: unit, depth, value, type Sensor: frost | fields: depth, qc, reading, lon Task: Get depth from visibility where unit appears in frost readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007159
train
v2
Sensor network script: Node: uv_index | code: gst | fields: qc, type, depth, reading Sensor: visibility | fields: level, lon, type, reading Task: Fetch lon from uv_index that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007160
train
v2
Sensor network script: Node: pressure | code: stn | fields: type, reading, level, qc Sensor: wind_speed | fields: unit, depth, level, lon Task: Fetch depth from pressure that have at least one corresponding wind_speed measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007161
train
v2
Sensor network script: Node: humidity | code: stn | fields: lat, level, value, lon Sensor: rainfall | fields: lon, level, value, reading Task: Retrieve level from humidity that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007162
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: qc, lon, depth, lat Sensor: soil_moisture | fields: type, level, reading, value Task: Fetch reading from cloud_cover where reading is greater than the count of of reading in soil_moisture for matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007163
train
v1
Sensor network script: Node: pressure | code: ref | fields: level, value, lat, reading Sensor: temperature | fields: value, unit, lon, reading Task: Get depth from pressure where type appears in temperature readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007164
train
v2
Sensor network script: Node: air_quality | code: mst | fields: lon, value, level, ts Sensor: sunlight | fields: value, lon, type, depth Task: Retrieve value from air_quality that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007165
train
v3
Sensor network script: Node: frost | code: clr | fields: type, qc, lon, unit Sensor: air_quality | fields: depth, reading, value, lat Task: Get value from frost where value exceeds the count of value from air_quality for the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="qc"), ), output="value", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007166
train
v2
Sensor network script: Node: air_quality | code: hub | fields: reading, level, value, lon Sensor: pressure | fields: reading, value, ts, unit Task: Get reading from air_quality where a corresponding entry exists in pressure with the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007167
train
v2
Sensor network script: Node: sunlight | code: gst | fields: unit, lon, depth, level Sensor: evaporation | fields: reading, depth, unit, ts Task: Fetch level from sunlight that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007168
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: qc, lon, reading, value Sensor: frost | fields: lon, qc, lat, depth Task: Get reading from cloud_cover where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007169
train
v2
Sensor network script: Node: uv_index | code: prt | fields: lon, unit, lat, reading Sensor: dew_point | fields: lon, qc, depth, ts Task: Retrieve depth from uv_index that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007170
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: depth, level, type, ts Sensor: temperature | fields: reading, lon, ts, lat Task: Fetch reading from soil_moisture that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007171
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: lat, value, unit, depth Sensor: visibility | fields: value, reading, depth, type Task: Get lat from snow_depth where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007172
train
v1
Sensor network script: Node: rainfall | code: stn | fields: reading, unit, lon, qc Sensor: uv_index | fields: lat, unit, lon, qc Task: Get value from rainfall where depth appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007173
train
v1
Sensor network script: Node: lightning | code: prt | fields: type, ts, qc, value Sensor: uv_index | fields: level, lat, unit, value Task: Get lon from lightning where depth appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007174
train
v3
Sensor network script: Node: turbidity | code: hub | fields: depth, value, lat, lon Sensor: evaporation | fields: qc, depth, level, unit Task: Fetch reading from turbidity where depth is greater than the count of of value in evaporation for matching depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007175
train
v3
Sensor network script: Node: temperature | code: mst | fields: ts, unit, value, lon Sensor: snow_depth | fields: value, unit, lat, lon Task: Get reading from temperature where reading exceeds the average depth from snow_depth for the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007176
train
v1
Sensor network script: Node: humidity | code: hub | fields: type, lat, reading, ts Sensor: wind_speed | fields: reading, qc, lat, type Task: Fetch value from humidity where ts exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007177
train
v3
Sensor network script: Node: visibility | code: prt | fields: type, lon, level, qc Sensor: cloud_cover | fields: qc, value, ts, lon Task: Fetch reading from visibility where value is greater than the minimum of depth in cloud_cover for matching unit. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007178
train
v2
Sensor network script: Node: pressure | code: gst | fields: ts, lon, lat, qc Sensor: evaporation | fields: unit, depth, level, lat Task: Get depth from pressure where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007179
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: depth, lon, level, reading Sensor: visibility | fields: ts, reading, qc, depth Task: Fetch depth from snow_depth where ts exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007180
train
v2
Sensor network script: Node: lightning | code: mst | fields: value, lat, unit, lon Sensor: frost | fields: level, lat, qc, type Task: Fetch value from lightning that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007181
train
v3
Sensor network script: Node: uv_index | code: prt | fields: unit, depth, lat, lon Sensor: snow_depth | fields: reading, value, qc, lat Task: Get lat from uv_index where value exceeds the maximum value from snow_depth for the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007182
train
v3
Sensor network script: Node: visibility | code: hub | fields: value, qc, reading, level Sensor: air_quality | fields: unit, depth, qc, value Task: Fetch value from visibility where reading is greater than the minimum of depth in air_quality for matching depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007183
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: level, reading, lon, depth Sensor: turbidity | fields: depth, level, value, lon Task: Fetch depth from cloud_cover that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007184
train
v2
Sensor network script: Node: lightning | code: hub | fields: qc, ts, reading, value Sensor: drought_index | fields: value, level, qc, lat Task: Fetch reading from lightning that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007185
train
v2
Sensor network script: Node: turbidity | code: hub | fields: lat, reading, unit, qc Sensor: frost | fields: qc, lon, depth, reading Task: Retrieve value from turbidity that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007186
train
v2
Sensor network script: Node: turbidity | code: thr | fields: level, unit, lat, qc Sensor: cloud_cover | fields: depth, qc, level, reading Task: Get lat from turbidity where a corresponding entry exists in cloud_cover with the same depth. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007187
train
v1
Sensor network script: Node: frost | code: stn | fields: reading, value, lon, unit Sensor: lightning | fields: lon, level, reading, qc Task: Retrieve lat from frost whose qc is found in lightning records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007188
train
v3
Sensor network script: Node: humidity | code: ref | fields: lon, ts, level, qc Sensor: uv_index | fields: type, level, depth, qc Task: Get reading from humidity where value exceeds the minimum depth from uv_index for the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007189
train
v2
Sensor network script: Node: lightning | code: gst | fields: type, value, ts, lon Sensor: soil_moisture | fields: value, ts, reading, lon Task: Retrieve lon from lightning that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007190
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: ts, type, value, depth Sensor: dew_point | fields: qc, ts, depth, unit Task: Get lon from snow_depth where ts appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007191
train
v1
Sensor network script: Node: dew_point | code: prt | fields: ts, lat, value, reading Sensor: visibility | fields: ts, qc, unit, value Task: Get lat from dew_point where depth appears in visibility readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007192
train
v1
Sensor network script: Node: pressure | code: hub | fields: qc, reading, level, lat Sensor: wind_speed | fields: qc, level, unit, ts Task: Retrieve reading from pressure whose ts is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007193
train
v1
Sensor network script: Node: drought_index | code: stn | fields: unit, value, lon, type Sensor: snow_depth | fields: value, type, level, ts Task: Fetch reading from drought_index where depth exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007194
train
v1
Sensor network script: Node: rainfall | code: clr | fields: lon, ts, reading, lat Sensor: air_quality | fields: unit, lat, qc, type Task: Retrieve value from rainfall whose type is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_007195
train
v1
Sensor network script: Node: humidity | code: mst | fields: reading, level, depth, ts Sensor: soil_moisture | fields: value, lat, depth, unit Task: Retrieve level from humidity whose ts is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007196
train
v1
Sensor network script: Node: uv_index | code: thr | fields: depth, ts, qc, unit Sensor: rainfall | fields: lat, qc, reading, ts Task: Retrieve lat from uv_index whose qc is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007197
train
v3
Sensor network script: Node: visibility | code: gst | fields: lon, ts, lat, level Sensor: pressure | fields: ts, unit, type, lat Task: Get reading from visibility where value exceeds the minimum depth from pressure for the same type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007198
train
v3
Sensor network script: Node: visibility | code: mst | fields: level, depth, ts, qc Sensor: drought_index | fields: depth, ts, level, type Task: Retrieve depth from visibility with reading above the AVG(reading) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_007199
train