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: evaporation | code: mst | fields: lat, level, lon, unit Sensor: dew_point | fields: reading, level, lon, unit Task: Retrieve depth from evaporation whose type is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006600
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lat, value, type, level Sensor: drought_index | fields: lat, level, value, reading Task: Fetch lon from air_quality where unit exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006601
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: qc, unit, reading, lon Sensor: air_quality | fields: unit, ts, lon, depth Task: Get reading from cloud_cover where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006602
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: ts, reading, unit, type Sensor: sunlight | fields: level, qc, ts, lat Task: Get value from cloud_cover where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006603
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: depth, reading, type, level Sensor: uv_index | fields: level, depth, reading, value Task: Get reading from soil_moisture where type appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006604
train
v3
Sensor network script: Node: air_quality | code: hub | fields: qc, ts, lat, level Sensor: drought_index | fields: ts, level, lon, value Task: Get level from air_quality where value exceeds the count of reading from drought_index for the same qc. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006605
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: reading, type, ts, unit Sensor: cloud_cover | fields: level, value, reading, ts Task: Get level from snow_depth where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006606
train
v2
Sensor network script: Node: drought_index | code: ref | fields: lon, ts, level, type Sensor: temperature | fields: type, ts, lon, lat Task: Get level from drought_index where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006607
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: lon, level, qc, reading Sensor: drought_index | fields: ts, level, value, lon Task: Retrieve lat from wind_speed that have at least one matching reading in drought_index sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006608
train
v2
Sensor network script: Node: air_quality | code: mst | fields: ts, unit, lon, reading Sensor: uv_index | fields: lat, depth, reading, qc Task: Get lon from air_quality where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006609
train
v1
Sensor network script: Node: drought_index | code: mst | fields: ts, unit, lon, qc Sensor: uv_index | fields: qc, unit, depth, reading Task: Get reading from drought_index where ts appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006610
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: lon, value, qc, type Sensor: frost | fields: lon, lat, level, depth Task: Retrieve level from snow_depth that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006611
train
v1
Sensor network script: Node: frost | code: stn | fields: depth, lon, unit, value Sensor: pressure | fields: reading, lon, ts, depth Task: Retrieve reading from frost whose type is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("frost", code="stn"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006612
train
v1
Sensor network script: Node: humidity | code: ref | fields: level, depth, value, unit Sensor: air_quality | fields: unit, ts, qc, depth Task: Retrieve lat from humidity whose qc is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006613
train
v3
Sensor network script: Node: uv_index | code: clr | fields: unit, lon, reading, level Sensor: sunlight | fields: type, ts, level, unit Task: Fetch reading from uv_index where reading is greater than the minimum of depth in sunlight for matching depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006614
train
v2
Sensor network script: Node: uv_index | code: prt | fields: qc, lon, type, ts Sensor: pressure | fields: level, reading, lat, depth Task: Fetch level from uv_index that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006615
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: type, level, ts, depth Sensor: turbidity | fields: unit, ts, reading, level Task: Retrieve value from wind_speed with value above the COUNT(reading) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006616
train
v1
Sensor network script: Node: air_quality | code: prt | fields: lon, reading, depth, level Sensor: cloud_cover | fields: unit, lon, reading, type Task: Get value from air_quality where ts appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006617
train
v3
Sensor network script: Node: dew_point | code: thr | fields: ts, value, lon, depth Sensor: evaporation | fields: depth, unit, lon, level Task: Fetch lon from dew_point where reading is greater than the minimum of depth in evaporation for matching unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006618
train
v3
Sensor network script: Node: humidity | code: prt | fields: level, lon, qc, reading Sensor: frost | fields: type, unit, value, depth Task: Retrieve lat from humidity with reading above the MIN(depth) of frost readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006619
train
v3
Sensor network script: Node: lightning | code: thr | fields: level, value, qc, depth Sensor: soil_moisture | fields: ts, value, unit, lat Task: Get lon from lightning where value exceeds the total reading from soil_moisture for the same qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006620
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: value, lat, lon, type Sensor: visibility | fields: level, qc, unit, type Task: Fetch reading from cloud_cover where depth exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="reading", )
{ "outer_table": "cloud_cover", "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_006621
train
v3
Sensor network script: Node: lightning | code: prt | fields: reading, level, value, unit Sensor: uv_index | fields: reading, unit, qc, value Task: Retrieve value from lightning with depth above the MIN(reading) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006622
train
v1
Sensor network script: Node: dew_point | code: stn | fields: reading, qc, lon, value Sensor: temperature | fields: reading, type, unit, level Task: Retrieve lon from dew_point whose unit is found in temperature records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006623
train
v3
Sensor network script: Node: humidity | code: ref | fields: lon, type, reading, qc Sensor: dew_point | fields: level, ts, value, qc Task: Retrieve depth from humidity with depth above the MAX(reading) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006624
train
v3
Sensor network script: Node: turbidity | code: clr | fields: ts, type, unit, lat Sensor: soil_moisture | fields: lon, lat, value, ts Task: Fetch level from turbidity where depth is greater than the minimum of value in soil_moisture for matching type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006625
train
v2
Sensor network script: Node: pressure | code: hub | fields: ts, unit, lat, qc Sensor: air_quality | fields: unit, depth, qc, lat Task: Fetch level from pressure that have at least one corresponding air_quality measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006626
train
v3
Sensor network script: Node: sunlight | code: gst | fields: value, reading, depth, lat Sensor: turbidity | fields: level, lon, value, unit Task: Fetch reading from sunlight where depth is greater than the minimum of depth in turbidity for matching ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006627
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: qc, lon, ts, depth Sensor: sunlight | fields: depth, lat, level, unit Task: Retrieve value from soil_moisture whose unit is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006628
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: reading, lon, depth, unit Sensor: evaporation | fields: ts, type, reading, qc Task: Get value from cloud_cover where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006629
train
v1
Sensor network script: Node: uv_index | code: stn | fields: lat, type, unit, ts Sensor: lightning | fields: type, lon, qc, reading Task: Fetch lat from uv_index where depth exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006630
train
v1
Sensor network script: Node: pressure | code: thr | fields: lon, level, lat, depth Sensor: humidity | fields: value, qc, lat, depth Task: Retrieve level from pressure whose ts is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006631
train
v3
Sensor network script: Node: drought_index | code: hub | fields: depth, level, type, lat Sensor: soil_moisture | fields: level, ts, depth, type Task: Get value from drought_index where reading exceeds the minimum reading from soil_moisture for the same depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006632
train
v2
Sensor network script: Node: frost | code: thr | fields: lon, value, unit, level Sensor: wind_speed | fields: lat, level, lon, value Task: Get level from frost where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006633
train
v2
Sensor network script: Node: drought_index | code: gst | fields: ts, depth, type, qc Sensor: turbidity | fields: type, value, lon, qc Task: Get lat from drought_index where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006634
train
v2
Sensor network script: Node: pressure | code: gst | fields: lat, reading, level, unit Sensor: drought_index | fields: lat, ts, qc, reading Task: Fetch depth from pressure that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006635
train
v3
Sensor network script: Node: visibility | code: mst | fields: lat, type, ts, qc Sensor: humidity | fields: lon, qc, depth, ts Task: Fetch lat from visibility where depth is greater than the count of of value in humidity for matching depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006636
train
v3
Sensor network script: Node: humidity | code: thr | fields: type, qc, ts, lon Sensor: snow_depth | fields: type, value, depth, ts Task: Retrieve level from humidity with reading above the COUNT(depth) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006637
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: ts, qc, level, value Sensor: sunlight | fields: ts, depth, qc, reading Task: Fetch reading from wind_speed where type exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006638
train
v1
Sensor network script: Node: rainfall | code: thr | fields: reading, value, level, depth Sensor: sunlight | fields: value, ts, lat, unit Task: Get lat from rainfall where ts appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006639
train
v1
Sensor network script: Node: rainfall | code: mst | fields: reading, depth, level, ts Sensor: frost | fields: value, type, lat, level Task: Fetch lat from rainfall where depth exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006640
train
v2
Sensor network script: Node: frost | code: clr | fields: lon, ts, type, unit Sensor: evaporation | fields: lat, value, reading, depth Task: Get lon from frost where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006641
train
v2
Sensor network script: Node: uv_index | code: prt | fields: lon, unit, level, qc Sensor: lightning | fields: lon, ts, reading, level Task: Get lat from uv_index where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006642
train
v2
Sensor network script: Node: sunlight | code: ref | fields: ts, type, qc, lon Sensor: lightning | fields: qc, value, type, ts Task: Get value from sunlight where a corresponding entry exists in lightning with the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006643
train
v2
Sensor network script: Node: visibility | code: gst | fields: lat, depth, type, value Sensor: pressure | fields: lat, qc, value, lon Task: Retrieve lat from visibility that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006644
train
v1
Sensor network script: Node: uv_index | code: ref | fields: level, type, unit, qc Sensor: pressure | fields: lon, unit, lat, reading Task: Fetch reading from uv_index where qc exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006645
train
v1
Sensor network script: Node: turbidity | code: stn | fields: qc, lat, reading, unit Sensor: soil_moisture | fields: lon, type, lat, ts Task: Fetch level from turbidity where ts exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006646
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: depth, lat, level, unit Sensor: air_quality | fields: reading, depth, lon, lat Task: Retrieve lon from wind_speed that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006647
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: lon, reading, value, ts Sensor: air_quality | fields: type, lon, reading, qc Task: Retrieve value from wind_speed that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006648
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: lon, reading, unit, qc Sensor: cloud_cover | fields: level, ts, type, reading Task: Fetch depth from soil_moisture where qc exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006649
train
v1
Sensor network script: Node: drought_index | code: mst | fields: qc, unit, lat, type Sensor: snow_depth | fields: type, qc, level, lat Task: Fetch reading from drought_index where qc exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006650
train
v1
Sensor network script: Node: evaporation | code: prt | fields: qc, lat, value, unit Sensor: drought_index | fields: lon, depth, reading, value Task: Get lon from evaporation where type appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006651
train
v1
Sensor network script: Node: sunlight | code: mst | fields: value, ts, type, lon Sensor: frost | fields: lon, type, qc, lat Task: Retrieve lon from sunlight whose unit is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006652
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: value, ts, lon, reading Sensor: pressure | fields: type, level, value, lat Task: Retrieve depth from cloud_cover with value above the MAX(reading) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "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_006653
train
v2
Sensor network script: Node: sunlight | code: mst | fields: value, lat, qc, ts Sensor: rainfall | fields: level, ts, value, lat Task: Get value from sunlight where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006654
train
v3
Sensor network script: Node: sunlight | code: gst | fields: value, lon, lat, unit Sensor: turbidity | fields: ts, lon, level, lat Task: Retrieve depth from sunlight with depth above the COUNT(value) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006655
train
v3
Sensor network script: Node: lightning | code: hub | fields: depth, ts, lon, level Sensor: temperature | fields: depth, qc, ts, unit Task: Get reading from lightning where reading exceeds the count of reading from temperature for the same ts. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006656
train
v3
Sensor network script: Node: temperature | code: thr | fields: reading, qc, type, level Sensor: air_quality | fields: qc, type, lon, lat Task: Get level from temperature where reading exceeds the count of value from air_quality for the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006657
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: level, lat, depth, lon Sensor: uv_index | fields: type, lon, value, depth Task: Fetch depth from snow_depth where ts exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006658
train
v2
Sensor network script: Node: temperature | code: ref | fields: qc, depth, type, level Sensor: sunlight | fields: lon, level, ts, lat Task: Retrieve value from temperature that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006659
train
v3
Sensor network script: Node: turbidity | code: mst | fields: depth, reading, ts, lat Sensor: humidity | fields: level, ts, qc, type Task: Retrieve lat from turbidity with depth above the AVG(value) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006660
train
v1
Sensor network script: Node: rainfall | code: clr | fields: reading, depth, unit, lat Sensor: uv_index | fields: lon, reading, ts, lat Task: Fetch depth from rainfall where depth exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006661
train
v1
Sensor network script: Node: air_quality | code: thr | fields: type, qc, lat, unit Sensor: dew_point | fields: depth, unit, ts, value Task: Retrieve level from air_quality whose type is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006662
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: depth, qc, value, lat Sensor: cloud_cover | fields: reading, unit, lat, depth Task: Retrieve level from snow_depth with value above the SUM(depth) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006663
train
v2
Sensor network script: Node: uv_index | code: thr | fields: lat, unit, lon, depth Sensor: pressure | fields: qc, value, reading, ts Task: Retrieve depth from uv_index that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006664
train
v1
Sensor network script: Node: temperature | code: stn | fields: reading, lon, lat, level Sensor: rainfall | fields: value, lon, unit, ts Task: Retrieve depth from temperature whose ts is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006665
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: lat, lon, value, ts Sensor: snow_depth | fields: value, ts, lat, unit Task: Fetch lat from wind_speed that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006666
train
v1
Sensor network script: Node: rainfall | code: prt | fields: reading, unit, depth, lat Sensor: wind_speed | fields: unit, lat, depth, level Task: Fetch reading from rainfall where depth exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006667
train
v2
Sensor network script: Node: drought_index | code: hub | fields: ts, type, qc, lon Sensor: cloud_cover | fields: value, depth, level, ts Task: Retrieve lon from drought_index that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006668
train
v3
Sensor network script: Node: frost | code: ref | fields: type, reading, qc, lat Sensor: turbidity | fields: type, reading, lon, lat Task: Get level from frost where depth exceeds the minimum reading from turbidity for the same qc. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="level", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006669
train
v2
Sensor network script: Node: uv_index | code: ref | fields: level, unit, depth, ts Sensor: drought_index | fields: depth, lon, type, level Task: Retrieve reading from uv_index that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006670
train
v3
Sensor network script: Node: sunlight | code: ref | fields: ts, reading, value, level Sensor: snow_depth | fields: lon, reading, depth, unit Task: Get level from sunlight where value exceeds the average depth from snow_depth for the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006671
train
v1
Sensor network script: Node: dew_point | code: clr | fields: type, level, unit, reading Sensor: snow_depth | fields: depth, lat, ts, type Task: Fetch reading from dew_point where qc exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006672
train
v2
Sensor network script: Node: lightning | code: gst | fields: reading, type, qc, unit Sensor: temperature | fields: qc, lon, type, level Task: Fetch lon from lightning that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006673
train
v2
Sensor network script: Node: temperature | code: hub | fields: type, ts, qc, value Sensor: soil_moisture | fields: value, depth, reading, type Task: Fetch lat from temperature that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006674
train
v2
Sensor network script: Node: rainfall | code: ref | fields: qc, ts, lat, reading Sensor: temperature | fields: lon, depth, reading, value Task: Retrieve reading from rainfall that have at least one matching reading in temperature sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006675
train
v2
Sensor network script: Node: pressure | code: mst | fields: ts, type, lon, level Sensor: lightning | fields: lon, ts, value, depth Task: Get reading from pressure where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006676
train
v1
Sensor network script: Node: pressure | code: mst | fields: depth, qc, ts, lon Sensor: sunlight | fields: qc, lat, ts, value Task: Get reading from pressure where unit appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006677
train
v3
Sensor network script: Node: frost | code: prt | fields: level, lon, reading, qc Sensor: pressure | fields: level, depth, reading, value Task: Retrieve reading from frost with depth above the COUNT(value) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("pressure", code="mbl"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006678
train
v1
Sensor network script: Node: drought_index | code: mst | fields: depth, ts, unit, lon Sensor: soil_moisture | fields: lat, lon, reading, type Task: Retrieve value from drought_index whose qc is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006679
train
v3
Sensor network script: Node: pressure | code: ref | fields: qc, unit, lat, lon Sensor: soil_moisture | fields: reading, lat, qc, type Task: Retrieve level from pressure with reading above the SUM(depth) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006680
train
v1
Sensor network script: Node: sunlight | code: thr | fields: lat, qc, type, depth Sensor: dew_point | fields: value, depth, type, level Task: Get lat from sunlight where unit appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006681
train
v2
Sensor network script: Node: turbidity | code: thr | fields: lon, qc, value, lat Sensor: frost | fields: unit, reading, ts, level Task: Retrieve lon from turbidity that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006682
train
v1
Sensor network script: Node: drought_index | code: thr | fields: type, lat, ts, lon Sensor: soil_moisture | fields: lat, qc, lon, type Task: Retrieve value from drought_index whose depth is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006683
train
v2
Sensor network script: Node: dew_point | code: clr | fields: depth, reading, level, value Sensor: snow_depth | fields: qc, value, level, depth Task: Get lon from dew_point where a corresponding entry exists in snow_depth with the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006684
train
v1
Sensor network script: Node: lightning | code: gst | fields: depth, unit, value, level Sensor: evaporation | fields: value, ts, lat, unit Task: Fetch lat from lightning where qc exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006685
train
v1
Sensor network script: Node: sunlight | code: thr | fields: value, reading, depth, level Sensor: humidity | fields: value, level, type, lat Task: Fetch lat from sunlight where type exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006686
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: value, qc, lon, ts Sensor: snow_depth | fields: qc, value, ts, unit Task: Get lon from soil_moisture where type appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006687
train
v1
Sensor network script: Node: turbidity | code: hub | fields: value, unit, type, lat Sensor: temperature | fields: ts, reading, unit, lat Task: Get depth from turbidity where type appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006688
train
v1
Sensor network script: Node: rainfall | code: stn | fields: lat, value, type, level Sensor: wind_speed | fields: value, depth, lon, reading Task: Retrieve value from rainfall whose depth is found in wind_speed records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006689
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: lon, level, value, type Sensor: rainfall | fields: ts, unit, level, lat Task: Get value from snow_depth where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006690
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: depth, unit, ts, lat Sensor: temperature | fields: unit, depth, lon, lat Task: Get lon from snow_depth where value exceeds the count of depth from temperature for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006691
train
v2
Sensor network script: Node: rainfall | code: gst | fields: reading, depth, unit, lat Sensor: snow_depth | fields: type, lat, depth, value Task: Get reading from rainfall where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006692
train
v1
Sensor network script: Node: frost | code: thr | fields: qc, type, ts, level Sensor: drought_index | fields: ts, level, lon, value Task: Retrieve lon from frost whose type is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006693
train
v1
Sensor network script: Node: turbidity | code: prt | fields: type, level, lat, reading Sensor: frost | fields: ts, level, unit, qc Task: Get lat from turbidity where unit appears in frost readings with matching type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006694
train
v3
Sensor network script: Node: dew_point | code: ref | fields: ts, value, unit, reading Sensor: sunlight | fields: qc, type, lon, reading Task: Fetch depth from dew_point where depth is greater than the minimum of depth in sunlight for matching qc. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006695
train
v1
Sensor network script: Node: frost | code: hub | fields: lat, ts, unit, value Sensor: uv_index | fields: unit, qc, lat, value Task: Get value from frost where type appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006696
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: level, unit, ts, lat Sensor: temperature | fields: qc, type, reading, ts Task: Retrieve lon from snow_depth that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_006697
train
v3
Sensor network script: Node: humidity | code: mst | fields: ts, reading, qc, lat Sensor: uv_index | fields: unit, lat, level, qc Task: Fetch lat from humidity where depth is greater than the total of value in uv_index for matching unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006698
train
v3
Sensor network script: Node: visibility | code: clr | fields: lon, value, lat, type Sensor: rainfall | fields: depth, value, reading, qc Task: Retrieve level from visibility with reading above the SUM(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_006699
train