variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: humidity | code: mst | fields: level, reading, lon, type Sensor: drought_index | fields: unit, value, reading, lon Task: Get reading from humidity where unit appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026100
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: value, lon, ts, unit Sensor: air_quality | fields: qc, ts, unit, reading Task: Get value from wind_speed where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026101
train
v3
Sensor network script: Node: air_quality | code: stn | fields: ts, lon, type, qc Sensor: evaporation | fields: level, lat, type, reading Task: Retrieve value from air_quality with value above the MAX(depth) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026102
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: ts, value, reading, lat Sensor: dew_point | fields: reading, ts, level, lon Task: Get value from soil_moisture where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026103
train
v1
Sensor network script: Node: pressure | code: prt | fields: lat, qc, unit, reading Sensor: dew_point | fields: lon, level, depth, unit Task: Retrieve lat from pressure whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026104
train
v1
Sensor network script: Node: air_quality | code: thr | fields: level, unit, depth, lon Sensor: rainfall | fields: ts, type, unit, qc Task: Fetch lon from air_quality where ts exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026105
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: lat, level, ts, qc Sensor: snow_depth | fields: level, lon, qc, ts Task: Get value from cloud_cover where a corresponding entry exists in snow_depth with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026106
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: depth, value, level, ts Sensor: sunlight | fields: reading, lat, lon, type Task: Get value from cloud_cover where depth exceeds the total value from sunlight for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="qc"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026107
train
v3
Sensor network script: Node: sunlight | code: gst | fields: unit, lon, type, lat Sensor: uv_index | fields: qc, level, lat, reading Task: Fetch level from sunlight where reading is greater than the average of value in uv_index for matching type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026108
train
v1
Sensor network script: Node: turbidity | code: mst | fields: lat, type, value, qc Sensor: evaporation | fields: lon, unit, ts, reading Task: Retrieve depth from turbidity whose qc is found in evaporation records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026109
train
v1
Sensor network script: Node: dew_point | code: prt | fields: type, lon, lat, ts Sensor: frost | fields: unit, reading, lon, ts Task: Fetch lon from dew_point where unit exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026110
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: lon, reading, lat, depth Sensor: temperature | fields: lat, unit, ts, type Task: Retrieve level from snow_depth whose type is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026111
train
v2
Sensor network script: Node: frost | code: hub | fields: qc, ts, lon, type Sensor: wind_speed | fields: lon, unit, reading, qc Task: Retrieve value from frost that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026112
train
v2
Sensor network script: Node: air_quality | code: stn | fields: type, qc, ts, lon Sensor: turbidity | fields: value, lon, depth, qc Task: Fetch reading from air_quality that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026113
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: lon, lat, value, unit Sensor: humidity | fields: depth, value, qc, unit Task: Get value from cloud_cover where depth appears in humidity readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026114
train
v2
Sensor network script: Node: visibility | code: thr | fields: lon, lat, level, type Sensor: frost | fields: lat, level, qc, unit Task: Get lon from visibility where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026115
train
v1
Sensor network script: Node: humidity | code: clr | fields: lat, ts, reading, qc Sensor: temperature | fields: reading, unit, level, ts Task: Fetch level from humidity where type exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026116
train
v1
Sensor network script: Node: sunlight | code: prt | fields: type, value, reading, unit Sensor: soil_moisture | fields: level, lat, lon, value Task: Fetch lat from sunlight where unit exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026117
train
v1
Sensor network script: Node: lightning | code: thr | fields: value, qc, type, depth Sensor: wind_speed | fields: qc, level, reading, unit Task: Retrieve lat from lightning whose unit is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026118
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: qc, level, unit, lon Sensor: cloud_cover | fields: qc, lat, ts, depth Task: Fetch lon from soil_moisture where depth exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026119
train
v3
Sensor network script: Node: evaporation | code: hub | fields: type, reading, unit, lat Sensor: frost | fields: value, lon, reading, unit Task: Get level from evaporation where value exceeds the total reading from frost for the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026120
train
v2
Sensor network script: Node: lightning | code: ref | fields: qc, type, level, reading Sensor: turbidity | fields: qc, level, unit, reading Task: Fetch value from lightning that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026121
train
v1
Sensor network script: Node: lightning | code: hub | fields: reading, type, qc, lon Sensor: uv_index | fields: reading, lat, depth, type Task: Fetch level from lightning where type exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026122
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: reading, level, lat, ts Sensor: pressure | fields: unit, depth, level, qc Task: Retrieve level from soil_moisture with value above the SUM(reading) of pressure readings sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026123
train
v3
Sensor network script: Node: evaporation | code: thr | fields: reading, lat, ts, depth Sensor: sunlight | fields: level, unit, value, depth Task: Get level from evaporation where depth exceeds the maximum reading from sunlight for the same depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026124
train
v3
Sensor network script: Node: visibility | code: ref | fields: type, level, reading, depth Sensor: snow_depth | fields: unit, lon, level, qc Task: Retrieve lon from visibility with depth above the MIN(reading) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026125
train
v3
Sensor network script: Node: dew_point | code: prt | fields: qc, reading, level, depth Sensor: lightning | fields: ts, qc, depth, lat Task: Retrieve value from dew_point with depth above the MIN(depth) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026126
train
v1
Sensor network script: Node: pressure | code: thr | fields: type, unit, lat, ts Sensor: humidity | fields: type, ts, qc, reading Task: Retrieve lat from pressure whose ts is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026127
train
v1
Sensor network script: Node: turbidity | code: thr | fields: reading, unit, lat, lon Sensor: sunlight | fields: value, ts, reading, type Task: Retrieve value from turbidity whose depth is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026128
train
v2
Sensor network script: Node: temperature | code: gst | fields: qc, type, value, lon Sensor: humidity | fields: lon, unit, level, type Task: Retrieve value from temperature that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026129
train
v3
Sensor network script: Node: temperature | code: clr | fields: type, level, reading, lat Sensor: dew_point | fields: qc, lon, value, ts Task: Retrieve lon from temperature with value above the COUNT(reading) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026130
train
v2
Sensor network script: Node: uv_index | code: stn | fields: unit, value, type, qc Sensor: dew_point | fields: value, level, unit, lon Task: Fetch lon from uv_index that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026131
train
v3
Sensor network script: Node: sunlight | code: gst | fields: depth, lon, type, ts Sensor: cloud_cover | fields: value, lon, type, ts Task: Fetch value from sunlight where reading is greater than the average of depth in cloud_cover for matching ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026132
train
v3
Sensor network script: Node: evaporation | code: mst | fields: qc, lon, reading, unit Sensor: visibility | fields: depth, reading, ts, type Task: Get reading from evaporation where reading exceeds the total depth from visibility for the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026133
train
v1
Sensor network script: Node: dew_point | code: gst | fields: level, type, lon, value Sensor: air_quality | fields: qc, type, lat, unit Task: Get lat from dew_point where qc appears in air_quality readings with matching depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026134
train
v1
Sensor network script: Node: uv_index | code: stn | fields: value, lat, lon, type Sensor: dew_point | fields: lon, qc, value, type Task: Retrieve value from uv_index whose qc is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026135
train
v1
Sensor network script: Node: evaporation | code: mst | fields: type, lon, reading, unit Sensor: soil_moisture | fields: level, lat, depth, value Task: Fetch reading from evaporation where type exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026136
train
v2
Sensor network script: Node: temperature | code: clr | fields: level, lon, unit, qc Sensor: pressure | fields: value, depth, qc, unit Task: Get lon from temperature where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026137
train
v1
Sensor network script: Node: dew_point | code: thr | fields: type, unit, qc, lon Sensor: uv_index | fields: reading, ts, level, depth Task: Get reading from dew_point where qc appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026138
train
v2
Sensor network script: Node: frost | code: gst | fields: value, type, qc, lat Sensor: drought_index | fields: reading, qc, lon, ts Task: Fetch value from frost that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026139
train
v3
Sensor network script: Node: rainfall | code: prt | fields: lon, lat, ts, value Sensor: frost | fields: type, qc, depth, reading Task: Get level from rainfall where depth exceeds the count of depth from frost for the same ts. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026140
train
v1
Sensor network script: Node: drought_index | code: stn | fields: lat, depth, lon, level Sensor: pressure | fields: lat, unit, reading, ts Task: Get lon from drought_index where depth appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026141
train
v2
Sensor network script: Node: turbidity | code: gst | fields: depth, reading, lon, value Sensor: visibility | fields: lon, type, value, ts Task: Fetch depth from turbidity that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026142
train
v3
Sensor network script: Node: lightning | code: hub | fields: type, level, reading, ts Sensor: air_quality | fields: level, lat, reading, qc Task: Fetch value from lightning where value is greater than the minimum of depth in air_quality for matching depth. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026143
train
v3
Sensor network script: Node: sunlight | code: stn | fields: lat, reading, ts, value Sensor: evaporation | fields: level, qc, lat, ts Task: Retrieve level from sunlight with value above the SUM(value) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026144
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: level, reading, lon, qc Sensor: uv_index | fields: ts, lat, level, unit Task: Get depth from soil_moisture where reading exceeds the maximum value from uv_index for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026145
train
v2
Sensor network script: Node: air_quality | code: prt | fields: type, reading, lon, unit Sensor: rainfall | fields: lat, depth, lon, level Task: Get level from air_quality where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026146
train
v3
Sensor network script: Node: frost | code: stn | fields: ts, type, lon, qc Sensor: humidity | fields: lon, ts, reading, type Task: Retrieve lat from frost with depth above the SUM(value) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026147
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: unit, depth, value, ts Sensor: lightning | fields: reading, type, qc, lat Task: Get depth from soil_moisture where a corresponding entry exists in lightning with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026148
train
v3
Sensor network script: Node: visibility | code: clr | fields: reading, qc, depth, lon Sensor: cloud_cover | fields: lat, lon, type, value Task: Get lon from visibility where reading exceeds the total value from cloud_cover for the same ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026149
train
v2
Sensor network script: Node: visibility | code: ref | fields: lat, qc, depth, reading Sensor: soil_moisture | fields: ts, depth, unit, lon Task: Fetch level from visibility that have at least one corresponding soil_moisture measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026150
train
v3
Sensor network script: Node: lightning | code: ref | fields: value, lon, unit, reading Sensor: snow_depth | fields: qc, lon, type, ts Task: Get lat from lightning where depth exceeds the total reading from snow_depth for the same type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "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_026151
train
v1
Sensor network script: Node: evaporation | code: hub | fields: lon, value, reading, type Sensor: turbidity | fields: lon, type, reading, value Task: Retrieve value from evaporation whose unit is found in turbidity records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026152
train
v1
Sensor network script: Node: visibility | code: thr | fields: ts, depth, reading, unit Sensor: pressure | fields: qc, reading, depth, lon Task: Retrieve depth from visibility whose ts is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026153
train
v3
Sensor network script: Node: turbidity | code: gst | fields: level, value, lon, reading Sensor: rainfall | fields: value, lon, type, qc Task: Get lon from turbidity where depth exceeds the count of depth from rainfall for the same qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026154
train
v3
Sensor network script: Node: sunlight | code: mst | fields: level, qc, value, reading Sensor: wind_speed | fields: lat, reading, lon, value Task: Retrieve lat from sunlight with value above the AVG(depth) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026155
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: qc, level, type, depth Sensor: drought_index | fields: reading, level, lon, qc Task: Fetch depth from cloud_cover that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026156
train
v2
Sensor network script: Node: drought_index | code: gst | fields: reading, qc, level, lon Sensor: uv_index | fields: value, lat, type, ts Task: Fetch lat from drought_index that have at least one corresponding uv_index measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026157
train
v2
Sensor network script: Node: turbidity | code: hub | fields: level, depth, type, ts Sensor: evaporation | fields: value, lat, depth, unit Task: Retrieve level from turbidity that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026158
train
v3
Sensor network script: Node: dew_point | code: hub | fields: value, lat, lon, reading Sensor: lightning | fields: lat, unit, value, depth Task: Get lat from dew_point where depth exceeds the average depth from lightning for the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026159
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: depth, value, qc, unit Sensor: pressure | fields: lon, level, lat, unit Task: Retrieve depth from soil_moisture whose type is found in pressure records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026160
train
v1
Sensor network script: Node: turbidity | code: clr | fields: value, reading, qc, unit Sensor: dew_point | fields: level, depth, type, unit Task: Fetch lon from turbidity where ts exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026161
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: unit, depth, reading, lon Sensor: air_quality | fields: ts, unit, type, qc Task: Fetch depth from snow_depth where qc exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026162
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: type, ts, level, reading Sensor: sunlight | fields: lon, depth, lat, reading Task: Retrieve value from snow_depth with reading above the AVG(depth) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026163
train
v2
Sensor network script: Node: drought_index | code: mst | fields: qc, level, depth, ts Sensor: snow_depth | fields: unit, lon, ts, type Task: Fetch level from drought_index that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026164
train
v3
Sensor network script: Node: turbidity | code: thr | fields: qc, ts, lat, level Sensor: drought_index | fields: qc, type, ts, depth Task: Get value from turbidity where depth exceeds the maximum reading from drought_index for the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026165
train
v2
Sensor network script: Node: air_quality | code: clr | fields: unit, depth, reading, lon Sensor: rainfall | fields: ts, lat, depth, reading Task: Retrieve lat from air_quality that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026166
train
v2
Sensor network script: Node: drought_index | code: prt | fields: reading, ts, lon, depth Sensor: lightning | fields: qc, level, lat, type Task: Fetch reading from drought_index that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026167
train
v1
Sensor network script: Node: temperature | code: gst | fields: reading, lon, level, ts Sensor: rainfall | fields: qc, reading, value, lat Task: Get depth from temperature where type appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026168
train
v1
Sensor network script: Node: pressure | code: mst | fields: unit, qc, level, lat Sensor: wind_speed | fields: lat, qc, level, reading Task: Get lon from pressure where depth appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026169
train
v2
Sensor network script: Node: sunlight | code: prt | fields: reading, unit, depth, level Sensor: rainfall | fields: type, value, depth, unit Task: Get depth from sunlight where a corresponding entry exists in rainfall with the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026170
train
v3
Sensor network script: Node: temperature | code: gst | fields: level, ts, reading, lat Sensor: air_quality | fields: reading, unit, depth, lat Task: Fetch reading from temperature where reading is greater than the count of of depth in air_quality for matching unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026171
train
v1
Sensor network script: Node: visibility | code: clr | fields: value, lat, ts, lon Sensor: turbidity | fields: type, level, reading, depth Task: Get reading from visibility where depth appears in turbidity readings with matching type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026172
train
v2
Sensor network script: Node: lightning | code: hub | fields: reading, type, depth, qc Sensor: evaporation | fields: reading, value, type, lat Task: Fetch depth from lightning that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026173
train
v3
Sensor network script: Node: humidity | code: thr | fields: type, depth, ts, reading Sensor: cloud_cover | fields: lon, unit, lat, value Task: Fetch value from humidity where value is greater than the count of of reading in cloud_cover for matching ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026174
train
v3
Sensor network script: Node: evaporation | code: thr | fields: ts, qc, type, reading Sensor: turbidity | fields: level, value, type, reading Task: Fetch value from evaporation where depth is greater than the minimum of depth in turbidity for matching depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026175
train
v3
Sensor network script: Node: pressure | code: mst | fields: qc, type, reading, unit Sensor: frost | fields: value, depth, reading, lon Task: Get depth from pressure where depth exceeds the maximum depth from frost for the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "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_026176
train
v3
Sensor network script: Node: evaporation | code: clr | fields: value, lon, qc, depth Sensor: humidity | fields: value, type, lon, reading Task: Retrieve reading from evaporation with reading above the MIN(value) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026177
train
v3
Sensor network script: Node: air_quality | code: thr | fields: value, type, level, lat Sensor: wind_speed | fields: depth, reading, unit, lat Task: Retrieve level from air_quality with depth above the COUNT(depth) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026178
train
v3
Sensor network script: Node: rainfall | code: stn | fields: lat, lon, level, unit Sensor: uv_index | fields: ts, lon, lat, unit Task: Get value from rainfall where reading exceeds the maximum value from uv_index for the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026179
train
v2
Sensor network script: Node: sunlight | code: mst | fields: unit, lat, reading, qc Sensor: air_quality | fields: depth, level, value, unit Task: Fetch level from sunlight that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026180
train
v1
Sensor network script: Node: frost | code: clr | fields: lat, lon, qc, level Sensor: humidity | fields: value, lat, unit, reading Task: Get lon from frost where depth appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026181
train
v2
Sensor network script: Node: lightning | code: ref | fields: reading, lat, value, ts Sensor: rainfall | fields: depth, type, unit, value Task: Fetch depth from lightning that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026182
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: level, reading, depth, qc Sensor: lightning | fields: lat, lon, qc, depth Task: Get lon from soil_moisture where depth appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026183
train
v3
Sensor network script: Node: frost | code: stn | fields: level, type, ts, qc Sensor: snow_depth | fields: value, qc, depth, lon Task: Fetch reading from frost where reading is greater than the average of depth in snow_depth for matching ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026184
train
v3
Sensor network script: Node: visibility | code: ref | fields: depth, reading, lat, ts Sensor: frost | fields: unit, level, lon, type Task: Fetch lat from visibility where value is greater than the count of of value in frost for matching qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="qc"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026185
train
v3
Sensor network script: Node: rainfall | code: clr | fields: qc, ts, unit, depth Sensor: cloud_cover | fields: ts, lat, lon, unit Task: Fetch value from rainfall where depth is greater than the count of of value in cloud_cover for matching qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026186
train
v1
Sensor network script: Node: visibility | code: mst | fields: depth, lon, ts, unit Sensor: frost | fields: value, depth, qc, lat Task: Fetch lon from visibility where ts exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026187
train
v2
Sensor network script: Node: dew_point | code: prt | fields: qc, type, unit, ts Sensor: pressure | fields: type, value, depth, ts Task: Get level from dew_point where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026188
train
v2
Sensor network script: Node: air_quality | code: ref | fields: type, qc, lat, reading Sensor: wind_speed | fields: lat, type, value, qc Task: Get value from air_quality where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026189
train
v3
Sensor network script: Node: dew_point | code: clr | fields: level, lon, qc, value Sensor: pressure | fields: reading, lon, depth, unit Task: Fetch value from dew_point where value is greater than the count of of reading in pressure for matching depth. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026190
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: type, reading, qc, lat Sensor: air_quality | fields: ts, reading, lon, qc Task: Fetch lat from snow_depth where depth exists in air_quality sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026191
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: unit, value, type, ts Sensor: snow_depth | fields: unit, lon, lat, reading Task: Get level from soil_moisture where reading exceeds the total reading from snow_depth for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026192
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: lat, lon, type, unit Sensor: uv_index | fields: lon, level, depth, unit Task: Retrieve depth from cloud_cover with reading above the MAX(value) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026193
train
v1
Sensor network script: Node: pressure | code: prt | fields: depth, lat, qc, level Sensor: lightning | fields: type, ts, depth, qc Task: Get lon from pressure where qc appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026194
train
v1
Sensor network script: Node: sunlight | code: stn | fields: value, unit, reading, qc Sensor: uv_index | fields: ts, qc, reading, depth Task: Retrieve value from sunlight whose unit is found in uv_index records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026195
train
v3
Sensor network script: Node: visibility | code: hub | fields: qc, unit, lon, value Sensor: lightning | fields: qc, lat, depth, type Task: Retrieve value from visibility with depth above the AVG(reading) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026196
train
v1
Sensor network script: Node: evaporation | code: gst | fields: qc, unit, depth, value Sensor: uv_index | fields: level, type, lon, depth Task: Get lon from evaporation where unit appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026197
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: qc, value, lon, lat Sensor: uv_index | fields: type, qc, unit, value Task: Get value from snow_depth where qc appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_026198
train
v1
Sensor network script: Node: visibility | code: stn | fields: level, type, depth, reading Sensor: temperature | fields: level, qc, ts, value Task: Get lon from visibility where depth appears in temperature readings with matching type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_026199
train