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: air_quality | code: mst | fields: unit, depth, reading, qc Sensor: uv_index | fields: depth, unit, reading, lon Task: Get lat from air_quality where unit appears in uv_index readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="type", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065100
train
v1
Sensor network script: Node: evaporation | code: gst | fields: reading, qc, ts, lon Sensor: pressure | fields: depth, lon, reading, lat Task: Get reading from evaporation where qc appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065101
train
v3
Sensor network script: Node: humidity | code: ref | fields: lat, qc, reading, level Sensor: uv_index | fields: lat, level, type, qc Task: Retrieve lon from humidity with value above the AVG(reading) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065102
train
v3
Sensor network script: Node: visibility | code: ref | fields: lat, unit, depth, lon Sensor: pressure | fields: qc, reading, type, lon Task: Get depth from visibility where value exceeds the average depth from pressure for the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065103
train
v2
Sensor network script: Node: sunlight | code: hub | fields: ts, qc, level, depth Sensor: snow_depth | fields: lat, type, ts, lon Task: Fetch level from sunlight that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065104
train
v3
Sensor network script: Node: frost | code: ref | fields: type, level, ts, lon Sensor: dew_point | fields: depth, ts, unit, type Task: Get reading from frost where value exceeds the total depth from dew_point for the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065105
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: qc, value, lon, reading Sensor: soil_moisture | fields: level, depth, type, value Task: Retrieve depth from cloud_cover that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065106
train
v1
Sensor network script: Node: dew_point | code: stn | fields: value, depth, type, ts Sensor: humidity | fields: depth, ts, level, type Task: Get level from dew_point where unit appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065107
train
v3
Sensor network script: Node: evaporation | code: hub | fields: unit, qc, type, level Sensor: snow_depth | fields: lat, depth, ts, level Task: Get lat from evaporation where reading exceeds the count of reading from snow_depth for the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065108
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: unit, depth, lon, qc Sensor: evaporation | fields: lon, qc, type, value Task: Get reading from wind_speed where reading exceeds the average depth from evaporation for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065109
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: level, unit, qc, depth Sensor: cloud_cover | fields: reading, value, lat, lon Task: Get depth from soil_moisture where value exceeds the total depth from cloud_cover for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065110
train
v2
Sensor network script: Node: temperature | code: hub | fields: unit, level, lon, lat Sensor: frost | fields: reading, lon, ts, depth Task: Retrieve depth from temperature that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065111
train
v1
Sensor network script: Node: evaporation | code: stn | fields: qc, unit, type, value Sensor: soil_moisture | fields: value, lat, qc, ts Task: Retrieve depth from evaporation whose ts is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065112
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: lon, qc, depth, type Sensor: wind_speed | fields: type, lon, depth, qc Task: Get depth from soil_moisture where depth exceeds the count of depth from wind_speed for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065113
train
v1
Sensor network script: Node: uv_index | code: mst | fields: value, lat, reading, qc Sensor: wind_speed | fields: type, value, reading, level Task: Fetch lat from uv_index where unit exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065114
train
v1
Sensor network script: Node: visibility | code: hub | fields: unit, qc, value, type Sensor: snow_depth | fields: level, reading, unit, type Task: Get depth from visibility where ts appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065115
train
v1
Sensor network script: Node: sunlight | code: prt | fields: type, unit, ts, lat Sensor: temperature | fields: reading, type, lon, ts Task: Retrieve depth from sunlight whose unit is found in temperature records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065116
train
v3
Sensor network script: Node: pressure | code: prt | fields: lat, reading, value, level Sensor: wind_speed | fields: value, reading, ts, type Task: Fetch lon from pressure where reading is greater than the average of depth in wind_speed for matching depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065117
train
v2
Sensor network script: Node: evaporation | code: hub | fields: level, depth, value, unit Sensor: lightning | fields: lat, level, type, ts Task: Get level from evaporation where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065118
train
v2
Sensor network script: Node: rainfall | code: hub | fields: type, reading, level, qc Sensor: lightning | fields: lon, value, ts, depth Task: Get lon from rainfall where a corresponding entry exists in lightning with the same type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065119
train
v3
Sensor network script: Node: humidity | code: stn | fields: lon, qc, ts, level Sensor: cloud_cover | fields: level, type, depth, lon Task: Fetch lat from humidity where value is greater than the average of value in cloud_cover for matching qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065120
train
v1
Sensor network script: Node: humidity | code: hub | fields: level, unit, value, type Sensor: temperature | fields: ts, depth, lon, lat Task: Fetch lon from humidity where type exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065121
train
v1
Sensor network script: Node: cloud_cover | code: clr | fields: lon, value, ts, depth Sensor: humidity | fields: level, unit, value, ts Task: Retrieve depth from cloud_cover whose unit is found in humidity records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065122
train
v2
Sensor network script: Node: uv_index | code: mst | fields: lat, type, level, ts Sensor: frost | fields: lon, unit, ts, depth Task: Retrieve value from uv_index that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065123
train
v2
Sensor network script: Node: visibility | code: thr | fields: value, reading, unit, type Sensor: soil_moisture | fields: ts, lat, level, lon Task: Retrieve level from visibility that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065124
train
v3
Sensor network script: Node: drought_index | code: stn | fields: unit, depth, reading, lat Sensor: sunlight | fields: lat, qc, value, depth Task: Get level from drought_index where value exceeds the average reading from sunlight for the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065125
train
v1
Sensor network script: Node: drought_index | code: clr | fields: depth, reading, type, ts Sensor: wind_speed | fields: value, qc, reading, depth Task: Retrieve lat from drought_index whose unit is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065126
train
v3
Sensor network script: Node: rainfall | code: mst | fields: ts, value, unit, lon Sensor: dew_point | fields: type, level, reading, value Task: Get level from rainfall where value exceeds the minimum depth from dew_point for the same ts. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065127
train
v2
Sensor network script: Node: sunlight | code: mst | fields: qc, value, unit, lat Sensor: soil_moisture | fields: reading, qc, lon, unit Task: Get reading from sunlight where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065128
train
v1
Sensor network script: Node: pressure | code: mst | fields: type, lat, value, qc Sensor: humidity | fields: ts, lon, unit, depth Task: Get lat from pressure where qc appears in humidity readings with matching type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065129
train
v2
Sensor network script: Node: evaporation | code: thr | fields: qc, value, lat, unit Sensor: drought_index | fields: qc, value, reading, level Task: Retrieve reading from evaporation that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065130
train
v1
Sensor network script: Node: drought_index | code: mst | fields: value, reading, lon, qc Sensor: soil_moisture | fields: type, qc, lon, lat Task: Retrieve lat from drought_index whose unit is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065131
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: type, level, unit, lon Sensor: pressure | fields: qc, reading, depth, unit Task: Fetch lon from soil_moisture where qc exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065132
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: depth, lon, reading, lat Sensor: lightning | fields: lat, unit, lon, depth Task: Get depth from snow_depth where reading exceeds the total reading from lightning for the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065133
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: unit, depth, level, ts Sensor: humidity | fields: depth, unit, value, lat Task: Fetch level from snow_depth where depth exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065134
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: reading, ts, type, lat Sensor: temperature | fields: lat, value, reading, ts 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="prt"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065135
train
v1
Sensor network script: Node: rainfall | code: mst | fields: qc, reading, value, level Sensor: humidity | fields: lon, level, value, depth Task: Fetch level from rainfall where depth exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="type", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065136
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: qc, depth, unit, reading Sensor: wind_speed | fields: type, lat, unit, qc Task: Retrieve value from cloud_cover whose depth is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065137
train
v2
Sensor network script: Node: turbidity | code: ref | fields: depth, unit, level, reading Sensor: pressure | fields: ts, lat, value, level Task: Get value from turbidity where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065138
train
v1
Sensor network script: Node: lightning | code: ref | fields: ts, reading, lat, type Sensor: turbidity | fields: unit, qc, level, lon Task: Fetch lon from lightning where qc exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065139
train
v2
Sensor network script: Node: humidity | code: ref | fields: value, lat, lon, qc Sensor: lightning | fields: ts, value, lon, unit Task: Retrieve value from humidity that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "value", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065140
train
v3
Sensor network script: Node: drought_index | code: stn | fields: qc, reading, ts, level Sensor: pressure | fields: depth, qc, unit, value Task: Fetch lon from drought_index where depth is greater than the total of value in pressure for matching depth. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", 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", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065141
train
v1
Sensor network script: Node: rainfall | code: ref | fields: lat, unit, qc, type Sensor: cloud_cover | fields: level, qc, lon, reading Task: Retrieve lon from rainfall whose ts is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065142
train
v2
Sensor network script: Node: visibility | code: clr | fields: unit, reading, lat, ts Sensor: cloud_cover | fields: type, qc, unit, depth Task: Get depth from visibility where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "visibility", "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_065143
train
v2
Sensor network script: Node: lightning | code: thr | fields: level, ts, type, unit Sensor: sunlight | fields: lat, lon, depth, level Task: Retrieve depth from lightning that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065144
train
v2
Sensor network script: Node: turbidity | code: mst | fields: value, unit, lon, level Sensor: soil_moisture | fields: level, ts, unit, qc Task: Fetch level from turbidity that have at least one corresponding soil_moisture measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065145
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: reading, value, level, type Sensor: wind_speed | fields: value, ts, lat, reading Task: Get lon from cloud_cover where a corresponding entry exists in wind_speed with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065146
train
v3
Sensor network script: Node: visibility | code: stn | fields: value, type, ts, level Sensor: sunlight | fields: ts, depth, qc, lat Task: Retrieve lat from visibility with reading above the COUNT(value) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065147
train
v3
Sensor network script: Node: rainfall | code: ref | fields: type, reading, qc, lat Sensor: pressure | fields: lon, depth, reading, qc Task: Get reading from rainfall where reading exceeds the maximum depth from pressure for the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065148
train
v2
Sensor network script: Node: pressure | code: thr | fields: ts, type, qc, lon Sensor: frost | fields: qc, reading, depth, value Task: Get depth from pressure where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065149
train
v1
Sensor network script: Node: turbidity | code: clr | fields: lat, depth, type, reading Sensor: sunlight | fields: level, qc, depth, ts Task: Retrieve lon from turbidity whose qc is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065150
train
v3
Sensor network script: Node: visibility | code: gst | fields: level, ts, unit, qc Sensor: sunlight | fields: unit, reading, type, qc Task: Retrieve lat from visibility with value above the SUM(value) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065151
train
v3
Sensor network script: Node: temperature | code: thr | fields: type, unit, level, lon Sensor: sunlight | fields: depth, unit, lon, type Task: Retrieve reading from temperature with depth above the MIN(value) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="ts"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065152
train
v1
Sensor network script: Node: rainfall | code: mst | fields: ts, type, lon, value Sensor: soil_moisture | fields: lat, lon, level, type Task: Get level from rainfall where unit appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065153
train
v2
Sensor network script: Node: rainfall | code: thr | fields: unit, level, lon, depth Sensor: sunlight | fields: level, depth, qc, lon Task: Get level from rainfall where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065154
train
v1
Sensor network script: Node: lightning | code: thr | fields: lon, level, depth, type Sensor: visibility | fields: lat, reading, type, lon Task: Get value from lightning where qc appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065155
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: qc, reading, value, level Sensor: turbidity | fields: ts, depth, type, reading Task: Retrieve depth from wind_speed with depth above the SUM(depth) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065156
train
v1
Sensor network script: Node: turbidity | code: mst | fields: unit, level, ts, lon Sensor: temperature | fields: reading, type, lat, depth Task: Fetch value from turbidity where unit exists in temperature sensor data for the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065157
train
v3
Sensor network script: Node: dew_point | code: hub | fields: qc, lon, reading, type Sensor: evaporation | fields: type, unit, value, depth Task: Fetch lat from dew_point where reading is greater than the count of of reading in evaporation for matching depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065158
train
v2
Sensor network script: Node: sunlight | code: clr | fields: lon, unit, ts, level Sensor: soil_moisture | fields: level, value, depth, type Task: Retrieve level from sunlight that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065159
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: unit, qc, type, ts Sensor: pressure | fields: unit, value, qc, lon Task: Retrieve lon from wind_speed that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065160
train
v2
Sensor network script: Node: frost | code: mst | fields: lat, reading, value, type Sensor: humidity | fields: level, value, type, qc Task: Fetch level from frost that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065161
train
v1
Sensor network script: Node: turbidity | code: clr | fields: lat, lon, qc, level Sensor: air_quality | fields: ts, qc, unit, depth Task: Get lat from turbidity where qc appears in air_quality readings with matching type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065162
train
v3
Sensor network script: Node: pressure | code: clr | fields: reading, depth, value, level Sensor: humidity | fields: lat, unit, lon, level Task: Get reading from pressure where reading exceeds the average value from humidity for the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065163
train
v3
Sensor network script: Node: humidity | code: clr | fields: value, lon, qc, lat Sensor: pressure | fields: type, value, depth, ts Task: Retrieve lon from humidity with depth above the MIN(value) of pressure readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065164
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: value, ts, lat, type Sensor: lightning | fields: level, depth, ts, unit Task: Fetch value from soil_moisture where type exists in lightning sensor data for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065165
train
v2
Sensor network script: Node: dew_point | code: stn | fields: reading, depth, qc, lon Sensor: drought_index | fields: qc, level, lat, depth Task: Fetch lon from dew_point that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065166
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: type, unit, reading, depth Sensor: evaporation | fields: lon, depth, level, qc Task: Retrieve lat from wind_speed whose unit is found in evaporation records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065167
train
v2
Sensor network script: Node: snow_depth | code: hub | fields: unit, type, reading, lat Sensor: sunlight | fields: type, depth, unit, reading Task: Get lat from snow_depth where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065168
train
v1
Sensor network script: Node: uv_index | code: mst | fields: lat, depth, unit, lon Sensor: humidity | fields: qc, depth, unit, reading Task: Retrieve reading from uv_index whose unit is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065169
train
v2
Sensor network script: Node: humidity | code: hub | fields: type, qc, ts, level Sensor: drought_index | fields: level, type, lat, reading Task: Retrieve level from humidity that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065170
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: lat, qc, lon, unit Sensor: sunlight | fields: unit, level, type, lon Task: Retrieve level from snow_depth with reading above the AVG(reading) of sunlight readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065171
train
v1
Sensor network script: Node: frost | code: gst | fields: unit, lat, reading, type Sensor: rainfall | fields: value, level, reading, type Task: Get value from frost where qc appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065172
train
v3
Sensor network script: Node: humidity | code: mst | fields: depth, ts, level, lon Sensor: air_quality | fields: reading, ts, unit, lat Task: Retrieve level from humidity with depth above the AVG(reading) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065173
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: level, value, reading, lat Sensor: sunlight | fields: value, unit, type, depth Task: Fetch value from snow_depth where depth is greater than the count of of reading in sunlight for matching type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065174
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: ts, qc, lon, type Sensor: lightning | fields: lon, reading, lat, level Task: Fetch reading from soil_moisture where depth is greater than the maximum of reading in lightning for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065175
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: reading, level, lat, depth Sensor: soil_moisture | fields: ts, lat, type, qc Task: Retrieve lat from snow_depth whose unit is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065176
train
v3
Sensor network script: Node: frost | code: thr | fields: ts, level, unit, type Sensor: air_quality | fields: ts, qc, unit, value Task: Retrieve reading from frost with value above the COUNT(reading) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065177
train
v2
Sensor network script: Node: air_quality | code: prt | fields: ts, level, value, depth Sensor: evaporation | fields: lat, type, unit, level Task: Fetch value from air_quality that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "value", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065178
train
v3
Sensor network script: Node: temperature | code: clr | fields: qc, unit, value, lat Sensor: sunlight | fields: qc, unit, type, lat Task: Fetch reading from temperature where reading is greater than the count of of reading in sunlight for matching depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065179
train
v3
Sensor network script: Node: turbidity | code: mst | fields: lat, reading, unit, value Sensor: evaporation | fields: lat, type, lon, level Task: Get lon from turbidity where reading exceeds the count of reading from evaporation for the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065180
train
v1
Sensor network script: Node: sunlight | code: prt | fields: value, qc, level, lon Sensor: humidity | fields: unit, lat, lon, depth Task: Fetch lon from sunlight where qc exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065181
train
v1
Sensor network script: Node: evaporation | code: gst | fields: ts, reading, type, level Sensor: temperature | fields: lat, level, type, lon Task: Fetch depth from evaporation where depth exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065182
train
v2
Sensor network script: Node: air_quality | code: gst | fields: reading, unit, depth, type Sensor: pressure | fields: type, depth, reading, qc Task: Retrieve lon from air_quality that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065183
train
v1
Sensor network script: Node: uv_index | code: mst | fields: type, depth, value, qc Sensor: sunlight | fields: lon, unit, lat, level Task: Get reading from uv_index where unit appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065184
train
v2
Sensor network script: Node: pressure | code: gst | fields: reading, level, qc, unit Sensor: temperature | fields: depth, unit, reading, lon Task: Fetch depth from pressure that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065185
train
v2
Sensor network script: Node: pressure | code: mst | fields: depth, type, reading, qc Sensor: lightning | fields: ts, depth, lon, unit Task: Get lat from pressure where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065186
train
v1
Sensor network script: Node: pressure | code: hub | fields: qc, lon, depth, ts Sensor: turbidity | fields: ts, depth, value, lon Task: Get depth from pressure where unit appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065187
train
v3
Sensor network script: Node: humidity | code: hub | fields: value, depth, reading, lon Sensor: evaporation | fields: value, lon, qc, ts Task: Retrieve reading from humidity with depth above the AVG(value) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065188
train
v3
Sensor network script: Node: evaporation | code: mst | fields: lon, reading, ts, depth Sensor: visibility | fields: ts, level, depth, qc Task: Retrieve depth from evaporation with reading above the COUNT(value) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065189
train
v1
Sensor network script: Node: sunlight | code: gst | fields: level, depth, qc, type Sensor: pressure | fields: qc, reading, type, value Task: Fetch value from sunlight where qc exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065190
train
v1
Sensor network script: Node: rainfall | code: stn | fields: unit, value, level, lat Sensor: turbidity | fields: value, ts, unit, qc Task: Retrieve depth from rainfall whose qc is found in turbidity records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065191
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: reading, unit, qc, value Sensor: uv_index | fields: reading, value, lon, unit Task: Get lon from wind_speed where unit appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065192
train
v2
Sensor network script: Node: lightning | code: gst | fields: lon, depth, reading, level Sensor: dew_point | fields: unit, lat, ts, depth Task: Get reading from lightning where a corresponding entry exists in dew_point with the same qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065193
train
v2
Sensor network script: Node: visibility | code: mst | fields: level, unit, lat, value Sensor: pressure | fields: type, level, unit, lat Task: Retrieve lat from visibility that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065194
train
v3
Sensor network script: Node: frost | code: hub | fields: depth, lon, lat, ts Sensor: uv_index | fields: depth, level, reading, value Task: Get lon from frost where value exceeds the maximum value from uv_index for the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065195
train
v2
Sensor network script: Node: lightning | code: hub | fields: lat, value, level, depth Sensor: wind_speed | fields: type, lat, ts, reading Task: Get reading from lightning where a corresponding entry exists in wind_speed with the same unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065196
train
v2
Sensor network script: Node: humidity | code: ref | fields: type, level, lon, depth Sensor: drought_index | fields: value, qc, level, reading Task: Fetch lon from humidity that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065197
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: lat, depth, type, ts Sensor: sunlight | fields: qc, lat, reading, depth Task: Get value from soil_moisture where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065198
train
v1
Sensor network script: Node: drought_index | code: thr | fields: unit, ts, reading, value Sensor: soil_moisture | fields: lon, ts, level, value Task: Get depth from drought_index where qc appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065199
train