variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: temperature | code: prt | fields: lat, value, qc, type Sensor: frost | fields: depth, lat, ts, unit Task: Retrieve lat from temperature with depth above the SUM(depth) of frost readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("frost", code="frs"), match="type"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083200
train
v2
Sensor network script: Node: lightning | code: ref | fields: qc, reading, lat, lon Sensor: evaporation | fields: lat, reading, lon, level Task: Get depth from lightning where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083201
train
v1
Sensor network script: Node: humidity | code: clr | fields: reading, unit, ts, level Sensor: lightning | fields: depth, qc, unit, lon Task: Retrieve reading from humidity whose depth is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083202
train
v2
Sensor network script: Node: pressure | code: hub | fields: reading, type, value, lat Sensor: lightning | fields: lat, depth, unit, reading Task: Get reading from pressure where a corresponding entry exists in lightning with the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083203
train
v1
Sensor network script: Node: uv_index | code: mst | fields: depth, qc, type, reading Sensor: cloud_cover | fields: lat, ts, unit, reading Task: Retrieve level from uv_index whose type is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083204
train
v2
Sensor network script: Node: visibility | code: hub | fields: reading, qc, level, depth Sensor: cloud_cover | fields: ts, depth, level, value Task: Get reading from visibility where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083205
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: type, reading, level, lon Sensor: snow_depth | fields: qc, level, lat, lon Task: Fetch reading from cloud_cover that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083206
train
v1
Sensor network script: Node: frost | code: prt | fields: unit, level, type, lon Sensor: lightning | fields: ts, lon, level, unit Task: Get reading from frost where depth appears in lightning readings with matching type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="type", ), output="reading", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083207
train
v2
Sensor network script: Node: humidity | code: prt | fields: qc, lat, level, depth Sensor: frost | fields: depth, qc, value, lat Task: Retrieve lat from humidity that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083208
train
v1
Sensor network script: Node: drought_index | code: mst | fields: value, qc, type, ts Sensor: rainfall | fields: unit, level, qc, type Task: Fetch reading from drought_index where unit exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083209
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: lon, type, value, qc Sensor: snow_depth | fields: type, depth, unit, ts Task: Retrieve reading from soil_moisture with value above the MAX(depth) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083210
train
v1
Sensor network script: Node: sunlight | code: hub | fields: lon, qc, reading, ts Sensor: drought_index | fields: reading, value, level, type Task: Get value from sunlight where ts appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083211
train
v2
Sensor network script: Node: air_quality | code: stn | fields: lon, value, lat, unit Sensor: drought_index | fields: reading, value, qc, lat Task: Get lat from air_quality where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083212
train
v2
Sensor network script: Node: dew_point | code: gst | fields: depth, level, qc, type Sensor: pressure | fields: lat, value, type, depth Task: Retrieve level from dew_point that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083213
train
v3
Sensor network script: Node: pressure | code: hub | fields: value, qc, type, ts Sensor: sunlight | fields: unit, qc, ts, level Task: Retrieve reading from pressure with depth above the AVG(depth) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083214
train
v1
Sensor network script: Node: sunlight | code: gst | fields: qc, unit, type, value Sensor: temperature | fields: depth, type, value, level Task: Get value from sunlight where unit appears in temperature readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083215
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: level, value, type, depth Sensor: sunlight | fields: lat, level, lon, unit Task: Retrieve lat from wind_speed that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083216
train
v1
Sensor network script: Node: humidity | code: gst | fields: type, unit, value, depth Sensor: uv_index | fields: reading, depth, level, ts Task: Retrieve depth from humidity whose depth is found in uv_index records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083217
train
v2
Sensor network script: Node: dew_point | code: thr | fields: level, lat, reading, value Sensor: cloud_cover | fields: qc, reading, ts, lat Task: Fetch reading from dew_point that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083218
train
v2
Sensor network script: Node: visibility | code: gst | fields: lon, ts, lat, level Sensor: dew_point | fields: type, reading, unit, level Task: Fetch level from visibility that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083219
train
v3
Sensor network script: Node: temperature | code: hub | fields: type, ts, value, reading Sensor: sunlight | fields: ts, qc, level, value Task: Retrieve depth from temperature with value above the SUM(reading) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083220
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: lat, unit, reading, depth Sensor: wind_speed | fields: depth, unit, type, lat Task: Fetch depth from snow_depth where depth is greater than the count of of reading in wind_speed for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="ts"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083221
train
v3
Sensor network script: Node: sunlight | code: stn | fields: value, lat, level, qc Sensor: visibility | fields: level, type, unit, lat Task: Fetch reading from sunlight where depth is greater than the count of of value in visibility for matching qc. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083222
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: value, reading, lat, depth Sensor: uv_index | fields: type, depth, ts, reading Task: Get level from wind_speed where depth appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083223
train
v3
Sensor network script: Node: wind_speed | code: prt | fields: level, ts, value, lat Sensor: drought_index | fields: qc, level, lat, unit Task: Retrieve value from wind_speed with value above the AVG(reading) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083224
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: type, depth, reading, ts Sensor: humidity | fields: depth, lon, qc, unit Task: Get lat from wind_speed where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083225
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: lat, value, unit, level Sensor: evaporation | fields: lat, level, reading, qc Task: Fetch level from cloud_cover where reading is greater than the average of depth in evaporation for matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083226
train
v1
Sensor network script: Node: humidity | code: thr | fields: unit, depth, qc, lon Sensor: rainfall | fields: value, lon, lat, depth Task: Get lat from humidity where depth appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083227
train
v2
Sensor network script: Node: temperature | code: stn | fields: type, lat, depth, value Sensor: lightning | fields: value, reading, qc, lon Task: Fetch level from temperature that have at least one corresponding lightning measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083228
train
v3
Sensor network script: Node: dew_point | code: clr | fields: lat, value, ts, reading Sensor: frost | fields: lon, depth, level, type Task: Get lon from dew_point where depth exceeds the total depth from frost for the same ts. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lon", "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_083229
train
v3
Sensor network script: Node: evaporation | code: stn | fields: lon, type, reading, unit Sensor: soil_moisture | fields: reading, qc, type, value Task: Get lon from evaporation where depth exceeds the count of reading from soil_moisture for the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083230
train
v1
Sensor network script: Node: drought_index | code: mst | fields: lat, depth, qc, value Sensor: snow_depth | fields: value, depth, qc, lat Task: Retrieve depth from drought_index whose qc is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083231
train
v2
Sensor network script: Node: dew_point | code: clr | fields: value, lon, ts, level Sensor: snow_depth | fields: lon, depth, value, lat Task: Get depth from dew_point where a corresponding entry exists in snow_depth with the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083232
train
v2
Sensor network script: Node: visibility | code: stn | fields: lon, depth, lat, unit Sensor: dew_point | fields: type, reading, unit, level Task: Fetch lat from visibility that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083233
train
v2
Sensor network script: Node: dew_point | code: stn | fields: ts, qc, depth, value Sensor: sunlight | fields: value, level, depth, reading Task: Fetch reading from dew_point that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083234
train
v1
Sensor network script: Node: rainfall | code: thr | fields: depth, unit, type, level Sensor: uv_index | fields: lat, lon, depth, unit Task: Retrieve value from rainfall whose qc is found in uv_index records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083235
train
v1
Sensor network script: Node: uv_index | code: gst | fields: depth, lon, value, level Sensor: pressure | fields: depth, reading, qc, unit Task: Fetch lon from uv_index where ts exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083236
train
v3
Sensor network script: Node: frost | code: ref | fields: depth, ts, level, qc Sensor: snow_depth | fields: qc, depth, level, unit Task: Get reading from frost where depth exceeds the average reading from snow_depth for the same ts. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083237
train
v1
Sensor network script: Node: lightning | code: thr | fields: type, unit, qc, level Sensor: rainfall | fields: lat, level, ts, lon Task: Get value from lightning where ts appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083238
train
v1
Sensor network script: Node: rainfall | code: prt | fields: reading, type, level, qc Sensor: visibility | fields: depth, value, level, ts Task: Retrieve value from rainfall whose depth is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083239
train
v3
Sensor network script: Node: dew_point | code: clr | fields: lat, reading, value, depth Sensor: frost | fields: unit, depth, ts, type Task: Fetch reading from dew_point where value is greater than the count of of value in frost for matching unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="unit"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083240
train
v1
Sensor network script: Node: lightning | code: thr | fields: ts, unit, value, reading Sensor: visibility | fields: value, lat, lon, reading Task: Fetch lon from lightning where depth exists in visibility sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083241
train
v3
Sensor network script: Node: humidity | code: gst | fields: type, reading, value, unit Sensor: turbidity | fields: unit, reading, value, ts Task: Fetch level from humidity where value is greater than the total of depth in turbidity for matching depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083242
train
v2
Sensor network script: Node: evaporation | code: clr | fields: level, qc, unit, ts Sensor: air_quality | fields: reading, lat, qc, unit Task: Retrieve lat from evaporation that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083243
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: type, level, unit, lon Sensor: dew_point | fields: depth, qc, level, unit Task: Retrieve depth from wind_speed that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083244
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: unit, depth, value, qc Sensor: lightning | fields: ts, type, unit, level Task: Retrieve lat from snow_depth that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083245
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: ts, qc, level, lon Sensor: temperature | fields: qc, value, level, depth Task: Fetch level from wind_speed that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083246
train
v2
Sensor network script: Node: evaporation | code: thr | fields: level, lon, lat, value Sensor: lightning | fields: level, ts, qc, lat Task: Fetch lat from evaporation that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083247
train
v3
Sensor network script: Node: rainfall | code: stn | fields: lat, qc, level, type Sensor: pressure | fields: lat, reading, depth, level Task: Retrieve level from rainfall with reading above the SUM(value) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="unit"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083248
train
v2
Sensor network script: Node: dew_point | code: ref | fields: reading, level, type, lon Sensor: rainfall | fields: level, unit, value, ts Task: Fetch value from dew_point that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083249
train
v3
Sensor network script: Node: uv_index | code: stn | fields: reading, depth, type, ts Sensor: soil_moisture | fields: lon, value, depth, qc Task: Retrieve reading from uv_index with reading above the AVG(depth) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083250
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: lon, level, unit, type Sensor: turbidity | fields: qc, depth, value, level Task: Retrieve value from cloud_cover whose ts is found in turbidity records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083251
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: value, level, qc, unit Sensor: turbidity | fields: qc, depth, level, reading Task: Retrieve lon from cloud_cover that have at least one matching reading in turbidity sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083252
train
v3
Sensor network script: Node: sunlight | code: gst | fields: ts, level, lat, value Sensor: temperature | fields: level, type, lat, lon Task: Get reading from sunlight where value exceeds the maximum depth from temperature for the same depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083253
train
v2
Sensor network script: Node: frost | code: prt | fields: lat, unit, ts, value Sensor: visibility | fields: qc, type, lat, depth Task: Get level from frost where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083254
train
v2
Sensor network script: Node: frost | code: ref | fields: reading, ts, type, unit Sensor: snow_depth | fields: lat, ts, unit, level Task: Fetch depth from frost that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083255
train
v1
Sensor network script: Node: uv_index | code: prt | fields: reading, ts, lat, unit Sensor: frost | fields: value, lon, ts, type Task: Get value from uv_index where type appears in frost readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083256
train
v1
Sensor network script: Node: turbidity | code: stn | fields: reading, qc, unit, depth Sensor: pressure | fields: value, unit, lon, type Task: Get level from turbidity where depth appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083257
train
v3
Sensor network script: Node: humidity | code: thr | fields: qc, reading, type, level Sensor: visibility | fields: reading, ts, unit, lat Task: Retrieve lon from humidity with value above the AVG(value) of visibility readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083258
train
v2
Sensor network script: Node: pressure | code: prt | fields: lat, level, unit, lon Sensor: lightning | fields: level, type, qc, lon Task: Retrieve depth from pressure that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083259
train
v2
Sensor network script: Node: pressure | code: gst | fields: lat, reading, lon, unit Sensor: sunlight | fields: depth, lat, ts, value Task: Fetch lon from pressure that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083260
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: ts, value, level, qc Sensor: humidity | fields: lat, value, unit, qc Task: Retrieve depth from snow_depth with depth above the COUNT(reading) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083261
train
v2
Sensor network script: Node: turbidity | code: thr | fields: reading, value, depth, ts Sensor: wind_speed | fields: depth, reading, type, ts Task: Retrieve reading from turbidity that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083262
train
v2
Sensor network script: Node: uv_index | code: mst | fields: depth, lat, lon, ts Sensor: frost | fields: depth, qc, reading, ts Task: Get depth from uv_index where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083263
train
v2
Sensor network script: Node: lightning | code: clr | fields: lon, qc, lat, value Sensor: turbidity | fields: reading, ts, level, lon Task: Fetch value from lightning that have at least one corresponding turbidity measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083264
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: qc, reading, level, ts Sensor: snow_depth | fields: lat, depth, reading, ts Task: Get depth from soil_moisture where value exceeds the average depth from snow_depth for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083265
train
v2
Sensor network script: Node: temperature | code: prt | fields: level, unit, value, lat Sensor: turbidity | fields: value, depth, unit, level Task: Get reading from temperature where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083266
train
v1
Sensor network script: Node: temperature | code: stn | fields: depth, lon, unit, ts Sensor: evaporation | fields: unit, lat, ts, value Task: Fetch reading from temperature where qc exists in evaporation sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083267
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: unit, qc, lat, level Sensor: uv_index | fields: level, unit, lat, lon Task: Retrieve lat from wind_speed that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083268
train
v1
Sensor network script: Node: dew_point | code: mst | fields: type, qc, ts, unit Sensor: humidity | fields: reading, ts, lat, depth Task: Fetch reading from dew_point where depth exists in humidity sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="depth", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083269
train
v2
Sensor network script: Node: rainfall | code: stn | fields: lon, level, value, reading Sensor: wind_speed | fields: unit, depth, level, lon Task: Retrieve level from rainfall that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083270
train
v2
Sensor network script: Node: drought_index | code: mst | fields: ts, reading, unit, value Sensor: dew_point | fields: type, qc, reading, value Task: Fetch level from drought_index that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083271
train
v3
Sensor network script: Node: rainfall | code: ref | fields: ts, type, depth, unit Sensor: frost | fields: reading, value, qc, lat Task: Get depth from rainfall where depth exceeds the average depth from frost for the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("frost", code="frs"), match="depth"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083272
train
v1
Sensor network script: Node: sunlight | code: prt | fields: lon, unit, ts, level Sensor: lightning | fields: unit, lat, level, type Task: Fetch depth from sunlight where qc exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083273
train
v1
Sensor network script: Node: turbidity | code: hub | fields: lon, lat, value, unit Sensor: temperature | fields: ts, depth, reading, type Task: Fetch depth from turbidity where qc exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083274
train
v2
Sensor network script: Node: pressure | code: gst | fields: lon, level, lat, type Sensor: uv_index | fields: ts, depth, level, qc Task: Get reading from pressure where a corresponding entry exists in uv_index with the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083275
train
v1
Sensor network script: Node: frost | code: clr | fields: qc, level, type, ts Sensor: dew_point | fields: qc, ts, lon, type Task: Retrieve level from frost whose type is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083276
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: lat, value, reading, unit Sensor: visibility | fields: reading, qc, depth, lon Task: Retrieve level from cloud_cover whose unit is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083277
train
v1
Sensor network script: Node: visibility | code: thr | fields: ts, lon, level, qc Sensor: cloud_cover | fields: depth, unit, ts, value Task: Fetch level from visibility where qc exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083278
train
v1
Sensor network script: Node: uv_index | code: ref | fields: type, qc, unit, value Sensor: sunlight | fields: type, lat, depth, reading Task: Retrieve depth from uv_index whose unit is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083279
train
v3
Sensor network script: Node: sunlight | code: prt | fields: lat, qc, unit, ts Sensor: pressure | fields: value, level, reading, unit Task: Fetch value from sunlight where depth is greater than the maximum of depth in pressure for matching qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083280
train
v2
Sensor network script: Node: uv_index | code: hub | fields: qc, reading, lat, ts Sensor: air_quality | fields: ts, depth, lon, lat Task: Fetch depth from uv_index that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083281
train
v3
Sensor network script: Node: humidity | code: gst | fields: qc, unit, ts, lon Sensor: frost | fields: unit, qc, ts, lon Task: Retrieve lon from humidity with depth above the SUM(reading) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="ts"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083282
train
v1
Sensor network script: Node: drought_index | code: thr | fields: type, lon, qc, level Sensor: wind_speed | fields: unit, type, ts, lat Task: Fetch level from drought_index where type exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083283
train
v2
Sensor network script: Node: temperature | code: mst | fields: reading, type, unit, level Sensor: lightning | fields: lat, ts, depth, value Task: Get lat from temperature where a corresponding entry exists in lightning with the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083284
train
v1
Sensor network script: Node: air_quality | code: thr | fields: depth, reading, lon, type Sensor: dew_point | fields: ts, reading, type, unit Task: Retrieve depth from air_quality whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083285
train
v1
Sensor network script: Node: evaporation | code: hub | fields: reading, ts, type, level Sensor: pressure | fields: qc, unit, type, value Task: Fetch level from evaporation where unit exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "level", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083286
train
v3
Sensor network script: Node: frost | code: mst | fields: ts, reading, lat, type Sensor: snow_depth | fields: lat, unit, reading, type Task: Retrieve lat from frost with value above the SUM(value) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083287
train
v2
Sensor network script: Node: evaporation | code: clr | fields: level, reading, lon, unit Sensor: dew_point | fields: level, lon, type, qc Task: Get lat from evaporation where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083288
train
v1
Sensor network script: Node: humidity | code: mst | fields: depth, type, qc, lat Sensor: cloud_cover | fields: reading, level, qc, depth Task: Get depth from humidity where depth appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083289
train
v2
Sensor network script: Node: temperature | code: prt | fields: depth, level, ts, qc Sensor: rainfall | fields: unit, ts, lon, lat Task: Fetch value from temperature that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083290
train
v3
Sensor network script: Node: rainfall | code: stn | fields: level, qc, lon, value Sensor: air_quality | fields: reading, lat, qc, value Task: Fetch lon from rainfall where value is greater than the minimum of depth in air_quality for matching type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083291
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: lon, level, value, unit Sensor: pressure | fields: reading, value, lon, qc Task: Retrieve lon from cloud_cover with depth above the SUM(value) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083292
train
v2
Sensor network script: Node: humidity | code: hub | fields: unit, value, type, ts Sensor: cloud_cover | fields: lat, qc, ts, level Task: Retrieve reading from humidity that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083293
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: ts, value, reading, level Sensor: dew_point | fields: ts, depth, lon, level Task: Get lon from soil_moisture where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083294
train
v3
Sensor network script: Node: temperature | code: hub | fields: level, type, lat, qc Sensor: cloud_cover | fields: reading, type, level, lat Task: Get value from temperature where reading exceeds the count of value from cloud_cover for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083295
train
v1
Sensor network script: Node: rainfall | code: gst | fields: level, lon, depth, type Sensor: snow_depth | fields: lon, reading, level, qc Task: Get value from rainfall where unit appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083296
train
v2
Sensor network script: Node: turbidity | code: gst | fields: depth, lon, unit, qc Sensor: air_quality | fields: unit, lon, qc, value Task: Retrieve value from turbidity that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_083297
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: value, lon, qc, unit Sensor: snow_depth | fields: value, type, lon, depth Task: Fetch depth from soil_moisture where value is greater than the minimum of value in snow_depth for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083298
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: unit, lat, reading, lon Sensor: turbidity | fields: lat, type, depth, qc Task: Get lat from soil_moisture where reading exceeds the average reading from turbidity for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_083299
train