variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: soil_moisture | code: hub | fields: level, value, type, qc Sensor: drought_index | fields: lon, type, value, lat Task: Retrieve level from soil_moisture that have at least one matching reading in drought_index sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013600
train
v2
Sensor network script: Node: temperature | code: prt | fields: reading, depth, level, qc Sensor: visibility | fields: depth, reading, unit, lon Task: Fetch lon from temperature that have at least one corresponding visibility measurement for the same depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013601
train
v1
Sensor network script: Node: frost | code: prt | fields: value, reading, level, depth Sensor: lightning | fields: level, value, ts, reading Task: Fetch value from frost where depth exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013602
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: lat, lon, qc, unit Sensor: temperature | fields: qc, value, level, reading Task: Fetch value from wind_speed where value is greater than the average of depth in temperature for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013603
train
v2
Sensor network script: Node: sunlight | code: stn | fields: ts, value, lat, unit Sensor: visibility | fields: level, reading, value, lon Task: Retrieve depth from sunlight that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013604
train
v2
Sensor network script: Node: pressure | code: gst | fields: depth, unit, value, ts Sensor: air_quality | fields: unit, value, level, type Task: Get value from pressure where a corresponding entry exists in air_quality with the same type. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013605
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lon, unit, qc, level Sensor: soil_moisture | fields: lat, type, reading, depth Task: Get lon from wind_speed where a corresponding entry exists in soil_moisture with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013606
train
v1
Sensor network script: Node: humidity | code: stn | fields: qc, ts, value, depth Sensor: snow_depth | fields: reading, depth, unit, qc Task: Get value from humidity where ts appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "humidity", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013607
train
v2
Sensor network script: Node: humidity | code: clr | fields: lon, value, ts, depth Sensor: drought_index | fields: level, lat, qc, unit Task: Get lat from humidity where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013608
train
v1
Sensor network script: Node: air_quality | code: hub | fields: reading, lon, level, ts Sensor: sunlight | fields: unit, depth, lat, type Task: Get depth from air_quality where type appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="depth", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "depth", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013609
train
v3
Sensor network script: Node: rainfall | code: hub | fields: depth, qc, type, ts Sensor: cloud_cover | fields: depth, value, ts, qc Task: Fetch value from rainfall where reading is greater than the maximum of depth in cloud_cover for matching type. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013610
train
v1
Sensor network script: Node: sunlight | code: hub | fields: lat, type, level, depth Sensor: temperature | fields: depth, ts, unit, lat Task: Get lon from sunlight where type appears in temperature readings with matching type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013611
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: depth, ts, qc, type Sensor: snow_depth | fields: depth, reading, value, lon Task: Fetch value from cloud_cover that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "value", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013612
train
v2
Sensor network script: Node: rainfall | code: hub | fields: lon, reading, lat, ts Sensor: soil_moisture | fields: level, reading, depth, lat Task: Retrieve lat from rainfall that have at least one matching reading in soil_moisture sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013613
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: unit, level, lat, value Sensor: evaporation | fields: unit, lon, depth, reading Task: Fetch lat from snow_depth where type exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013614
train
v3
Sensor network script: Node: turbidity | code: ref | fields: level, unit, qc, value Sensor: evaporation | fields: lon, ts, level, reading Task: Fetch value from turbidity where value is greater than the average of reading in evaporation for matching depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013615
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: depth, qc, unit, value Sensor: uv_index | fields: depth, lon, level, ts Task: Get lat from soil_moisture where a corresponding entry exists in uv_index with the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013616
train
v3
Sensor network script: Node: evaporation | code: stn | fields: type, lon, ts, reading Sensor: drought_index | fields: type, reading, lat, lon Task: Fetch lon from evaporation where depth is greater than the count of of depth in drought_index for matching unit. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="unit"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013617
train
v2
Sensor network script: Node: frost | code: clr | fields: lat, lon, unit, reading Sensor: dew_point | fields: value, qc, ts, lon Task: Retrieve depth from frost that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "clr", "inner_alias": "cnd", "proj_col": "depth", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013618
train
v2
Sensor network script: Node: air_quality | code: prt | fields: lat, qc, level, ts Sensor: turbidity | fields: lat, lon, level, value Task: Fetch lat from air_quality that have at least one corresponding turbidity measurement for the same qc. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013619
train
v1
Sensor network script: Node: humidity | code: thr | fields: qc, lat, ts, type Sensor: air_quality | fields: depth, lat, reading, qc Task: Retrieve reading from humidity whose qc is found in air_quality records where qc matches the outer node. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013620
train
v3
Sensor network script: Node: visibility | code: clr | fields: qc, type, depth, value Sensor: temperature | fields: depth, lon, unit, type Task: Fetch lat from visibility where reading is greater than the average of depth in temperature for matching depth. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013621
train
v3
Sensor network script: Node: rainfall | code: stn | fields: qc, ts, depth, reading Sensor: visibility | fields: unit, qc, lat, lon Task: Retrieve depth from rainfall with value above the AVG(reading) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013622
train
v3
Sensor network script: Node: visibility | code: prt | fields: lon, reading, level, qc Sensor: frost | fields: lon, type, value, lat Task: Get lon from visibility where reading exceeds the average value from frost for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("frost", code="frs"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013623
train
v2
Sensor network script: Node: frost | code: clr | fields: qc, lat, lon, depth Sensor: drought_index | fields: ts, depth, type, unit Task: Fetch value from frost that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013624
train
v2
Sensor network script: Node: humidity | code: clr | fields: level, unit, lat, reading Sensor: turbidity | fields: lat, level, depth, qc Task: Retrieve lon from humidity that have at least one matching reading in turbidity sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013625
train
v1
Sensor network script: Node: humidity | code: gst | fields: level, lat, type, value Sensor: evaporation | fields: value, level, type, reading Task: Retrieve lat from humidity whose qc is found in evaporation records where type matches the outer node. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=set_member( field="qc", source=Probe("evaporation", code="evp"), match="type", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013626
train
v2
Sensor network script: Node: uv_index | code: ref | fields: depth, unit, level, qc Sensor: cloud_cover | fields: lon, ts, type, depth Task: Retrieve level from uv_index that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013627
train
v2
Sensor network script: Node: frost | code: gst | fields: lat, level, reading, lon Sensor: visibility | fields: value, type, qc, level Task: Get value from frost where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="value", )
{ "outer_table": "frost", "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_013628
train
v1
Sensor network script: Node: humidity | code: mst | fields: depth, unit, reading, ts Sensor: temperature | fields: value, unit, ts, depth Task: Retrieve depth from humidity whose type is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("humidity", code="mst"), filter=set_member( field="type", source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013629
train
v2
Sensor network script: Node: uv_index | code: hub | fields: value, qc, lat, lon Sensor: lightning | fields: lon, depth, reading, type Task: Fetch lon from uv_index that have at least one corresponding lightning measurement for the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013630
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: qc, unit, value, lat Sensor: wind_speed | fields: level, qc, lat, unit Task: Fetch value from soil_moisture where reading is greater than the average of depth in wind_speed for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013631
train
v1
Sensor network script: Node: frost | code: gst | fields: unit, level, type, ts Sensor: drought_index | fields: unit, reading, value, qc Task: Fetch lat from frost where type exists in drought_index sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="ts", ), output="lat", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013632
train
v3
Sensor network script: Node: wind_speed | code: hub | fields: level, ts, qc, reading Sensor: humidity | fields: value, lon, reading, depth Task: Retrieve lon from wind_speed with reading above the MIN(value) of humidity readings sharing the same qc. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="qc"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013633
train
v3
Sensor network script: Node: turbidity | code: mst | fields: ts, qc, value, unit Sensor: soil_moisture | fields: lat, qc, ts, value Task: Fetch reading from turbidity where value is greater than the maximum of depth in soil_moisture for matching ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013634
train
v3
Sensor network script: Node: visibility | code: thr | fields: lon, unit, level, qc Sensor: frost | fields: reading, qc, unit, lat Task: Fetch lon from visibility where value is greater than the minimum of depth in frost for matching type. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("frost", code="frs"), match="type"), ), output="lon", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013635
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: level, ts, lat, lon Sensor: snow_depth | fields: type, level, lat, qc Task: Fetch lat from wind_speed that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013636
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: ts, qc, lat, type Sensor: pressure | fields: value, type, level, unit Task: Fetch value from soil_moisture where depth is greater than the count of of reading in pressure for matching type. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="type"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013637
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: depth, level, value, ts Sensor: air_quality | fields: value, unit, lon, depth Task: Fetch lon from soil_moisture where qc exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013638
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: type, depth, unit, qc Sensor: rainfall | fields: value, level, qc, depth Task: Fetch reading from wind_speed where depth exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013639
train
v2
Sensor network script: Node: sunlight | code: clr | fields: depth, ts, lat, qc Sensor: pressure | fields: reading, qc, type, ts Task: Fetch lat from sunlight that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013640
train
v1
Sensor network script: Node: rainfall | code: prt | fields: reading, lon, depth, lat Sensor: humidity | fields: lon, level, unit, reading Task: Get lon from rainfall where ts appears in humidity readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lon", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013641
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: depth, qc, ts, value Sensor: sunlight | fields: lat, depth, ts, level Task: Get reading from soil_moisture where value exceeds the count of reading from sunlight for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="unit"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013642
train
v3
Sensor network script: Node: air_quality | code: gst | fields: depth, value, level, ts Sensor: cloud_cover | fields: value, depth, qc, unit Task: Fetch level from air_quality where value is greater than the maximum of reading in cloud_cover for matching qc. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="level", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013643
train
v1
Sensor network script: Node: frost | code: clr | fields: ts, value, depth, type Sensor: turbidity | fields: lat, value, qc, reading Task: Retrieve level from frost whose type is found in turbidity records where depth matches the outer node. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013644
train
v2
Sensor network script: Node: turbidity | code: gst | fields: depth, lon, unit, ts Sensor: drought_index | fields: qc, ts, type, lat Task: Retrieve value from turbidity that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013645
train
v2
Sensor network script: Node: temperature | code: hub | fields: unit, qc, type, lat Sensor: lightning | fields: depth, lat, type, level Task: Retrieve reading from temperature that have at least one matching reading in lightning sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013646
train
v3
Sensor network script: Node: frost | code: ref | fields: depth, level, value, lat Sensor: temperature | fields: qc, ts, value, level Task: Fetch reading from frost where value is greater than the count of of depth in temperature for matching type. Script:
readings = fetch( node=Node("frost", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013647
train
v2
Sensor network script: Node: uv_index | code: hub | fields: ts, type, lat, depth Sensor: drought_index | fields: type, ts, value, lat Task: Get level from uv_index where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013648
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: lat, ts, value, qc Sensor: sunlight | fields: type, lat, value, qc Task: Fetch depth from cloud_cover that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013649
train
v1
Sensor network script: Node: lightning | code: gst | fields: lon, unit, reading, ts Sensor: evaporation | fields: ts, lat, unit, lon Task: Retrieve lat from lightning whose ts is found in evaporation records where ts matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="ts", source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013650
train
v3
Sensor network script: Node: turbidity | code: mst | fields: reading, lon, value, ts Sensor: snow_depth | fields: lat, value, qc, type Task: Retrieve reading from turbidity with depth above the SUM(value) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013651
train
v2
Sensor network script: Node: drought_index | code: mst | fields: qc, ts, level, type Sensor: temperature | fields: level, reading, ts, lon Task: Retrieve lat from drought_index that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013652
train
v2
Sensor network script: Node: air_quality | code: stn | fields: value, depth, qc, reading Sensor: wind_speed | fields: depth, reading, ts, type Task: Retrieve lat from air_quality that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lat", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013653
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: lat, lon, reading, unit Sensor: pressure | fields: qc, value, unit, depth Task: Get value from soil_moisture where depth appears in pressure readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="unit", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013654
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: depth, level, reading, type Sensor: lightning | fields: level, lon, depth, lat Task: Get reading from snow_depth where depth exceeds the minimum reading from lightning for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("lightning", code="tnd"), match="qc"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013655
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: level, type, unit, lon Sensor: turbidity | fields: lat, ts, value, type Task: Retrieve lon from wind_speed whose depth is found in turbidity records where unit matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013656
train
v3
Sensor network script: Node: lightning | code: ref | fields: value, level, lon, depth Sensor: drought_index | fields: depth, ts, level, lat Task: Get lat from lightning where reading exceeds the average value from drought_index for the same depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013657
train
v3
Sensor network script: Node: evaporation | code: gst | fields: ts, qc, lat, level Sensor: frost | fields: level, ts, type, lat Task: Get lat from evaporation where reading exceeds the minimum value from frost for the same depth. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013658
train
v2
Sensor network script: Node: temperature | code: stn | fields: qc, lat, ts, depth Sensor: humidity | fields: lat, ts, qc, type Task: Get level from temperature where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "level", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013659
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: type, lon, reading, unit Sensor: visibility | fields: lat, reading, type, depth Task: Get lon from wind_speed where depth exceeds the total value from visibility for the same qc. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013660
train
v3
Sensor network script: Node: wind_speed | code: mst | fields: lat, unit, type, reading Sensor: temperature | fields: ts, lon, qc, value Task: Retrieve lon from wind_speed with depth above the MAX(value) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="type"), ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013661
train
v1
Sensor network script: Node: drought_index | code: ref | fields: type, value, qc, level Sensor: temperature | fields: level, reading, depth, qc Task: Get lat from drought_index where qc appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", 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", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013662
train
v1
Sensor network script: Node: air_quality | code: mst | fields: lon, type, unit, reading Sensor: dew_point | fields: qc, value, type, lon Task: Fetch lat from air_quality where depth exists in dew_point sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013663
train
v3
Sensor network script: Node: snow_depth | code: hub | fields: reading, lat, qc, lon Sensor: turbidity | fields: value, depth, level, ts Task: Get lon from snow_depth where depth exceeds the maximum value from turbidity for the same depth. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="depth"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013664
train
v2
Sensor network script: Node: dew_point | code: gst | fields: lon, level, value, ts Sensor: air_quality | fields: lat, depth, lon, reading Task: Retrieve level from dew_point that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "level", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013665
train
v1
Sensor network script: Node: rainfall | code: gst | fields: level, type, ts, unit Sensor: humidity | fields: lat, unit, depth, type Task: Get reading from rainfall where depth appears in humidity readings with matching ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013666
train
v3
Sensor network script: Node: rainfall | code: stn | fields: type, ts, qc, value Sensor: humidity | fields: depth, ts, unit, level Task: Retrieve lat from rainfall with depth above the MIN(value) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013667
train
v3
Sensor network script: Node: uv_index | code: stn | fields: lat, qc, lon, value Sensor: soil_moisture | fields: level, reading, lat, depth Task: Fetch reading from uv_index where reading is greater than the average of reading in soil_moisture for matching qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", 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": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013668
train
v3
Sensor network script: Node: sunlight | code: clr | fields: type, level, reading, depth Sensor: evaporation | fields: reading, depth, qc, lon Task: Get value from sunlight where depth exceeds the maximum value from evaporation for the same depth. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="depth"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013669
train
v2
Sensor network script: Node: visibility | code: ref | fields: qc, type, unit, depth Sensor: cloud_cover | fields: level, lat, reading, qc Task: Retrieve depth from visibility that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013670
train
v2
Sensor network script: Node: air_quality | code: prt | fields: lat, value, lon, unit Sensor: sunlight | fields: ts, unit, value, reading Task: Get level from air_quality where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013671
train
v2
Sensor network script: Node: drought_index | code: ref | fields: ts, reading, depth, lat Sensor: sunlight | fields: lat, qc, level, unit Task: Get reading from drought_index where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013672
train
v2
Sensor network script: Node: lightning | code: hub | fields: reading, lat, value, depth Sensor: evaporation | fields: unit, ts, lon, level Task: Retrieve level from lightning that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013673
train
v1
Sensor network script: Node: rainfall | code: hub | fields: type, unit, lat, lon Sensor: visibility | fields: level, unit, lat, type Task: Retrieve level from rainfall whose ts is found in visibility records where ts matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="ts", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013674
train
v1
Sensor network script: Node: visibility | code: hub | fields: ts, level, unit, reading Sensor: uv_index | fields: qc, unit, lon, ts Task: Fetch reading from visibility where type exists in uv_index sensor data for the same depth. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013675
train
v3
Sensor network script: Node: visibility | code: clr | fields: type, depth, level, value Sensor: pressure | fields: level, lon, value, lat Task: Fetch value from visibility where value is greater than the minimum of reading in pressure for matching qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013676
train
v2
Sensor network script: Node: humidity | code: gst | fields: depth, level, value, ts Sensor: soil_moisture | fields: depth, ts, reading, level Task: Retrieve depth from humidity that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "depth", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013677
train
v2
Sensor network script: Node: uv_index | code: mst | fields: unit, lon, ts, level Sensor: cloud_cover | fields: lon, lat, ts, unit Task: Retrieve value from uv_index that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013678
train
v1
Sensor network script: Node: air_quality | code: gst | fields: ts, value, qc, reading Sensor: frost | fields: level, reading, ts, lon Task: Retrieve value from air_quality whose qc is found in frost records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "value", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013679
train
v2
Sensor network script: Node: lightning | code: stn | fields: ts, unit, qc, value Sensor: drought_index | fields: unit, lon, reading, lat Task: Fetch lat from lightning that have at least one corresponding drought_index measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013680
train
v2
Sensor network script: Node: air_quality | code: clr | fields: value, reading, unit, qc Sensor: snow_depth | fields: unit, ts, reading, type Task: Retrieve lat from air_quality that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013681
train
v3
Sensor network script: Node: snow_depth | code: prt | fields: type, value, unit, level Sensor: drought_index | fields: level, qc, unit, depth Task: Get lon from snow_depth where depth exceeds the total depth from drought_index for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013682
train
v3
Sensor network script: Node: humidity | code: stn | fields: depth, value, unit, type Sensor: drought_index | fields: type, reading, ts, qc Task: Fetch lat from humidity where reading is greater than the total of depth in drought_index for matching depth. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013683
train
v1
Sensor network script: Node: sunlight | code: clr | fields: unit, level, lon, qc Sensor: wind_speed | fields: unit, value, lat, type Task: Get reading from sunlight where depth appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013684
train
v3
Sensor network script: Node: rainfall | code: stn | fields: value, reading, ts, type Sensor: turbidity | fields: reading, qc, lat, value Task: Get value from rainfall where value exceeds the average value from turbidity for the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013685
train
v1
Sensor network script: Node: snow_depth | code: hub | fields: type, value, reading, depth Sensor: cloud_cover | fields: lat, ts, reading, depth Task: Get lon from snow_depth where type appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("snow_depth", code="hub"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013686
train
v3
Sensor network script: Node: uv_index | code: thr | fields: level, qc, reading, depth Sensor: visibility | fields: ts, lon, type, qc Task: Fetch depth from uv_index where value is greater than the minimum of value in visibility for matching ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013687
train
v1
Sensor network script: Node: turbidity | code: mst | fields: unit, value, ts, level Sensor: wind_speed | fields: type, depth, lon, ts Task: Get lat from turbidity where ts appears in wind_speed readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "lat", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013688
train
v3
Sensor network script: Node: evaporation | code: gst | fields: ts, lat, reading, level Sensor: sunlight | fields: unit, value, depth, lat Task: Fetch depth from evaporation where value is greater than the maximum of value in sunlight for matching unit. Script:
readings = fetch( node=Node("evaporation", code="gst"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013689
train
v1
Sensor network script: Node: turbidity | code: mst | fields: depth, lon, reading, type Sensor: wind_speed | fields: value, depth, unit, type Task: Retrieve level from turbidity whose depth is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013690
train
v2
Sensor network script: Node: air_quality | code: clr | fields: value, ts, level, unit Sensor: uv_index | fields: unit, type, reading, value Task: Retrieve reading from air_quality that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013691
train
v3
Sensor network script: Node: frost | code: thr | fields: lat, qc, value, level Sensor: evaporation | fields: unit, level, value, qc Task: Get level from frost where depth exceeds the total depth from evaporation for the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "depth", source=Probe("evaporation", code="evp"), match="qc"), ), output="level", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013692
train
v2
Sensor network script: Node: lightning | code: ref | fields: unit, qc, lon, type Sensor: turbidity | fields: type, level, unit, value Task: Retrieve level from lightning that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="level", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013693
train
v1
Sensor network script: Node: dew_point | code: stn | fields: qc, lon, lat, unit Sensor: visibility | fields: lon, reading, ts, unit Task: Retrieve depth from dew_point whose ts is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013694
train
v2
Sensor network script: Node: uv_index | code: hub | fields: lon, unit, depth, type Sensor: soil_moisture | fields: reading, value, lat, type Task: Fetch value from uv_index that have at least one corresponding soil_moisture measurement for the same type. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013695
train
v3
Sensor network script: Node: air_quality | code: stn | fields: lat, value, type, unit Sensor: visibility | fields: value, unit, ts, lon Task: Fetch reading from air_quality where depth is greater than the maximum of reading in visibility for matching ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_013696
train
v1
Sensor network script: Node: humidity | code: hub | fields: type, depth, lon, ts Sensor: frost | fields: lon, depth, qc, ts Task: Get value from humidity where qc appears in frost readings with matching ts. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="qc", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013697
train
v2
Sensor network script: Node: visibility | code: gst | fields: unit, lat, level, type Sensor: sunlight | fields: lat, value, depth, qc Task: Fetch value from visibility that have at least one corresponding sunlight measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="value", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013698
train
v1
Sensor network script: Node: drought_index | code: mst | fields: depth, value, lat, qc Sensor: dew_point | fields: ts, qc, value, lon Task: Retrieve value from drought_index whose type is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "value", "filter_col": "type", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_013699
train