variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: temperature | code: hub | fields: level, reading, depth, qc Sensor: frost | fields: level, lat, unit, value Task: Get lat from temperature where a corresponding entry exists in frost with the same qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lat", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018400
train
v3
Sensor network script: Node: rainfall | code: ref | fields: depth, lon, type, lat Sensor: turbidity | fields: depth, value, unit, type Task: Retrieve level from rainfall with depth above the MAX(depth) of turbidity readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018401
train
v3
Sensor network script: Node: visibility | code: gst | fields: lat, type, reading, ts Sensor: air_quality | fields: lon, value, type, level Task: Fetch level from visibility where reading is greater than the total of value in air_quality for matching depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018402
train
v1
Sensor network script: Node: drought_index | code: thr | fields: unit, qc, value, depth Sensor: lightning | fields: value, depth, lat, ts Task: Retrieve value from drought_index whose type is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018403
train
v1
Sensor network script: Node: drought_index | code: gst | fields: type, reading, lat, lon Sensor: cloud_cover | fields: lon, depth, ts, level Task: Fetch depth from drought_index where type exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018404
train
v1
Sensor network script: Node: air_quality | code: thr | fields: unit, type, qc, value Sensor: frost | fields: value, reading, depth, type Task: Fetch level from air_quality where qc exists in frost sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018405
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: lat, qc, ts, depth Sensor: wind_speed | fields: reading, lat, level, type Task: Retrieve level from soil_moisture with depth above the MIN(reading) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018406
train
v3
Sensor network script: Node: air_quality | code: ref | fields: level, unit, lat, ts Sensor: sunlight | fields: qc, reading, unit, type Task: Retrieve lat from air_quality with reading above the SUM(depth) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018407
train
v3
Sensor network script: Node: humidity | code: hub | fields: reading, unit, value, level Sensor: visibility | fields: reading, value, type, depth Task: Get level from humidity where depth exceeds the count of reading from visibility for the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018408
train
v2
Sensor network script: Node: lightning | code: hub | fields: ts, type, reading, value Sensor: dew_point | fields: lat, lon, level, reading Task: Fetch reading from lightning that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018409
train
v2
Sensor network script: Node: lightning | code: stn | fields: qc, value, lon, depth Sensor: soil_moisture | fields: unit, lat, value, depth Task: Retrieve value from lightning that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018410
train
v3
Sensor network script: Node: temperature | code: stn | fields: level, qc, lon, ts Sensor: cloud_cover | fields: value, lon, level, type Task: Get depth from temperature where value exceeds the total reading from cloud_cover for the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018411
train
v3
Sensor network script: Node: uv_index | code: hub | fields: lon, qc, value, reading Sensor: rainfall | fields: depth, qc, value, unit Task: Retrieve reading from uv_index with value above the COUNT(depth) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018412
train
v3
Sensor network script: Node: rainfall | code: clr | fields: type, depth, lat, level Sensor: air_quality | fields: qc, level, depth, ts Task: Get lat from rainfall where value exceeds the average depth from air_quality for the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018413
train
v1
Sensor network script: Node: turbidity | code: mst | fields: type, lat, lon, ts Sensor: wind_speed | fields: lon, lat, reading, unit Task: Fetch level from turbidity where qc exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018414
train
v1
Sensor network script: Node: temperature | code: hub | fields: value, qc, level, depth Sensor: rainfall | fields: unit, lon, level, reading Task: Retrieve reading from temperature whose depth is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018415
train
v1
Sensor network script: Node: temperature | code: ref | fields: reading, type, unit, qc Sensor: soil_moisture | fields: reading, ts, depth, value Task: Fetch lon from temperature where ts exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018416
train
v2
Sensor network script: Node: pressure | code: ref | fields: reading, type, lat, qc Sensor: cloud_cover | fields: type, depth, unit, lon Task: Get lon from pressure where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018417
train
v1
Sensor network script: Node: evaporation | code: prt | fields: unit, type, ts, value Sensor: turbidity | fields: value, lat, qc, depth Task: Retrieve lat from evaporation whose depth is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018418
train
v2
Sensor network script: Node: lightning | code: thr | fields: ts, unit, qc, value Sensor: wind_speed | fields: lat, unit, level, value Task: Fetch level from lightning that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018419
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: value, lat, type, unit Sensor: sunlight | fields: type, value, depth, ts Task: Get level from soil_moisture where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018420
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: type, depth, lon, value Sensor: snow_depth | fields: ts, value, level, lon Task: Retrieve reading from cloud_cover that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018421
train
v3
Sensor network script: Node: frost | code: prt | fields: lat, lon, ts, unit Sensor: evaporation | fields: value, ts, depth, qc Task: Retrieve level from frost with value above the MIN(reading) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018422
train
v2
Sensor network script: Node: pressure | code: prt | fields: ts, lon, level, type Sensor: sunlight | fields: depth, lat, level, value Task: Retrieve depth from pressure that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018423
train
v1
Sensor network script: Node: pressure | code: stn | fields: value, level, unit, lon Sensor: air_quality | fields: level, ts, type, lon Task: Fetch level from pressure where ts exists in air_quality sensor data for the same qc. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018424
train
v3
Sensor network script: Node: humidity | code: mst | fields: reading, qc, depth, lat Sensor: turbidity | fields: lon, type, reading, qc Task: Get depth from humidity where value exceeds the count of depth from turbidity for the same qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018425
train
v2
Sensor network script: Node: lightning | code: stn | fields: level, qc, unit, reading Sensor: humidity | fields: lat, lon, reading, unit Task: Retrieve value from lightning that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018426
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: value, level, lat, lon Sensor: evaporation | fields: qc, value, depth, reading Task: Retrieve reading from cloud_cover whose unit is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018427
train
v3
Sensor network script: Node: evaporation | code: mst | fields: reading, ts, qc, lon Sensor: lightning | fields: value, unit, lat, ts Task: Retrieve level from evaporation with depth above the MAX(depth) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018428
train
v2
Sensor network script: Node: sunlight | code: clr | fields: reading, level, lat, qc Sensor: turbidity | fields: qc, ts, level, lon Task: Retrieve level from sunlight that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018429
train
v3
Sensor network script: Node: temperature | code: clr | fields: lon, qc, ts, depth Sensor: frost | fields: type, unit, value, depth Task: Fetch lat from temperature where depth is greater than the maximum of value in frost for matching type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("frost", code="frs"), match="type"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018430
train
v3
Sensor network script: Node: rainfall | code: hub | fields: qc, type, lat, lon Sensor: snow_depth | fields: value, qc, type, level Task: Get lat from rainfall where depth exceeds the minimum value from snow_depth for the same type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018431
train
v3
Sensor network script: Node: uv_index | code: clr | fields: ts, reading, lat, qc Sensor: cloud_cover | fields: unit, value, reading, level Task: Fetch value from uv_index where value is greater than the minimum of depth in cloud_cover for matching ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018432
train
v1
Sensor network script: Node: uv_index | code: hub | fields: reading, type, lat, lon Sensor: cloud_cover | fields: type, lon, value, level Task: Get depth from uv_index where type appears in cloud_cover readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018433
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: qc, reading, ts, type Sensor: pressure | fields: value, reading, lat, lon Task: Retrieve depth from snow_depth whose type is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018434
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: depth, lat, unit, lon Sensor: humidity | fields: lon, lat, level, reading Task: Retrieve level from cloud_cover that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018435
train
v2
Sensor network script: Node: evaporation | code: prt | fields: lon, type, lat, reading Sensor: lightning | fields: qc, ts, value, reading Task: Retrieve reading from evaporation that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018436
train
v1
Sensor network script: Node: uv_index | code: thr | fields: value, reading, lat, level Sensor: sunlight | fields: lon, lat, reading, level Task: Get lat from uv_index where depth appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018437
train
v3
Sensor network script: Node: air_quality | code: stn | fields: reading, level, lon, unit Sensor: soil_moisture | fields: lon, level, qc, lat Task: Fetch level from air_quality where value is greater than the count of of depth in soil_moisture for matching unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018438
train
v2
Sensor network script: Node: visibility | code: hub | fields: qc, reading, type, lat Sensor: frost | fields: unit, lon, level, depth Task: Get level from visibility where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018439
train
v2
Sensor network script: Node: lightning | code: gst | fields: value, level, reading, lon Sensor: temperature | fields: qc, level, ts, value Task: Get depth from lightning where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018440
train
v1
Sensor network script: Node: sunlight | code: ref | fields: lon, type, lat, unit Sensor: lightning | fields: ts, qc, value, lat Task: Fetch reading from sunlight where unit exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018441
train
v3
Sensor network script: Node: pressure | code: prt | fields: ts, value, lon, depth Sensor: cloud_cover | fields: reading, ts, lon, unit Task: Retrieve lat from pressure with reading above the MIN(reading) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018442
train
v1
Sensor network script: Node: visibility | code: mst | fields: level, qc, lon, depth Sensor: frost | fields: level, depth, value, lat Task: Fetch reading from visibility where unit exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018443
train
v3
Sensor network script: Node: uv_index | code: gst | fields: unit, ts, depth, value Sensor: cloud_cover | fields: depth, reading, unit, ts Task: Retrieve value from uv_index with value above the MIN(depth) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018444
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: lat, level, depth, reading Sensor: soil_moisture | fields: depth, value, type, ts Task: Get value from wind_speed where depth appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018445
train
v1
Sensor network script: Node: air_quality | code: hub | fields: type, reading, depth, lat Sensor: humidity | fields: lon, depth, unit, lat Task: Fetch reading from air_quality where type exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018446
train
v3
Sensor network script: Node: frost | code: thr | fields: ts, type, depth, reading Sensor: cloud_cover | fields: lat, level, unit, type Task: Get lon from frost where depth exceeds the minimum reading from cloud_cover for the same type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018447
train
v3
Sensor network script: Node: air_quality | code: hub | fields: level, ts, value, lat Sensor: lightning | fields: qc, depth, type, lon Task: Fetch depth from air_quality where depth is greater than the minimum of reading in lightning for matching ts. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018448
train
v2
Sensor network script: Node: evaporation | code: ref | fields: level, lat, value, ts Sensor: dew_point | fields: qc, value, type, unit Task: Fetch reading from evaporation that have at least one corresponding dew_point measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018449
train
v3
Sensor network script: Node: air_quality | code: thr | fields: lon, reading, ts, lat Sensor: lightning | fields: lat, qc, level, lon Task: Retrieve lat from air_quality with depth above the COUNT(reading) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018450
train
v2
Sensor network script: Node: drought_index | code: stn | fields: unit, lon, lat, value Sensor: evaporation | fields: lat, ts, value, depth Task: Fetch value from drought_index that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018451
train
v2
Sensor network script: Node: air_quality | code: thr | fields: lat, value, ts, reading Sensor: humidity | fields: unit, type, depth, qc Task: Retrieve value from air_quality that have at least one matching reading in humidity sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018452
train
v1
Sensor network script: Node: drought_index | code: stn | fields: reading, lat, depth, type Sensor: evaporation | fields: qc, lon, value, lat Task: Retrieve depth from drought_index whose type is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018453
train
v3
Sensor network script: Node: dew_point | code: stn | fields: lat, ts, value, level Sensor: cloud_cover | fields: lat, reading, lon, depth Task: Retrieve lon from dew_point with value above the AVG(reading) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018454
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: unit, value, type, depth Sensor: drought_index | fields: depth, reading, value, lat Task: Retrieve lat from snow_depth with depth above the AVG(value) of drought_index readings sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018455
train
v3
Sensor network script: Node: temperature | code: mst | fields: value, ts, unit, depth Sensor: cloud_cover | fields: level, depth, unit, value Task: Get depth from temperature where reading exceeds the average reading from cloud_cover for the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018456
train
v1
Sensor network script: Node: uv_index | code: mst | fields: lon, type, depth, level Sensor: frost | fields: type, unit, level, depth Task: Get lon from uv_index where unit appears in frost readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018457
train
v2
Sensor network script: Node: sunlight | code: gst | fields: ts, lon, type, qc Sensor: air_quality | fields: reading, value, type, level Task: Get reading from sunlight where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018458
train
v1
Sensor network script: Node: humidity | code: prt | fields: reading, qc, lat, type Sensor: lightning | fields: reading, unit, level, lon Task: Get reading from humidity where ts appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018459
train
v3
Sensor network script: Node: temperature | code: clr | fields: ts, lat, level, value Sensor: uv_index | fields: value, ts, type, level Task: Fetch lon from temperature where value is greater than the minimum of depth in uv_index for matching depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018460
train
v2
Sensor network script: Node: drought_index | code: gst | fields: qc, reading, unit, level Sensor: turbidity | fields: depth, type, lon, level Task: Get depth from drought_index where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018461
train
v2
Sensor network script: Node: visibility | code: stn | fields: unit, depth, level, ts Sensor: lightning | fields: qc, ts, unit, reading Task: Retrieve lat from visibility that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018462
train
v3
Sensor network script: Node: pressure | code: clr | fields: type, reading, qc, unit Sensor: air_quality | fields: unit, depth, ts, value Task: Get reading from pressure where value exceeds the count of depth from air_quality for the same depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018463
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: value, level, ts, type Sensor: dew_point | fields: unit, lat, type, value Task: Get reading from soil_moisture where type appears in dew_point readings with matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018464
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: depth, reading, level, value Sensor: temperature | fields: qc, level, value, unit Task: Get depth from snow_depth where reading exceeds the average reading from temperature for the same type. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018465
train
v1
Sensor network script: Node: turbidity | code: mst | fields: lat, reading, type, lon Sensor: humidity | fields: value, qc, depth, level Task: Retrieve level from turbidity whose type is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018466
train
v2
Sensor network script: Node: visibility | code: stn | fields: lat, ts, unit, lon Sensor: frost | fields: lon, qc, ts, reading Task: Retrieve value from visibility that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018467
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: unit, qc, value, level Sensor: uv_index | fields: depth, ts, reading, type Task: Get reading from cloud_cover where depth exceeds the minimum value from uv_index for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018468
train
v2
Sensor network script: Node: visibility | code: clr | fields: lon, unit, qc, ts Sensor: snow_depth | fields: level, ts, lon, depth Task: Retrieve lat from visibility that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018469
train
v3
Sensor network script: Node: turbidity | code: stn | fields: lat, qc, lon, type Sensor: wind_speed | fields: level, lon, reading, lat Task: Retrieve lon from turbidity with value above the MAX(reading) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018470
train
v3
Sensor network script: Node: visibility | code: clr | fields: unit, qc, depth, lat Sensor: dew_point | fields: value, lon, unit, qc Task: Fetch reading from visibility where depth is greater than the maximum of reading in dew_point for matching ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018471
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: value, type, depth, unit Sensor: snow_depth | fields: reading, lon, value, unit Task: Retrieve reading from cloud_cover that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018472
train
v2
Sensor network script: Node: frost | code: hub | fields: ts, lon, depth, qc Sensor: lightning | fields: level, lat, qc, reading Task: Retrieve value from frost that have at least one matching reading in lightning sharing the same qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018473
train
v1
Sensor network script: Node: drought_index | code: stn | fields: value, lon, reading, type Sensor: air_quality | fields: qc, lat, type, ts Task: Fetch value from drought_index where ts exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018474
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: qc, lat, unit, ts Sensor: evaporation | fields: ts, qc, type, level Task: Get level from snow_depth where value exceeds the maximum depth from evaporation for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("evaporation", code="evp"), match="depth"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018475
train
v3
Sensor network script: Node: temperature | code: prt | fields: lat, unit, depth, qc Sensor: wind_speed | fields: reading, value, depth, level Task: Get lon from temperature where depth exceeds the maximum value from wind_speed for the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018476
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lat, lon, qc, value Sensor: turbidity | fields: reading, lon, level, value Task: Retrieve lon from wind_speed that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018477
train
v1
Sensor network script: Node: sunlight | code: ref | fields: type, value, unit, lon Sensor: turbidity | fields: ts, unit, reading, value Task: Retrieve lon from sunlight whose qc is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018478
train
v1
Sensor network script: Node: drought_index | code: hub | fields: lon, type, reading, qc Sensor: soil_moisture | fields: ts, value, reading, lat Task: Get lon from drought_index where qc appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018479
train
v1
Sensor network script: Node: turbidity | code: prt | fields: lat, depth, reading, value Sensor: rainfall | fields: reading, lat, type, qc Task: Fetch depth from turbidity where type exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018480
train
v2
Sensor network script: Node: drought_index | code: thr | fields: value, depth, lat, lon Sensor: cloud_cover | fields: unit, lon, qc, depth Task: Fetch reading from drought_index that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018481
train
v1
Sensor network script: Node: snow_depth | code: mst | fields: reading, qc, lon, unit Sensor: pressure | fields: lat, ts, lon, unit Task: Fetch depth from snow_depth where depth exists in pressure sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018482
train
v3
Sensor network script: Node: pressure | code: ref | fields: ts, lon, type, depth Sensor: humidity | fields: reading, ts, lon, lat Task: Get lat from pressure where value exceeds the maximum depth from humidity for the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018483
train
v2
Sensor network script: Node: pressure | code: hub | fields: qc, unit, lon, value Sensor: soil_moisture | fields: unit, lat, type, level Task: Fetch reading from pressure that have at least one corresponding soil_moisture measurement for the same unit. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018484
train
v1
Sensor network script: Node: drought_index | code: clr | fields: lat, value, reading, lon Sensor: cloud_cover | fields: lat, qc, depth, ts Task: Get reading from drought_index where qc appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018485
train
v3
Sensor network script: Node: lightning | code: mst | fields: unit, qc, lat, level Sensor: snow_depth | fields: lat, qc, reading, value Task: Retrieve value from lightning with reading above the COUNT(reading) of snow_depth readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="unit"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018486
train
v3
Sensor network script: Node: rainfall | code: gst | fields: level, lon, ts, type Sensor: humidity | fields: qc, ts, reading, depth Task: Get value from rainfall where depth exceeds the count of value from humidity for the same type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="type"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018487
train
v1
Sensor network script: Node: humidity | code: hub | fields: depth, lon, qc, reading Sensor: visibility | fields: level, value, ts, reading Task: Get level from humidity where depth appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018488
train
v2
Sensor network script: Node: visibility | code: gst | fields: lat, depth, reading, lon Sensor: snow_depth | fields: ts, lat, qc, reading Task: Get level from visibility where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018489
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: depth, ts, value, qc Sensor: sunlight | fields: lon, lat, ts, depth Task: Retrieve lon from wind_speed with reading above the COUNT(value) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("sunlight", code="brt"), match="type"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018490
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: qc, lat, type, ts Sensor: cloud_cover | fields: type, qc, lon, lat Task: Fetch lon from wind_speed where depth exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018491
train
v3
Sensor network script: Node: air_quality | code: clr | fields: qc, lon, type, value Sensor: temperature | fields: lon, value, type, qc Task: Get lat from air_quality where value exceeds the total reading from temperature for the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="ts"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018492
train
v1
Sensor network script: Node: humidity | code: ref | fields: type, level, qc, reading Sensor: air_quality | fields: type, lon, qc, value Task: Get level from humidity where unit appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_018493
train
v3
Sensor network script: Node: frost | code: hub | fields: unit, type, level, depth Sensor: snow_depth | fields: lat, ts, level, reading Task: Get lon from frost where value exceeds the total value from snow_depth for the same type. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018494
train
v1
Sensor network script: Node: turbidity | code: gst | fields: level, qc, unit, depth Sensor: lightning | fields: level, unit, depth, qc Task: Get lat from turbidity where unit appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018495
train
v2
Sensor network script: Node: turbidity | code: clr | fields: value, depth, unit, level Sensor: sunlight | fields: lat, level, reading, lon Task: Retrieve reading from turbidity that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018496
train
v1
Sensor network script: Node: drought_index | code: clr | fields: type, depth, value, unit Sensor: soil_moisture | fields: unit, level, ts, reading Task: Fetch value from drought_index where qc exists in soil_moisture sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018497
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: value, lat, ts, level Sensor: evaporation | fields: level, ts, depth, type Task: Get reading from soil_moisture where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018498
train
v3
Sensor network script: Node: sunlight | code: prt | fields: depth, reading, level, lon Sensor: snow_depth | fields: lon, type, ts, value Task: Retrieve depth from sunlight with depth above the MIN(reading) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_018499
train