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: dew_point | code: gst | fields: lon, value, type, reading Sensor: sunlight | fields: type, value, lat, ts Task: Get depth from dew_point where ts appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076800
train
v1
Sensor network script: Node: uv_index | code: thr | fields: qc, lon, ts, type Sensor: visibility | fields: value, type, qc, depth Task: Get lat from uv_index where type appears in visibility readings with matching ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="ts", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076801
train
v1
Sensor network script: Node: temperature | code: clr | fields: ts, reading, type, depth Sensor: snow_depth | fields: depth, value, lat, ts Task: Get lat from temperature where unit appears in snow_depth readings with matching unit. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="unit", source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076802
train
v2
Sensor network script: Node: temperature | code: thr | fields: lon, depth, reading, unit Sensor: wind_speed | fields: ts, lon, reading, value Task: Retrieve level from temperature that have at least one matching reading in wind_speed sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076803
train
v2
Sensor network script: Node: visibility | code: mst | fields: level, unit, depth, type Sensor: uv_index | fields: lon, level, qc, unit Task: Retrieve value from visibility that have at least one matching reading in uv_index sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="value", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076804
train
v3
Sensor network script: Node: humidity | code: ref | fields: lon, ts, lat, unit Sensor: temperature | fields: lat, type, ts, value Task: Retrieve reading from humidity with depth above the SUM(depth) of temperature readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076805
train
v1
Sensor network script: Node: drought_index | code: ref | fields: reading, qc, value, lon Sensor: visibility | fields: depth, type, level, unit Task: Get lon from drought_index where qc appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076806
train
v2
Sensor network script: Node: air_quality | code: gst | fields: lon, type, reading, level Sensor: humidity | fields: value, type, qc, lon Task: Retrieve value from air_quality that have at least one matching reading in humidity sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076807
train
v1
Sensor network script: Node: dew_point | code: clr | fields: ts, qc, unit, depth Sensor: wind_speed | fields: type, level, value, lat Task: Fetch value from dew_point where qc exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076808
train
v1
Sensor network script: Node: visibility | code: thr | fields: value, ts, lat, depth Sensor: frost | fields: reading, lon, unit, level Task: Fetch depth from visibility where qc exists in frost sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "qc", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076809
train
v2
Sensor network script: Node: sunlight | code: hub | fields: lat, level, type, depth Sensor: snow_depth | fields: unit, level, value, type Task: Retrieve lon from sunlight that have at least one matching reading in snow_depth sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "hub", "inner_alias": "snw", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076810
train
v2
Sensor network script: Node: drought_index | code: ref | fields: value, lon, unit, reading Sensor: temperature | fields: ts, unit, reading, level Task: Retrieve lat from drought_index that have at least one matching reading in temperature sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076811
train
v1
Sensor network script: Node: turbidity | code: hub | fields: lon, level, ts, depth Sensor: air_quality | fields: unit, lat, value, qc Task: Get level from turbidity where depth appears in air_quality readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076812
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: qc, lat, unit, ts Sensor: visibility | fields: value, ts, type, qc Task: Retrieve depth from cloud_cover whose qc is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="qc", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076813
train
v3
Sensor network script: Node: temperature | code: thr | fields: lon, reading, qc, lat Sensor: dew_point | fields: qc, reading, ts, value Task: Fetch depth from temperature where value is greater than the total of value in dew_point for matching unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076814
train
v1
Sensor network script: Node: dew_point | code: clr | fields: lon, depth, ts, value Sensor: air_quality | fields: type, reading, lon, value Task: Get value from dew_point where depth appears in air_quality readings with matching qc. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="qc", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076815
train
v2
Sensor network script: Node: dew_point | code: gst | fields: ts, type, lat, value Sensor: visibility | fields: unit, value, depth, reading Task: Retrieve depth from dew_point that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076816
train
v2
Sensor network script: Node: frost | code: clr | fields: value, type, depth, level Sensor: drought_index | fields: lat, depth, level, ts Task: Fetch lat from frost that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lat", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076817
train
v2
Sensor network script: Node: drought_index | code: mst | fields: type, reading, lon, unit Sensor: visibility | fields: reading, depth, qc, ts Task: Get lon from drought_index where a corresponding entry exists in visibility with the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076818
train
v2
Sensor network script: Node: temperature | code: clr | fields: qc, reading, type, lon Sensor: pressure | fields: reading, qc, lat, unit Task: Get reading from temperature where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076819
train
v2
Sensor network script: Node: dew_point | code: clr | fields: level, depth, ts, unit Sensor: soil_moisture | fields: unit, type, lon, qc Task: Retrieve lat from dew_point that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076820
train
v3
Sensor network script: Node: temperature | code: thr | fields: lon, lat, depth, reading Sensor: visibility | fields: qc, lat, lon, ts Task: Retrieve value from temperature with reading above the AVG(reading) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076821
train
v2
Sensor network script: Node: drought_index | code: stn | fields: lon, level, lat, type Sensor: visibility | fields: unit, lat, qc, depth Task: Fetch lat from drought_index that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076822
train
v1
Sensor network script: Node: air_quality | code: mst | fields: lat, lon, depth, level Sensor: soil_moisture | fields: qc, lat, lon, unit Task: Retrieve reading from air_quality whose qc is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076823
train
v1
Sensor network script: Node: pressure | code: gst | fields: depth, unit, lon, qc Sensor: visibility | fields: depth, lon, qc, ts Task: Retrieve value from pressure whose unit is found in visibility records where unit matches the outer node. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="unit", source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076824
train
v3
Sensor network script: Node: air_quality | code: gst | fields: ts, depth, lat, unit Sensor: temperature | fields: lon, lat, ts, type Task: Get depth from air_quality where value exceeds the maximum depth from temperature for the same depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076825
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: level, qc, depth, lat Sensor: pressure | fields: lat, type, qc, level Task: Retrieve reading from snow_depth that have at least one matching reading in pressure sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076826
train
v3
Sensor network script: Node: humidity | code: ref | fields: level, lon, lat, qc Sensor: rainfall | fields: unit, level, value, qc Task: Retrieve level from humidity with depth above the COUNT(reading) of rainfall readings sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="level", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076827
train
v2
Sensor network script: Node: visibility | code: hub | fields: ts, level, depth, qc Sensor: cloud_cover | fields: reading, lon, type, ts Task: Retrieve lon from visibility that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076828
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: level, lat, value, reading Sensor: drought_index | fields: level, lat, qc, unit Task: Fetch level from soil_moisture that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076829
train
v2
Sensor network script: Node: humidity | code: ref | fields: ts, level, qc, reading Sensor: frost | fields: lat, value, lon, reading Task: Retrieve lat from humidity that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076830
train
v3
Sensor network script: Node: drought_index | code: stn | fields: qc, value, type, lat Sensor: visibility | fields: reading, depth, lat, level Task: Get value from drought_index where value exceeds the average reading from visibility for the same ts. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076831
train
v1
Sensor network script: Node: soil_moisture | code: thr | fields: qc, ts, type, level Sensor: evaporation | fields: lon, reading, ts, type Task: Retrieve reading from soil_moisture whose type is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076832
train
v3
Sensor network script: Node: visibility | code: thr | fields: depth, type, reading, lat Sensor: drought_index | fields: unit, qc, reading, value Task: Retrieve level from visibility with reading above the AVG(depth) of drought_index readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="level", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076833
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: type, unit, value, lat Sensor: cloud_cover | fields: lat, ts, depth, unit Task: Fetch depth from soil_moisture where reading is greater than the count of of reading in cloud_cover for matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076834
train
v2
Sensor network script: Node: frost | code: ref | fields: reading, unit, type, depth Sensor: snow_depth | fields: type, depth, qc, reading Task: Retrieve lat from frost that have at least one matching reading in snow_depth sharing the same unit. Script:
readings = fetch( node=Node("frost", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076835
train
v2
Sensor network script: Node: sunlight | code: clr | fields: level, value, qc, unit Sensor: temperature | fields: type, reading, lon, depth Task: Fetch lon from sunlight that have at least one corresponding temperature measurement for the same depth. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076836
train
v3
Sensor network script: Node: evaporation | code: prt | fields: reading, depth, value, type Sensor: visibility | fields: qc, level, type, reading Task: Retrieve lon from evaporation with value above the AVG(depth) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076837
train
v1
Sensor network script: Node: turbidity | code: prt | fields: ts, value, level, lat Sensor: visibility | fields: depth, value, level, qc Task: Fetch value from turbidity where ts exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "ts", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076838
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: qc, depth, unit, level Sensor: air_quality | fields: reading, unit, level, depth Task: Retrieve reading from wind_speed whose depth is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="depth", source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076839
train
v3
Sensor network script: Node: air_quality | code: thr | fields: unit, value, lat, ts Sensor: frost | fields: qc, ts, type, lon Task: Get lat from air_quality where depth exceeds the average reading from frost for the same depth. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076840
train
v3
Sensor network script: Node: soil_moisture | code: hub | fields: unit, type, depth, reading Sensor: dew_point | fields: lon, value, qc, unit Task: Get lat from soil_moisture where value exceeds the average reading from dew_point for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="type"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076841
train
v1
Sensor network script: Node: pressure | code: gst | fields: depth, level, qc, ts Sensor: visibility | fields: reading, value, depth, lon Task: Retrieve depth from pressure whose ts is found in visibility records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076842
train
v2
Sensor network script: Node: temperature | code: hub | fields: lon, qc, lat, level Sensor: lightning | fields: type, lon, level, qc Task: Fetch value from temperature that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076843
train
v3
Sensor network script: Node: snow_depth | code: ref | fields: unit, lon, qc, level Sensor: uv_index | fields: type, lon, lat, value Task: Get lat from snow_depth where depth exceeds the average reading from uv_index for the same type. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076844
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: lat, qc, type, lon Sensor: uv_index | fields: lat, depth, qc, ts Task: Retrieve reading from wind_speed with value above the MIN(value) of uv_index readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076845
train
v2
Sensor network script: Node: temperature | code: stn | fields: lon, depth, ts, qc Sensor: lightning | fields: value, lat, level, type Task: Fetch lon from temperature that have at least one corresponding lightning measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076846
train
v1
Sensor network script: Node: wind_speed | code: hub | fields: lat, unit, type, level Sensor: humidity | fields: ts, unit, type, depth Task: Get depth from wind_speed where depth appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076847
train
v1
Sensor network script: Node: uv_index | code: stn | fields: lat, type, ts, unit Sensor: soil_moisture | fields: qc, depth, level, lon Task: Get reading from uv_index where depth appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="depth", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076848
train
v1
Sensor network script: Node: pressure | code: gst | fields: level, lon, value, type Sensor: uv_index | fields: unit, type, qc, depth Task: Get reading from pressure where unit appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "unit", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076849
train
v3
Sensor network script: Node: evaporation | code: thr | fields: unit, ts, reading, lon Sensor: turbidity | fields: value, type, depth, reading Task: Get lat from evaporation where value exceeds the total reading from turbidity for the same type. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("turbidity", code="ftu"), match="type"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076850
train
v1
Sensor network script: Node: uv_index | code: prt | fields: qc, lon, value, lat Sensor: soil_moisture | fields: ts, depth, value, lat Task: Fetch depth from uv_index where unit exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076851
train
v3
Sensor network script: Node: sunlight | code: ref | fields: lat, ts, lon, qc Sensor: air_quality | fields: depth, lat, unit, value Task: Retrieve lat from sunlight with depth above the COUNT(reading) of air_quality readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="unit"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076852
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: depth, value, qc, level Sensor: rainfall | fields: ts, reading, value, unit Task: Retrieve depth from cloud_cover that have at least one matching reading in rainfall sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076853
train
v2
Sensor network script: Node: dew_point | code: prt | fields: lon, type, depth, value Sensor: cloud_cover | fields: depth, unit, ts, value Task: Retrieve value from dew_point that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076854
train
v1
Sensor network script: Node: sunlight | code: prt | fields: unit, depth, qc, lon Sensor: turbidity | fields: level, value, qc, lat Task: Fetch level from sunlight where depth exists in turbidity sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076855
train
v2
Sensor network script: Node: uv_index | code: ref | fields: reading, lon, level, value Sensor: snow_depth | fields: lon, qc, ts, type Task: Retrieve value from uv_index that have at least one matching reading in snow_depth sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076856
train
v2
Sensor network script: Node: sunlight | code: mst | fields: level, lon, value, unit Sensor: evaporation | fields: type, unit, lon, value Task: Get lon from sunlight where a corresponding entry exists in evaporation with the same unit. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lon", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076857
train
v3
Sensor network script: Node: lightning | code: ref | fields: lat, ts, type, value Sensor: sunlight | fields: depth, value, unit, lon Task: Fetch lat from lightning where depth is greater than the minimum of depth in sunlight for matching ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076858
train
v2
Sensor network script: Node: sunlight | code: mst | fields: lon, ts, level, qc Sensor: uv_index | fields: level, unit, ts, lon Task: Get lon from sunlight where a corresponding entry exists in uv_index with the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076859
train
v3
Sensor network script: Node: frost | code: gst | fields: level, value, unit, qc Sensor: visibility | fields: unit, reading, qc, lat Task: Fetch level from frost where depth is greater than the total of reading in visibility for matching unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="unit"), ), output="level", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076860
train
v2
Sensor network script: Node: uv_index | code: clr | fields: type, unit, lon, depth Sensor: temperature | fields: ts, type, level, depth Task: Get reading from uv_index where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076861
train
v2
Sensor network script: Node: dew_point | code: mst | fields: ts, value, lat, type Sensor: drought_index | fields: ts, lon, level, unit Task: Get depth from dew_point where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "mst", "inner_alias": "drt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076862
train
v3
Sensor network script: Node: evaporation | code: clr | fields: lat, unit, lon, value Sensor: cloud_cover | fields: qc, lon, lat, type Task: Retrieve level from evaporation with value above the MAX(reading) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="level", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076863
train
v1
Sensor network script: Node: humidity | code: thr | fields: lat, unit, depth, level Sensor: drought_index | fields: lon, lat, depth, type Task: Retrieve level from humidity whose type is found in drought_index records where ts matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076864
train
v3
Sensor network script: Node: temperature | code: ref | fields: ts, value, qc, type Sensor: uv_index | fields: lon, depth, value, unit Task: Get reading from temperature where reading exceeds the count of depth from uv_index for the same qc. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="reading", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076865
train
v3
Sensor network script: Node: sunlight | code: mst | fields: unit, value, qc, depth Sensor: air_quality | fields: level, lon, type, qc Task: Retrieve lon from sunlight with reading above the AVG(depth) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076866
train
v2
Sensor network script: Node: lightning | code: clr | fields: depth, unit, level, lat Sensor: turbidity | fields: unit, depth, type, reading Task: Retrieve lat from lightning that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lat", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076867
train
v2
Sensor network script: Node: frost | code: gst | fields: ts, unit, qc, value Sensor: sunlight | fields: reading, value, type, ts Task: Get level from frost where a corresponding entry exists in sunlight with the same type. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "level", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076868
train
v2
Sensor network script: Node: frost | code: prt | fields: depth, reading, level, type Sensor: pressure | fields: level, ts, unit, depth Task: Retrieve reading from frost that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076869
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: value, ts, unit, reading Sensor: pressure | fields: type, lat, qc, level Task: Fetch reading from soil_moisture where depth is greater than the minimum of value in pressure for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076870
train
v1
Sensor network script: Node: lightning | code: ref | fields: type, ts, value, lon Sensor: turbidity | fields: depth, qc, reading, unit Task: Retrieve reading from lightning whose ts is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076871
train
v1
Sensor network script: Node: drought_index | code: stn | fields: value, ts, level, depth Sensor: lightning | fields: qc, unit, lon, type Task: Fetch depth from drought_index where ts exists in lightning sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076872
train
v3
Sensor network script: Node: turbidity | code: clr | fields: lon, ts, type, value Sensor: rainfall | fields: depth, value, unit, level Task: Retrieve level from turbidity with depth above the MIN(depth) of rainfall readings sharing the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="type"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076873
train
v2
Sensor network script: Node: pressure | code: prt | fields: type, ts, qc, level Sensor: turbidity | fields: lat, reading, value, level Task: Retrieve level from pressure that have at least one matching reading in turbidity sharing the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="level", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076874
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: value, reading, qc, depth Sensor: humidity | fields: type, qc, lat, reading Task: Retrieve lat from snow_depth whose ts is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "ts", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076875
train
v2
Sensor network script: Node: visibility | code: clr | fields: type, unit, lat, ts Sensor: humidity | fields: lon, ts, reading, value Task: Retrieve value from visibility that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076876
train
v2
Sensor network script: Node: evaporation | code: clr | fields: value, depth, ts, type Sensor: uv_index | fields: depth, level, lat, type Task: Retrieve level from evaporation that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076877
train
v1
Sensor network script: Node: lightning | code: thr | fields: qc, depth, ts, type Sensor: air_quality | fields: reading, depth, ts, type Task: Get level from lightning where qc appears in air_quality readings with matching unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076878
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: reading, lat, type, depth Sensor: uv_index | fields: value, qc, depth, level Task: Get depth from snow_depth where value exceeds the minimum reading from uv_index for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076879
train
v1
Sensor network script: Node: sunlight | code: thr | fields: type, level, qc, unit Sensor: pressure | fields: qc, level, type, value Task: Retrieve reading from sunlight whose ts is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076880
train
v1
Sensor network script: Node: frost | code: hub | fields: level, reading, qc, lon Sensor: pressure | fields: value, unit, lon, reading Task: Get lon from frost where depth appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076881
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: value, level, depth, unit Sensor: wind_speed | fields: type, qc, ts, depth Task: Fetch value from soil_moisture that have at least one corresponding wind_speed measurement for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076882
train
v3
Sensor network script: Node: visibility | code: prt | fields: lon, reading, ts, value Sensor: cloud_cover | fields: unit, type, ts, qc Task: Fetch depth from visibility where value is greater than the total of depth in cloud_cover for matching type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076883
train
v3
Sensor network script: Node: air_quality | code: ref | fields: value, ts, reading, qc Sensor: dew_point | fields: type, qc, level, value Task: Fetch reading from air_quality where depth is greater than the average of value in dew_point for matching unit. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076884
train
v1
Sensor network script: Node: drought_index | code: prt | fields: lat, ts, unit, level Sensor: evaporation | fields: ts, depth, value, lon Task: Fetch lat from drought_index where depth exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076885
train
v2
Sensor network script: Node: uv_index | code: ref | fields: type, unit, lon, lat Sensor: sunlight | fields: value, unit, type, lat Task: Retrieve reading from uv_index that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076886
train
v2
Sensor network script: Node: rainfall | code: hub | fields: level, depth, lat, unit Sensor: wind_speed | fields: qc, value, lat, ts Task: Fetch lat from rainfall that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lat", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076887
train
v2
Sensor network script: Node: humidity | code: hub | fields: qc, ts, depth, type Sensor: rainfall | fields: level, qc, ts, reading Task: Fetch lon from humidity that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076888
train
v1
Sensor network script: Node: lightning | code: gst | fields: reading, type, lon, level Sensor: evaporation | fields: type, depth, lon, lat Task: Retrieve reading from lightning whose qc is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="unit", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "reading", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076889
train
v3
Sensor network script: Node: soil_moisture | code: thr | fields: depth, unit, type, value Sensor: visibility | fields: lon, reading, lat, depth Task: Get lat from soil_moisture where value exceeds the maximum reading from visibility for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076890
train
v3
Sensor network script: Node: humidity | code: ref | fields: ts, level, reading, type Sensor: frost | fields: type, unit, ts, qc Task: Retrieve reading from humidity with reading above the AVG(value) of frost readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("frost", code="frs"), match="qc"), ), output="reading", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076891
train
v3
Sensor network script: Node: dew_point | code: ref | fields: type, level, qc, value Sensor: pressure | fields: value, reading, unit, qc Task: Get lon from dew_point where value exceeds the maximum value from pressure for the same type. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("pressure", code="mbl"), match="type"), ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076892
train
v1
Sensor network script: Node: evaporation | code: clr | fields: depth, unit, type, level Sensor: rainfall | fields: ts, lon, unit, value Task: Fetch depth from evaporation where depth exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076893
train
v2
Sensor network script: Node: sunlight | code: clr | fields: value, qc, type, lat Sensor: wind_speed | fields: level, reading, qc, value Task: Get level from sunlight where a corresponding entry exists in wind_speed with the same ts. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076894
train
v1
Sensor network script: Node: air_quality | code: ref | fields: unit, lon, ts, value Sensor: drought_index | fields: reading, lat, value, type Task: Retrieve level from air_quality whose depth is found in drought_index records where depth matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="depth", source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "level", "filter_col": "depth", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076895
train
v2
Sensor network script: Node: evaporation | code: gst | fields: lat, value, unit, reading Sensor: rainfall | fields: value, type, lon, ts Task: Retrieve reading from evaporation that have at least one matching reading in rainfall sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076896
train
v1
Sensor network script: Node: air_quality | code: thr | fields: reading, value, unit, level Sensor: sunlight | fields: qc, level, unit, ts Task: Retrieve reading from air_quality whose depth is found in sunlight records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076897
train
v2
Sensor network script: Node: humidity | code: mst | fields: reading, type, value, qc Sensor: temperature | fields: depth, lon, lat, type Task: Fetch level from humidity that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_076898
train
v1
Sensor network script: Node: rainfall | code: stn | fields: qc, value, reading, lon Sensor: drought_index | fields: qc, unit, reading, type Task: Retrieve depth from rainfall whose type is found in drought_index records where type matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "depth", "filter_col": "type", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_076899
train