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: temperature | code: prt | fields: depth, qc, value, unit Sensor: lightning | fields: reading, value, unit, type Task: Fetch value from temperature where depth is greater than the total of reading in lightning for matching qc. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059900
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: lon, depth, unit, qc Sensor: drought_index | fields: type, depth, level, lon Task: Fetch value from cloud_cover that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059901
train
v1
Sensor network script: Node: evaporation | code: prt | fields: unit, depth, type, lon Sensor: drought_index | fields: ts, lat, unit, depth Task: Fetch lat from evaporation where unit exists in drought_index sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059902
train
v3
Sensor network script: Node: evaporation | code: prt | fields: level, type, qc, lon Sensor: snow_depth | fields: ts, lon, value, level Task: Fetch lon from evaporation where value is greater than the count of of depth in snow_depth for matching unit. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("snow_depth", code="snw"), match="unit"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059903
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: lat, unit, qc, depth Sensor: air_quality | fields: lat, unit, ts, type Task: Get reading from snow_depth where depth exceeds the average reading from air_quality for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="depth"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059904
train
v3
Sensor network script: Node: uv_index | code: mst | fields: qc, type, lon, value Sensor: snow_depth | fields: type, qc, unit, level Task: Retrieve level from uv_index with depth above the AVG(depth) of snow_depth readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("snow_depth", code="snw"), match="qc"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059905
train
v3
Sensor network script: Node: sunlight | code: gst | fields: type, ts, level, unit Sensor: temperature | fields: type, value, lon, qc Task: Fetch reading from sunlight where value is greater than the total of depth in temperature for matching qc. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059906
train
v1
Sensor network script: Node: uv_index | code: mst | fields: reading, level, depth, type Sensor: temperature | fields: ts, reading, lat, qc Task: Get value from uv_index where qc appears in temperature readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="qc", source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059907
train
v1
Sensor network script: Node: pressure | code: prt | fields: qc, value, depth, level Sensor: cloud_cover | fields: lon, qc, unit, type Task: Get level from pressure where ts appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059908
train
v3
Sensor network script: Node: visibility | code: gst | fields: value, ts, lon, reading Sensor: dew_point | fields: depth, reading, qc, ts Task: Get level from visibility where reading exceeds the total value from dew_point for the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059909
train
v2
Sensor network script: Node: temperature | code: gst | fields: value, level, reading, unit Sensor: uv_index | fields: qc, depth, level, type Task: Get level from temperature where a corresponding entry exists in uv_index with the same unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "level", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059910
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: value, level, qc, unit Sensor: visibility | fields: depth, reading, lon, ts Task: Retrieve lon from soil_moisture that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059911
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: lat, ts, reading, value Sensor: pressure | fields: type, value, lon, qc Task: Get level from cloud_cover where reading exceeds the count of value from pressure for the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059912
train
v3
Sensor network script: Node: air_quality | code: prt | fields: ts, depth, level, reading Sensor: lightning | fields: qc, lon, value, reading Task: Retrieve value from air_quality with reading above the MIN(value) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="depth"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059913
train
v2
Sensor network script: Node: sunlight | code: clr | fields: depth, lon, qc, reading Sensor: snow_depth | fields: lon, value, lat, depth Task: Fetch depth from sunlight that have at least one corresponding snow_depth measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059914
train
v2
Sensor network script: Node: humidity | code: gst | fields: depth, ts, reading, level Sensor: lightning | fields: reading, value, depth, lon Task: Get depth from humidity where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059915
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: type, value, depth, level Sensor: turbidity | fields: reading, lon, level, ts Task: Fetch lon from soil_moisture where reading is greater than the average of value in turbidity for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059916
train
v1
Sensor network script: Node: rainfall | code: thr | fields: unit, qc, ts, level Sensor: dew_point | fields: value, unit, lat, ts Task: Get lat from rainfall where qc appears in dew_point readings with matching unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="unit", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059917
train
v1
Sensor network script: Node: lightning | code: thr | fields: level, type, unit, reading Sensor: pressure | fields: lon, level, qc, unit Task: Retrieve value from lightning whose depth is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059918
train
v1
Sensor network script: Node: drought_index | code: mst | fields: type, level, lat, ts Sensor: turbidity | fields: unit, reading, qc, value Task: Get lon from drought_index where ts appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059919
train
v3
Sensor network script: Node: evaporation | code: prt | fields: qc, value, depth, lat Sensor: wind_speed | fields: lat, lon, unit, qc Task: Retrieve reading from evaporation with depth above the COUNT(reading) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059920
train
v1
Sensor network script: Node: evaporation | code: mst | fields: type, depth, level, reading Sensor: sunlight | fields: ts, level, lon, lat Task: Fetch lat from evaporation where unit exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="type", ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059921
train
v2
Sensor network script: Node: soil_moisture | code: stn | fields: level, ts, unit, lon Sensor: rainfall | fields: ts, unit, qc, type Task: Retrieve lon from soil_moisture that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059922
train
v2
Sensor network script: Node: uv_index | code: hub | fields: type, depth, reading, lon Sensor: visibility | fields: level, unit, lat, reading Task: Fetch level from uv_index that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059923
train
v3
Sensor network script: Node: drought_index | code: prt | fields: ts, level, reading, depth Sensor: cloud_cover | fields: lon, level, ts, lat Task: Get lon from drought_index where reading exceeds the average depth from cloud_cover for the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059924
train
v1
Sensor network script: Node: sunlight | code: mst | fields: type, unit, qc, reading Sensor: humidity | fields: lon, value, unit, depth Task: Fetch reading from sunlight where unit exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059925
train
v1
Sensor network script: Node: sunlight | code: hub | fields: lon, reading, unit, value Sensor: snow_depth | fields: lat, level, lon, value Task: Retrieve lat from sunlight whose depth is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059926
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: lon, ts, type, qc Sensor: sunlight | fields: lat, ts, level, lon Task: Get lon from wind_speed where depth exceeds the total reading from sunlight for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("sunlight", code="brt"), match="depth"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059927
train
v2
Sensor network script: Node: lightning | code: stn | fields: unit, lon, level, value Sensor: pressure | fields: value, lon, unit, ts Task: Retrieve lat from lightning that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059928
train
v1
Sensor network script: Node: uv_index | code: gst | fields: qc, unit, ts, value Sensor: cloud_cover | fields: qc, depth, lon, level Task: Get depth from uv_index where unit appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059929
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: value, lat, reading, ts Sensor: wind_speed | fields: unit, value, qc, depth Task: Retrieve depth from soil_moisture whose ts is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059930
train
v1
Sensor network script: Node: turbidity | code: mst | fields: ts, reading, unit, lat Sensor: snow_depth | fields: lat, value, unit, qc Task: Retrieve lon from turbidity whose qc is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059931
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: reading, type, ts, lon Sensor: wind_speed | fields: qc, depth, lat, ts Task: Get lat from snow_depth where ts appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059932
train
v2
Sensor network script: Node: rainfall | code: prt | fields: type, lon, ts, qc Sensor: frost | fields: depth, qc, lat, value Task: Retrieve lon from rainfall that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059933
train
v1
Sensor network script: Node: rainfall | code: prt | fields: reading, qc, depth, level Sensor: sunlight | fields: type, value, qc, lon Task: Fetch reading from rainfall where type exists in sunlight sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059934
train
v2
Sensor network script: Node: humidity | code: mst | fields: qc, unit, type, lon Sensor: wind_speed | fields: level, qc, unit, type Task: Get lon from humidity where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059935
train
v1
Sensor network script: Node: visibility | code: clr | fields: lat, reading, type, depth Sensor: wind_speed | fields: depth, type, level, ts Task: Get lon from visibility where type appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059936
train
v1
Sensor network script: Node: air_quality | code: gst | fields: unit, qc, lon, value Sensor: soil_moisture | fields: lon, depth, level, value Task: Fetch lat from air_quality where qc exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059937
train
v1
Sensor network script: Node: drought_index | code: ref | fields: qc, lon, value, depth Sensor: uv_index | fields: value, lon, unit, depth Task: Fetch lat from drought_index where qc exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059938
train
v3
Sensor network script: Node: visibility | code: mst | fields: qc, ts, depth, value Sensor: dew_point | fields: level, type, depth, qc Task: Fetch value from visibility where value is greater than the minimum of reading in dew_point for matching ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059939
train
v1
Sensor network script: Node: temperature | code: gst | fields: ts, unit, level, lat Sensor: evaporation | fields: level, qc, type, depth Task: Fetch value from temperature where unit exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059940
train
v2
Sensor network script: Node: pressure | code: hub | fields: lat, type, depth, ts Sensor: wind_speed | fields: ts, value, unit, depth Task: Get reading from pressure where a corresponding entry exists in wind_speed with the same qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059941
train
v2
Sensor network script: Node: dew_point | code: prt | fields: level, unit, qc, lat Sensor: frost | fields: type, lon, level, lat Task: Fetch value from dew_point that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059942
train
v2
Sensor network script: Node: turbidity | code: mst | fields: lat, depth, qc, value Sensor: uv_index | fields: qc, depth, type, value Task: Fetch depth from turbidity that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059943
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: depth, type, unit, level Sensor: soil_moisture | fields: ts, unit, reading, depth Task: Retrieve lon from snow_depth whose ts is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059944
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: lon, value, level, reading Sensor: visibility | fields: depth, type, ts, unit Task: Retrieve value from wind_speed that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059945
train
v1
Sensor network script: Node: sunlight | code: ref | fields: level, value, qc, lon Sensor: visibility | fields: value, depth, reading, level Task: Retrieve level from sunlight whose qc is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059946
train
v1
Sensor network script: Node: lightning | code: ref | fields: depth, lat, reading, value Sensor: uv_index | fields: unit, qc, lat, level Task: Retrieve level from lightning whose qc is found in uv_index records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059947
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: depth, reading, lat, level Sensor: visibility | fields: ts, lat, lon, type Task: Fetch level from soil_moisture where reading is greater than the minimum of reading in visibility for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059948
train
v1
Sensor network script: Node: dew_point | code: hub | fields: type, lat, lon, ts Sensor: sunlight | fields: depth, unit, value, lat Task: Get level from dew_point where unit appears in sunlight readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059949
train
v1
Sensor network script: Node: uv_index | code: ref | fields: level, ts, depth, lat Sensor: pressure | fields: qc, ts, value, depth Task: Get value from uv_index where unit appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059950
train
v3
Sensor network script: Node: temperature | code: hub | fields: qc, lon, reading, level Sensor: dew_point | fields: depth, unit, qc, reading Task: Fetch level from temperature where depth is greater than the average of reading in dew_point for matching ts. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="ts"), ), output="level", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059951
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: lon, level, lat, unit Sensor: dew_point | fields: unit, lon, value, depth Task: Get value from wind_speed where a corresponding entry exists in dew_point with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="unit", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059952
train
v1
Sensor network script: Node: pressure | code: stn | fields: reading, qc, lat, type Sensor: turbidity | fields: type, lon, lat, reading Task: Get lat from pressure where qc appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="qc", source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059953
train
v1
Sensor network script: Node: pressure | code: stn | fields: ts, unit, depth, qc Sensor: uv_index | fields: level, ts, unit, value Task: Fetch value from pressure where ts exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="value", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059954
train
v3
Sensor network script: Node: air_quality | code: mst | fields: lat, reading, qc, depth Sensor: temperature | fields: ts, unit, qc, type Task: Retrieve value from air_quality with reading above the MAX(reading) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059955
train
v2
Sensor network script: Node: uv_index | code: stn | fields: ts, qc, reading, level Sensor: temperature | fields: level, depth, value, lat Task: Get depth from uv_index where a corresponding entry exists in temperature with the same ts. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059956
train
v2
Sensor network script: Node: temperature | code: stn | fields: lon, depth, lat, qc Sensor: visibility | fields: lon, value, unit, lat Task: Retrieve value from temperature that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059957
train
v2
Sensor network script: Node: rainfall | code: prt | fields: reading, ts, lon, value Sensor: humidity | fields: qc, depth, reading, level Task: Fetch lon from rainfall that have at least one corresponding humidity measurement for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059958
train
v2
Sensor network script: Node: pressure | code: thr | fields: type, qc, unit, lat Sensor: visibility | fields: type, lat, depth, qc Task: Retrieve lon from pressure that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059959
train
v3
Sensor network script: Node: air_quality | code: clr | fields: lat, lon, depth, unit Sensor: soil_moisture | fields: depth, reading, ts, lon Task: Fetch lon from air_quality where reading is greater than the maximum of reading in soil_moisture for matching qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059960
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: unit, lon, reading, value Sensor: turbidity | fields: ts, reading, lon, depth Task: Retrieve level from wind_speed with reading above the COUNT(value) of turbidity readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059961
train
v3
Sensor network script: Node: humidity | code: prt | fields: level, qc, lon, unit Sensor: sunlight | fields: depth, reading, lat, level Task: Fetch depth from humidity where reading is greater than the minimum of value in sunlight for matching depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="depth", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059962
train
v3
Sensor network script: Node: dew_point | code: thr | fields: unit, lon, value, depth Sensor: frost | fields: lat, depth, lon, reading Task: Retrieve value from dew_point with depth above the SUM(value) of frost readings sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("frost", code="frs"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059963
train
v1
Sensor network script: Node: snow_depth | code: prt | fields: lat, type, reading, lon Sensor: frost | fields: type, ts, lon, reading Task: Get value from snow_depth where depth appears in frost readings with matching ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=set_member( field="depth", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059964
train
v3
Sensor network script: Node: frost | code: gst | fields: depth, value, qc, ts Sensor: dew_point | fields: value, qc, unit, type Task: Retrieve value from frost with reading above the MIN(value) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059965
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: lon, reading, depth, ts Sensor: frost | fields: lat, ts, reading, type Task: Fetch depth from soil_moisture where reading is greater than the minimum of depth in frost for matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059966
train
v3
Sensor network script: Node: rainfall | code: clr | fields: lon, lat, ts, value Sensor: dew_point | fields: level, type, lon, depth Task: Get lon from rainfall where reading exceeds the total depth from dew_point for the same ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059967
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: level, reading, ts, qc Sensor: sunlight | fields: type, value, unit, ts Task: Get level from cloud_cover where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059968
train
v1
Sensor network script: Node: lightning | code: stn | fields: ts, qc, value, unit Sensor: rainfall | fields: reading, lon, lat, type Task: Fetch lon from lightning where ts exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059969
train
v3
Sensor network script: Node: frost | code: thr | fields: level, lat, depth, qc Sensor: rainfall | fields: lon, qc, type, reading Task: Retrieve lat from frost with depth above the SUM(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059970
train
v1
Sensor network script: Node: rainfall | code: clr | fields: lat, unit, value, type Sensor: evaporation | fields: depth, type, lon, reading Task: Retrieve level from rainfall whose qc is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "level", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059971
train
v1
Sensor network script: Node: rainfall | code: prt | fields: lon, lat, qc, type Sensor: dew_point | fields: lon, ts, reading, level Task: Fetch depth from rainfall where unit exists in dew_point sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059972
train
v2
Sensor network script: Node: visibility | code: mst | fields: lon, ts, depth, unit Sensor: sunlight | fields: reading, lat, level, qc Task: Retrieve lon from visibility that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059973
train
v2
Sensor network script: Node: air_quality | code: thr | fields: value, ts, level, unit Sensor: turbidity | fields: qc, lat, depth, ts Task: Get lon from air_quality where a corresponding entry exists in turbidity with the same type. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059974
train
v2
Sensor network script: Node: pressure | code: mst | fields: type, reading, lat, qc Sensor: humidity | fields: lon, unit, reading, type Task: Fetch value from pressure that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059975
train
v2
Sensor network script: Node: frost | code: stn | fields: level, lon, ts, type Sensor: temperature | fields: type, reading, lon, unit Task: Retrieve value from frost that have at least one matching reading in temperature sharing the same ts. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059976
train
v2
Sensor network script: Node: humidity | code: thr | fields: reading, lat, ts, depth Sensor: pressure | fields: lon, ts, qc, lat Task: Fetch reading from humidity that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059977
train
v1
Sensor network script: Node: frost | code: prt | fields: qc, lat, depth, lon Sensor: evaporation | fields: depth, level, ts, reading Task: Retrieve level from frost whose depth is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059978
train
v3
Sensor network script: Node: cloud_cover | code: thr | fields: type, unit, lat, lon Sensor: uv_index | fields: unit, qc, depth, lat Task: Retrieve lat from cloud_cover with value above the AVG(reading) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "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_059979
train
v2
Sensor network script: Node: frost | code: thr | fields: lat, reading, unit, value Sensor: soil_moisture | fields: value, ts, qc, reading Task: Retrieve level from frost that have at least one matching reading in soil_moisture sharing the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059980
train
v1
Sensor network script: Node: frost | code: clr | fields: depth, ts, level, qc Sensor: lightning | fields: lon, reading, ts, level Task: Get lat from frost where type appears in lightning readings with matching type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059981
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: lat, type, depth, level Sensor: pressure | fields: level, qc, depth, type Task: Retrieve reading from soil_moisture whose unit is found in pressure records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059982
train
v3
Sensor network script: Node: frost | code: stn | fields: value, qc, type, unit Sensor: evaporation | fields: unit, qc, type, ts Task: Get reading from frost where depth exceeds the minimum depth from evaporation for the same qc. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059983
train
v2
Sensor network script: Node: pressure | code: prt | fields: type, ts, lon, unit Sensor: sunlight | fields: depth, lat, value, level Task: Fetch reading from pressure that have at least one corresponding sunlight measurement for the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059984
train
v2
Sensor network script: Node: temperature | code: prt | fields: type, lat, qc, value Sensor: cloud_cover | fields: depth, qc, lon, reading Task: Retrieve reading from temperature that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059985
train
v1
Sensor network script: Node: frost | code: hub | fields: level, type, ts, qc Sensor: pressure | fields: ts, lon, level, unit Task: Get lon from frost where unit appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059986
train
v2
Sensor network script: Node: temperature | code: ref | fields: ts, qc, type, level Sensor: dew_point | fields: depth, unit, qc, lon Task: Retrieve level from temperature that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059987
train
v2
Sensor network script: Node: lightning | code: thr | fields: depth, lat, type, qc Sensor: evaporation | fields: level, lat, type, lon Task: Fetch lat from lightning that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059988
train
v3
Sensor network script: Node: humidity | code: thr | fields: reading, level, qc, value Sensor: uv_index | fields: qc, type, level, lon Task: Fetch level from humidity where value is greater than the minimum of reading in uv_index for matching ts. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059989
train
v3
Sensor network script: Node: turbidity | code: ref | fields: ts, lat, qc, reading Sensor: air_quality | fields: value, depth, reading, lon Task: Fetch value from turbidity where value is greater than the total of depth in air_quality for matching type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059990
train
v3
Sensor network script: Node: humidity | code: gst | fields: reading, depth, value, lon Sensor: soil_moisture | fields: reading, level, depth, value Task: Fetch lat from humidity where reading is greater than the average of depth in soil_moisture for matching ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059991
train
v2
Sensor network script: Node: evaporation | code: clr | fields: lat, value, depth, reading Sensor: cloud_cover | fields: ts, lon, type, qc Task: Get depth from evaporation where a corresponding entry exists in cloud_cover with the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059992
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: type, reading, value, unit Sensor: wind_speed | fields: lat, level, depth, unit Task: Retrieve level from snow_depth with reading above the SUM(value) of wind_speed readings sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059993
train
v1
Sensor network script: Node: rainfall | code: prt | fields: level, ts, reading, value Sensor: visibility | fields: type, lon, reading, ts Task: Fetch depth from rainfall where depth exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="unit", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_059994
train
v2
Sensor network script: Node: turbidity | code: stn | fields: unit, reading, lon, depth Sensor: dew_point | fields: level, lon, reading, qc Task: Fetch depth from turbidity that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059995
train
v1
Sensor network script: Node: visibility | code: hub | fields: lat, depth, qc, value Sensor: uv_index | fields: value, level, depth, type Task: Get lat from visibility where unit appears in uv_index readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059996
train
v3
Sensor network script: Node: temperature | code: gst | fields: type, value, depth, level Sensor: pressure | fields: type, lon, unit, value Task: Fetch value from temperature where depth is greater than the minimum of reading in pressure for matching unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059997
train
v2
Sensor network script: Node: frost | code: mst | fields: qc, depth, level, lat Sensor: evaporation | fields: lon, level, ts, qc Task: Fetch depth from frost that have at least one corresponding evaporation measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059998
train
v2
Sensor network script: Node: turbidity | code: hub | fields: lon, value, level, lat Sensor: evaporation | fields: level, depth, reading, unit Task: Get lon from turbidity where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_059999
train