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: cloud_cover | code: stn | fields: depth, ts, lat, value Sensor: snow_depth | fields: value, unit, lon, qc Task: Fetch depth from cloud_cover that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013400
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: qc, level, ts, value Sensor: soil_moisture | fields: ts, reading, unit, depth Task: Retrieve value from wind_speed whose unit is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013401
train
v1
Sensor network script: Node: lightning | code: mst | fields: depth, unit, ts, value Sensor: evaporation | fields: lat, type, level, lon Task: Get reading from lightning where depth appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013402
train
v1
Sensor network script: Node: turbidity | code: hub | fields: qc, level, value, unit Sensor: drought_index | fields: qc, value, type, level Task: Get value from turbidity where unit appears in drought_index readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013403
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: qc, ts, type, level Sensor: cloud_cover | fields: ts, depth, level, type Task: Get level from snow_depth where value exceeds the total value from cloud_cover for the same type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013404
train
v3
Sensor network script: Node: lightning | code: stn | fields: depth, ts, value, level Sensor: sunlight | fields: level, lon, unit, qc Task: Retrieve depth from lightning with depth above the MIN(depth) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013405
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: lat, level, type, lon Sensor: frost | fields: qc, lon, level, depth Task: Retrieve level from cloud_cover that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013406
train
v1
Sensor network script: Node: lightning | code: mst | fields: type, ts, reading, depth Sensor: cloud_cover | fields: lat, unit, qc, value Task: Fetch value from lightning where depth exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013407
train
v1
Sensor network script: Node: dew_point | code: hub | fields: level, depth, unit, reading Sensor: frost | fields: level, value, qc, ts Task: Get depth from dew_point where unit appears in frost readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013408
train
v3
Sensor network script: Node: dew_point | code: gst | fields: lon, type, unit, qc Sensor: drought_index | fields: ts, lon, level, value Task: Get lon from dew_point where reading exceeds the count of reading from drought_index for the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="ts"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013409
train
v2
Sensor network script: Node: sunlight | code: hub | fields: unit, lat, type, ts Sensor: drought_index | fields: value, level, unit, qc Task: Retrieve level from sunlight that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013410
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: lon, type, value, depth Sensor: uv_index | fields: depth, lon, reading, level Task: Get depth from soil_moisture where qc appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013411
train
v1
Sensor network script: Node: turbidity | code: prt | fields: lon, unit, ts, depth Sensor: snow_depth | fields: value, qc, level, depth Task: Get reading from turbidity where ts appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013412
train
v1
Sensor network script: Node: air_quality | code: hub | fields: reading, lat, depth, level Sensor: turbidity | fields: ts, reading, lon, type Task: Get reading from air_quality where unit appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013413
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: lat, type, qc, lon Sensor: snow_depth | fields: depth, ts, value, level Task: Retrieve reading from soil_moisture whose unit is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013414
train
v1
Sensor network script: Node: air_quality | code: mst | fields: value, unit, depth, lat Sensor: humidity | fields: type, value, depth, lon Task: Get lon from air_quality where depth appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013415
train
v2
Sensor network script: Node: lightning | code: hub | fields: value, level, unit, reading Sensor: soil_moisture | fields: ts, lon, level, unit Task: Retrieve level from lightning that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013416
train
v2
Sensor network script: Node: dew_point | code: hub | fields: reading, value, ts, lon Sensor: visibility | fields: value, depth, type, unit Task: Retrieve lat from dew_point that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013417
train
v3
Sensor network script: Node: drought_index | code: clr | fields: qc, unit, depth, lat Sensor: dew_point | fields: reading, level, depth, value Task: Retrieve level from drought_index with value above the SUM(reading) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013418
train
v2
Sensor network script: Node: turbidity | code: ref | fields: reading, value, unit, depth Sensor: soil_moisture | fields: value, type, depth, lon Task: Retrieve depth from turbidity that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013419
train
v3
Sensor network script: Node: turbidity | code: prt | fields: reading, value, ts, unit Sensor: snow_depth | fields: ts, level, unit, qc Task: Retrieve lon from turbidity with value above the COUNT(reading) of snow_depth readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("snow_depth", code="snw"), match="type"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013420
train
v2
Sensor network script: Node: uv_index | code: mst | fields: ts, lon, unit, type Sensor: visibility | fields: level, ts, reading, depth Task: Get value from uv_index where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013421
train
v3
Sensor network script: Node: visibility | code: gst | fields: depth, unit, lat, qc Sensor: air_quality | fields: lat, reading, lon, unit Task: Retrieve value from visibility with reading above the SUM(depth) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013422
train
v2
Sensor network script: Node: rainfall | code: clr | fields: ts, value, depth, lat Sensor: lightning | fields: level, type, unit, reading Task: Fetch lon from rainfall that have at least one corresponding lightning measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013423
train
v1
Sensor network script: Node: drought_index | code: gst | fields: depth, reading, lat, unit Sensor: evaporation | fields: unit, qc, value, lon Task: Get depth from drought_index where depth appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="depth", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013424
train
v1
Sensor network script: Node: temperature | code: stn | fields: depth, lon, reading, type Sensor: wind_speed | fields: reading, ts, qc, lon Task: Get value from temperature where unit appears in wind_speed readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013425
train
v3
Sensor network script: Node: evaporation | code: gst | fields: lon, lat, ts, unit Sensor: visibility | fields: ts, value, level, unit Task: Get depth from evaporation where depth exceeds the maximum depth from visibility for the same type. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("visibility", code="clr"), match="type"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013426
train
v3
Sensor network script: Node: frost | code: gst | fields: ts, type, lon, reading Sensor: rainfall | fields: value, reading, ts, lon Task: Fetch level from frost where depth is greater than the total of depth in rainfall for matching qc. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="level", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013427
train
v3
Sensor network script: Node: humidity | code: hub | fields: unit, level, value, lat Sensor: soil_moisture | fields: lon, type, level, reading Task: Retrieve level from humidity with depth above the MIN(depth) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013428
train
v2
Sensor network script: Node: air_quality | code: prt | fields: lon, reading, level, ts Sensor: sunlight | fields: value, level, reading, unit Task: Fetch reading from air_quality that have at least one corresponding sunlight measurement for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013429
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: unit, lat, type, reading Sensor: turbidity | fields: reading, qc, lat, lon Task: Retrieve reading from wind_speed that have at least one matching reading in turbidity sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013430
train
v1
Sensor network script: Node: rainfall | code: prt | fields: reading, qc, ts, unit Sensor: drought_index | fields: lat, ts, depth, unit Task: Get value from rainfall where depth appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013431
train
v2
Sensor network script: Node: sunlight | code: ref | fields: reading, depth, qc, lat Sensor: wind_speed | fields: lon, unit, type, qc Task: Retrieve level from sunlight that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "level", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013432
train
v3
Sensor network script: Node: drought_index | code: ref | fields: unit, type, reading, qc Sensor: cloud_cover | fields: unit, lat, level, qc Task: Fetch reading from drought_index where depth is greater than the minimum of depth in cloud_cover for matching depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013433
train
v2
Sensor network script: Node: rainfall | code: stn | fields: lon, lat, ts, type Sensor: turbidity | fields: ts, level, qc, unit Task: Fetch value from rainfall that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013434
train
v1
Sensor network script: Node: lightning | code: hub | fields: lon, value, type, qc Sensor: snow_depth | fields: unit, ts, reading, qc Task: Retrieve level from lightning whose type is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013435
train
v3
Sensor network script: Node: visibility | code: clr | fields: lat, value, type, ts Sensor: cloud_cover | fields: reading, level, qc, ts Task: Fetch value from visibility where depth is greater than the total of value in cloud_cover for matching ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013436
train
v1
Sensor network script: Node: temperature | code: stn | fields: reading, depth, unit, lat Sensor: turbidity | fields: qc, lon, lat, level Task: Fetch lat from temperature where type exists in turbidity sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013437
train
v2
Sensor network script: Node: air_quality | code: ref | fields: type, level, unit, qc Sensor: humidity | fields: value, lat, level, reading Task: Retrieve lat from air_quality that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013438
train
v2
Sensor network script: Node: lightning | code: prt | fields: value, unit, qc, depth Sensor: frost | fields: depth, level, qc, unit Task: Retrieve level from lightning that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013439
train
v3
Sensor network script: Node: drought_index | code: mst | fields: reading, unit, ts, lat Sensor: sunlight | fields: reading, lon, level, value Task: Retrieve reading from drought_index with reading above the MIN(reading) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013440
train
v2
Sensor network script: Node: frost | code: stn | fields: type, reading, qc, unit Sensor: soil_moisture | fields: unit, qc, type, lat Task: Retrieve level from frost that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013441
train
v1
Sensor network script: Node: dew_point | code: thr | fields: depth, qc, unit, reading Sensor: turbidity | fields: value, reading, depth, ts Task: Get value from dew_point where ts appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013442
train
v3
Sensor network script: Node: evaporation | code: mst | fields: level, lon, reading, lat Sensor: temperature | fields: reading, ts, depth, qc Task: Fetch lon from evaporation where reading is greater than the total of value in temperature for matching qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013443
train
v2
Sensor network script: Node: temperature | code: thr | fields: ts, reading, type, lon Sensor: pressure | fields: level, depth, value, lon Task: Get depth from temperature where a corresponding entry exists in pressure with the same ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013444
train
v3
Sensor network script: Node: pressure | code: prt | fields: depth, reading, type, lat Sensor: sunlight | fields: value, qc, level, type Task: Get value from pressure where value exceeds the minimum depth from sunlight for the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013445
train
v1
Sensor network script: Node: temperature | code: mst | fields: reading, type, qc, lat Sensor: soil_moisture | fields: ts, depth, qc, value Task: Fetch lon from temperature where qc exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013446
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: level, reading, depth, type Sensor: humidity | fields: unit, depth, type, lat Task: Get reading from wind_speed where depth appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "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_013447
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: lon, reading, ts, depth Sensor: temperature | fields: depth, qc, type, lon Task: Get lat from wind_speed where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013448
train
v1
Sensor network script: Node: evaporation | code: prt | fields: value, lon, lat, ts Sensor: wind_speed | fields: qc, reading, type, unit Task: Fetch depth from evaporation where ts exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013449
train
v3
Sensor network script: Node: drought_index | code: gst | fields: qc, ts, lat, type Sensor: rainfall | fields: reading, qc, lon, value Task: Get lat from drought_index where value exceeds the maximum reading from rainfall for the same unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013450
train
v2
Sensor network script: Node: uv_index | code: hub | fields: lat, level, qc, value Sensor: cloud_cover | fields: level, lon, reading, qc Task: Fetch lat from uv_index that have at least one corresponding cloud_cover measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013451
train
v2
Sensor network script: Node: sunlight | code: ref | fields: ts, qc, level, lat Sensor: frost | fields: reading, lon, level, type Task: Retrieve reading from sunlight that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013452
train
v2
Sensor network script: Node: rainfall | code: clr | fields: lon, level, unit, value Sensor: temperature | fields: level, reading, depth, value Task: Fetch lat from rainfall that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013453
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: type, lon, lat, level Sensor: frost | fields: lat, ts, depth, type Task: Fetch level from soil_moisture where unit exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013454
train
v2
Sensor network script: Node: visibility | code: thr | fields: value, qc, level, reading Sensor: air_quality | fields: depth, lat, unit, ts Task: Retrieve depth from visibility that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013455
train
v1
Sensor network script: Node: rainfall | code: hub | fields: lat, ts, qc, level Sensor: temperature | fields: lon, value, type, level Task: Get level from rainfall where qc appears in temperature readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013456
train
v2
Sensor network script: Node: pressure | code: mst | fields: unit, ts, lon, qc Sensor: evaporation | fields: type, qc, reading, depth Task: Get level from pressure where a corresponding entry exists in evaporation with the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013457
train
v1
Sensor network script: Node: frost | code: prt | fields: level, unit, ts, qc Sensor: evaporation | fields: qc, reading, unit, ts Task: Fetch lon from frost where depth exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013458
train
v1
Sensor network script: Node: sunlight | code: thr | fields: type, depth, ts, unit Sensor: visibility | fields: depth, type, lat, unit Task: Get reading from sunlight where ts appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013459
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: reading, unit, type, qc Sensor: turbidity | fields: value, lon, ts, reading Task: Retrieve lon from soil_moisture with depth above the MIN(depth) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013460
train
v2
Sensor network script: Node: pressure | code: stn | fields: level, value, qc, unit Sensor: snow_depth | fields: level, qc, lon, unit Task: Fetch lon from pressure that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013461
train
v3
Sensor network script: Node: evaporation | code: gst | fields: unit, lat, lon, qc Sensor: soil_moisture | fields: lon, ts, reading, value Task: Fetch level from evaporation where value is greater than the minimum of reading in soil_moisture for matching depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013462
train
v1
Sensor network script: Node: lightning | code: gst | fields: qc, unit, value, type Sensor: turbidity | fields: lat, unit, level, depth Task: Retrieve reading from lightning whose type is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013463
train
v2
Sensor network script: Node: visibility | code: prt | fields: value, lat, unit, lon Sensor: cloud_cover | fields: level, depth, lon, ts Task: Fetch value from visibility that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013464
train
v2
Sensor network script: Node: rainfall | code: clr | fields: depth, level, lon, qc Sensor: drought_index | fields: qc, level, value, depth Task: Get level from rainfall where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013465
train
v1
Sensor network script: Node: air_quality | code: hub | fields: reading, depth, value, level Sensor: soil_moisture | fields: qc, depth, level, unit Task: Get depth from air_quality where unit appears in soil_moisture readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013466
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: value, lat, type, qc Sensor: air_quality | fields: unit, lat, level, depth Task: Retrieve reading from wind_speed that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013467
train
v2
Sensor network script: Node: uv_index | code: stn | fields: level, type, ts, reading Sensor: visibility | fields: reading, lat, unit, ts Task: Fetch lon from uv_index that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013468
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: reading, lat, depth, ts Sensor: cloud_cover | fields: value, level, unit, ts Task: Get value from wind_speed where a corresponding entry exists in cloud_cover with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013469
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: level, lat, lon, depth Sensor: pressure | fields: level, lat, value, unit Task: Get lon from soil_moisture where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013470
train
v3
Sensor network script: Node: lightning | code: mst | fields: lon, qc, lat, unit Sensor: turbidity | fields: type, qc, depth, level Task: Retrieve lon from lightning with depth above the MAX(depth) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013471
train
v2
Sensor network script: Node: humidity | code: clr | fields: depth, lat, reading, unit Sensor: dew_point | fields: ts, value, lon, reading Task: Get depth from humidity where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013472
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: type, lat, depth, reading Sensor: pressure | fields: reading, qc, type, value Task: Get value from snow_depth where depth exceeds the average value from pressure for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013473
train
v1
Sensor network script: Node: visibility | code: prt | fields: lat, lon, type, unit Sensor: temperature | fields: qc, type, lon, ts Task: Retrieve reading from visibility whose qc is found in temperature records where qc matches the outer node. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013474
train
v1
Sensor network script: Node: air_quality | code: prt | fields: ts, lat, depth, qc Sensor: lightning | fields: qc, depth, lon, level Task: Fetch level from air_quality where depth exists in lightning sensor data for the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013475
train
v1
Sensor network script: Node: rainfall | code: mst | fields: unit, lat, level, qc Sensor: cloud_cover | fields: qc, value, reading, depth Task: Fetch level from rainfall where qc exists in cloud_cover sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013476
train
v2
Sensor network script: Node: evaporation | code: gst | fields: qc, type, unit, value Sensor: visibility | fields: lat, lon, reading, depth Task: Retrieve lat from evaporation that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013477
train
v1
Sensor network script: Node: drought_index | code: clr | fields: level, reading, depth, lon Sensor: temperature | fields: unit, ts, value, level Task: Retrieve lat from drought_index whose ts is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013478
train
v2
Sensor network script: Node: sunlight | code: gst | fields: depth, qc, value, level Sensor: soil_moisture | fields: value, lat, ts, reading Task: Get value from sunlight where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013479
train
v1
Sensor network script: Node: drought_index | code: clr | fields: unit, value, depth, level Sensor: frost | fields: depth, reading, unit, lon Task: Fetch value from drought_index where depth exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013480
train
v2
Sensor network script: Node: dew_point | code: hub | fields: reading, value, lat, depth Sensor: wind_speed | fields: value, ts, level, unit Task: Retrieve lon from dew_point that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013481
train
v1
Sensor network script: Node: air_quality | code: ref | fields: ts, reading, unit, depth Sensor: drought_index | fields: unit, ts, depth, level Task: Get depth from air_quality where unit appears in drought_index readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013482
train
v1
Sensor network script: Node: air_quality | code: hub | fields: qc, level, type, lat Sensor: wind_speed | fields: type, unit, ts, lon Task: Retrieve depth from air_quality whose unit is found in wind_speed records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013483
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: lat, type, level, value Sensor: frost | fields: level, depth, lon, unit Task: Retrieve lon from wind_speed whose ts is found in frost records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="qc", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013484
train
v2
Sensor network script: Node: uv_index | code: clr | fields: qc, reading, level, value Sensor: sunlight | fields: depth, lon, lat, unit Task: Retrieve lat from uv_index that have at least one matching reading in sunlight sharing the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013485
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: qc, reading, value, lon Sensor: visibility | fields: qc, type, depth, lon Task: Fetch level from soil_moisture where qc exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013486
train
v3
Sensor network script: Node: lightning | code: prt | fields: reading, ts, type, lat Sensor: uv_index | fields: qc, ts, type, value Task: Get reading from lightning where value exceeds the average value from uv_index for the same ts. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013487
train
v2
Sensor network script: Node: rainfall | code: gst | fields: reading, value, level, depth Sensor: visibility | fields: qc, level, type, ts Task: Get reading from rainfall where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013488
train
v3
Sensor network script: Node: snow_depth | code: mst | fields: ts, level, unit, qc Sensor: temperature | fields: lon, lat, type, reading Task: Fetch level from snow_depth where value is greater than the count of of depth in temperature for matching type. Script:
readings = fetch( node=Node("snow_depth", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013489
train
v3
Sensor network script: Node: air_quality | code: mst | fields: qc, value, ts, lon Sensor: soil_moisture | fields: value, unit, ts, level Task: Fetch lat from air_quality where depth is greater than the average of value in soil_moisture for matching depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013490
train
v2
Sensor network script: Node: uv_index | code: stn | fields: lat, value, level, unit Sensor: wind_speed | fields: ts, lat, value, reading Task: Retrieve reading from uv_index that have at least one matching reading in wind_speed sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013491
train
v1
Sensor network script: Node: air_quality | code: ref | fields: depth, type, lon, value Sensor: rainfall | fields: value, type, level, reading Task: Fetch level from air_quality where unit exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013492
train
v1
Sensor network script: Node: humidity | code: stn | fields: ts, lon, level, qc Sensor: sunlight | fields: level, unit, reading, depth Task: Get level from humidity where depth appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013493
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: qc, value, depth, unit Sensor: soil_moisture | fields: level, qc, unit, reading Task: Retrieve level from wind_speed with reading above the AVG(depth) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013494
train
v3
Sensor network script: Node: turbidity | code: clr | fields: depth, reading, unit, lat Sensor: dew_point | fields: qc, reading, lon, value Task: Fetch lat from turbidity where depth is greater than the average of reading in dew_point for matching qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013495
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: unit, level, depth, qc Sensor: sunlight | fields: level, type, value, qc Task: Get depth from soil_moisture where depth exceeds the maximum depth from sunlight for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="qc"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013496
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: depth, ts, lat, value Sensor: dew_point | fields: depth, unit, qc, reading Task: Get depth from snow_depth where depth appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013497
train
v3
Sensor network script: Node: lightning | code: stn | fields: ts, type, lon, depth Sensor: pressure | fields: type, lat, ts, unit Task: Get reading from lightning where reading exceeds the minimum depth from pressure for the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="qc"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013498
train
v3
Sensor network script: Node: humidity | code: gst | fields: type, depth, value, lon Sensor: air_quality | fields: unit, depth, value, qc Task: Retrieve lat from humidity with reading above the AVG(reading) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013499
train