variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v1
Sensor network script: Node: air_quality | code: stn | fields: depth, unit, value, ts Sensor: humidity | fields: lat, lon, type, value Task: Retrieve reading from air_quality whose unit is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067200
train
v1
Sensor network script: Node: rainfall | code: gst | fields: qc, reading, type, unit Sensor: lightning | fields: type, value, level, unit Task: Retrieve reading from rainfall whose ts is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067201
train
v1
Sensor network script: Node: air_quality | code: prt | fields: value, ts, lat, level Sensor: temperature | fields: ts, value, lat, level Task: Retrieve lon from air_quality whose type is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067202
train
v2
Sensor network script: Node: air_quality | code: mst | fields: lon, level, type, lat Sensor: dew_point | fields: value, qc, reading, level Task: Retrieve lon from air_quality that have at least one matching reading in dew_point sharing the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067203
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: ts, unit, level, depth Sensor: uv_index | fields: level, lat, value, lon Task: Get reading from wind_speed where qc appears in uv_index readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067204
train
v3
Sensor network script: Node: drought_index | code: stn | fields: depth, lon, level, ts Sensor: frost | fields: lon, reading, level, value Task: Fetch lat from drought_index where reading is greater than the count of of value in frost for matching unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("frost", code="frs"), match="unit"), ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067205
train
v3
Sensor network script: Node: rainfall | code: thr | fields: lon, depth, unit, qc Sensor: air_quality | fields: qc, lat, lon, value Task: Retrieve reading from rainfall with reading above the COUNT(reading) of air_quality readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067206
train
v1
Sensor network script: Node: dew_point | code: stn | fields: qc, depth, reading, lat Sensor: lightning | fields: lon, ts, reading, qc Task: Get reading from dew_point where unit appears in lightning readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067207
train
v1
Sensor network script: Node: temperature | code: prt | fields: type, unit, value, reading Sensor: cloud_cover | fields: level, depth, lat, value Task: Get depth from temperature where unit appears in cloud_cover readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067208
train
v3
Sensor network script: Node: dew_point | code: gst | fields: lon, depth, qc, type Sensor: snow_depth | fields: lon, depth, lat, unit Task: Get level from dew_point where depth exceeds the minimum depth from snow_depth for the same type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067209
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: reading, depth, unit, qc Sensor: uv_index | fields: reading, level, lat, ts Task: Fetch reading from cloud_cover where unit exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067210
train
v2
Sensor network script: Node: dew_point | code: clr | fields: level, reading, depth, unit Sensor: air_quality | fields: lon, reading, value, type Task: Fetch value from dew_point that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067211
train
v1
Sensor network script: Node: lightning | code: stn | fields: value, reading, depth, lat Sensor: air_quality | fields: qc, lat, reading, value Task: Get lat from lightning where qc appears in air_quality readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067212
train
v3
Sensor network script: Node: pressure | code: clr | fields: depth, qc, ts, unit Sensor: temperature | fields: reading, qc, lat, type Task: Retrieve value from pressure with value above the MAX(value) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", 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": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067213
train
v2
Sensor network script: Node: turbidity | code: clr | fields: qc, lon, type, lat Sensor: dew_point | fields: lat, lon, value, ts Task: Retrieve level from turbidity that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067214
train
v1
Sensor network script: Node: pressure | code: ref | fields: qc, unit, type, level Sensor: wind_speed | fields: lat, lon, reading, unit Task: Get value from pressure where qc appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067215
train
v1
Sensor network script: Node: dew_point | code: hub | fields: lon, level, unit, qc Sensor: soil_moisture | fields: level, type, lon, ts Task: Retrieve lat from dew_point whose qc is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067216
train
v1
Sensor network script: Node: air_quality | code: hub | fields: value, reading, ts, depth Sensor: cloud_cover | fields: ts, type, value, lat Task: Get lat from air_quality where qc appears in cloud_cover readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067217
train
v2
Sensor network script: Node: evaporation | code: hub | fields: lat, value, type, lon Sensor: dew_point | fields: ts, lat, reading, level Task: Fetch lon from evaporation that have at least one corresponding dew_point measurement for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067218
train
v3
Sensor network script: Node: turbidity | code: gst | fields: qc, value, ts, depth Sensor: visibility | fields: value, qc, reading, type Task: Get value from turbidity where reading exceeds the average value from visibility for the same depth. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067219
train
v1
Sensor network script: Node: rainfall | code: clr | fields: type, lat, qc, depth Sensor: soil_moisture | fields: type, ts, reading, lon Task: Retrieve lon from rainfall whose type is found in soil_moisture records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067220
train
v3
Sensor network script: Node: pressure | code: gst | fields: lon, lat, unit, type Sensor: snow_depth | fields: qc, type, value, lat Task: Get level from pressure where value exceeds the maximum reading from snow_depth for the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="ts"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067221
train
v2
Sensor network script: Node: lightning | code: ref | fields: value, qc, lon, unit Sensor: humidity | fields: ts, level, lon, reading Task: Retrieve lon from lightning that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067222
train
v2
Sensor network script: Node: evaporation | code: thr | fields: unit, reading, ts, depth Sensor: air_quality | fields: unit, level, lat, ts Task: Get depth from evaporation where a corresponding entry exists in air_quality with the same ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="ts", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067223
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: type, lon, ts, level Sensor: soil_moisture | fields: reading, ts, type, depth Task: Get lon from cloud_cover where reading exceeds the minimum value from soil_moisture for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067224
train
v3
Sensor network script: Node: visibility | code: ref | fields: unit, lat, lon, ts Sensor: uv_index | fields: ts, value, lat, level Task: Fetch value from visibility where depth is greater than the average of depth in uv_index for matching qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067225
train
v2
Sensor network script: Node: visibility | code: stn | fields: qc, reading, lon, ts Sensor: wind_speed | fields: unit, level, lon, depth Task: Fetch reading from visibility that have at least one corresponding wind_speed measurement for the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067226
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: lon, type, ts, unit Sensor: visibility | fields: depth, unit, type, ts Task: Fetch depth from wind_speed that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067227
train
v1
Sensor network script: Node: lightning | code: mst | fields: ts, type, lon, reading Sensor: snow_depth | fields: value, type, level, depth Task: Get reading from lightning where unit appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067228
train
v3
Sensor network script: Node: drought_index | code: hub | fields: lat, reading, unit, qc Sensor: frost | fields: depth, reading, value, lat Task: Get value from drought_index where reading exceeds the count of depth from frost for the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067229
train
v2
Sensor network script: Node: drought_index | code: stn | fields: level, lat, reading, lon Sensor: air_quality | fields: depth, unit, lon, reading Task: Retrieve lat from drought_index that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067230
train
v2
Sensor network script: Node: pressure | code: thr | fields: lat, reading, type, value Sensor: air_quality | fields: unit, type, depth, lon Task: Retrieve reading from pressure that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067231
train
v3
Sensor network script: Node: lightning | code: ref | fields: level, qc, type, depth Sensor: air_quality | fields: lon, ts, value, level Task: Get lat from lightning where reading exceeds the count of depth from air_quality for the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="qc"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067232
train
v3
Sensor network script: Node: sunlight | code: gst | fields: type, lon, level, lat Sensor: visibility | fields: unit, depth, type, level Task: Fetch reading from sunlight where depth is greater than the average of value in visibility for matching depth. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="depth"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067233
train
v1
Sensor network script: Node: visibility | code: mst | fields: lat, value, unit, depth Sensor: soil_moisture | fields: lat, depth, unit, value Task: Fetch value from visibility where type exists in soil_moisture sensor data for the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067234
train
v2
Sensor network script: Node: dew_point | code: mst | fields: depth, reading, lat, type Sensor: uv_index | fields: lat, unit, qc, value Task: Fetch reading from dew_point that have at least one corresponding uv_index measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "reading", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067235
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: type, level, ts, reading Sensor: visibility | fields: value, depth, unit, lat Task: Fetch lon from snow_depth that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067236
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: depth, level, lon, lat Sensor: pressure | fields: level, unit, lon, qc Task: Retrieve lon from snow_depth with reading above the MAX(depth) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067237
train
v2
Sensor network script: Node: dew_point | code: prt | fields: unit, lon, depth, level Sensor: turbidity | fields: unit, qc, reading, lat Task: Get level from dew_point where a corresponding entry exists in turbidity with the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067238
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: reading, value, qc, ts Sensor: humidity | fields: lat, lon, type, ts Task: Fetch level from wind_speed that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067239
train
v3
Sensor network script: Node: frost | code: hub | fields: lon, unit, depth, type Sensor: cloud_cover | fields: ts, reading, type, level Task: Get lon from frost where value exceeds the minimum value from cloud_cover for the same unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067240
train
v3
Sensor network script: Node: temperature | code: prt | fields: reading, level, value, depth Sensor: humidity | fields: level, depth, type, reading Task: Get reading from temperature where value exceeds the count of value from humidity for the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067241
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: qc, value, level, unit Sensor: lightning | fields: qc, unit, lon, ts Task: Retrieve reading from cloud_cover with value above the MAX(depth) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("lightning", code="tnd"), match="depth"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067242
train
v3
Sensor network script: Node: air_quality | code: mst | fields: level, unit, lon, reading Sensor: humidity | fields: qc, lon, unit, type Task: Retrieve lon from air_quality with depth above the COUNT(value) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067243
train
v3
Sensor network script: Node: visibility | code: thr | fields: type, depth, qc, level Sensor: soil_moisture | fields: type, reading, unit, ts Task: Retrieve lon from visibility with depth above the MAX(reading) of soil_moisture readings sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067244
train
v1
Sensor network script: Node: dew_point | code: mst | fields: lat, depth, value, lon Sensor: pressure | fields: reading, type, qc, value Task: Fetch depth from dew_point where unit exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067245
train
v2
Sensor network script: Node: pressure | code: prt | fields: lon, unit, depth, type Sensor: wind_speed | fields: unit, lat, qc, reading Task: Fetch reading from pressure that have at least one corresponding wind_speed measurement for the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067246
train
v1
Sensor network script: Node: rainfall | code: clr | fields: reading, ts, value, depth Sensor: pressure | fields: lon, lat, reading, depth Task: Retrieve reading from rainfall whose ts is found in pressure records where unit matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067247
train
v1
Sensor network script: Node: air_quality | code: stn | fields: lat, lon, qc, type Sensor: wind_speed | fields: type, depth, ts, reading Task: Get reading from air_quality where ts appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067248
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: level, value, lat, ts Sensor: lightning | fields: type, lat, ts, depth Task: Retrieve lon from cloud_cover whose qc is found in lightning records where depth matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="depth", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067249
train
v3
Sensor network script: Node: rainfall | code: ref | fields: lon, depth, unit, lat Sensor: wind_speed | fields: ts, qc, value, unit Task: Fetch depth from rainfall where value is greater than the minimum of reading in wind_speed for matching type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067250
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: unit, lat, reading, ts Sensor: snow_depth | fields: ts, reading, unit, depth Task: Retrieve lat from cloud_cover whose qc is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067251
train
v3
Sensor network script: Node: temperature | code: mst | fields: unit, lon, ts, depth Sensor: visibility | fields: type, depth, qc, lon Task: Retrieve level from temperature with reading above the AVG(depth) of visibility readings sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="depth"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067252
train
v1
Sensor network script: Node: wind_speed | code: ref | fields: type, lon, reading, depth Sensor: cloud_cover | fields: lat, ts, reading, value Task: Get level from wind_speed where qc appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067253
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: unit, level, depth, qc Sensor: sunlight | fields: reading, value, qc, level Task: Retrieve lat from soil_moisture with value above the MAX(depth) of sunlight readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067254
train
v3
Sensor network script: Node: dew_point | code: stn | fields: unit, ts, type, lat Sensor: rainfall | fields: unit, depth, level, qc Task: Get depth from dew_point where depth exceeds the maximum value from rainfall for the same qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("rainfall", code="rnfl"), match="qc"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067255
train
v1
Sensor network script: Node: humidity | code: prt | fields: qc, level, reading, unit Sensor: uv_index | fields: lon, reading, depth, value Task: Retrieve lon from humidity whose type is found in uv_index records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067256
train
v3
Sensor network script: Node: temperature | code: thr | fields: reading, depth, level, ts Sensor: soil_moisture | fields: qc, lon, ts, unit Task: Get depth from temperature where value exceeds the average reading from soil_moisture for the same depth. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067257
train
v1
Sensor network script: Node: lightning | code: stn | fields: depth, ts, qc, level Sensor: evaporation | fields: unit, ts, reading, depth Task: Get level from lightning where depth appears in evaporation readings with matching qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067258
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: lat, reading, qc, type Sensor: visibility | fields: type, level, ts, lat Task: Get depth from wind_speed where depth appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067259
train
v1
Sensor network script: Node: visibility | code: mst | fields: ts, reading, value, level Sensor: soil_moisture | fields: level, qc, type, lon Task: Retrieve depth from visibility whose type is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067260
train
v2
Sensor network script: Node: sunlight | code: stn | fields: unit, value, ts, lon Sensor: temperature | fields: qc, value, type, depth Task: Retrieve lat from sunlight that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067261
train
v1
Sensor network script: Node: cloud_cover | code: hub | fields: depth, unit, qc, ts Sensor: uv_index | fields: value, lon, lat, reading Task: Get value from cloud_cover where type appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067262
train
v2
Sensor network script: Node: frost | code: mst | fields: type, depth, level, lon Sensor: uv_index | fields: reading, value, lat, lon Task: Retrieve value from frost that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067263
train
v1
Sensor network script: Node: sunlight | code: clr | fields: unit, ts, depth, lon Sensor: pressure | fields: ts, value, depth, lat Task: Retrieve level from sunlight whose type is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="qc", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067264
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: qc, lat, value, type Sensor: sunlight | fields: ts, value, level, depth Task: Retrieve level from cloud_cover with reading above the SUM(reading) of sunlight readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="qc"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067265
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: qc, value, reading, lat Sensor: dew_point | fields: depth, value, level, reading Task: Fetch lon from snow_depth that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067266
train
v2
Sensor network script: Node: evaporation | code: gst | fields: depth, type, ts, reading Sensor: drought_index | fields: lat, level, ts, qc Task: Retrieve lat from evaporation that have at least one matching reading in drought_index sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067267
train
v2
Sensor network script: Node: sunlight | code: stn | fields: qc, reading, ts, depth Sensor: evaporation | fields: ts, reading, type, level Task: Retrieve level from sunlight that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067268
train
v1
Sensor network script: Node: rainfall | code: clr | fields: value, lon, ts, depth Sensor: snow_depth | fields: lat, reading, lon, level Task: Retrieve lon from rainfall whose qc is found in snow_depth records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067269
train
v2
Sensor network script: Node: humidity | code: hub | fields: type, lon, level, depth Sensor: air_quality | fields: lat, lon, unit, reading Task: Fetch reading from humidity that have at least one corresponding air_quality measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067270
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: unit, type, reading, qc Sensor: drought_index | fields: lat, qc, unit, type Task: Get reading from snow_depth where unit appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067271
train
v2
Sensor network script: Node: frost | code: prt | fields: ts, lat, unit, value Sensor: humidity | fields: ts, reading, lon, type Task: Get depth from frost where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067272
train
v1
Sensor network script: Node: temperature | code: thr | fields: value, qc, unit, lat Sensor: pressure | fields: ts, lat, unit, lon Task: Get level from temperature where type appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067273
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: depth, qc, type, unit Sensor: humidity | fields: level, unit, depth, lat Task: Fetch value from wind_speed where qc exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="type", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067274
train
v2
Sensor network script: Node: dew_point | code: hub | fields: depth, lon, qc, unit Sensor: cloud_cover | fields: qc, lat, type, unit Task: Get depth from dew_point where a corresponding entry exists in cloud_cover with the same unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067275
train
v2
Sensor network script: Node: humidity | code: prt | fields: lat, type, level, reading Sensor: evaporation | fields: reading, level, ts, qc Task: Retrieve reading from humidity that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067276
train
v2
Sensor network script: Node: frost | code: gst | fields: unit, level, depth, qc Sensor: soil_moisture | fields: lat, lon, reading, qc Task: Retrieve lon from frost that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067277
train
v1
Sensor network script: Node: temperature | code: mst | fields: value, lat, level, ts Sensor: turbidity | fields: ts, type, lat, reading Task: Fetch lat from temperature where ts exists in turbidity sensor data for the same depth. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="depth", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067278
train
v1
Sensor network script: Node: turbidity | code: stn | fields: unit, reading, qc, value Sensor: humidity | fields: qc, type, lon, lat Task: Fetch depth from turbidity where depth exists in humidity sensor data for the same type. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067279
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: ts, qc, lon, lat Sensor: wind_speed | fields: qc, lon, level, depth Task: Retrieve lon from snow_depth whose ts is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067280
train
v1
Sensor network script: Node: rainfall | code: clr | fields: lon, level, type, ts Sensor: pressure | fields: depth, ts, level, value Task: Fetch level from rainfall where qc exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="type", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067281
train
v2
Sensor network script: Node: visibility | code: clr | fields: lat, reading, value, type Sensor: evaporation | fields: qc, type, lon, lat Task: Fetch lon from visibility that have at least one corresponding evaporation measurement for the same depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067282
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: lon, qc, ts, type Sensor: lightning | fields: level, qc, lon, lat Task: Retrieve depth from wind_speed whose qc is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067283
train
v2
Sensor network script: Node: drought_index | code: stn | fields: value, qc, lat, type Sensor: rainfall | fields: level, unit, type, depth Task: Retrieve value from drought_index that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067284
train
v3
Sensor network script: Node: rainfall | code: hub | fields: reading, lon, unit, type Sensor: evaporation | fields: depth, reading, value, qc Task: Get reading from rainfall where reading exceeds the minimum value from evaporation for the same type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067285
train
v1
Sensor network script: Node: evaporation | code: stn | fields: level, unit, lon, value Sensor: pressure | fields: type, depth, ts, qc Task: Retrieve lat from evaporation whose qc is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067286
train
v3
Sensor network script: Node: dew_point | code: ref | fields: ts, reading, value, type Sensor: evaporation | fields: ts, reading, lat, type Task: Get lat from dew_point where reading exceeds the average value from evaporation for the same depth. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067287
train
v3
Sensor network script: Node: pressure | code: mst | fields: ts, unit, depth, level Sensor: uv_index | fields: reading, value, lat, ts Task: Get lon from pressure where value exceeds the count of depth from uv_index for the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067288
train
v3
Sensor network script: Node: lightning | code: gst | fields: level, reading, ts, type Sensor: frost | fields: lat, qc, type, unit Task: Retrieve level from lightning with depth above the COUNT(reading) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="qc"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067289
train
v1
Sensor network script: Node: temperature | code: clr | fields: unit, level, lon, lat Sensor: air_quality | fields: value, lat, type, ts Task: Fetch value from temperature where ts exists in air_quality sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="ts", source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "temperature", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067290
train
v1
Sensor network script: Node: humidity | code: thr | fields: lon, qc, ts, level Sensor: sunlight | fields: reading, unit, qc, type Task: Retrieve lon from humidity whose unit is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067291
train
v2
Sensor network script: Node: temperature | code: prt | fields: reading, lon, ts, level Sensor: turbidity | fields: lat, depth, lon, qc Task: Fetch lat from temperature that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067292
train
v3
Sensor network script: Node: visibility | code: hub | fields: unit, ts, lon, type Sensor: air_quality | fields: depth, unit, type, level Task: Retrieve depth from visibility with value above the COUNT(depth) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067293
train
v3
Sensor network script: Node: turbidity | code: clr | fields: depth, lat, qc, lon Sensor: humidity | fields: depth, qc, type, value Task: Fetch reading from turbidity where reading is greater than the maximum of depth in humidity for matching ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "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_067294
train
v1
Sensor network script: Node: dew_point | code: stn | fields: lat, type, ts, depth Sensor: frost | fields: ts, unit, level, value Task: Get level from dew_point where depth appears in frost readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067295
train
v1
Sensor network script: Node: visibility | code: hub | fields: lon, type, unit, ts Sensor: evaporation | fields: unit, qc, lon, value Task: Fetch reading from visibility where unit exists in evaporation sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067296
train
v2
Sensor network script: Node: air_quality | code: ref | fields: type, qc, reading, value Sensor: visibility | fields: value, reading, unit, lon Task: Fetch level from air_quality that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_067297
train
v3
Sensor network script: Node: rainfall | code: ref | fields: level, ts, depth, value Sensor: drought_index | fields: unit, lon, depth, value Task: Retrieve reading from rainfall with reading above the COUNT(value) of drought_index readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067298
train
v3
Sensor network script: Node: air_quality | code: prt | fields: reading, unit, qc, type Sensor: soil_moisture | fields: value, lon, qc, depth Task: Fetch level from air_quality where value is greater than the minimum of value in soil_moisture for matching qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_067299
train