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: sunlight | code: thr | fields: depth, lon, lat, level Sensor: snow_depth | fields: level, depth, unit, lon Task: Get lon from sunlight where ts appears in snow_depth readings with matching qc. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "lon", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017900
train
v1
Sensor network script: Node: air_quality | code: hub | fields: reading, depth, unit, type Sensor: uv_index | fields: lat, depth, qc, reading Task: Get level from air_quality where ts appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017901
train
v3
Sensor network script: Node: sunlight | code: prt | fields: lat, value, reading, ts Sensor: visibility | fields: level, value, lon, qc Task: Retrieve lon from sunlight with reading above the AVG(value) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017902
train
v2
Sensor network script: Node: temperature | code: hub | fields: level, lon, ts, reading Sensor: cloud_cover | fields: type, ts, reading, level Task: Fetch level from temperature that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017903
train
v2
Sensor network script: Node: rainfall | code: thr | fields: unit, reading, qc, depth Sensor: wind_speed | fields: ts, lon, qc, value Task: Retrieve depth from rainfall that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017904
train
v2
Sensor network script: Node: dew_point | code: hub | fields: reading, level, ts, qc Sensor: air_quality | fields: reading, depth, ts, type Task: Retrieve lon 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="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017905
train
v2
Sensor network script: Node: air_quality | code: hub | fields: unit, value, lon, qc Sensor: dew_point | fields: qc, lon, unit, ts Task: Get level from air_quality where a corresponding entry exists in dew_point with the same depth. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017906
train
v3
Sensor network script: Node: evaporation | code: mst | fields: qc, level, ts, value Sensor: wind_speed | fields: unit, depth, value, ts Task: Get reading from evaporation where value exceeds the total depth from wind_speed for the same qc. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("wind_speed", code="gst"), match="qc"), ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017907
train
v3
Sensor network script: Node: air_quality | code: gst | fields: lat, lon, reading, value Sensor: rainfall | fields: depth, level, reading, unit Task: Get lat from air_quality where depth exceeds the minimum depth from rainfall for the same ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017908
train
v2
Sensor network script: Node: pressure | code: prt | fields: unit, depth, lon, level Sensor: soil_moisture | fields: level, lat, value, depth Task: Get value from pressure where a corresponding entry exists in soil_moisture with the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017909
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: value, reading, lat, ts Sensor: sunlight | fields: lat, reading, qc, depth Task: Fetch value from soil_moisture where depth exists in sunlight sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017910
train
v3
Sensor network script: Node: turbidity | code: hub | fields: depth, lat, lon, unit Sensor: visibility | fields: reading, unit, qc, value Task: Retrieve level from turbidity with reading above the SUM(value) of visibility readings sharing the same qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017911
train
v2
Sensor network script: Node: turbidity | code: stn | fields: lat, value, level, unit Sensor: humidity | fields: lat, reading, level, unit Task: Retrieve value from turbidity that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017912
train
v3
Sensor network script: Node: pressure | code: prt | fields: lon, depth, lat, level Sensor: turbidity | fields: lon, qc, reading, level Task: Get level from pressure where reading exceeds the average reading from turbidity for the same qc. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("turbidity", code="ftu"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017913
train
v3
Sensor network script: Node: uv_index | code: prt | fields: value, unit, ts, level Sensor: temperature | fields: depth, qc, lat, reading Task: Get lon from uv_index where reading exceeds the minimum depth from temperature for the same ts. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017914
train
v1
Sensor network script: Node: uv_index | code: thr | fields: lat, type, qc, unit Sensor: air_quality | fields: depth, unit, ts, lon Task: Retrieve reading from uv_index whose type is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017915
train
v1
Sensor network script: Node: sunlight | code: mst | fields: qc, depth, ts, value Sensor: dew_point | fields: level, qc, lat, reading Task: Retrieve lon from sunlight whose qc is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017916
train
v1
Sensor network script: Node: visibility | code: gst | fields: level, ts, qc, depth Sensor: soil_moisture | fields: ts, level, reading, lon Task: Get value from visibility where type appears in soil_moisture readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "visibility", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017917
train
v1
Sensor network script: Node: cloud_cover | code: mst | fields: reading, type, lon, qc Sensor: rainfall | fields: level, lat, type, ts Task: Retrieve reading from cloud_cover whose depth is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017918
train
v2
Sensor network script: Node: turbidity | code: mst | fields: value, depth, lat, lon Sensor: humidity | fields: qc, value, lat, reading Task: Retrieve lon from turbidity that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017919
train
v1
Sensor network script: Node: frost | code: prt | fields: depth, lon, reading, ts Sensor: drought_index | fields: lon, level, unit, lat Task: Fetch value from frost where qc exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017920
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: unit, qc, level, lon Sensor: pressure | fields: reading, unit, ts, depth Task: Get value from cloud_cover where depth exceeds the maximum reading from pressure for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("pressure", code="mbl"), match="unit"), ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017921
train
v2
Sensor network script: Node: turbidity | code: clr | fields: lat, value, level, unit Sensor: wind_speed | fields: lon, depth, unit, level Task: Retrieve lon from turbidity that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017922
train
v3
Sensor network script: Node: rainfall | code: hub | fields: level, lat, reading, depth Sensor: dew_point | fields: ts, reading, value, level Task: Get depth from rainfall where reading exceeds the minimum value from dew_point for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017923
train
v2
Sensor network script: Node: rainfall | code: ref | fields: lon, depth, level, unit Sensor: drought_index | fields: lat, unit, qc, level Task: Get value from rainfall where a corresponding entry exists in drought_index with the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017924
train
v1
Sensor network script: Node: rainfall | code: clr | fields: ts, type, value, qc Sensor: snow_depth | fields: type, ts, value, reading Task: Retrieve lat from rainfall whose depth is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "lat", "filter_col": "depth", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017925
train
v2
Sensor network script: Node: visibility | code: clr | fields: ts, qc, level, type Sensor: snow_depth | fields: qc, lon, type, unit Task: Get level from visibility where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="level", )
{ "outer_table": "visibility", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "level", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017926
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: depth, lat, type, lon Sensor: drought_index | fields: qc, lon, ts, reading Task: Fetch reading from wind_speed where ts exists in drought_index sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="ts", source=Probe("drought_index", code="drt"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017927
train
v1
Sensor network script: Node: sunlight | code: prt | fields: level, type, lat, reading Sensor: cloud_cover | fields: unit, lat, qc, level Task: Fetch value from sunlight where depth exists in cloud_cover sensor data for the same ts. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017928
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: level, qc, lat, reading Sensor: uv_index | fields: ts, qc, lat, level Task: Retrieve level from snow_depth whose unit is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017929
train
v3
Sensor network script: Node: frost | code: prt | fields: qc, level, value, lon Sensor: snow_depth | fields: unit, depth, level, value Task: Get depth from frost where value exceeds the minimum depth from snow_depth for the same ts. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("snow_depth", code="snw"), match="ts"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017930
train
v3
Sensor network script: Node: uv_index | code: thr | fields: depth, reading, lon, unit Sensor: humidity | fields: ts, qc, lon, type Task: Get value from uv_index where value exceeds the average depth from humidity for the same unit. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="unit"), ), output="value", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017931
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: qc, lon, reading, depth Sensor: rainfall | fields: type, ts, level, depth Task: Get level from wind_speed where ts appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017932
train
v2
Sensor network script: Node: frost | code: stn | fields: lon, value, unit, type Sensor: evaporation | fields: ts, unit, level, depth Task: Get lat from frost where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("frost", code="stn"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="lat", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "lat", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017933
train
v2
Sensor network script: Node: rainfall | code: ref | fields: type, ts, lat, qc Sensor: turbidity | fields: lat, unit, qc, type Task: Retrieve lat from rainfall that have at least one matching reading in turbidity sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lat", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017934
train
v1
Sensor network script: Node: evaporation | code: hub | fields: type, lon, lat, reading Sensor: cloud_cover | fields: lat, value, qc, ts Task: Fetch lon from evaporation where depth exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017935
train
v3
Sensor network script: Node: frost | code: thr | fields: level, lon, depth, lat Sensor: uv_index | fields: level, value, unit, qc Task: Retrieve lat from frost with depth above the SUM(reading) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017936
train
v3
Sensor network script: Node: sunlight | code: hub | fields: ts, qc, type, level Sensor: evaporation | fields: depth, value, lat, qc Task: Retrieve lat from sunlight with depth above the MAX(value) of evaporation readings sharing the same unit. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017937
train
v3
Sensor network script: Node: evaporation | code: thr | fields: type, level, lon, ts Sensor: humidity | fields: value, type, unit, lon Task: Fetch value from evaporation where reading is greater than the count of of depth in humidity for matching ts. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="value", )
{ "outer_table": "evaporation", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017938
train
v3
Sensor network script: Node: dew_point | code: clr | fields: lat, lon, type, qc Sensor: soil_moisture | fields: qc, value, reading, ts Task: Retrieve value from dew_point with reading above the AVG(depth) of soil_moisture readings sharing the same unit. Script:
readings = fetch( node=Node("dew_point", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017939
train
v2
Sensor network script: Node: visibility | code: clr | fields: level, lon, qc, ts Sensor: drought_index | fields: reading, level, ts, value Task: Retrieve value from visibility that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "visibility", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017940
train
v3
Sensor network script: Node: turbidity | code: clr | fields: lon, depth, lat, value Sensor: soil_moisture | fields: level, depth, reading, value Task: Get value from turbidity where value exceeds the total depth from soil_moisture for the same qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017941
train
v3
Sensor network script: Node: humidity | code: thr | fields: qc, lon, value, depth Sensor: rainfall | fields: level, qc, lat, unit Task: Fetch value from humidity where value is greater than the maximum of value in rainfall for matching depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017942
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: ts, lon, qc, depth Sensor: soil_moisture | fields: type, unit, qc, reading Task: Get reading from snow_depth where reading exceeds the minimum reading from soil_moisture for the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017943
train
v2
Sensor network script: Node: wind_speed | code: ref | fields: unit, type, ts, level Sensor: lightning | fields: lat, ts, type, qc Task: Retrieve level from wind_speed that have at least one matching reading in lightning sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "level", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017944
train
v2
Sensor network script: Node: turbidity | code: gst | fields: lon, lat, value, qc Sensor: air_quality | fields: value, reading, level, lat Task: Fetch value from turbidity that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017945
train
v2
Sensor network script: Node: temperature | code: prt | fields: lat, depth, unit, lon Sensor: snow_depth | fields: lon, value, type, lat Task: Fetch reading from temperature that have at least one corresponding snow_depth measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "reading", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017946
train
v2
Sensor network script: Node: uv_index | code: mst | fields: value, unit, depth, qc Sensor: sunlight | fields: unit, value, reading, 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="mst"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017947
train
v1
Sensor network script: Node: visibility | code: mst | fields: ts, lon, depth, reading Sensor: dew_point | fields: value, type, reading, lat Task: Fetch lat from visibility where type exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017948
train
v2
Sensor network script: Node: lightning | code: prt | fields: level, unit, reading, qc Sensor: humidity | fields: unit, lon, reading, level Task: Fetch lat from lightning that have at least one corresponding humidity measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017949
train
v3
Sensor network script: Node: turbidity | code: clr | fields: unit, depth, lon, lat Sensor: pressure | fields: unit, depth, lat, qc Task: Fetch level from turbidity where reading is greater than the maximum of depth in pressure for matching depth. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="depth"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017950
train
v1
Sensor network script: Node: frost | code: hub | fields: lon, qc, reading, value Sensor: air_quality | fields: lon, qc, lat, type Task: Retrieve value from frost whose unit is found in air_quality records where ts matches the outer node. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="ts", ), output="value", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017951
train
v3
Sensor network script: Node: air_quality | code: ref | fields: unit, reading, qc, lon Sensor: temperature | fields: lat, lon, value, depth Task: Retrieve depth from air_quality with value above the COUNT(depth) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "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_017952
train
v3
Sensor network script: Node: rainfall | code: clr | fields: reading, ts, level, type Sensor: turbidity | fields: ts, qc, unit, reading Task: Fetch depth from rainfall where reading is greater than the count of of value in turbidity for matching type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017953
train
v2
Sensor network script: Node: visibility | code: gst | fields: lat, qc, lon, level Sensor: dew_point | fields: depth, lat, value, reading Task: Retrieve depth from visibility that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017954
train
v3
Sensor network script: Node: frost | code: thr | fields: reading, lon, value, depth Sensor: lightning | fields: ts, lon, qc, depth Task: Retrieve reading from frost with depth above the SUM(value) of lightning readings sharing the same unit. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("lightning", code="tnd"), match="unit"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017955
train
v3
Sensor network script: Node: turbidity | code: hub | fields: lon, lat, ts, depth Sensor: temperature | fields: lon, unit, level, lat Task: Retrieve depth from turbidity with value above the AVG(depth) of temperature readings sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017956
train
v2
Sensor network script: Node: turbidity | code: prt | fields: lon, depth, unit, type Sensor: cloud_cover | fields: level, type, unit, value Task: Retrieve lat from turbidity that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017957
train
v2
Sensor network script: Node: drought_index | code: mst | fields: qc, lon, value, level Sensor: evaporation | fields: depth, reading, qc, lon Task: Retrieve lon from drought_index that have at least one matching reading in evaporation sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="lon", )
{ "outer_table": "drought_index", "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_017958
train
v3
Sensor network script: Node: sunlight | code: gst | fields: depth, qc, reading, ts Sensor: temperature | fields: unit, depth, value, type Task: Get level from sunlight where reading exceeds the average depth from temperature for the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="level", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017959
train
v2
Sensor network script: Node: humidity | code: prt | fields: unit, lon, depth, level Sensor: pressure | fields: lon, level, ts, qc Task: Get lat from humidity where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017960
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: value, ts, unit, type Sensor: sunlight | fields: level, depth, unit, qc Task: Retrieve depth from wind_speed whose depth is found in sunlight records where type matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="type", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "depth", "filter_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017961
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: unit, lon, lat, ts Sensor: turbidity | fields: lat, level, qc, unit Task: Get lat from soil_moisture where value exceeds the average value from turbidity for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017962
train
v1
Sensor network script: Node: rainfall | code: ref | fields: qc, lat, lon, reading Sensor: uv_index | fields: depth, ts, level, lat Task: Fetch lat from rainfall where depth exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="ts", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017963
train
v3
Sensor network script: Node: pressure | code: prt | fields: qc, value, type, unit Sensor: cloud_cover | fields: qc, ts, reading, lat Task: Retrieve level from pressure with depth above the COUNT(value) of cloud_cover readings sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017964
train
v1
Sensor network script: Node: humidity | code: clr | fields: depth, qc, unit, value Sensor: uv_index | fields: type, ts, lat, depth Task: Fetch lon from humidity where type exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017965
train
v1
Sensor network script: Node: lightning | code: mst | fields: reading, depth, qc, type Sensor: sunlight | fields: lat, unit, level, depth Task: Fetch value from lightning where qc exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017966
train
v2
Sensor network script: Node: sunlight | code: mst | fields: type, lat, lon, value Sensor: air_quality | fields: qc, lon, lat, type Task: Retrieve lon from sunlight that have at least one matching reading in air_quality sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=has_match( source=Probe("air_quality", code="prt"), match="qc", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "mst", "inner_alias": "prt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017967
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: lon, value, lat, unit Sensor: wind_speed | fields: lat, qc, ts, type Task: Get reading from soil_moisture where reading exceeds the total reading from wind_speed for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017968
train
v2
Sensor network script: Node: pressure | code: prt | fields: unit, qc, type, lon Sensor: snow_depth | fields: depth, lat, value, type Task: Get lat from pressure where a corresponding entry exists in snow_depth with the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017969
train
v1
Sensor network script: Node: uv_index | code: ref | fields: lat, qc, unit, depth Sensor: pressure | fields: lat, depth, reading, lon Task: Get depth from uv_index where qc appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "qc", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017970
train
v3
Sensor network script: Node: frost | code: stn | fields: ts, lon, value, lat Sensor: uv_index | fields: depth, reading, value, ts Task: Get value from frost where reading exceeds the total depth from uv_index for the same unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("uv_index", code="flx"), match="unit"), ), output="value", )
{ "outer_table": "frost", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "value", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017971
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: lon, value, qc, type Sensor: humidity | fields: ts, reading, lon, level Task: Get level from cloud_cover where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017972
train
v2
Sensor network script: Node: turbidity | code: stn | fields: value, unit, type, lon Sensor: drought_index | fields: reading, type, value, depth Task: Fetch level from turbidity that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017973
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: type, unit, level, lon Sensor: lightning | fields: value, unit, ts, level Task: Fetch depth from snow_depth where reading is greater than the total of reading in lightning for matching type. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("lightning", code="tnd"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017974
train
v2
Sensor network script: Node: cloud_cover | code: ref | fields: unit, value, level, reading Sensor: drought_index | fields: level, unit, value, reading Task: Retrieve depth from cloud_cover that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017975
train
v3
Sensor network script: Node: uv_index | code: thr | fields: depth, reading, type, lat Sensor: evaporation | fields: unit, qc, ts, lon Task: Retrieve lon from uv_index with value above the COUNT(depth) of evaporation readings sharing the same ts. Script:
readings = fetch( node=Node("uv_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("evaporation", code="evp"), match="ts"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017976
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: value, ts, level, depth Sensor: drought_index | fields: lon, depth, unit, qc Task: Get reading from cloud_cover where depth exceeds the maximum depth from drought_index for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "reading", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017977
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: unit, level, ts, lat Sensor: cloud_cover | fields: unit, qc, value, type Task: Fetch lat from wind_speed that have at least one corresponding cloud_cover measurement for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "lat", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017978
train
v1
Sensor network script: Node: lightning | code: mst | fields: lat, value, reading, depth Sensor: cloud_cover | fields: level, unit, type, depth Task: Get reading from lightning where unit appears in cloud_cover readings with matching ts. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017979
train
v1
Sensor network script: Node: pressure | code: hub | fields: value, lat, qc, level Sensor: sunlight | fields: lon, qc, level, depth Task: Retrieve reading from pressure whose qc is found in sunlight records where depth matches the outer node. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="depth", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017980
train
v2
Sensor network script: Node: evaporation | code: mst | fields: unit, depth, value, lon Sensor: pressure | fields: qc, depth, level, lon Task: Retrieve depth from evaporation that have at least one matching reading in pressure sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017981
train
v1
Sensor network script: Node: humidity | code: stn | fields: depth, value, ts, unit Sensor: frost | fields: qc, unit, reading, lat Task: Retrieve level from humidity whose unit is found in frost records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "level", "filter_col": "unit", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017982
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: unit, qc, value, lat Sensor: sunlight | fields: level, unit, lat, type Task: Fetch value from cloud_cover that have at least one corresponding sunlight measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="unit", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "value", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017983
train
v1
Sensor network script: Node: pressure | code: mst | fields: ts, unit, lat, reading Sensor: temperature | fields: qc, type, depth, reading Task: Fetch lon from pressure where unit exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="unit", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017984
train
v2
Sensor network script: Node: sunlight | code: prt | fields: depth, lon, ts, unit Sensor: frost | fields: lat, type, unit, reading Task: Retrieve lon from sunlight that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017985
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: unit, value, depth, lon Sensor: lightning | fields: level, qc, type, value Task: Retrieve depth from soil_moisture whose type is found in lightning records where ts matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "type", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017986
train
v1
Sensor network script: Node: lightning | code: gst | fields: level, lat, unit, depth Sensor: snow_depth | fields: lat, ts, value, reading Task: Retrieve value from lightning whose qc is found in snow_depth records where unit matches the outer node. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "filter_col": "qc", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017987
train
v2
Sensor network script: Node: turbidity | code: prt | fields: ts, reading, qc, unit Sensor: evaporation | fields: ts, type, unit, value Task: Fetch level from turbidity that have at least one corresponding evaporation measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017988
train
v3
Sensor network script: Node: rainfall | code: mst | fields: lon, qc, depth, type Sensor: uv_index | fields: unit, depth, lon, ts Task: Retrieve lon from rainfall with depth above the MIN(reading) of uv_index readings sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("uv_index", code="flx"), match="unit"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017989
train
v2
Sensor network script: Node: temperature | code: stn | fields: qc, depth, reading, unit Sensor: pressure | fields: level, qc, type, reading Task: Get depth from temperature where a corresponding entry exists in pressure with the same type. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017990
train
v3
Sensor network script: Node: frost | code: thr | fields: reading, value, type, lat Sensor: drought_index | fields: level, lat, depth, unit Task: Retrieve lat from frost with reading above the SUM(value) of drought_index readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="thr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "value", source=Probe("drought_index", code="drt"), match="depth"), ), output="lat", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017991
train
v2
Sensor network script: Node: dew_point | code: hub | fields: reading, level, unit, value Sensor: turbidity | fields: qc, depth, value, unit Task: Retrieve reading from dew_point that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "turbidity", "outer_alias": "hub", "inner_alias": "ftu", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017992
train
v3
Sensor network script: Node: air_quality | code: gst | fields: type, unit, qc, lat Sensor: pressure | fields: depth, lon, value, qc Task: Fetch value from air_quality where reading is greater than the minimum of reading in pressure for matching ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017993
train
v1
Sensor network script: Node: turbidity | code: thr | fields: qc, reading, type, lat Sensor: sunlight | fields: ts, unit, value, lon Task: Retrieve lat from turbidity whose type is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017994
train
v1
Sensor network script: Node: evaporation | code: mst | fields: level, value, lat, type Sensor: rainfall | fields: value, lon, ts, unit Task: Retrieve lon from evaporation whose qc is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017995
train
v3
Sensor network script: Node: frost | code: gst | fields: depth, ts, type, reading Sensor: cloud_cover | fields: qc, ts, level, depth Task: Get level from frost where reading exceeds the minimum value from cloud_cover for the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="level", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017996
train
v1
Sensor network script: Node: soil_moisture | code: clr | fields: qc, unit, level, type Sensor: temperature | fields: lon, lat, qc, type Task: Get level from soil_moisture where unit appears in temperature readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017997
train
v3
Sensor network script: Node: dew_point | code: thr | fields: level, qc, value, lon Sensor: uv_index | fields: value, lat, level, type Task: Fetch reading from dew_point where reading is greater than the average of depth in uv_index for matching ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_017998
train
v2
Sensor network script: Node: turbidity | code: hub | fields: reading, level, value, lat Sensor: wind_speed | fields: ts, depth, qc, type Task: Get lat from turbidity where a corresponding entry exists in wind_speed with the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lat", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_017999
train