variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: lightning | code: prt | fields: lat, depth, level, unit Sensor: cloud_cover | fields: reading, type, depth, qc Task: Fetch value from lightning where depth is greater than the maximum of value in cloud_cover for matching depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065600
train
v3
Sensor network script: Node: cloud_cover | code: clr | fields: lon, level, qc, depth Sensor: frost | fields: unit, reading, level, ts Task: Retrieve level from cloud_cover with reading above the MAX(depth) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065601
train
v2
Sensor network script: Node: humidity | code: mst | fields: level, qc, type, depth Sensor: wind_speed | fields: type, value, depth, lat Task: Fetch reading from humidity that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065602
train
v3
Sensor network script: Node: sunlight | code: thr | fields: lon, type, unit, value Sensor: evaporation | fields: ts, value, type, depth Task: Fetch value from sunlight where depth is greater than the maximum of value in evaporation for matching type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065603
train
v3
Sensor network script: Node: humidity | code: mst | fields: ts, lon, unit, value Sensor: cloud_cover | fields: unit, level, lat, ts Task: Fetch reading from humidity where value is greater than the maximum of depth in cloud_cover for matching unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065604
train
v1
Sensor network script: Node: humidity | code: stn | fields: type, level, reading, depth Sensor: frost | fields: qc, level, ts, lat Task: Fetch value from humidity where type exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065605
train
v2
Sensor network script: Node: humidity | code: prt | fields: lat, ts, qc, reading Sensor: soil_moisture | fields: lon, level, type, qc Task: Fetch level from humidity that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065606
train
v3
Sensor network script: Node: drought_index | code: thr | fields: ts, qc, level, lat Sensor: lightning | fields: ts, type, lon, value Task: Fetch lat from drought_index where depth is greater than the count of of value in lightning for matching qc. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065607
train
v2
Sensor network script: Node: air_quality | code: ref | fields: value, type, depth, qc Sensor: snow_depth | fields: lat, level, unit, type Task: Fetch depth from air_quality that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065608
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: level, qc, reading, lon Sensor: soil_moisture | fields: unit, lon, reading, ts Task: Get lat from snow_depth where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065609
train
v1
Sensor network script: Node: evaporation | code: gst | fields: unit, lon, value, qc Sensor: sunlight | fields: level, qc, type, reading Task: Get level from evaporation where ts appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065610
train
v2
Sensor network script: Node: visibility | code: ref | fields: lon, ts, qc, value Sensor: turbidity | fields: value, lon, unit, type Task: Fetch value from visibility that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "value", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065611
train
v2
Sensor network script: Node: visibility | code: stn | fields: unit, depth, level, qc Sensor: wind_speed | fields: unit, lon, reading, ts Task: Fetch value from visibility that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065612
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: lon, type, lat, reading Sensor: rainfall | fields: reading, value, qc, depth Task: Retrieve depth from wind_speed that have at least one matching reading in rainfall sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065613
train
v1
Sensor network script: Node: dew_point | code: stn | fields: reading, unit, level, qc Sensor: visibility | fields: lat, type, level, lon Task: Retrieve depth from dew_point whose depth is found in visibility records where qc matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065614
train
v1
Sensor network script: Node: turbidity | code: stn | fields: lon, lat, value, unit Sensor: rainfall | fields: level, unit, ts, value Task: Get lon from turbidity where ts appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065615
train
v1
Sensor network script: Node: drought_index | code: ref | fields: unit, lon, reading, value Sensor: air_quality | fields: ts, value, level, reading Task: Fetch lon from drought_index where type exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065616
train
v3
Sensor network script: Node: temperature | code: hub | fields: lon, ts, reading, unit Sensor: dew_point | fields: level, ts, type, reading Task: Get value from temperature where depth exceeds the average reading from dew_point for the same depth. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065617
train
v2
Sensor network script: Node: humidity | code: prt | fields: reading, level, lat, lon Sensor: rainfall | fields: type, unit, ts, depth Task: Retrieve lat from humidity that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065618
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: ts, type, value, qc Sensor: sunlight | fields: reading, unit, lat, type Task: Fetch reading from cloud_cover that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065619
train
v2
Sensor network script: Node: uv_index | code: hub | fields: unit, ts, depth, qc Sensor: dew_point | fields: lat, ts, reading, type Task: Fetch level from uv_index that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065620
train
v3
Sensor network script: Node: evaporation | code: ref | fields: type, depth, unit, level Sensor: visibility | fields: lat, reading, level, qc Task: Retrieve lon from evaporation with value above the COUNT(depth) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065621
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: ts, depth, reading, value Sensor: frost | fields: lon, level, type, qc Task: Get level from cloud_cover where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065622
train
v2
Sensor network script: Node: evaporation | code: hub | fields: type, depth, qc, value Sensor: sunlight | fields: unit, qc, type, level Task: Retrieve value from evaporation that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065623
train
v1
Sensor network script: Node: evaporation | code: stn | fields: qc, lon, unit, lat Sensor: lightning | fields: ts, depth, lat, reading Task: Fetch lon from evaporation where unit exists in lightning sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065624
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: level, ts, lon, qc Sensor: frost | fields: depth, ts, unit, reading Task: Fetch value from cloud_cover that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065625
train
v1
Sensor network script: Node: dew_point | code: gst | fields: reading, ts, level, type Sensor: evaporation | fields: lat, value, ts, level Task: Retrieve reading from dew_point whose type is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065626
train
v3
Sensor network script: Node: sunlight | code: clr | fields: depth, qc, ts, level Sensor: rainfall | fields: ts, reading, qc, depth Task: Retrieve reading from sunlight with reading above the AVG(reading) of rainfall readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065627
train
v1
Sensor network script: Node: turbidity | code: hub | fields: qc, ts, value, level Sensor: air_quality | fields: qc, lat, lon, value Task: Retrieve reading from turbidity whose unit is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065628
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: unit, ts, depth, type Sensor: humidity | fields: reading, level, depth, lat Task: Get lat from snow_depth where a corresponding entry exists in humidity with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065629
train
v2
Sensor network script: Node: frost | code: ref | fields: reading, type, depth, value Sensor: visibility | fields: reading, value, lon, level Task: Get depth from frost where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065630
train
v3
Sensor network script: Node: temperature | code: thr | fields: value, reading, level, lon Sensor: uv_index | fields: unit, lon, lat, qc Task: Fetch lon from temperature where depth is greater than the count of of value in uv_index for matching ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065631
train
v2
Sensor network script: Node: frost | code: prt | fields: level, qc, lat, lon Sensor: snow_depth | fields: unit, lon, type, ts Task: Retrieve value from frost that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065632
train
v1
Sensor network script: Node: air_quality | code: thr | fields: level, value, lat, ts Sensor: drought_index | fields: type, value, unit, ts Task: Fetch value from air_quality where qc exists in drought_index sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065633
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: lon, lat, ts, depth Sensor: turbidity | fields: value, unit, qc, lat Task: Retrieve lon from wind_speed whose type is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065634
train
v3
Sensor network script: Node: uv_index | code: clr | fields: ts, reading, qc, depth Sensor: lightning | fields: reading, unit, ts, qc Task: Retrieve depth from uv_index with depth above the MAX(depth) of lightning readings sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065635
train
v3
Sensor network script: Node: pressure | code: thr | fields: ts, qc, depth, reading Sensor: drought_index | fields: unit, ts, depth, qc Task: Get lon from pressure where value exceeds the maximum value from drought_index for the same type. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065636
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: level, lon, value, lat Sensor: temperature | fields: unit, ts, qc, lon Task: Fetch reading from wind_speed where depth exists in temperature sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065637
train
v3
Sensor network script: Node: temperature | code: stn | fields: qc, value, unit, lon Sensor: wind_speed | fields: depth, lat, qc, unit Task: Fetch value from temperature where value is greater than the average of value in wind_speed for matching type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065638
train
v3
Sensor network script: Node: dew_point | code: hub | fields: qc, lat, unit, level Sensor: evaporation | fields: lon, ts, reading, lat Task: Retrieve lat from dew_point with value above the MIN(reading) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065639
train
v1
Sensor network script: Node: air_quality | code: ref | fields: value, depth, lat, type Sensor: sunlight | fields: type, lon, lat, depth Task: Fetch value from air_quality where ts exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065640
train
v2
Sensor network script: Node: dew_point | code: stn | fields: reading, type, qc, lat Sensor: evaporation | fields: level, depth, type, value Task: Retrieve reading from dew_point that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065641
train
v3
Sensor network script: Node: lightning | code: clr | fields: qc, reading, value, depth Sensor: turbidity | fields: type, lat, reading, qc Task: Fetch lat from lightning where reading is greater than the average of depth in turbidity for matching ts. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065642
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: reading, qc, depth, lat Sensor: air_quality | fields: ts, qc, lon, depth Task: Fetch lat from soil_moisture where reading is greater than the average of reading in air_quality for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065643
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: reading, qc, type, value Sensor: turbidity | fields: depth, lat, type, reading Task: Get lat from soil_moisture where depth appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065644
train
v1
Sensor network script: Node: dew_point | code: hub | fields: unit, qc, level, type Sensor: lightning | fields: lon, value, qc, level Task: Retrieve depth from dew_point whose qc is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065645
train
v2
Sensor network script: Node: temperature | code: mst | fields: level, ts, depth, reading Sensor: lightning | fields: depth, qc, type, unit Task: Retrieve lat from temperature that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065646
train
v3
Sensor network script: Node: humidity | code: stn | fields: depth, value, reading, lon Sensor: air_quality | fields: lon, unit, depth, qc Task: Fetch reading from humidity where depth is greater than the total of value in air_quality for matching unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("air_quality", code="prt"), match="unit"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065647
train
v3
Sensor network script: Node: drought_index | code: clr | fields: type, lon, unit, level Sensor: temperature | fields: qc, depth, unit, reading Task: Fetch reading from drought_index where reading is greater than the minimum of value in temperature for matching depth. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("temperature", code="thr"), match="depth"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065648
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: value, ts, lat, reading Sensor: evaporation | fields: unit, value, depth, type Task: Retrieve lat from cloud_cover with value above the MIN(depth) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="type"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065649
train
v3
Sensor network script: Node: air_quality | code: clr | fields: ts, level, depth, unit Sensor: lightning | fields: level, reading, unit, type Task: Get reading from air_quality where depth exceeds the minimum value from lightning for the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065650
train
v3
Sensor network script: Node: frost | code: thr | fields: value, lat, type, depth Sensor: pressure | fields: qc, depth, level, type Task: Fetch level from frost where value is greater than the minimum of depth in pressure for matching unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="level", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065651
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: type, unit, depth, level Sensor: lightning | fields: reading, depth, level, lat Task: Get depth from snow_depth where value exceeds the average reading from lightning for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065652
train
v1
Sensor network script: Node: humidity | code: mst | fields: ts, qc, reading, unit Sensor: dew_point | fields: lon, value, lat, ts Task: Retrieve reading from humidity whose depth is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065653
train
v3
Sensor network script: Node: evaporation | code: clr | fields: reading, value, ts, unit Sensor: pressure | fields: unit, level, reading, ts Task: Retrieve depth from evaporation with reading above the SUM(reading) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065654
train
v1
Sensor network script: Node: pressure | code: clr | fields: lon, depth, qc, reading Sensor: snow_depth | fields: level, reading, unit, ts Task: Get level from pressure where qc appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065655
train
v1
Sensor network script: Node: evaporation | code: clr | fields: level, unit, reading, value Sensor: drought_index | fields: lat, depth, lon, level Task: Fetch value from evaporation where type exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065656
train
v3
Sensor network script: Node: frost | code: hub | fields: ts, unit, value, depth Sensor: dew_point | fields: reading, value, qc, unit Task: Fetch lon from frost where value is greater than the average of depth in dew_point for matching qc. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065657
train
v2
Sensor network script: Node: sunlight | code: gst | fields: ts, value, reading, level Sensor: frost | fields: lat, value, depth, unit Task: Fetch reading from sunlight that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065658
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: reading, value, depth, level Sensor: humidity | fields: ts, lat, value, qc Task: Retrieve lat from cloud_cover whose depth is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065659
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: unit, type, lon, depth Sensor: pressure | fields: unit, level, type, lat Task: Fetch depth from wind_speed where type exists in pressure sensor data for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065660
train
v1
Sensor network script: Node: uv_index | code: ref | fields: type, value, lon, depth Sensor: rainfall | fields: reading, value, qc, lon Task: Retrieve reading from uv_index whose unit is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065661
train
v3
Sensor network script: Node: humidity | code: prt | fields: level, unit, reading, ts Sensor: rainfall | fields: ts, unit, type, value Task: Get lon from humidity where depth exceeds the minimum value from rainfall for the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065662
train
v1
Sensor network script: Node: drought_index | code: mst | fields: reading, unit, type, qc Sensor: visibility | fields: lat, ts, level, qc Task: Fetch value from drought_index where depth exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065663
train
v1
Sensor network script: Node: rainfall | code: mst | fields: lat, lon, level, type Sensor: humidity | fields: qc, unit, depth, lat Task: Fetch reading from rainfall where depth exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065664
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: reading, lon, level, lat Sensor: rainfall | fields: lat, unit, level, ts Task: Get level from wind_speed where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065665
train
v3
Sensor network script: Node: rainfall | code: ref | fields: qc, ts, unit, depth Sensor: dew_point | fields: level, value, lat, unit Task: Fetch lon from rainfall where value is greater than the total of depth in dew_point for matching ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065666
train
v1
Sensor network script: Node: rainfall | code: ref | fields: reading, qc, type, value Sensor: temperature | fields: reading, level, lon, lat Task: Get reading from rainfall where ts appears in temperature readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065667
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: level, type, lat, depth Sensor: turbidity | fields: reading, unit, ts, lon Task: Get level from cloud_cover where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065668
train
v2
Sensor network script: Node: uv_index | code: mst | fields: depth, unit, lat, value Sensor: soil_moisture | fields: unit, reading, value, depth Task: Get value from uv_index where a corresponding entry exists in soil_moisture with the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065669
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: ts, lon, value, reading Sensor: cloud_cover | fields: reading, lon, lat, unit Task: Fetch value from snow_depth where depth is greater than the maximum of reading in cloud_cover for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065670
train
v2
Sensor network script: Node: uv_index | code: ref | fields: reading, level, lat, depth Sensor: cloud_cover | fields: depth, level, type, reading Task: Retrieve depth from uv_index that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065671
train
v1
Sensor network script: Node: temperature | code: stn | fields: lon, depth, value, level Sensor: dew_point | fields: type, unit, reading, lon Task: Fetch lon from temperature where ts exists in dew_point sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065672
train
v3
Sensor network script: Node: rainfall | code: gst | fields: lat, value, type, lon Sensor: lightning | fields: reading, lat, ts, qc Task: Retrieve lon from rainfall with depth above the AVG(value) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065673
train
v2
Sensor network script: Node: drought_index | code: prt | fields: level, value, type, qc Sensor: wind_speed | fields: unit, level, lat, lon Task: Fetch reading from drought_index that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065674
train
v1
Sensor network script: Node: visibility | code: thr | fields: type, ts, unit, qc Sensor: pressure | fields: lat, unit, level, ts Task: Fetch lon from visibility where qc exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065675
train
v2
Sensor network script: Node: lightning | code: thr | fields: reading, qc, level, lon Sensor: cloud_cover | fields: reading, lat, lon, qc Task: Get depth from lightning where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065676
train
v3
Sensor network script: Node: evaporation | code: mst | fields: ts, depth, reading, qc Sensor: dew_point | fields: lon, lat, value, depth Task: Get reading from evaporation where value exceeds the average reading from dew_point for the same unit. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065677
train
v1
Sensor network script: Node: air_quality | code: hub | fields: lat, reading, unit, type Sensor: humidity | fields: ts, level, depth, reading Task: Retrieve reading from air_quality whose type is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065678
train
v2
Sensor network script: Node: uv_index | code: stn | fields: value, level, lat, qc Sensor: visibility | fields: value, lat, lon, type Task: Fetch lat 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="lat", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065679
train
v3
Sensor network script: Node: frost | code: ref | fields: depth, lon, qc, reading Sensor: evaporation | fields: reading, depth, ts, qc Task: Retrieve depth from frost with value above the MIN(reading) of evaporation readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065680
train
v1
Sensor network script: Node: air_quality | code: thr | fields: reading, unit, value, ts Sensor: dew_point | fields: qc, lat, lon, value Task: Retrieve lat from air_quality whose type is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065681
train
v1
Sensor network script: Node: pressure | code: stn | fields: qc, unit, level, value Sensor: sunlight | fields: value, lon, level, depth Task: Fetch lat from pressure where ts exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065682
train
v3
Sensor network script: Node: uv_index | code: prt | fields: reading, qc, level, ts Sensor: turbidity | fields: type, qc, unit, lat Task: Get lat from uv_index where depth exceeds the minimum reading from turbidity for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065683
train
v3
Sensor network script: Node: sunlight | code: ref | fields: type, value, depth, lon Sensor: soil_moisture | fields: reading, unit, ts, value Task: Retrieve lat from sunlight with reading above the MIN(depth) of soil_moisture readings sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065684
train
v2
Sensor network script: Node: cloud_cover | code: stn | fields: value, qc, lat, type Sensor: visibility | fields: reading, depth, level, ts Task: Get lat from cloud_cover where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065685
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: lat, depth, lon, level Sensor: lightning | fields: qc, type, value, reading Task: Retrieve reading from soil_moisture whose type is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065686
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: unit, reading, level, type Sensor: temperature | fields: level, lat, lon, unit Task: Get depth from snow_depth where depth exceeds the total reading from temperature for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065687
train
v3
Sensor network script: Node: drought_index | code: stn | fields: unit, depth, qc, lon Sensor: turbidity | fields: level, lat, value, reading Task: Get depth from drought_index where reading exceeds the average depth from turbidity for the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065688
train
v2
Sensor network script: Node: turbidity | code: ref | fields: type, level, depth, unit Sensor: uv_index | fields: qc, ts, depth, type Task: Fetch lat from turbidity that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065689
train
v3
Sensor network script: Node: evaporation | code: clr | fields: reading, depth, type, value Sensor: pressure | fields: level, qc, type, lat Task: Fetch lat from evaporation where reading is greater than the count of of depth in pressure for matching unit. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="unit"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065690
train
v2
Sensor network script: Node: air_quality | code: clr | fields: qc, type, lon, depth Sensor: pressure | fields: level, value, qc, lon Task: Get value from air_quality where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065691
train
v2
Sensor network script: Node: evaporation | code: ref | fields: type, ts, depth, qc Sensor: frost | fields: unit, lon, qc, reading Task: Retrieve reading from evaporation that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "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_065692
train
v3
Sensor network script: Node: rainfall | code: hub | fields: value, depth, ts, lon Sensor: temperature | fields: unit, ts, lat, depth Task: Get depth from rainfall where value exceeds the minimum depth from temperature for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_065693
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: ts, unit, value, lon Sensor: cloud_cover | fields: level, reading, value, qc Task: Retrieve reading from wind_speed that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065694
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: lat, type, level, ts Sensor: drought_index | fields: qc, lon, depth, lat Task: Get reading from cloud_cover where type appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065695
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: depth, lat, reading, value Sensor: snow_depth | fields: reading, qc, depth, ts Task: Get value from soil_moisture where value exceeds the average reading from snow_depth for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065696
train
v1
Sensor network script: Node: lightning | code: prt | fields: depth, ts, reading, level Sensor: evaporation | fields: reading, unit, depth, qc Task: Get lon from lightning where unit appears in evaporation readings with matching type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065697
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: value, depth, reading, lon Sensor: dew_point | fields: lat, reading, level, lon Task: Fetch level from wind_speed where reading is greater than the count of of depth in dew_point for matching depth. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="depth"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065698
train
v3
Sensor network script: Node: air_quality | code: prt | fields: value, lon, lat, unit Sensor: pressure | fields: lon, level, type, depth Task: Fetch reading from air_quality where value is greater than the maximum of reading in pressure for matching depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("pressure", code="mbl"), match="depth"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_065699
train