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: humidity | code: thr | fields: level, unit, qc, ts Sensor: frost | fields: depth, lon, level, qc Task: Fetch lat from humidity where ts exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002600
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: level, type, value, reading Sensor: visibility | fields: lat, value, unit, lon Task: Fetch reading from snow_depth where depth exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002601
train
v1
Sensor network script: Node: air_quality | code: prt | fields: ts, unit, lon, value Sensor: humidity | fields: qc, lat, type, lon Task: Retrieve reading from air_quality whose unit is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002602
train
v3
Sensor network script: Node: dew_point | code: mst | fields: lat, reading, level, lon Sensor: drought_index | fields: lat, lon, type, ts Task: Fetch lon from dew_point where value is greater than the maximum of value in drought_index for matching depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002603
train
v2
Sensor network script: Node: dew_point | code: gst | fields: lon, level, unit, type Sensor: pressure | fields: depth, value, unit, type Task: Fetch level from dew_point that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002604
train
v3
Sensor network script: Node: visibility | code: stn | fields: type, depth, level, qc Sensor: cloud_cover | fields: unit, depth, qc, level Task: Retrieve lat from visibility with value above the SUM(value) of cloud_cover readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002605
train
v2
Sensor network script: Node: lightning | code: thr | fields: depth, ts, lat, value Sensor: pressure | fields: level, ts, qc, reading Task: Get lon from lightning where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002606
train
v3
Sensor network script: Node: temperature | code: stn | fields: unit, lat, lon, depth Sensor: sunlight | fields: type, qc, reading, lon Task: Retrieve lon from temperature with value above the MAX(value) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="type"), ), 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": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002607
train
v1
Sensor network script: Node: rainfall | code: clr | fields: value, unit, reading, level Sensor: dew_point | fields: unit, level, value, ts Task: Get level from rainfall where unit appears in dew_point readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002608
train
v1
Sensor network script: Node: evaporation | code: gst | fields: reading, qc, ts, type Sensor: snow_depth | fields: ts, qc, value, unit Task: Get level from evaporation where unit appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002609
train
v1
Sensor network script: Node: sunlight | code: mst | fields: qc, reading, type, unit Sensor: rainfall | fields: type, reading, value, depth Task: Get depth from sunlight where qc appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002610
train
v3
Sensor network script: Node: air_quality | code: prt | fields: ts, reading, depth, lat Sensor: evaporation | fields: value, type, lat, ts Task: Get lon from air_quality where value exceeds the minimum depth from evaporation for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "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_002611
train
v2
Sensor network script: Node: lightning | code: thr | fields: reading, value, level, qc Sensor: drought_index | fields: reading, depth, value, lon Task: Fetch lon from lightning that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002612
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: depth, level, ts, unit Sensor: pressure | fields: lon, type, reading, qc Task: Fetch level from snow_depth where reading is greater than the maximum of value in pressure for matching qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002613
train
v1
Sensor network script: Node: lightning | code: mst | fields: qc, value, reading, depth Sensor: snow_depth | fields: lat, qc, lon, type Task: Retrieve lat from lightning whose unit is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="depth", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002614
train
v3
Sensor network script: Node: temperature | code: thr | fields: depth, lat, level, type Sensor: visibility | fields: qc, depth, unit, lon Task: Get depth from temperature where depth exceeds the total value from visibility for the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002615
train
v3
Sensor network script: Node: evaporation | code: mst | fields: lat, reading, ts, qc Sensor: humidity | fields: type, qc, reading, lat Task: Retrieve lat from evaporation with reading above the SUM(depth) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002616
train
v1
Sensor network script: Node: frost | code: clr | fields: reading, lon, depth, level Sensor: snow_depth | fields: qc, depth, reading, ts Task: Get depth from frost where type appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002617
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: unit, reading, qc, ts Sensor: lightning | fields: depth, unit, value, reading Task: Get level from snow_depth where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002618
train
v2
Sensor network script: Node: humidity | code: ref | fields: depth, lon, lat, type Sensor: drought_index | fields: qc, level, lat, ts Task: Fetch reading from humidity that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002619
train
v1
Sensor network script: Node: evaporation | code: clr | fields: ts, qc, level, lon Sensor: lightning | fields: lon, ts, type, depth Task: Retrieve value from evaporation whose depth is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002620
train
v1
Sensor network script: Node: drought_index | code: mst | fields: type, value, lon, lat Sensor: uv_index | fields: unit, level, reading, type Task: Fetch depth from drought_index where ts exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002621
train
v1
Sensor network script: Node: air_quality | code: gst | fields: reading, unit, qc, ts Sensor: cloud_cover | fields: level, type, lon, unit Task: Fetch depth from air_quality where unit exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002622
train
v3
Sensor network script: Node: frost | code: prt | fields: unit, depth, value, lat Sensor: cloud_cover | fields: lon, depth, qc, value Task: Fetch reading from frost where depth is greater than the count of of depth in cloud_cover for matching type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "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_002623
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: value, lon, lat, ts Sensor: sunlight | fields: value, lat, unit, reading Task: Retrieve lat from wind_speed that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002624
train
v3
Sensor network script: Node: pressure | code: gst | fields: ts, depth, lat, reading Sensor: evaporation | fields: unit, type, lon, value Task: Retrieve value from pressure with reading above the AVG(reading) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002625
train
v3
Sensor network script: Node: air_quality | code: thr | fields: reading, level, qc, unit Sensor: pressure | fields: reading, lon, depth, ts Task: Retrieve level from air_quality with value above the MIN(depth) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002626
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: ts, lon, depth, type Sensor: drought_index | fields: ts, lon, level, lat Task: Fetch lat from cloud_cover that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002627
train
v1
Sensor network script: Node: lightning | code: mst | fields: ts, lat, reading, value Sensor: wind_speed | fields: reading, ts, level, depth Task: Get depth from lightning where type appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002628
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: depth, type, level, unit Sensor: dew_point | fields: level, depth, lon, qc Task: Fetch level from cloud_cover that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002629
train
v2
Sensor network script: Node: drought_index | code: prt | fields: ts, type, reading, unit Sensor: lightning | fields: lon, depth, level, value Task: Fetch reading from drought_index that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002630
train
v3
Sensor network script: Node: humidity | code: clr | fields: reading, depth, value, ts Sensor: soil_moisture | fields: level, reading, depth, lat Task: Fetch lat from humidity where depth is greater than the average of reading in soil_moisture for matching type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002631
train
v1
Sensor network script: Node: rainfall | code: hub | fields: qc, level, reading, type Sensor: visibility | fields: type, value, ts, qc Task: Fetch depth from rainfall where type exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002632
train
v1
Sensor network script: Node: dew_point | code: clr | fields: reading, qc, ts, lat Sensor: soil_moisture | fields: type, lat, lon, unit Task: Retrieve depth from dew_point whose type is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002633
train
v1
Sensor network script: Node: turbidity | code: prt | fields: value, lat, level, ts Sensor: pressure | fields: qc, reading, ts, lat Task: Retrieve value from turbidity whose type is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002634
train
v3
Sensor network script: Node: pressure | code: thr | fields: reading, value, unit, type Sensor: uv_index | fields: value, depth, reading, ts Task: Retrieve depth from pressure with value above the COUNT(depth) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002635
train
v2
Sensor network script: Node: frost | code: hub | fields: ts, lat, unit, type Sensor: temperature | fields: reading, lat, ts, lon Task: Retrieve lat from frost that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002636
train
v3
Sensor network script: Node: drought_index | code: ref | fields: qc, ts, depth, reading Sensor: air_quality | fields: level, qc, value, type Task: Get reading from drought_index where depth exceeds the count of depth from air_quality for the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002637
train
v2
Sensor network script: Node: drought_index | code: hub | fields: unit, depth, level, lon Sensor: soil_moisture | fields: type, lat, level, value Task: Retrieve value from drought_index that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002638
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: unit, qc, lon, reading Sensor: uv_index | fields: ts, level, lat, value Task: Fetch lat from wind_speed that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002639
train
v2
Sensor network script: Node: air_quality | code: hub | fields: lat, qc, lon, level Sensor: visibility | fields: ts, qc, lat, value Task: Fetch reading from air_quality that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002640
train
v2
Sensor network script: Node: frost | code: thr | fields: qc, reading, ts, depth Sensor: turbidity | fields: lon, level, depth, type Task: Fetch reading from frost that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002641
train
v3
Sensor network script: Node: drought_index | code: thr | fields: value, lon, lat, ts Sensor: uv_index | fields: depth, lat, type, reading Task: Fetch reading from drought_index where depth is greater than the total of depth in uv_index for matching ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002642
train
v3
Sensor network script: Node: pressure | code: clr | fields: depth, value, ts, lon Sensor: cloud_cover | fields: lon, unit, type, level Task: Get depth from pressure where value exceeds the maximum reading from cloud_cover for the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002643
train
v3
Sensor network script: Node: sunlight | code: ref | fields: ts, lat, unit, qc Sensor: air_quality | fields: lon, level, ts, qc Task: Retrieve depth from sunlight with value above the MIN(depth) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002644
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: ts, lat, depth, lon Sensor: air_quality | fields: unit, type, ts, lon Task: Retrieve reading from snow_depth with value above the COUNT(reading) of air_quality readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002645
train
v1
Sensor network script: Node: dew_point | code: mst | fields: depth, type, ts, lat Sensor: humidity | fields: qc, ts, depth, reading Task: Get lon from dew_point where unit appears in humidity readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002646
train
v3
Sensor network script: Node: uv_index | code: ref | fields: lat, reading, type, qc Sensor: air_quality | fields: type, ts, lat, depth Task: Fetch level from uv_index where reading is greater than the maximum of reading in air_quality for matching type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("air_quality", code="prt"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002647
train
v1
Sensor network script: Node: visibility | code: mst | fields: lat, qc, type, unit Sensor: lightning | fields: reading, qc, type, ts Task: Retrieve depth from visibility whose unit is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002648
train
v1
Sensor network script: Node: humidity | code: clr | fields: value, lat, level, type Sensor: evaporation | fields: reading, qc, depth, value Task: Fetch level from humidity where ts exists in evaporation sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002649
train
v3
Sensor network script: Node: visibility | code: hub | fields: lat, qc, unit, reading Sensor: drought_index | fields: lon, type, level, unit Task: Get value from visibility where reading exceeds the total value from drought_index for the same depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002650
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: type, ts, lon, lat Sensor: frost | fields: unit, lat, reading, type Task: Fetch value from cloud_cover that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002651
train
v3
Sensor network script: Node: turbidity | code: mst | fields: type, ts, reading, lon Sensor: sunlight | fields: lat, unit, value, level Task: Get value from turbidity where reading exceeds the total depth from sunlight for the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002652
train
v3
Sensor network script: Node: pressure | code: clr | fields: level, ts, type, lon Sensor: humidity | fields: type, value, depth, lat Task: Retrieve lat from pressure with reading above the COUNT(depth) of humidity readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "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_002653
train
v3
Sensor network script: Node: dew_point | code: stn | fields: ts, level, lon, type Sensor: lightning | fields: ts, value, qc, lon Task: Fetch lat from dew_point where value is greater than the minimum of reading in lightning for matching unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002654
train
v1
Sensor network script: Node: air_quality | code: mst | fields: lon, type, lat, qc Sensor: sunlight | fields: type, unit, lon, depth Task: Get value from air_quality where ts appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002655
train
v1
Sensor network script: Node: temperature | code: ref | fields: qc, type, ts, value Sensor: pressure | fields: level, lat, unit, reading Task: Get reading from temperature where qc appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002656
train
v3
Sensor network script: Node: lightning | code: prt | fields: ts, type, depth, unit Sensor: soil_moisture | fields: lon, lat, reading, level Task: Get value from lightning where depth exceeds the average depth from soil_moisture for the same depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002657
train
v3
Sensor network script: Node: air_quality | code: mst | fields: value, ts, depth, qc Sensor: uv_index | fields: level, qc, value, reading Task: Fetch depth from air_quality where depth is greater than the count of of reading in uv_index for matching depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002658
train
v2
Sensor network script: Node: humidity | code: thr | fields: type, reading, unit, lon Sensor: wind_speed | fields: lat, ts, reading, depth Task: Retrieve value from humidity that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002659
train
v3
Sensor network script: Node: rainfall | code: ref | fields: value, depth, unit, lat Sensor: cloud_cover | fields: depth, level, ts, type Task: Get depth from rainfall where depth exceeds the average reading from cloud_cover for the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002660
train
v1
Sensor network script: Node: pressure | code: clr | fields: ts, lon, type, reading Sensor: uv_index | fields: qc, type, lat, value Task: Get reading from pressure where unit appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002661
train
v3
Sensor network script: Node: evaporation | code: gst | fields: reading, lon, lat, unit Sensor: temperature | fields: qc, lat, ts, lon Task: Get level from evaporation where depth exceeds the count of reading from temperature for the same type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002662
train
v2
Sensor network script: Node: pressure | code: ref | fields: reading, level, lon, type Sensor: dew_point | fields: lat, ts, qc, depth Task: Retrieve lon from pressure that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002663
train
v3
Sensor network script: Node: temperature | code: hub | fields: reading, lon, level, qc Sensor: lightning | fields: value, level, depth, ts Task: Retrieve reading from temperature with value above the MIN(depth) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002664
train
v1
Sensor network script: Node: drought_index | code: ref | fields: qc, reading, unit, value Sensor: evaporation | fields: unit, value, lon, level Task: Fetch lon from drought_index where type exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002665
train
v1
Sensor network script: Node: humidity | code: prt | fields: value, ts, lat, depth Sensor: lightning | fields: value, unit, type, reading Task: Get lon from humidity where ts appears in lightning readings with matching type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002666
train
v1
Sensor network script: Node: sunlight | code: hub | fields: reading, lon, unit, value Sensor: turbidity | fields: qc, type, value, level Task: Get value from sunlight where unit appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002667
train
v2
Sensor network script: Node: evaporation | code: prt | fields: lon, lat, ts, depth Sensor: wind_speed | fields: depth, lon, unit, value Task: Fetch lat from evaporation that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002668
train
v3
Sensor network script: Node: humidity | code: stn | fields: qc, lon, level, ts Sensor: rainfall | fields: ts, type, lon, lat Task: Get reading from humidity where depth exceeds the average value from rainfall for the same qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002669
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: qc, value, level, lat Sensor: soil_moisture | fields: value, depth, qc, level Task: Retrieve depth from wind_speed with depth above the COUNT(depth) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002670
train
v2
Sensor network script: Node: uv_index | code: ref | fields: type, qc, ts, level Sensor: dew_point | fields: depth, level, type, lat Task: Fetch level from uv_index that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002671
train
v3
Sensor network script: Node: dew_point | code: hub | fields: lat, value, ts, depth Sensor: drought_index | fields: lon, unit, reading, lat Task: Get depth from dew_point where reading exceeds the total value from drought_index for the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002672
train
v1
Sensor network script: Node: turbidity | code: prt | fields: lat, type, unit, depth Sensor: sunlight | fields: level, depth, qc, reading Task: Retrieve lon from turbidity whose qc is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002673
train
v2
Sensor network script: Node: uv_index | code: clr | fields: lon, type, level, qc Sensor: turbidity | fields: qc, lon, unit, depth Task: Get level from uv_index where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002674
train
v2
Sensor network script: Node: visibility | code: hub | fields: reading, unit, lat, ts Sensor: cloud_cover | fields: ts, level, unit, value Task: Retrieve lon from visibility that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002675
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: value, unit, type, level Sensor: cloud_cover | fields: value, reading, level, depth Task: Fetch depth from soil_moisture where qc exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002676
train
v3
Sensor network script: Node: temperature | code: mst | fields: type, unit, lon, level Sensor: turbidity | fields: lon, qc, unit, lat Task: Get depth from temperature where depth exceeds the average value from turbidity for the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002677
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: level, reading, depth, lat Sensor: uv_index | fields: unit, level, type, lon Task: Fetch value from snow_depth where depth exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002678
train
v1
Sensor network script: Node: pressure | code: hub | fields: lon, value, lat, level Sensor: dew_point | fields: ts, value, unit, reading Task: Retrieve level from pressure whose depth is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="unit", ), output="level", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002679
train
v3
Sensor network script: Node: lightning | code: thr | fields: depth, lat, qc, unit Sensor: wind_speed | fields: ts, qc, lat, reading Task: Retrieve level from lightning with reading above the MAX(value) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002680
train
v2
Sensor network script: Node: sunlight | code: stn | fields: type, depth, unit, reading Sensor: turbidity | fields: depth, type, lat, level Task: Fetch value from sunlight that have at least one corresponding turbidity measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002681
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: value, lat, lon, unit Sensor: sunlight | fields: unit, reading, ts, value Task: Get level from wind_speed where reading exceeds the minimum reading from sunlight for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002682
train
v3
Sensor network script: Node: uv_index | code: gst | fields: ts, qc, lon, lat Sensor: air_quality | fields: value, type, level, qc Task: Fetch value from uv_index where value is greater than the count of of reading in air_quality for matching unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002683
train
v3
Sensor network script: Node: lightning | code: ref | fields: ts, type, reading, level Sensor: dew_point | fields: level, reading, value, ts Task: Fetch level from lightning where reading is greater than the average of value in dew_point for matching qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002684
train
v3
Sensor network script: Node: pressure | code: ref | fields: lon, depth, level, type Sensor: wind_speed | fields: depth, type, value, lat Task: Get level from pressure where value exceeds the average depth from wind_speed for the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002685
train
v1
Sensor network script: Node: rainfall | code: thr | fields: reading, type, lat, qc Sensor: air_quality | fields: unit, qc, level, value Task: Get level from rainfall where type appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002686
train
v3
Sensor network script: Node: turbidity | code: gst | fields: depth, lat, level, type Sensor: snow_depth | fields: reading, type, depth, lon Task: Retrieve lat from turbidity with reading above the AVG(value) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002687
train
v3
Sensor network script: Node: visibility | code: clr | fields: type, lon, qc, unit Sensor: temperature | fields: ts, reading, type, lon Task: Get lon from visibility where depth exceeds the count of depth from temperature for the same type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002688
train
v2
Sensor network script: Node: frost | code: clr | fields: depth, value, level, type Sensor: humidity | fields: reading, unit, depth, value Task: Fetch depth from frost that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002689
train
v1
Sensor network script: Node: humidity | code: stn | fields: type, unit, level, depth Sensor: drought_index | fields: reading, qc, level, lat Task: Retrieve lon from humidity whose qc is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002690
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: reading, type, level, lon Sensor: lightning | fields: ts, unit, depth, qc Task: Get lat from wind_speed where reading exceeds the average depth from lightning for the same type. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002691
train
v1
Sensor network script: Node: drought_index | code: clr | fields: level, type, ts, depth Sensor: wind_speed | fields: unit, type, value, lat Task: Fetch depth from drought_index where depth exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002692
train
v3
Sensor network script: Node: lightning | code: stn | fields: ts, level, type, lat Sensor: sunlight | fields: value, level, reading, depth Task: Get depth from lightning where value exceeds the minimum depth from sunlight for the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002693
train
v3
Sensor network script: Node: turbidity | code: mst | fields: value, ts, type, level Sensor: wind_speed | fields: depth, qc, value, lat Task: Get depth from turbidity where reading exceeds the count of depth from wind_speed for the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="ts"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002694
train
v1
Sensor network script: Node: dew_point | code: gst | fields: depth, level, type, lon Sensor: temperature | fields: type, reading, depth, value Task: Get reading from dew_point where unit appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002695
train
v3
Sensor network script: Node: air_quality | code: ref | fields: reading, depth, lat, lon Sensor: visibility | fields: type, lon, ts, qc Task: Retrieve lon from air_quality with depth above the SUM(depth) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_002696
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: unit, qc, type, depth Sensor: soil_moisture | fields: level, type, ts, qc Task: Get reading from cloud_cover where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002697
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lat, qc, unit, value Sensor: drought_index | fields: unit, lat, lon, depth Task: Retrieve value from wind_speed that have at least one matching reading in drought_index sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002698
train
v1
Sensor network script: Node: turbidity | code: prt | fields: lat, value, level, unit Sensor: uv_index | fields: ts, type, value, reading Task: Fetch level from turbidity where unit exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_002699
train