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: sunlight | code: stn | fields: lon, value, depth, unit Sensor: frost | fields: unit, lon, ts, level Task: Fetch level from sunlight where qc exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061100
train
v3
Sensor network script: Node: sunlight | code: hub | fields: reading, type, lon, unit Sensor: visibility | fields: level, depth, unit, lon Task: Get reading from sunlight where value exceeds the total value from visibility for the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="type"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061101
train
v1
Sensor network script: Node: drought_index | code: prt | fields: lat, value, lon, type Sensor: rainfall | fields: ts, value, type, qc Task: Retrieve value from drought_index whose depth is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061102
train
v2
Sensor network script: Node: visibility | code: gst | fields: lat, unit, lon, reading Sensor: air_quality | fields: qc, ts, type, lon Task: Retrieve depth from visibility that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061103
train
v3
Sensor network script: Node: visibility | code: mst | fields: reading, depth, unit, ts Sensor: soil_moisture | fields: unit, depth, level, lat Task: Get lat from visibility where reading exceeds the average depth from soil_moisture for the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061104
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: depth, level, type, unit Sensor: cloud_cover | fields: reading, depth, ts, qc Task: Retrieve reading from soil_moisture that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061105
train
v3
Sensor network script: Node: temperature | code: prt | fields: type, unit, level, qc Sensor: humidity | fields: unit, type, depth, value Task: Fetch level from temperature where depth is greater than the count of of depth in humidity for matching type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061106
train
v2
Sensor network script: Node: lightning | code: thr | fields: reading, lon, lat, depth Sensor: snow_depth | fields: qc, level, value, ts Task: Get level from lightning where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061107
train
v2
Sensor network script: Node: visibility | code: mst | fields: lat, depth, level, lon Sensor: wind_speed | fields: lat, depth, lon, unit Task: Retrieve level from visibility that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061108
train
v3
Sensor network script: Node: temperature | code: prt | fields: type, lon, lat, depth Sensor: uv_index | fields: lon, depth, level, lat Task: Fetch reading from temperature where depth is greater than the minimum of reading in uv_index for matching type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061109
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: lon, value, type, unit Sensor: drought_index | fields: qc, unit, lat, ts Task: Fetch depth from soil_moisture that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061110
train
v3
Sensor network script: Node: air_quality | code: mst | fields: type, value, lon, level Sensor: drought_index | fields: type, qc, lat, level Task: Fetch lon from air_quality where reading is greater than the average of depth in drought_index for matching depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061111
train
v2
Sensor network script: Node: frost | code: clr | fields: level, unit, reading, ts Sensor: turbidity | fields: ts, reading, qc, level Task: Retrieve level from frost that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061112
train
v1
Sensor network script: Node: frost | code: hub | fields: value, lat, depth, ts Sensor: snow_depth | fields: depth, level, type, lon Task: Retrieve lat from frost whose type is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061113
train
v1
Sensor network script: Node: humidity | code: stn | fields: lat, reading, level, type Sensor: lightning | fields: unit, lon, depth, lat Task: Get reading from humidity where type appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061114
train
v3
Sensor network script: Node: turbidity | code: clr | fields: ts, level, lat, depth Sensor: evaporation | fields: lon, type, value, unit Task: Fetch value from turbidity where depth is greater than the maximum of reading in evaporation for matching qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061115
train
v1
Sensor network script: Node: pressure | code: ref | fields: lat, lon, level, unit Sensor: snow_depth | fields: ts, level, reading, type Task: Fetch lat from pressure where ts exists in snow_depth sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061116
train
v2
Sensor network script: Node: visibility | code: prt | fields: lat, depth, type, level Sensor: dew_point | fields: lon, value, lat, type Task: Fetch value from visibility that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061117
train
v3
Sensor network script: Node: temperature | code: prt | fields: lat, value, depth, qc Sensor: soil_moisture | fields: level, value, depth, type Task: Retrieve lat from temperature with value above the MIN(depth) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061118
train
v1
Sensor network script: Node: air_quality | code: prt | fields: qc, value, ts, lat Sensor: visibility | fields: ts, lon, qc, depth Task: Retrieve lon from air_quality whose unit is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061119
train
v1
Sensor network script: Node: dew_point | code: clr | fields: unit, type, value, lon Sensor: evaporation | fields: ts, type, lon, level Task: Retrieve lat from dew_point whose qc is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061120
train
v2
Sensor network script: Node: pressure | code: mst | fields: qc, lon, value, type Sensor: rainfall | fields: type, ts, qc, value Task: Retrieve value from pressure that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061121
train
v3
Sensor network script: Node: visibility | code: clr | fields: unit, type, lat, reading Sensor: frost | fields: depth, level, lat, unit Task: Retrieve lat from visibility with reading above the MAX(value) of frost readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061122
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: type, lat, qc, unit Sensor: air_quality | fields: unit, lon, reading, qc Task: Fetch lat from wind_speed where value is greater than the total of depth in air_quality for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061123
train
v1
Sensor network script: Node: temperature | code: prt | fields: lon, ts, depth, unit Sensor: cloud_cover | fields: qc, lon, type, level Task: Get value from temperature where depth appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061124
train
v2
Sensor network script: Node: evaporation | code: prt | fields: reading, qc, type, lat Sensor: dew_point | fields: qc, lat, depth, reading Task: Get lon from evaporation where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061125
train
v1
Sensor network script: Node: sunlight | code: hub | fields: lon, depth, lat, level Sensor: snow_depth | fields: value, lon, unit, type Task: Retrieve level from sunlight whose type is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061126
train
v2
Sensor network script: Node: evaporation | code: gst | fields: ts, reading, level, unit Sensor: lightning | fields: ts, lat, qc, lon Task: Retrieve depth from evaporation that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061127
train
v3
Sensor network script: Node: visibility | code: hub | fields: reading, level, depth, ts Sensor: turbidity | fields: reading, lat, depth, value Task: Get lon from visibility where value exceeds the average value from turbidity for the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061128
train
v2
Sensor network script: Node: dew_point | code: thr | fields: reading, qc, value, level Sensor: snow_depth | fields: reading, lat, ts, qc Task: Fetch reading from dew_point that have at least one corresponding snow_depth measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061129
train
v1
Sensor network script: Node: frost | code: thr | fields: value, type, depth, lon Sensor: soil_moisture | fields: depth, qc, ts, type Task: Get level from frost where depth appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061130
train
v3
Sensor network script: Node: air_quality | code: mst | fields: unit, lat, level, reading Sensor: wind_speed | fields: type, value, unit, level Task: Get level from air_quality where reading exceeds the total depth from wind_speed for the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", 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": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061131
train
v2
Sensor network script: Node: frost | code: mst | fields: type, lat, level, ts Sensor: air_quality | fields: reading, level, lat, ts Task: Retrieve depth from frost that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061132
train
v2
Sensor network script: Node: pressure | code: ref | fields: lat, value, level, ts Sensor: lightning | fields: qc, lon, level, lat Task: Retrieve depth from pressure that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061133
train
v3
Sensor network script: Node: sunlight | code: hub | fields: level, lon, reading, qc Sensor: temperature | fields: reading, level, lon, depth Task: Retrieve reading from sunlight with reading above the AVG(reading) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="unit"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061134
train
v2
Sensor network script: Node: humidity | code: stn | fields: lat, lon, level, type Sensor: cloud_cover | fields: depth, level, lon, type Task: Get lat from humidity where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061135
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: ts, value, reading, depth Sensor: turbidity | fields: unit, lat, type, lon Task: Fetch lat from soil_moisture where unit exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061136
train
v1
Sensor network script: Node: air_quality | code: mst | fields: unit, level, type, value Sensor: turbidity | fields: lat, reading, value, lon Task: Get lon from air_quality where qc appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061137
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: lon, level, value, unit Sensor: soil_moisture | fields: level, unit, lat, lon Task: Retrieve reading from snow_depth whose depth is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061138
train
v3
Sensor network script: Node: frost | code: clr | fields: type, value, lon, level Sensor: sunlight | fields: level, reading, depth, ts Task: Fetch reading from frost where value is greater than the average of depth in sunlight for matching ts. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061139
train
v2
Sensor network script: Node: turbidity | code: hub | fields: qc, lat, value, ts Sensor: dew_point | fields: value, level, lon, type Task: Fetch level from turbidity that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061140
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: ts, qc, value, level Sensor: lightning | fields: lat, qc, value, type Task: Get reading from cloud_cover where depth exceeds the minimum reading from lightning for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061141
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: level, qc, depth, unit Sensor: temperature | fields: depth, type, unit, lat Task: Retrieve lat from snow_depth whose depth is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061142
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: level, ts, reading, unit Sensor: air_quality | fields: type, ts, depth, lon Task: Fetch lat from cloud_cover where depth is greater than the minimum of value in air_quality for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061143
train
v2
Sensor network script: Node: visibility | code: mst | fields: depth, type, reading, qc Sensor: soil_moisture | fields: qc, ts, level, type Task: Retrieve depth from visibility that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061144
train
v2
Sensor network script: Node: turbidity | code: ref | fields: qc, ts, lat, unit Sensor: sunlight | fields: qc, type, depth, value Task: Retrieve reading from turbidity that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061145
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: value, unit, ts, level Sensor: soil_moisture | fields: value, type, reading, depth Task: Fetch value from snow_depth where value is greater than the count of of depth in soil_moisture for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061146
train
v2
Sensor network script: Node: uv_index | code: stn | fields: level, lat, reading, value Sensor: air_quality | fields: lat, type, reading, qc Task: Get level from uv_index where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061147
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: lon, ts, type, depth Sensor: dew_point | fields: depth, value, reading, unit Task: Retrieve lat from wind_speed whose ts is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061148
train
v3
Sensor network script: Node: humidity | code: mst | fields: type, lat, unit, ts Sensor: rainfall | fields: value, qc, unit, ts Task: Retrieve reading from humidity with depth above the COUNT(value) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061149
train
v3
Sensor network script: Node: pressure | code: ref | fields: level, unit, qc, type Sensor: temperature | fields: reading, depth, type, qc Task: Get lat from pressure where reading exceeds the minimum reading from temperature for the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061150
train
v3
Sensor network script: Node: turbidity | code: stn | fields: ts, type, depth, unit Sensor: sunlight | fields: level, reading, type, lon Task: Retrieve value from turbidity with depth above the MAX(value) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061151
train
v3
Sensor network script: Node: rainfall | code: thr | fields: unit, value, type, lat Sensor: frost | fields: type, reading, depth, lon Task: Fetch level from rainfall where reading is greater than the count of of value in frost for matching ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="ts"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061152
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: value, reading, depth, lon Sensor: dew_point | fields: type, lon, level, qc Task: Retrieve lon from wind_speed that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061153
train
v2
Sensor network script: Node: uv_index | code: ref | fields: value, level, type, reading Sensor: air_quality | fields: qc, ts, value, level Task: Fetch depth from uv_index that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061154
train
v2
Sensor network script: Node: rainfall | code: thr | fields: depth, reading, qc, lon Sensor: frost | fields: qc, reading, unit, ts Task: Get reading from rainfall where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061155
train
v3
Sensor network script: Node: air_quality | code: ref | fields: reading, unit, value, type Sensor: drought_index | fields: level, type, qc, depth Task: Retrieve value from air_quality with value above the MIN(reading) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061156
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: ts, type, reading, lat Sensor: sunlight | fields: level, lon, reading, ts Task: Retrieve level from soil_moisture whose unit is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061157
train
v2
Sensor network script: Node: temperature | code: thr | fields: level, lat, qc, type Sensor: soil_moisture | fields: ts, qc, level, unit Task: Get reading from temperature where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061158
train
v1
Sensor network script: Node: lightning | code: mst | fields: lat, unit, qc, lon Sensor: sunlight | fields: qc, value, type, reading Task: Get depth from lightning where unit appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061159
train
v1
Sensor network script: Node: frost | code: hub | fields: reading, ts, value, lon Sensor: lightning | fields: lat, reading, qc, depth Task: Get lon from frost where qc appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061160
train
v3
Sensor network script: Node: dew_point | code: gst | fields: unit, type, qc, lat Sensor: turbidity | fields: reading, depth, lon, value Task: Retrieve lon from dew_point with depth above the COUNT(reading) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061161
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: depth, type, lon, lat Sensor: drought_index | fields: qc, unit, level, lat Task: Retrieve lon from wind_speed whose depth is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061162
train
v2
Sensor network script: Node: rainfall | code: hub | fields: lon, value, depth, qc Sensor: turbidity | fields: lat, unit, level, lon Task: Get level from rainfall where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061163
train
v1
Sensor network script: Node: humidity | code: gst | fields: reading, unit, depth, value Sensor: turbidity | fields: depth, ts, type, unit Task: Get lon from humidity where qc appears in turbidity readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061164
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: lon, value, ts, type Sensor: sunlight | fields: depth, qc, ts, lon Task: Fetch lat from cloud_cover where ts exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061165
train
v1
Sensor network script: Node: evaporation | code: gst | fields: ts, depth, unit, qc Sensor: cloud_cover | fields: unit, level, ts, lat Task: Fetch level from evaporation where depth exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061166
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: value, type, unit, ts Sensor: turbidity | fields: ts, unit, lat, qc Task: Fetch reading from snow_depth where type exists in turbidity sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061167
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: depth, lon, level, reading Sensor: visibility | fields: qc, depth, value, type Task: Retrieve lon from cloud_cover that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061168
train
v2
Sensor network script: Node: air_quality | code: clr | fields: qc, level, type, lon Sensor: snow_depth | fields: reading, level, lon, ts Task: Retrieve reading from air_quality that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061169
train
v2
Sensor network script: Node: turbidity | code: gst | fields: value, depth, reading, level Sensor: cloud_cover | fields: unit, level, depth, lon Task: Get lat from turbidity where a corresponding entry exists in cloud_cover with the same depth. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061170
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: value, lon, qc, lat Sensor: temperature | fields: level, value, depth, unit Task: Get lon from wind_speed where reading exceeds the count of depth from temperature for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061171
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: level, type, reading, depth Sensor: dew_point | fields: ts, type, lat, reading Task: Retrieve lon from wind_speed whose type is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061172
train
v1
Sensor network script: Node: evaporation | code: mst | fields: lon, reading, type, lat Sensor: snow_depth | fields: value, unit, qc, lat Task: Get value from evaporation where unit appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061173
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: unit, level, qc, lat Sensor: snow_depth | fields: unit, depth, reading, ts Task: Fetch value from cloud_cover where depth is greater than the maximum of reading in snow_depth for matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061174
train
v3
Sensor network script: Node: frost | code: ref | fields: depth, reading, qc, level Sensor: humidity | fields: ts, reading, level, lon Task: Retrieve value from frost with reading above the AVG(reading) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="value", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061175
train
v1
Sensor network script: Node: evaporation | code: thr | fields: depth, ts, reading, lat Sensor: visibility | fields: depth, lat, type, reading Task: Get reading from evaporation where ts appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061176
train
v2
Sensor network script: Node: turbidity | code: clr | fields: value, reading, depth, ts Sensor: sunlight | fields: unit, reading, depth, type Task: Get depth from turbidity where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061177
train
v3
Sensor network script: Node: evaporation | code: mst | fields: value, qc, reading, unit Sensor: wind_speed | fields: lat, qc, level, ts Task: Get level from evaporation where depth exceeds the count of reading from wind_speed for the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="unit"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061178
train
v2
Sensor network script: Node: frost | code: prt | fields: reading, level, ts, unit Sensor: lightning | fields: value, level, qc, lon Task: Get depth from frost where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061179
train
v1
Sensor network script: Node: dew_point | code: prt | fields: value, level, type, depth Sensor: visibility | fields: qc, unit, depth, value Task: Fetch lat from dew_point where unit exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061180
train
v2
Sensor network script: Node: air_quality | code: clr | fields: value, level, lon, unit Sensor: temperature | fields: reading, depth, type, lon Task: Retrieve depth from air_quality that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061181
train
v2
Sensor network script: Node: visibility | code: stn | fields: type, reading, value, level Sensor: sunlight | fields: level, lon, depth, type Task: Retrieve reading from visibility that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061182
train
v1
Sensor network script: Node: dew_point | code: ref | fields: reading, lon, ts, type Sensor: sunlight | fields: unit, lat, reading, ts Task: Retrieve lat from dew_point whose type is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061183
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: type, depth, ts, value Sensor: soil_moisture | fields: value, qc, lat, depth Task: Fetch reading from snow_depth where value is greater than the count of of reading in soil_moisture for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061184
train
v3
Sensor network script: Node: dew_point | code: gst | fields: type, depth, lon, unit Sensor: lightning | fields: lat, ts, lon, reading Task: Fetch reading from dew_point where value is greater than the average of value in lightning for matching depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061185
train
v3
Sensor network script: Node: air_quality | code: stn | fields: depth, type, level, reading Sensor: rainfall | fields: depth, level, value, qc Task: Retrieve lat from air_quality with depth above the MAX(value) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("rainfall", code="rnfl"), match="type"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061186
train
v2
Sensor network script: Node: uv_index | code: gst | fields: unit, qc, lon, reading Sensor: temperature | fields: depth, qc, reading, unit Task: Fetch depth from uv_index that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061187
train
v3
Sensor network script: Node: visibility | code: stn | fields: type, unit, level, lat Sensor: air_quality | fields: qc, lat, value, type Task: Retrieve level from visibility with reading above the MIN(value) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061188
train
v2
Sensor network script: Node: evaporation | code: prt | fields: lat, unit, qc, value Sensor: pressure | fields: reading, unit, ts, depth Task: Fetch reading from evaporation that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061189
train
v3
Sensor network script: Node: humidity | code: mst | fields: level, type, unit, depth Sensor: drought_index | fields: type, lat, depth, lon Task: Fetch depth from humidity where reading is greater than the count of of depth in drought_index for matching type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061190
train
v3
Sensor network script: Node: dew_point | code: hub | fields: ts, reading, unit, qc Sensor: drought_index | fields: depth, ts, qc, value Task: Fetch level from dew_point where value is greater than the minimum of value in drought_index for matching unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "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_061191
train
v2
Sensor network script: Node: evaporation | code: prt | fields: depth, type, level, unit Sensor: uv_index | fields: ts, reading, level, lat Task: Get depth from evaporation where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061192
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: qc, type, ts, unit Sensor: visibility | fields: level, ts, lon, depth Task: Get lat from wind_speed where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_061193
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: qc, ts, reading, type Sensor: uv_index | fields: lat, value, ts, qc Task: Get lat from soil_moisture where depth exceeds the maximum reading from uv_index for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061194
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: level, type, reading, value Sensor: soil_moisture | fields: depth, type, value, ts Task: Retrieve value from snow_depth that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061195
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: ts, reading, value, lat Sensor: sunlight | fields: ts, lon, depth, qc Task: Retrieve lat from cloud_cover with value above the MIN(value) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061196
train
v1
Sensor network script: Node: humidity | code: ref | fields: depth, unit, value, type Sensor: dew_point | fields: depth, lon, level, ts Task: Get depth from humidity where ts appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061197
train
v3
Sensor network script: Node: pressure | code: stn | fields: value, unit, lon, type Sensor: cloud_cover | fields: lon, qc, unit, lat Task: Retrieve level from pressure with reading above the MIN(depth) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061198
train
v1
Sensor network script: Node: lightning | code: prt | fields: unit, depth, value, type Sensor: rainfall | fields: reading, type, lat, lon Task: Fetch depth from lightning where type exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_061199
train