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: wind_speed | code: mst | fields: type, value, unit, reading Sensor: evaporation | fields: lon, depth, reading, value Task: Get level from wind_speed where value exceeds the minimum value from evaporation for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068100
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: type, lat, ts, qc Sensor: drought_index | fields: lat, reading, unit, value Task: Get value from soil_moisture where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068101
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: lat, qc, reading, value Sensor: humidity | fields: qc, unit, reading, level Task: Fetch lat from snow_depth that have at least one corresponding humidity measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068102
train
v1
Sensor network script: Node: pressure | code: clr | fields: value, lon, unit, level Sensor: temperature | fields: level, unit, lon, value Task: Fetch value from pressure where unit exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068103
train
v1
Sensor network script: Node: temperature | code: ref | fields: qc, lon, unit, lat Sensor: wind_speed | fields: reading, lat, depth, ts Task: Fetch reading from temperature where unit exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068104
train
v1
Sensor network script: Node: sunlight | code: prt | fields: lat, ts, type, qc Sensor: turbidity | fields: value, type, unit, reading Task: Get reading from sunlight where depth appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068105
train
v1
Sensor network script: Node: frost | code: prt | fields: level, lat, lon, unit Sensor: wind_speed | fields: value, lat, reading, level Task: Retrieve depth from frost whose depth is found in wind_speed records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068106
train
v3
Sensor network script: Node: uv_index | code: clr | fields: qc, unit, level, lat Sensor: air_quality | fields: qc, depth, reading, type Task: Retrieve reading from uv_index with depth above the MIN(depth) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068107
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: lon, value, qc, lat Sensor: cloud_cover | fields: depth, lat, type, ts Task: Get depth from snow_depth where qc appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068108
train
v3
Sensor network script: Node: humidity | code: mst | fields: depth, reading, level, lat Sensor: pressure | fields: lat, value, reading, qc Task: Retrieve value from humidity with reading above the MAX(reading) of pressure readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068109
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: value, level, lon, unit Sensor: rainfall | fields: value, lat, unit, ts Task: Fetch lat from wind_speed that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068110
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: type, unit, qc, lat Sensor: wind_speed | fields: level, lon, depth, reading Task: Fetch value from soil_moisture where unit exists in wind_speed sensor data for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068111
train
v1
Sensor network script: Node: sunlight | code: prt | fields: ts, level, reading, unit Sensor: turbidity | fields: type, reading, unit, depth Task: Get level from sunlight where type appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068112
train
v1
Sensor network script: Node: lightning | code: prt | fields: unit, ts, qc, type Sensor: evaporation | fields: unit, lat, type, ts Task: Fetch reading from lightning where qc exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068113
train
v1
Sensor network script: Node: dew_point | code: prt | fields: lat, unit, lon, type Sensor: evaporation | fields: unit, lon, lat, reading Task: Get lon from dew_point where unit appears in evaporation readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068114
train
v1
Sensor network script: Node: rainfall | code: mst | fields: reading, ts, lat, type Sensor: pressure | fields: ts, lat, lon, reading Task: Get lon from rainfall where depth appears in pressure readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068115
train
v3
Sensor network script: Node: dew_point | code: mst | fields: lon, unit, type, qc Sensor: visibility | fields: reading, ts, level, qc Task: Retrieve value from dew_point with depth above the COUNT(value) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068116
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: qc, lat, lon, ts Sensor: temperature | fields: value, lon, unit, ts Task: Get level from wind_speed where depth exceeds the count of depth from temperature for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068117
train
v3
Sensor network script: Node: visibility | code: gst | fields: value, level, lat, ts Sensor: rainfall | fields: unit, ts, value, lon Task: Get reading from visibility where reading exceeds the maximum value from rainfall for the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068118
train
v1
Sensor network script: Node: sunlight | code: ref | fields: ts, depth, value, lon Sensor: snow_depth | fields: ts, lat, lon, value Task: Get value from sunlight where unit appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068119
train
v1
Sensor network script: Node: air_quality | code: gst | fields: qc, level, reading, type Sensor: drought_index | fields: level, type, value, reading Task: Retrieve depth from air_quality whose type is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068120
train
v2
Sensor network script: Node: rainfall | code: prt | fields: ts, unit, qc, level Sensor: turbidity | fields: level, value, unit, reading Task: Get reading from rainfall where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068121
train
v1
Sensor network script: Node: visibility | code: gst | fields: value, reading, depth, qc Sensor: rainfall | fields: ts, type, unit, level Task: Retrieve level from visibility whose unit is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068122
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: level, lon, unit, depth Sensor: air_quality | fields: level, qc, lat, depth Task: Fetch reading from soil_moisture that have at least one corresponding air_quality measurement for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068123
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: unit, depth, ts, type Sensor: snow_depth | fields: value, type, level, lat Task: Get reading from wind_speed where reading exceeds the total value from snow_depth for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="qc"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068124
train
v1
Sensor network script: Node: humidity | code: ref | fields: lon, ts, value, lat Sensor: frost | fields: level, reading, qc, lat Task: Get depth from humidity where unit appears in frost readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068125
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: depth, reading, ts, lat Sensor: rainfall | fields: unit, ts, depth, value Task: Get value from wind_speed where depth appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068126
train
v1
Sensor network script: Node: humidity | code: prt | fields: value, type, level, qc Sensor: temperature | fields: depth, lat, reading, value Task: Get lon from humidity where unit appears in temperature readings with matching type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068127
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: lon, reading, level, qc Sensor: air_quality | fields: lat, value, reading, unit Task: Get reading from soil_moisture where type appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068128
train
v1
Sensor network script: Node: sunlight | code: hub | fields: ts, reading, level, qc Sensor: air_quality | fields: ts, value, lon, qc Task: Get reading from sunlight where ts appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "ts", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068129
train
v3
Sensor network script: Node: visibility | code: gst | fields: depth, lat, level, unit Sensor: air_quality | fields: unit, depth, type, value Task: Retrieve lon from visibility with depth above the SUM(reading) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068130
train
v1
Sensor network script: Node: turbidity | code: stn | fields: unit, qc, value, type Sensor: air_quality | fields: value, type, ts, depth Task: Retrieve lat from turbidity whose ts is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068131
train
v2
Sensor network script: Node: pressure | code: hub | fields: reading, type, level, lat Sensor: evaporation | fields: level, value, lat, lon Task: Fetch level from pressure that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068132
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: ts, lat, value, unit Sensor: lightning | fields: depth, value, qc, reading Task: Get lon from cloud_cover where depth exceeds the maximum depth from lightning for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068133
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: lat, type, qc, value Sensor: lightning | fields: type, lon, level, ts Task: Retrieve depth from snow_depth with depth above the SUM(value) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="ts"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "depth", "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_068134
train
v2
Sensor network script: Node: evaporation | code: stn | fields: lon, value, lat, qc Sensor: cloud_cover | fields: level, value, lat, reading Task: Fetch reading from evaporation that have at least one corresponding cloud_cover measurement for the same type. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068135
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: level, type, qc, lon Sensor: rainfall | fields: lon, ts, type, unit Task: Fetch depth from cloud_cover that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068136
train
v3
Sensor network script: Node: sunlight | code: stn | fields: ts, level, lon, reading Sensor: soil_moisture | fields: unit, level, ts, qc Task: Retrieve lat from sunlight with depth above the SUM(depth) of soil_moisture readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068137
train
v1
Sensor network script: Node: dew_point | code: mst | fields: lat, unit, level, ts Sensor: pressure | fields: lat, level, value, lon Task: Get value from dew_point where type appears in pressure readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="type", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068138
train
v2
Sensor network script: Node: dew_point | code: thr | fields: unit, value, reading, ts Sensor: soil_moisture | fields: type, reading, level, lon Task: Retrieve lon from dew_point that have at least one matching reading in soil_moisture sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="unit", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068139
train
v1
Sensor network script: Node: dew_point | code: prt | fields: reading, lon, unit, qc Sensor: frost | fields: unit, level, ts, qc Task: Retrieve depth from dew_point whose type is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="type", source=Probe("frost", code="frs"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068140
train
v2
Sensor network script: Node: uv_index | code: ref | fields: qc, type, level, ts Sensor: dew_point | fields: qc, reading, ts, type Task: Retrieve value from uv_index that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068141
train
v3
Sensor network script: Node: evaporation | code: mst | fields: unit, qc, lon, level Sensor: humidity | fields: level, type, unit, ts Task: Fetch level from evaporation where depth is greater than the total of reading in humidity for matching type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("humidity", code="hgr"), match="type"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068142
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: reading, unit, ts, lon Sensor: turbidity | fields: lon, lat, depth, type Task: Fetch value from soil_moisture where ts exists in turbidity sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068143
train
v3
Sensor network script: Node: frost | code: stn | fields: depth, value, type, level Sensor: snow_depth | fields: qc, level, lat, depth Task: Retrieve lat from frost with value above the COUNT(value) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="depth"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068144
train
v2
Sensor network script: Node: uv_index | code: prt | fields: reading, lat, level, unit Sensor: snow_depth | fields: lat, qc, unit, ts Task: Retrieve lat from uv_index that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068145
train
v2
Sensor network script: Node: air_quality | code: clr | fields: reading, qc, ts, lon Sensor: soil_moisture | fields: level, unit, value, lat Task: Retrieve lon from air_quality that have at least one matching reading in soil_moisture sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068146
train
v2
Sensor network script: Node: pressure | code: mst | fields: lon, ts, reading, depth Sensor: lightning | fields: type, level, reading, unit Task: Retrieve value from pressure that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068147
train
v1
Sensor network script: Node: frost | code: thr | fields: lat, lon, level, unit Sensor: visibility | fields: lat, lon, value, reading Task: Get depth from frost where ts appears in visibility readings with matching type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068148
train
v3
Sensor network script: Node: sunlight | code: hub | fields: reading, unit, qc, level Sensor: drought_index | fields: ts, level, value, unit Task: Retrieve reading from sunlight with value above the COUNT(reading) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("drought_index", code="drt"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068149
train
v2
Sensor network script: Node: turbidity | code: stn | fields: lon, reading, type, depth Sensor: cloud_cover | fields: depth, lat, type, qc Task: Retrieve depth from turbidity that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068150
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: type, qc, lon, unit Sensor: temperature | fields: value, reading, depth, ts Task: Get level from soil_moisture where reading exceeds the maximum depth from temperature for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068151
train
v1
Sensor network script: Node: air_quality | code: clr | fields: reading, ts, qc, unit Sensor: snow_depth | fields: lat, depth, lon, ts Task: Get level from air_quality where qc appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "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_068152
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: lon, level, reading, unit Sensor: turbidity | fields: type, qc, reading, lat Task: Get depth from wind_speed where ts appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068153
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: qc, depth, reading, unit Sensor: rainfall | fields: lat, lon, value, depth Task: Fetch lat from cloud_cover where unit exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068154
train
v1
Sensor network script: Node: sunlight | code: ref | fields: type, level, qc, ts Sensor: frost | fields: unit, ts, lat, type Task: Retrieve lat from sunlight whose qc is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068155
train
v2
Sensor network script: Node: sunlight | code: stn | fields: depth, reading, lon, unit Sensor: dew_point | fields: unit, value, qc, lon Task: Get value from sunlight where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068156
train
v1
Sensor network script: Node: humidity | code: stn | fields: lat, reading, depth, type Sensor: frost | fields: unit, type, value, lon Task: Fetch depth from humidity where depth exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068157
train
v2
Sensor network script: Node: sunlight | code: ref | fields: lon, depth, lat, reading Sensor: wind_speed | fields: unit, value, lon, depth Task: Fetch lon from sunlight that have at least one corresponding wind_speed measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068158
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: unit, lat, type, reading Sensor: pressure | fields: qc, unit, level, reading Task: Get depth from snow_depth where reading exceeds the maximum depth from pressure for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="depth"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068159
train
v3
Sensor network script: Node: drought_index | code: mst | fields: value, unit, type, depth Sensor: wind_speed | fields: value, reading, qc, unit Task: Fetch depth from drought_index where value is greater than the maximum of reading in wind_speed for matching type. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068160
train
v3
Sensor network script: Node: rainfall | code: stn | fields: lat, reading, lon, level Sensor: lightning | fields: type, lat, lon, reading Task: Get value from rainfall where value exceeds the total depth from lightning for the same depth. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068161
train
v2
Sensor network script: Node: pressure | code: gst | fields: ts, lat, lon, unit Sensor: turbidity | fields: value, lat, type, depth Task: Get lat from pressure where a corresponding entry exists in turbidity with the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068162
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: reading, value, level, type Sensor: lightning | fields: level, depth, value, reading Task: Retrieve depth from wind_speed with depth above the SUM(reading) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="unit"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068163
train
v1
Sensor network script: Node: lightning | code: stn | fields: lon, qc, depth, reading Sensor: air_quality | fields: lon, unit, value, type Task: Retrieve lon from lightning whose depth is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="depth", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068164
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: ts, reading, qc, value Sensor: pressure | fields: depth, unit, lon, qc Task: Retrieve level from wind_speed that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068165
train
v3
Sensor network script: Node: pressure | code: mst | fields: reading, unit, depth, level Sensor: lightning | fields: lat, type, lon, depth Task: Fetch lat from pressure where value is greater than the minimum of depth in lightning for matching ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="lat", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068166
train
v3
Sensor network script: Node: humidity | code: mst | fields: level, qc, depth, lat Sensor: dew_point | fields: lat, reading, type, qc Task: Fetch depth from humidity where reading is greater than the maximum of value in dew_point for matching type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="type"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068167
train
v1
Sensor network script: Node: sunlight | code: ref | fields: lon, lat, reading, depth Sensor: dew_point | fields: unit, lon, reading, level Task: Retrieve value from sunlight whose qc is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068168
train
v2
Sensor network script: Node: frost | code: clr | fields: type, unit, depth, level Sensor: dew_point | fields: unit, value, type, depth Task: Fetch depth from frost that have at least one corresponding dew_point measurement for the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068169
train
v1
Sensor network script: Node: sunlight | code: mst | fields: unit, ts, value, qc Sensor: drought_index | fields: reading, lon, level, qc Task: Retrieve level from sunlight whose qc is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068170
train
v1
Sensor network script: Node: drought_index | code: thr | fields: qc, value, unit, reading Sensor: uv_index | fields: lon, value, lat, ts Task: Get depth from drought_index where depth appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068171
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: level, depth, ts, unit Sensor: air_quality | fields: lat, ts, level, qc Task: Fetch value from soil_moisture where depth is greater than the maximum of depth in air_quality for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("air_quality", code="prt"), match="ts"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068172
train
v1
Sensor network script: Node: dew_point | code: prt | fields: reading, lon, value, qc Sensor: rainfall | fields: ts, level, qc, lon Task: Retrieve lon from dew_point whose qc is found in rainfall records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068173
train
v1
Sensor network script: Node: humidity | code: gst | fields: reading, level, type, unit Sensor: snow_depth | fields: unit, depth, qc, reading Task: Get level from humidity where ts appears in snow_depth readings with matching type. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068174
train
v3
Sensor network script: Node: temperature | code: ref | fields: value, lat, type, ts Sensor: soil_moisture | fields: lon, qc, ts, lat Task: Fetch value from temperature where value is greater than the maximum of value in soil_moisture for matching depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068175
train
v1
Sensor network script: Node: visibility | code: ref | fields: depth, unit, lon, reading Sensor: soil_moisture | fields: lat, ts, value, depth Task: Fetch lon from visibility where depth exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068176
train
v1
Sensor network script: Node: temperature | code: clr | fields: depth, ts, unit, level Sensor: soil_moisture | fields: value, level, reading, unit Task: Fetch lon from temperature where unit exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068177
train
v1
Sensor network script: Node: air_quality | code: clr | fields: value, qc, level, reading Sensor: rainfall | fields: lon, type, qc, value Task: Retrieve reading from air_quality whose ts is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068178
train
v3
Sensor network script: Node: temperature | code: thr | fields: unit, lat, level, type Sensor: air_quality | fields: depth, unit, type, reading Task: Fetch lat from temperature where reading is greater than the minimum of value in air_quality for matching depth. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068179
train
v1
Sensor network script: Node: drought_index | code: gst | fields: reading, ts, type, depth Sensor: sunlight | fields: reading, level, depth, lat Task: Get lon from drought_index where ts appears in sunlight readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068180
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: value, ts, lon, qc Sensor: lightning | fields: lat, reading, ts, lon Task: Retrieve depth from soil_moisture whose qc is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068181
train
v2
Sensor network script: Node: evaporation | code: ref | fields: lat, unit, lon, qc Sensor: wind_speed | fields: reading, lon, level, value Task: Retrieve level from evaporation that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068182
train
v2
Sensor network script: Node: sunlight | code: clr | fields: qc, depth, lon, lat Sensor: dew_point | fields: lat, type, reading, qc Task: Fetch lat from sunlight that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068183
train
v3
Sensor network script: Node: evaporation | code: ref | fields: unit, value, level, type Sensor: snow_depth | fields: qc, lon, reading, unit Task: Retrieve lon from evaporation with depth above the MIN(reading) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068184
train
v2
Sensor network script: Node: sunlight | code: stn | fields: reading, value, qc, unit Sensor: pressure | fields: qc, lon, unit, level Task: Retrieve lat from sunlight that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068185
train
v1
Sensor network script: Node: pressure | code: prt | fields: level, lat, qc, depth Sensor: uv_index | fields: depth, ts, level, unit Task: Retrieve value from pressure whose ts is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068186
train
v1
Sensor network script: Node: evaporation | code: stn | fields: value, level, ts, qc Sensor: cloud_cover | fields: unit, reading, lon, type Task: Get level from evaporation where unit appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068187
train
v2
Sensor network script: Node: uv_index | code: hub | fields: reading, lon, unit, value Sensor: sunlight | fields: qc, value, type, reading Task: Get value from uv_index where a corresponding entry exists in sunlight with the same unit. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068188
train
v2
Sensor network script: Node: sunlight | code: thr | fields: unit, ts, lon, depth Sensor: snow_depth | fields: unit, type, level, lat Task: Get depth from sunlight where a corresponding entry exists in snow_depth with the same unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068189
train
v1
Sensor network script: Node: dew_point | code: mst | fields: lon, qc, level, lat Sensor: frost | fields: type, level, lat, ts Task: Fetch lat from dew_point where qc exists in frost sensor data for the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="ts", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068190
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: lon, type, lat, value Sensor: temperature | fields: qc, depth, lat, reading Task: Retrieve lon from soil_moisture that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_068191
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: reading, depth, lat, type Sensor: soil_moisture | fields: qc, level, unit, type Task: Get depth from cloud_cover where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068192
train
v3
Sensor network script: Node: visibility | code: gst | fields: unit, lat, lon, reading Sensor: soil_moisture | fields: level, qc, type, unit Task: Fetch lat from visibility where reading is greater than the maximum of depth in soil_moisture for matching type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("soil_moisture", code="grvl"), match="type"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068193
train
v1
Sensor network script: Node: air_quality | code: stn | fields: ts, value, depth, type Sensor: lightning | fields: qc, reading, ts, lon Task: Fetch reading from air_quality where depth exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068194
train
v2
Sensor network script: Node: pressure | code: hub | fields: unit, lat, reading, type Sensor: uv_index | fields: depth, value, lat, lon Task: Retrieve lat from pressure that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068195
train
v2
Sensor network script: Node: lightning | code: hub | fields: reading, lon, value, unit Sensor: rainfall | fields: type, lon, ts, depth Task: Retrieve value from lightning that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068196
train
v3
Sensor network script: Node: turbidity | code: stn | fields: lat, unit, lon, qc Sensor: uv_index | fields: lat, type, qc, reading Task: Retrieve value from turbidity with reading above the MAX(value) of uv_index readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("uv_index", code="flx"), match="qc"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068197
train
v1
Sensor network script: Node: drought_index | code: stn | fields: lat, type, reading, level Sensor: turbidity | fields: unit, level, qc, lat Task: Fetch level from drought_index where unit exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="unit", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068198
train
v1
Sensor network script: Node: frost | code: thr | fields: lon, depth, value, type Sensor: sunlight | fields: type, lon, depth, reading Task: Fetch value from frost where ts exists in sunlight sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_068199
train