variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: air_quality | code: mst | fields: depth, value, type, lon Sensor: frost | fields: lat, qc, depth, lon Task: Fetch level from air_quality where value is greater than the minimum of reading in frost for matching type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("frost", code="frs"), match="type"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070800
train
v3
Sensor network script: Node: lightning | code: gst | fields: value, unit, depth, type Sensor: snow_depth | fields: depth, value, unit, type Task: Get reading from lightning where reading exceeds the count of depth from snow_depth for the same depth. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="depth"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070801
train
v3
Sensor network script: Node: evaporation | code: gst | fields: lat, reading, qc, ts Sensor: cloud_cover | fields: value, ts, reading, level Task: Fetch lon from evaporation where reading is greater than the total of value in cloud_cover for matching unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070802
train
v2
Sensor network script: Node: uv_index | code: hub | fields: lon, reading, level, lat Sensor: humidity | fields: reading, lat, type, ts Task: Retrieve lon from uv_index that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070803
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: lat, value, reading, unit Sensor: visibility | fields: type, lat, level, depth Task: Retrieve depth from cloud_cover that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070804
train
v3
Sensor network script: Node: rainfall | code: hub | fields: type, unit, value, lon Sensor: sunlight | fields: qc, unit, lon, reading Task: Retrieve value from rainfall with depth above the SUM(depth) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070805
train
v1
Sensor network script: Node: lightning | code: gst | fields: type, lat, depth, lon Sensor: turbidity | fields: ts, level, value, lon Task: Get level from lightning where qc appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070806
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: qc, ts, lat, reading Sensor: turbidity | fields: level, lat, unit, depth Task: Get depth from cloud_cover where type appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070807
train
v3
Sensor network script: Node: turbidity | code: ref | fields: unit, reading, type, lat Sensor: humidity | fields: reading, depth, unit, type Task: Get lat from turbidity where value exceeds the total depth from humidity for the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070808
train
v2
Sensor network script: Node: frost | code: stn | fields: type, qc, value, reading Sensor: pressure | fields: level, ts, lat, qc Task: Get value from frost where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070809
train
v1
Sensor network script: Node: turbidity | code: ref | fields: lon, lat, type, depth Sensor: lightning | fields: value, reading, ts, lat Task: Retrieve lat from turbidity whose type is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070810
train
v2
Sensor network script: Node: rainfall | code: ref | fields: reading, ts, value, level Sensor: cloud_cover | fields: depth, value, ts, level Task: Retrieve lat from rainfall that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070811
train
v3
Sensor network script: Node: turbidity | code: stn | fields: lon, lat, unit, qc Sensor: wind_speed | fields: reading, unit, lon, type Task: Fetch lat from turbidity where value is greater than the minimum of value in wind_speed for matching unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070812
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: lat, reading, depth, ts Sensor: temperature | fields: lon, ts, value, reading Task: Fetch lon from cloud_cover that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070813
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: type, depth, lat, qc Sensor: evaporation | fields: type, unit, qc, reading Task: Get value from snow_depth where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070814
train
v2
Sensor network script: Node: turbidity | code: thr | fields: lon, value, level, unit Sensor: snow_depth | fields: level, reading, qc, depth Task: Get value from turbidity where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070815
train
v3
Sensor network script: Node: pressure | code: stn | fields: depth, value, ts, qc Sensor: rainfall | fields: level, lat, unit, ts Task: Fetch lon from pressure where value is greater than the maximum of depth in rainfall for matching ts. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070816
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: level, value, unit, type Sensor: snow_depth | fields: reading, ts, level, depth Task: Get lon from wind_speed where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070817
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: lat, type, level, lon Sensor: drought_index | fields: depth, ts, value, unit Task: Retrieve lon from wind_speed with reading above the MAX(reading) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070818
train
v3
Sensor network script: Node: evaporation | code: mst | fields: qc, ts, type, lon Sensor: rainfall | fields: reading, level, type, ts Task: Retrieve lon from evaporation with depth above the MAX(depth) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070819
train
v2
Sensor network script: Node: turbidity | code: prt | fields: value, lat, level, qc Sensor: snow_depth | fields: type, lat, reading, depth Task: Retrieve reading from turbidity that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070820
train
v2
Sensor network script: Node: sunlight | code: ref | fields: type, unit, lat, reading Sensor: evaporation | fields: qc, depth, lon, level Task: Get lon from sunlight where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070821
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: value, type, lat, ts Sensor: evaporation | fields: lon, reading, unit, lat Task: Retrieve depth from cloud_cover that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070822
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: qc, lat, depth, level Sensor: uv_index | fields: depth, qc, level, value Task: Fetch lon from cloud_cover that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070823
train
v3
Sensor network script: Node: pressure | code: stn | fields: reading, unit, depth, lat Sensor: lightning | fields: level, unit, lat, reading Task: Retrieve reading from pressure with depth above the MAX(reading) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070824
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: lat, level, ts, qc Sensor: uv_index | fields: depth, level, ts, lon Task: Fetch reading from soil_moisture where ts exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="ts", 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": "ts", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070825
train
v3
Sensor network script: Node: evaporation | code: ref | fields: reading, qc, unit, value Sensor: lightning | fields: lat, lon, qc, unit Task: Fetch value from evaporation where depth is greater than the total of reading in lightning for matching type. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070826
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: ts, type, value, unit Sensor: cloud_cover | fields: depth, type, unit, lon Task: Get depth from wind_speed where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070827
train
v3
Sensor network script: Node: drought_index | code: hub | fields: unit, level, depth, lon Sensor: rainfall | fields: depth, level, ts, unit Task: Get lon from drought_index where value exceeds the total reading from rainfall for the same depth. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070828
train
v2
Sensor network script: Node: air_quality | code: thr | fields: depth, lat, value, qc Sensor: snow_depth | fields: unit, type, lon, qc Task: Get lon from air_quality where a corresponding entry exists in snow_depth with the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070829
train
v3
Sensor network script: Node: pressure | code: mst | fields: lat, level, unit, depth Sensor: drought_index | fields: value, level, type, ts Task: Get lat from pressure where reading exceeds the maximum depth from drought_index for the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070830
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: lon, type, level, qc Sensor: turbidity | fields: level, value, type, lat Task: Get lat from soil_moisture where ts appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070831
train
v1
Sensor network script: Node: sunlight | code: thr | fields: lat, unit, ts, depth Sensor: uv_index | fields: depth, value, level, lon Task: Fetch depth from sunlight where ts exists in uv_index sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070832
train
v1
Sensor network script: Node: frost | code: hub | fields: reading, lat, level, value Sensor: evaporation | fields: lon, level, lat, qc Task: Fetch lon from frost where type exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070833
train
v1
Sensor network script: Node: uv_index | code: thr | fields: level, type, lat, qc Sensor: sunlight | fields: type, lat, lon, qc Task: Fetch level from uv_index where unit exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070834
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: level, unit, lon, lat Sensor: turbidity | fields: qc, ts, value, lon Task: Retrieve level from snow_depth whose unit is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070835
train
v1
Sensor network script: Node: frost | code: ref | fields: unit, type, lon, depth Sensor: rainfall | fields: ts, value, level, reading Task: Fetch lat from frost where depth exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070836
train
v2
Sensor network script: Node: evaporation | code: hub | fields: value, reading, lon, qc Sensor: pressure | fields: unit, depth, value, level Task: Get value from evaporation where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070837
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: lat, unit, type, level Sensor: turbidity | fields: lon, ts, value, reading Task: Get reading from wind_speed where value exceeds the average reading from turbidity for the same type. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070838
train
v3
Sensor network script: Node: sunlight | code: prt | fields: level, ts, reading, type Sensor: temperature | fields: value, depth, level, lat Task: Fetch lon from sunlight where value is greater than the average of depth in temperature for matching ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070839
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: unit, reading, lat, ts Sensor: soil_moisture | fields: unit, value, level, depth Task: Get lat from wind_speed where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070840
train
v1
Sensor network script: Node: drought_index | code: mst | fields: lat, reading, depth, type Sensor: sunlight | fields: unit, qc, value, lat Task: Retrieve lat from drought_index whose ts is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070841
train
v3
Sensor network script: Node: temperature | code: prt | fields: reading, lat, depth, qc Sensor: evaporation | fields: qc, depth, level, reading Task: Fetch lon from temperature where reading is greater than the count of of depth in evaporation for matching ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070842
train
v1
Sensor network script: Node: lightning | code: ref | fields: value, qc, ts, lon Sensor: pressure | fields: type, ts, reading, level Task: Get reading from lightning where qc appears in pressure readings with matching type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070843
train
v1
Sensor network script: Node: humidity | code: thr | fields: lon, depth, level, lat Sensor: rainfall | fields: reading, value, ts, lat Task: Retrieve lat from humidity whose unit is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070844
train
v2
Sensor network script: Node: humidity | code: thr | fields: depth, type, ts, reading Sensor: visibility | fields: reading, qc, type, lat Task: Retrieve lon from humidity that have at least one matching reading in visibility sharing the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070845
train
v1
Sensor network script: Node: pressure | code: gst | fields: value, type, depth, lon Sensor: rainfall | fields: ts, level, lon, unit Task: Fetch lon from pressure where unit exists in rainfall sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070846
train
v1
Sensor network script: Node: humidity | code: ref | fields: ts, lon, unit, reading Sensor: pressure | fields: ts, value, lon, level Task: Retrieve lat from humidity whose qc is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070847
train
v1
Sensor network script: Node: cloud_cover | code: stn | fields: lon, value, lat, ts Sensor: frost | fields: depth, qc, lon, type Task: Get reading from cloud_cover where qc appears in frost readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070848
train
v3
Sensor network script: Node: rainfall | code: hub | fields: unit, depth, reading, level Sensor: turbidity | fields: lat, value, unit, qc Task: Retrieve lat from rainfall with depth above the AVG(value) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070849
train
v2
Sensor network script: Node: frost | code: gst | fields: reading, type, ts, qc Sensor: pressure | fields: reading, value, lon, qc Task: Retrieve reading from frost that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070850
train
v2
Sensor network script: Node: turbidity | code: prt | fields: value, unit, lon, type Sensor: rainfall | fields: level, unit, lat, reading Task: Retrieve lon from turbidity that have at least one matching reading in rainfall sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070851
train
v2
Sensor network script: Node: rainfall | code: clr | fields: unit, ts, qc, level Sensor: pressure | fields: reading, depth, value, type Task: Get level from rainfall where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070852
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: lon, ts, value, reading Sensor: pressure | fields: type, ts, lon, qc Task: Get value from snow_depth where unit appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070853
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: ts, level, unit, reading Sensor: evaporation | fields: reading, depth, lat, lon Task: Retrieve value from cloud_cover whose unit is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070854
train
v2
Sensor network script: Node: lightning | code: thr | fields: value, reading, lon, depth Sensor: evaporation | fields: unit, depth, reading, lon Task: Get depth from lightning where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070855
train
v1
Sensor network script: Node: visibility | code: clr | fields: qc, reading, level, lat Sensor: soil_moisture | fields: type, unit, level, value Task: Retrieve reading from visibility whose qc is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070856
train
v3
Sensor network script: Node: dew_point | code: mst | fields: lon, reading, depth, qc Sensor: temperature | fields: reading, ts, lat, value Task: Get reading from dew_point where reading exceeds the average depth from temperature for the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070857
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: value, ts, type, lon Sensor: pressure | fields: depth, lat, qc, value Task: Get level from wind_speed where unit appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070858
train
v2
Sensor network script: Node: lightning | code: stn | fields: qc, value, level, type Sensor: uv_index | fields: lon, type, ts, depth Task: Fetch depth from lightning that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070859
train
v1
Sensor network script: Node: dew_point | code: ref | fields: depth, lon, lat, level Sensor: rainfall | fields: ts, lat, type, unit Task: Get level from dew_point where ts appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070860
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: qc, reading, type, value Sensor: visibility | fields: type, level, ts, unit Task: Retrieve lon from soil_moisture with depth above the MAX(reading) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="unit"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070861
train
v1
Sensor network script: Node: rainfall | code: clr | fields: value, level, ts, lon Sensor: wind_speed | fields: lat, unit, depth, ts Task: Fetch level from rainfall where unit exists in wind_speed sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070862
train
v3
Sensor network script: Node: lightning | code: thr | fields: qc, value, lon, level Sensor: sunlight | fields: depth, value, ts, qc Task: Fetch level from lightning where depth is greater than the count of of depth in sunlight for matching ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070863
train
v1
Sensor network script: Node: rainfall | code: clr | fields: value, level, unit, qc Sensor: sunlight | fields: reading, type, level, lat Task: Fetch value from rainfall where type exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070864
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: type, unit, lon, reading Sensor: frost | fields: ts, reading, type, lat Task: Fetch reading from wind_speed that have at least one corresponding frost measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070865
train
v1
Sensor network script: Node: pressure | code: clr | fields: qc, unit, ts, depth Sensor: cloud_cover | fields: level, qc, depth, type Task: Fetch reading from pressure where unit exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070866
train
v2
Sensor network script: Node: visibility | code: mst | fields: type, lon, depth, level Sensor: frost | fields: qc, lat, ts, level Task: Retrieve lon from visibility that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070867
train
v1
Sensor network script: Node: lightning | code: hub | fields: type, ts, value, qc Sensor: pressure | fields: reading, lat, qc, value Task: Get reading from lightning where type appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070868
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: unit, lat, level, depth Sensor: cloud_cover | fields: reading, qc, value, ts Task: Fetch depth from wind_speed that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070869
train
v1
Sensor network script: Node: pressure | code: clr | fields: reading, depth, unit, ts Sensor: sunlight | fields: lat, value, reading, depth Task: Retrieve lon from pressure whose type is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070870
train
v1
Sensor network script: Node: air_quality | code: prt | fields: lat, depth, unit, lon Sensor: lightning | fields: level, unit, lon, depth Task: Get lat from air_quality where qc appears in lightning readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070871
train
v3
Sensor network script: Node: evaporation | code: mst | fields: qc, type, lon, value Sensor: snow_depth | fields: lat, reading, value, type Task: Fetch level from evaporation where depth is greater than the minimum of reading in snow_depth for matching type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070872
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: lat, unit, ts, qc Sensor: frost | fields: level, ts, reading, depth Task: Fetch reading from wind_speed where reading is greater than the total of value in frost for matching ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="ts"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070873
train
v1
Sensor network script: Node: turbidity | code: gst | fields: lat, ts, reading, level Sensor: air_quality | fields: depth, value, lat, lon Task: Retrieve level from turbidity whose unit is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070874
train
v1
Sensor network script: Node: air_quality | code: stn | fields: type, level, reading, lat Sensor: cloud_cover | fields: lon, level, type, value Task: Retrieve value from air_quality whose type is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070875
train
v3
Sensor network script: Node: frost | code: stn | fields: value, ts, lon, reading Sensor: air_quality | fields: ts, qc, value, lat Task: Get lat from frost where depth exceeds the total reading from air_quality for the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070876
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: ts, depth, type, lon Sensor: sunlight | fields: type, level, unit, ts Task: Get value from cloud_cover where a corresponding entry exists in sunlight with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070877
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: ts, type, unit, depth Sensor: humidity | fields: level, lat, lon, reading Task: Retrieve depth from snow_depth with value above the SUM(depth) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070878
train
v2
Sensor network script: Node: lightning | code: thr | fields: lon, lat, type, qc Sensor: snow_depth | fields: type, qc, lon, depth Task: Get reading from lightning where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070879
train
v3
Sensor network script: Node: drought_index | code: gst | fields: depth, ts, unit, reading Sensor: soil_moisture | fields: qc, lat, lon, ts Task: Get lon from drought_index where reading exceeds the minimum reading from soil_moisture for the same type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070880
train
v3
Sensor network script: Node: sunlight | code: prt | fields: depth, unit, value, qc Sensor: visibility | fields: reading, qc, level, unit Task: Get level from sunlight where reading exceeds the maximum value from visibility for the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070881
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: qc, lon, depth, level Sensor: cloud_cover | fields: type, value, depth, unit Task: Retrieve reading from soil_moisture that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070882
train
v2
Sensor network script: Node: lightning | code: clr | fields: type, ts, depth, level Sensor: dew_point | fields: unit, lat, ts, lon Task: Get lat from lightning where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070883
train
v2
Sensor network script: Node: evaporation | code: hub | fields: value, lat, lon, reading Sensor: drought_index | fields: unit, reading, type, ts Task: Get lon from evaporation where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070884
train
v3
Sensor network script: Node: uv_index | code: prt | fields: depth, reading, qc, unit Sensor: rainfall | fields: depth, lat, ts, qc Task: Get level from uv_index where value exceeds the maximum depth from rainfall for the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070885
train
v1
Sensor network script: Node: temperature | code: prt | fields: value, depth, level, type Sensor: visibility | fields: lon, lat, level, qc Task: Retrieve lon from temperature whose qc is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070886
train
v2
Sensor network script: Node: temperature | code: thr | fields: reading, level, ts, lat Sensor: sunlight | fields: value, qc, lat, lon Task: Get value from temperature where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "temperature", "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_070887
train
v1
Sensor network script: Node: humidity | code: clr | fields: depth, qc, unit, level Sensor: rainfall | fields: lon, lat, ts, type Task: Get reading from humidity where ts appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070888
train
v3
Sensor network script: Node: frost | code: clr | fields: level, lat, lon, value Sensor: air_quality | fields: depth, qc, unit, value Task: Fetch depth from frost where reading is greater than the total of value in air_quality for matching depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070889
train
v3
Sensor network script: Node: evaporation | code: thr | fields: type, unit, qc, reading Sensor: lightning | fields: depth, lon, ts, unit Task: Retrieve reading from evaporation with value above the AVG(depth) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070890
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: value, type, lon, lat Sensor: frost | fields: lon, ts, depth, reading Task: Get depth from cloud_cover where qc appears in frost readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070891
train
v1
Sensor network script: Node: evaporation | code: thr | fields: type, value, lon, level Sensor: frost | fields: depth, reading, ts, level Task: Fetch value from evaporation where unit exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070892
train
v1
Sensor network script: Node: air_quality | code: mst | fields: reading, lat, ts, lon Sensor: uv_index | fields: unit, level, value, depth Task: Get level from air_quality where ts appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "level", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070893
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: qc, level, ts, lat Sensor: drought_index | fields: lat, qc, type, unit Task: Get level from soil_moisture where value exceeds the average value from drought_index for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070894
train
v1
Sensor network script: Node: frost | code: mst | fields: qc, lon, ts, unit Sensor: evaporation | fields: level, ts, unit, reading Task: Fetch lat from frost where unit exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070895
train
v3
Sensor network script: Node: humidity | code: gst | fields: unit, type, lat, lon Sensor: drought_index | fields: value, lon, ts, type Task: Retrieve level from humidity with value above the AVG(depth) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070896
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: type, lon, reading, depth Sensor: dew_point | fields: unit, lon, value, reading Task: Retrieve depth from wind_speed whose depth is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070897
train
v1
Sensor network script: Node: humidity | code: ref | fields: level, value, depth, unit Sensor: pressure | fields: lat, qc, depth, unit Task: Retrieve level from humidity whose unit is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_070898
train
v3
Sensor network script: Node: visibility | code: stn | fields: type, qc, lat, depth Sensor: wind_speed | fields: reading, type, unit, value Task: Retrieve lat from visibility with value above the SUM(depth) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_070899
train