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: temperature | code: stn | fields: qc, unit, value, type Sensor: dew_point | fields: unit, lon, reading, qc Task: Get depth from temperature where type appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075800
train
v3
Sensor network script: Node: rainfall | code: hub | fields: unit, type, value, reading Sensor: cloud_cover | fields: value, ts, level, qc Task: Fetch reading from rainfall where depth is greater than the count of of value in cloud_cover for matching type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075801
train
v2
Sensor network script: Node: visibility | code: prt | fields: level, lat, qc, ts Sensor: frost | fields: level, depth, lon, ts Task: Fetch level from visibility that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075802
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: depth, type, lon, level Sensor: lightning | fields: ts, lon, reading, value Task: Get reading from cloud_cover where unit appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075803
train
v3
Sensor network script: Node: air_quality | code: hub | fields: qc, reading, lat, type Sensor: humidity | fields: reading, depth, lon, unit Task: Retrieve depth from air_quality with value above the SUM(depth) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075804
train
v2
Sensor network script: Node: humidity | code: mst | fields: type, unit, level, lon Sensor: frost | fields: reading, ts, depth, unit Task: Retrieve depth from humidity that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075805
train
v1
Sensor network script: Node: uv_index | code: stn | fields: ts, lon, lat, type Sensor: dew_point | fields: lat, value, qc, unit Task: Get lat from uv_index where unit appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075806
train
v3
Sensor network script: Node: uv_index | code: clr | fields: type, depth, reading, ts Sensor: drought_index | fields: value, reading, lat, ts Task: Get value from uv_index where value exceeds the count of depth from drought_index for the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075807
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: reading, lon, qc, level Sensor: uv_index | fields: value, type, unit, qc Task: Fetch lon from wind_speed where reading is greater than the total of value in uv_index for matching type. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075808
train
v3
Sensor network script: Node: temperature | code: stn | fields: level, value, type, unit Sensor: sunlight | fields: ts, reading, level, depth Task: Fetch lon from temperature where value is greater than the average of value in sunlight for matching ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075809
train
v1
Sensor network script: Node: air_quality | code: mst | fields: lon, reading, value, ts Sensor: temperature | fields: depth, unit, level, value Task: Get value from air_quality where depth appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075810
train
v2
Sensor network script: Node: uv_index | code: prt | fields: reading, level, lon, depth Sensor: cloud_cover | fields: qc, type, depth, reading Task: Get reading from uv_index where a corresponding entry exists in cloud_cover with the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075811
train
v2
Sensor network script: Node: sunlight | code: hub | fields: depth, reading, level, ts Sensor: turbidity | fields: ts, value, lon, reading Task: Get reading from sunlight where a corresponding entry exists in turbidity with the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075812
train
v2
Sensor network script: Node: frost | code: hub | fields: value, type, lon, ts Sensor: pressure | fields: level, value, reading, unit Task: Fetch depth from frost that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075813
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: lat, lon, qc, level Sensor: lightning | fields: value, type, lat, unit Task: Fetch reading from soil_moisture that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075814
train
v1
Sensor network script: Node: lightning | code: mst | fields: qc, lat, unit, ts Sensor: dew_point | fields: qc, level, lon, depth Task: Retrieve lat from lightning whose unit is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075815
train
v3
Sensor network script: Node: temperature | code: prt | fields: lon, unit, lat, level Sensor: dew_point | fields: value, reading, type, level Task: Fetch value from temperature where depth is greater than the maximum of reading in dew_point for matching unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075816
train
v1
Sensor network script: Node: sunlight | code: hub | fields: qc, ts, value, type Sensor: pressure | fields: unit, reading, type, qc Task: Retrieve value from sunlight whose depth is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075817
train
v2
Sensor network script: Node: visibility | code: gst | fields: lon, reading, depth, qc Sensor: uv_index | fields: lat, unit, lon, ts Task: Fetch depth from visibility that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075818
train
v2
Sensor network script: Node: lightning | code: mst | fields: reading, ts, type, depth Sensor: wind_speed | fields: lon, ts, value, depth Task: Get level from lightning where a corresponding entry exists in wind_speed with the same type. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "lightning", "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_075819
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: lat, value, ts, unit Sensor: drought_index | fields: unit, level, qc, reading Task: Retrieve value from soil_moisture whose type is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075820
train
v1
Sensor network script: Node: evaporation | code: clr | fields: level, value, ts, depth Sensor: rainfall | fields: lon, type, reading, value Task: Fetch depth from evaporation where type exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075821
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: level, lat, ts, value Sensor: wind_speed | fields: reading, level, qc, value Task: Get value from snow_depth where type appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075822
train
v1
Sensor network script: Node: temperature | code: ref | fields: lon, unit, ts, qc Sensor: dew_point | fields: lon, lat, unit, qc Task: Fetch level from temperature where depth exists in dew_point sensor data for the same ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075823
train
v3
Sensor network script: Node: frost | code: mst | fields: lat, lon, level, reading Sensor: wind_speed | fields: lon, type, value, depth Task: Retrieve lon from frost with depth above the MIN(value) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075824
train
v1
Sensor network script: Node: air_quality | code: gst | fields: lat, depth, unit, value Sensor: frost | fields: lat, value, qc, type Task: Get lat from air_quality where depth appears in frost readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075825
train
v2
Sensor network script: Node: drought_index | code: hub | fields: depth, lat, qc, reading Sensor: rainfall | fields: lat, type, value, level Task: Fetch value from drought_index that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075826
train
v1
Sensor network script: Node: uv_index | code: thr | fields: lat, lon, unit, depth Sensor: dew_point | fields: type, reading, qc, value Task: Retrieve depth from uv_index whose depth is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075827
train
v3
Sensor network script: Node: sunlight | code: clr | fields: value, unit, type, reading Sensor: pressure | fields: level, type, lon, reading Task: Retrieve value from sunlight with reading above the COUNT(depth) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075828
train
v2
Sensor network script: Node: evaporation | code: gst | fields: qc, lon, unit, ts Sensor: cloud_cover | fields: type, qc, lat, reading Task: Fetch depth from evaporation that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075829
train
v2
Sensor network script: Node: turbidity | code: gst | fields: unit, depth, level, lon Sensor: air_quality | fields: type, lon, unit, reading Task: Get reading from turbidity where a corresponding entry exists in air_quality with the same depth. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075830
train
v3
Sensor network script: Node: lightning | code: ref | fields: lat, lon, qc, type Sensor: turbidity | fields: ts, value, lon, depth Task: Retrieve lon from lightning with value above the AVG(depth) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="type"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075831
train
v2
Sensor network script: Node: air_quality | code: clr | fields: reading, qc, ts, unit Sensor: uv_index | fields: value, type, level, lon Task: Get value from air_quality where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075832
train
v1
Sensor network script: Node: frost | code: mst | fields: reading, type, qc, value Sensor: temperature | fields: ts, depth, lon, type Task: Get lon from frost where type appears in temperature readings with matching type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075833
train
v1
Sensor network script: Node: air_quality | code: clr | fields: qc, type, lat, reading Sensor: rainfall | fields: value, lat, type, level Task: Retrieve level from air_quality whose ts is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075834
train
v2
Sensor network script: Node: rainfall | code: gst | fields: unit, level, qc, value Sensor: frost | fields: value, type, reading, qc Task: Get reading from rainfall where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075835
train
v3
Sensor network script: Node: pressure | code: clr | fields: type, unit, reading, lon Sensor: temperature | fields: ts, lat, qc, lon Task: Fetch depth from pressure where depth is greater than the maximum of value in temperature for matching type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075836
train
v1
Sensor network script: Node: lightning | code: gst | fields: unit, ts, reading, qc Sensor: evaporation | fields: lat, level, type, value Task: Get lat from lightning where ts appears in evaporation readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075837
train
v2
Sensor network script: Node: lightning | code: hub | fields: level, value, unit, lon Sensor: uv_index | fields: value, level, depth, type Task: Retrieve depth from lightning that have at least one matching reading in uv_index sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075838
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: depth, lat, unit, ts Sensor: frost | fields: ts, lat, unit, type Task: Fetch reading from soil_moisture where reading is greater than the total of value in frost for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075839
train
v2
Sensor network script: Node: pressure | code: gst | fields: level, type, lat, unit Sensor: dew_point | fields: unit, type, depth, lat Task: Fetch level from pressure that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075840
train
v2
Sensor network script: Node: visibility | code: stn | fields: level, value, depth, unit Sensor: dew_point | fields: reading, depth, lon, value Task: Retrieve reading from visibility that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075841
train
v1
Sensor network script: Node: pressure | code: prt | fields: reading, ts, level, depth Sensor: frost | fields: ts, qc, value, depth Task: Fetch depth from pressure where depth exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075842
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: qc, depth, type, value Sensor: visibility | fields: lon, lat, type, reading Task: Fetch value from cloud_cover where value is greater than the minimum of value in visibility for matching depth. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075843
train
v2
Sensor network script: Node: frost | code: thr | fields: qc, type, ts, unit Sensor: soil_moisture | fields: unit, value, qc, lon Task: Get depth from frost where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075844
train
v3
Sensor network script: Node: pressure | code: mst | fields: lat, reading, unit, type Sensor: dew_point | fields: lat, lon, qc, ts Task: Retrieve value from pressure with value above the MIN(reading) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075845
train
v3
Sensor network script: Node: air_quality | code: prt | fields: level, lon, lat, depth Sensor: uv_index | fields: qc, depth, level, lon Task: Retrieve reading from air_quality with value above the MIN(value) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075846
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: unit, lat, depth, type Sensor: drought_index | fields: qc, unit, type, ts Task: Retrieve value from wind_speed that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075847
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: type, lon, ts, reading Sensor: soil_moisture | fields: level, type, lat, ts Task: Get level from snow_depth where depth exceeds the count of value from soil_moisture for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "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_075848
train
v1
Sensor network script: Node: temperature | code: clr | fields: unit, value, lat, qc Sensor: evaporation | fields: reading, type, qc, depth Task: Get depth from temperature where type appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075849
train
v2
Sensor network script: Node: humidity | code: mst | fields: unit, level, lon, reading Sensor: dew_point | fields: ts, reading, type, qc Task: Retrieve level from humidity that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075850
train
v2
Sensor network script: Node: visibility | code: mst | fields: qc, type, lon, ts Sensor: evaporation | fields: unit, reading, lat, ts Task: Fetch reading from visibility that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075851
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lat, lon, value, level Sensor: sunlight | fields: reading, lat, value, unit Task: Retrieve value from wind_speed that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075852
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: level, qc, ts, reading Sensor: air_quality | fields: depth, reading, level, ts Task: Fetch level from wind_speed that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075853
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: value, lat, lon, ts Sensor: rainfall | fields: reading, value, lat, qc Task: Retrieve depth from soil_moisture with depth above the AVG(reading) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="type"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075854
train
v1
Sensor network script: Node: frost | code: stn | fields: level, reading, ts, value Sensor: uv_index | fields: lat, level, lon, depth Task: Fetch depth from frost where depth exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075855
train
v1
Sensor network script: Node: uv_index | code: mst | fields: lon, unit, lat, reading Sensor: pressure | fields: qc, ts, reading, lat Task: Get depth from uv_index where ts appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075856
train
v2
Sensor network script: Node: drought_index | code: mst | fields: lon, lat, ts, unit Sensor: cloud_cover | fields: depth, lat, lon, reading Task: Fetch value from drought_index that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075857
train
v1
Sensor network script: Node: evaporation | code: ref | fields: lon, ts, value, level Sensor: snow_depth | fields: lat, qc, depth, lon Task: Get value from evaporation where type appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075858
train
v3
Sensor network script: Node: humidity | code: clr | fields: qc, unit, type, depth Sensor: soil_moisture | fields: lon, ts, type, level Task: Retrieve lat from humidity with value above the MIN(value) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075859
train
v1
Sensor network script: Node: frost | code: prt | fields: lon, ts, type, level Sensor: temperature | fields: ts, level, reading, lon Task: Fetch lon from frost where ts exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075860
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: type, lon, depth, reading Sensor: dew_point | fields: value, lat, type, reading Task: Get lat from snow_depth where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075861
train
v1
Sensor network script: Node: rainfall | code: ref | fields: reading, level, lon, type Sensor: frost | fields: ts, lon, type, value Task: Fetch reading from rainfall where depth exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075862
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: unit, qc, ts, lat Sensor: humidity | fields: ts, lat, type, unit Task: Retrieve level from soil_moisture that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075863
train
v2
Sensor network script: Node: lightning | code: hub | fields: value, lat, reading, lon Sensor: visibility | fields: qc, type, unit, value Task: Retrieve level from lightning that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075864
train
v3
Sensor network script: Node: temperature | code: mst | fields: depth, reading, level, type Sensor: visibility | fields: lon, lat, ts, reading Task: Retrieve lon from temperature with depth above the SUM(value) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075865
train
v2
Sensor network script: Node: sunlight | code: hub | fields: reading, lat, value, level Sensor: cloud_cover | fields: unit, reading, lat, value Task: Retrieve reading from sunlight that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075866
train
v1
Sensor network script: Node: rainfall | code: stn | fields: qc, value, depth, level Sensor: evaporation | fields: unit, qc, lon, depth Task: Get depth from rainfall where type appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075867
train
v1
Sensor network script: Node: evaporation | code: gst | fields: reading, unit, type, ts Sensor: rainfall | fields: depth, qc, ts, type Task: Fetch value from evaporation where depth exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075868
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: depth, lon, type, level Sensor: air_quality | fields: unit, qc, ts, level Task: Get lon from wind_speed where depth exceeds the count of value from air_quality for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075869
train
v3
Sensor network script: Node: turbidity | code: prt | fields: lat, unit, qc, value Sensor: drought_index | fields: qc, lon, reading, type Task: Get lat from turbidity where reading exceeds the maximum value from drought_index for the same unit. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075870
train
v1
Sensor network script: Node: humidity | code: hub | fields: lon, lat, level, unit Sensor: uv_index | fields: type, value, ts, level Task: Retrieve lon from humidity whose qc is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075871
train
v1
Sensor network script: Node: temperature | code: gst | fields: ts, lon, depth, type Sensor: drought_index | fields: type, qc, level, depth Task: Retrieve value from temperature whose depth is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075872
train
v1
Sensor network script: Node: drought_index | code: mst | fields: unit, qc, reading, ts Sensor: pressure | fields: unit, reading, depth, level Task: Retrieve level from drought_index whose ts is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075873
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: unit, reading, qc, value Sensor: rainfall | fields: lat, value, qc, type Task: Retrieve reading from snow_depth that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075874
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: type, qc, ts, lat Sensor: turbidity | fields: qc, depth, ts, type Task: Fetch lon from wind_speed where value is greater than the maximum of reading in turbidity for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075875
train
v3
Sensor network script: Node: lightning | code: thr | fields: unit, reading, lat, depth Sensor: humidity | fields: reading, type, depth, lon Task: Fetch reading from lightning where depth is greater than the minimum of value in humidity for matching unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="unit"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075876
train
v1
Sensor network script: Node: uv_index | code: prt | fields: lat, lon, qc, reading Sensor: visibility | fields: qc, reading, lon, type Task: Fetch level from uv_index where type exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="unit", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075877
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: depth, qc, level, value Sensor: rainfall | fields: lat, qc, ts, level Task: Fetch lat from soil_moisture where value is greater than the total of reading in rainfall for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075878
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: lon, unit, lat, ts Sensor: air_quality | fields: type, value, depth, ts Task: Get lon from cloud_cover where depth exceeds the total value from air_quality for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075879
train
v1
Sensor network script: Node: humidity | code: mst | fields: type, value, depth, ts Sensor: uv_index | fields: lon, depth, unit, lat Task: Retrieve depth from humidity whose ts is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075880
train
v1
Sensor network script: Node: lightning | code: stn | fields: lat, qc, ts, value Sensor: wind_speed | fields: ts, depth, lon, unit Task: Retrieve value from lightning whose unit is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075881
train
v3
Sensor network script: Node: humidity | code: stn | fields: lat, lon, value, type Sensor: lightning | fields: unit, depth, lat, value Task: Fetch lon from humidity where depth is greater than the maximum of reading in lightning for matching depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075882
train
v3
Sensor network script: Node: dew_point | code: clr | fields: qc, unit, depth, lon Sensor: air_quality | fields: qc, level, depth, ts Task: Get level from dew_point where value exceeds the total value from air_quality for the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="type"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075883
train
v3
Sensor network script: Node: drought_index | code: clr | fields: type, qc, ts, unit Sensor: air_quality | fields: ts, level, type, depth Task: Get reading from drought_index where reading exceeds the maximum depth from air_quality for the same qc. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075884
train
v1
Sensor network script: Node: dew_point | code: mst | fields: unit, qc, ts, value Sensor: visibility | fields: reading, lat, lon, value Task: Fetch level from dew_point where ts exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075885
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: type, lat, qc, lon Sensor: frost | fields: lat, lon, reading, depth Task: Fetch value from cloud_cover where depth is greater than the minimum of depth in frost for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075886
train
v1
Sensor network script: Node: humidity | code: ref | fields: lon, qc, type, unit Sensor: frost | fields: depth, ts, value, unit Task: Get lon from humidity where unit appears in frost readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075887
train
v2
Sensor network script: Node: drought_index | code: ref | fields: unit, value, lon, qc Sensor: wind_speed | fields: reading, type, lon, unit Task: Fetch lat from drought_index that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075888
train
v3
Sensor network script: Node: humidity | code: mst | fields: value, unit, qc, ts Sensor: air_quality | fields: ts, lon, lat, reading Task: Retrieve lat from humidity with value above the MAX(value) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075889
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: depth, qc, lon, unit Sensor: drought_index | fields: ts, value, unit, lat Task: Fetch value from cloud_cover that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075890
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: reading, lon, depth, type Sensor: rainfall | fields: lon, qc, depth, type Task: Get value from soil_moisture where depth appears in rainfall readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075891
train
v2
Sensor network script: Node: visibility | code: prt | fields: lon, level, unit, value Sensor: sunlight | fields: level, value, lat, type Task: Get level from visibility where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075892
train
v2
Sensor network script: Node: rainfall | code: mst | fields: depth, value, unit, reading Sensor: lightning | fields: ts, type, depth, lat Task: Get level from rainfall where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075893
train
v1
Sensor network script: Node: rainfall | code: prt | fields: unit, ts, type, lat Sensor: wind_speed | fields: reading, ts, depth, lon Task: Retrieve lon from rainfall whose type is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_075894
train
v3
Sensor network script: Node: sunlight | code: clr | fields: unit, depth, value, qc Sensor: cloud_cover | fields: unit, value, lat, depth Task: Fetch lat from sunlight where depth is greater than the average of reading in cloud_cover for matching ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075895
train
v2
Sensor network script: Node: turbidity | code: ref | fields: value, qc, type, unit Sensor: cloud_cover | fields: qc, depth, lat, unit Task: Get lat from turbidity where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075896
train
v1
Sensor network script: Node: dew_point | code: clr | fields: lon, level, qc, reading Sensor: sunlight | fields: qc, unit, level, lat Task: Retrieve level from dew_point whose depth is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075897
train
v2
Sensor network script: Node: lightning | code: prt | fields: reading, value, ts, type Sensor: snow_depth | fields: type, reading, depth, lat Task: Get level from lightning where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075898
train
v1
Sensor network script: Node: air_quality | code: prt | fields: lat, level, reading, value Sensor: soil_moisture | fields: type, lon, depth, ts Task: Retrieve level from air_quality whose type is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_075899
train