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: rainfall | code: hub | fields: reading, level, qc, depth Sensor: cloud_cover | fields: lon, type, reading, lat Task: Fetch reading from rainfall where depth exists in cloud_cover sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062600
train
v1
Sensor network script: Node: uv_index | code: prt | fields: lon, ts, level, lat Sensor: cloud_cover | fields: type, depth, ts, lat Task: Get depth from uv_index where qc appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062601
train
v1
Sensor network script: Node: dew_point | code: stn | fields: reading, lon, type, depth Sensor: wind_speed | fields: reading, lon, level, ts Task: Get level from dew_point where qc appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062602
train
v2
Sensor network script: Node: humidity | code: hub | fields: level, unit, lat, ts Sensor: uv_index | fields: ts, qc, value, type Task: Retrieve depth from humidity that have at least one matching reading in uv_index sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062603
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: ts, lon, lat, level Sensor: dew_point | fields: depth, value, type, unit Task: Get value from snow_depth where depth appears in dew_point readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062604
train
v2
Sensor network script: Node: pressure | code: clr | fields: value, type, level, lon Sensor: frost | fields: depth, qc, unit, value Task: Get reading from pressure where a corresponding entry exists in frost with the same type. Script:
readings = fetch( node=Node("pressure", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062605
train
v1
Sensor network script: Node: drought_index | code: clr | fields: type, lon, depth, ts Sensor: air_quality | fields: reading, lon, unit, qc Task: Fetch reading from drought_index where type exists in air_quality sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062606
train
v3
Sensor network script: Node: rainfall | code: ref | fields: reading, type, unit, depth Sensor: drought_index | fields: type, ts, value, depth Task: Get lon from rainfall where depth exceeds the average depth from drought_index for the same depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062607
train
v1
Sensor network script: Node: evaporation | code: mst | fields: reading, unit, value, depth Sensor: pressure | fields: ts, qc, depth, lat Task: Fetch depth from evaporation where depth exists in pressure sensor data for the same depth. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "depth", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062608
train
v2
Sensor network script: Node: drought_index | code: ref | fields: value, type, unit, ts Sensor: evaporation | fields: level, value, depth, lon Task: Get depth from drought_index where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "depth", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062609
train
v2
Sensor network script: Node: turbidity | code: mst | fields: reading, qc, unit, depth Sensor: humidity | fields: lat, unit, type, depth Task: Get level from turbidity where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "level", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062610
train
v2
Sensor network script: Node: lightning | code: prt | fields: ts, type, depth, lat Sensor: turbidity | fields: lat, qc, lon, reading Task: Fetch lat from lightning that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062611
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: type, value, lon, qc Sensor: frost | fields: lon, level, unit, type Task: Fetch level from soil_moisture where ts exists in frost sensor data for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062612
train
v3
Sensor network script: Node: drought_index | code: prt | fields: value, depth, reading, type Sensor: sunlight | fields: lon, depth, value, lat Task: Get lon from drought_index where reading exceeds the average value from sunlight for the same unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("sunlight", code="brt"), match="unit"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062613
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: value, type, depth, lat Sensor: wind_speed | fields: lon, ts, reading, value Task: Fetch lat from snow_depth where value is greater than the minimum of value in wind_speed for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="ts"), ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "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_062614
train
v2
Sensor network script: Node: lightning | code: hub | fields: depth, lon, type, unit Sensor: frost | fields: level, type, value, unit Task: Fetch level from lightning that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062615
train
v3
Sensor network script: Node: drought_index | code: gst | fields: level, ts, unit, reading Sensor: cloud_cover | fields: level, type, lon, qc Task: Fetch level from drought_index where depth is greater than the count of of value in cloud_cover for matching type. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062616
train
v3
Sensor network script: Node: rainfall | code: clr | fields: type, reading, lat, depth Sensor: drought_index | fields: reading, qc, level, lon Task: Get lon from rainfall where reading exceeds the total depth from drought_index for the same type. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=exceeds( field="reading", threshold=aggregate("SUM", "depth", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062617
train
v2
Sensor network script: Node: air_quality | code: hub | fields: level, ts, reading, lon Sensor: rainfall | fields: depth, lat, reading, level Task: Get reading from air_quality where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062618
train
v1
Sensor network script: Node: drought_index | code: stn | fields: value, qc, level, unit Sensor: cloud_cover | fields: depth, reading, lat, unit Task: Retrieve value from drought_index whose type is found in cloud_cover records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="ts", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "value", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062619
train
v1
Sensor network script: Node: cloud_cover | code: ref | fields: ts, unit, lat, depth Sensor: snow_depth | fields: level, lat, depth, unit Task: Fetch lon from cloud_cover where type exists in snow_depth sensor data for the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="ts", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lon", "filter_col": "type", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062620
train
v3
Sensor network script: Node: evaporation | code: prt | fields: unit, value, depth, type Sensor: turbidity | fields: unit, reading, qc, ts Task: Fetch lat from evaporation where reading is greater than the average of value in turbidity for matching type. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "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_062621
train
v1
Sensor network script: Node: drought_index | code: thr | fields: ts, type, depth, lon Sensor: dew_point | fields: lon, depth, value, ts Task: Retrieve value from drought_index whose type is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=set_member( field="type", source=Probe("dew_point", code="cnd"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "value", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062622
train
v3
Sensor network script: Node: air_quality | code: stn | fields: reading, ts, unit, level Sensor: sunlight | fields: ts, type, level, value Task: Fetch lon from air_quality where reading is greater than the average of reading in sunlight for matching ts. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062623
train
v2
Sensor network script: Node: lightning | code: stn | fields: value, ts, lon, lat Sensor: temperature | fields: depth, ts, qc, reading Task: Get value from lightning where a corresponding entry exists in temperature with the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062624
train
v1
Sensor network script: Node: turbidity | code: prt | fields: unit, qc, value, depth Sensor: uv_index | fields: reading, depth, qc, type Task: Fetch reading from turbidity where ts exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="unit", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062625
train
v2
Sensor network script: Node: pressure | code: gst | fields: lon, qc, reading, value Sensor: dew_point | fields: ts, reading, lon, qc Task: Fetch depth from pressure that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062626
train
v2
Sensor network script: Node: temperature | code: stn | fields: ts, type, value, reading Sensor: sunlight | fields: ts, reading, value, lon Task: Get lat from temperature where a corresponding entry exists in sunlight with the same qc. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062627
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: type, depth, ts, reading Sensor: turbidity | fields: reading, unit, lon, ts Task: Fetch depth from wind_speed where depth is greater than the minimum of value in turbidity for matching unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("turbidity", code="ftu"), match="unit"), ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062628
train
v3
Sensor network script: Node: drought_index | code: thr | fields: value, lon, reading, ts Sensor: uv_index | fields: reading, depth, qc, lat Task: Fetch lon from drought_index where value is greater than the count of of value in uv_index for matching unit. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062629
train
v2
Sensor network script: Node: sunlight | code: thr | fields: depth, unit, qc, reading Sensor: humidity | fields: qc, reading, lat, lon Task: Fetch lon from sunlight that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062630
train
v1
Sensor network script: Node: drought_index | code: ref | fields: depth, level, qc, unit Sensor: cloud_cover | fields: unit, lat, ts, qc Task: Retrieve depth from drought_index whose unit is found in cloud_cover records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="type", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062631
train
v1
Sensor network script: Node: pressure | code: stn | fields: ts, value, unit, level Sensor: dew_point | fields: depth, level, reading, ts Task: Retrieve reading from pressure whose unit is found in dew_point records where ts matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062632
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: unit, type, reading, lon Sensor: uv_index | fields: lat, ts, value, unit Task: Retrieve lon from soil_moisture with reading above the AVG(reading) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="type"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062633
train
v3
Sensor network script: Node: pressure | code: mst | fields: lat, qc, level, type Sensor: cloud_cover | fields: unit, type, ts, depth Task: Fetch lon from pressure where depth is greater than the total of value in cloud_cover for matching type. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "mst", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062634
train
v2
Sensor network script: Node: temperature | code: mst | fields: lon, unit, lat, level Sensor: evaporation | fields: lon, value, reading, level Task: Retrieve lat from temperature that have at least one matching reading in evaporation sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062635
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: unit, reading, qc, depth Sensor: sunlight | fields: unit, value, type, reading Task: Fetch level from soil_moisture where depth exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "level", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062636
train
v3
Sensor network script: Node: pressure | code: hub | fields: lat, level, type, depth Sensor: humidity | fields: level, qc, reading, lon Task: Fetch level from pressure where value is greater than the total of depth in humidity for matching qc. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("humidity", code="hgr"), match="qc"), ), output="level", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062637
train
v1
Sensor network script: Node: temperature | code: gst | fields: qc, type, lat, lon Sensor: pressure | fields: reading, depth, ts, lon Task: Fetch depth from temperature where unit exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="unit", source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "unit", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062638
train
v1
Sensor network script: Node: turbidity | code: mst | fields: depth, level, type, lon Sensor: evaporation | fields: reading, type, depth, qc Task: Retrieve lat from turbidity whose depth is found in evaporation records where qc matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062639
train
v1
Sensor network script: Node: uv_index | code: ref | fields: reading, qc, type, level Sensor: soil_moisture | fields: value, lon, reading, qc Task: Retrieve value from uv_index whose type is found in soil_moisture records where depth matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062640
train
v1
Sensor network script: Node: frost | code: hub | fields: qc, level, ts, value Sensor: cloud_cover | fields: value, ts, lat, depth Task: Get reading from frost where unit appears in cloud_cover readings with matching unit. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062641
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: value, qc, ts, level Sensor: drought_index | fields: type, value, qc, lon Task: Retrieve level from snow_depth that have at least one matching reading in drought_index sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062642
train
v1
Sensor network script: Node: evaporation | code: ref | fields: qc, depth, unit, level Sensor: rainfall | fields: value, reading, lon, depth Task: Retrieve value from evaporation whose qc is found in rainfall records where qc matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "qc", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062643
train
v1
Sensor network script: Node: drought_index | code: hub | fields: lat, unit, qc, ts Sensor: temperature | fields: qc, depth, unit, value Task: Fetch value from drought_index where ts exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062644
train
v2
Sensor network script: Node: visibility | code: thr | fields: qc, depth, ts, value Sensor: wind_speed | fields: value, reading, lat, depth Task: Retrieve reading from visibility that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062645
train
v2
Sensor network script: Node: dew_point | code: gst | fields: ts, level, depth, type Sensor: snow_depth | fields: type, lat, value, ts Task: Get depth from dew_point where a corresponding entry exists in snow_depth with the same ts. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062646
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: unit, value, depth, ts Sensor: air_quality | fields: qc, ts, lat, level Task: Get level from soil_moisture where reading exceeds the minimum depth from air_quality for the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="depth"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062647
train
v3
Sensor network script: Node: air_quality | code: mst | fields: level, ts, lat, value Sensor: humidity | fields: type, unit, reading, lon Task: Retrieve value from air_quality with value above the AVG(depth) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("humidity", code="hgr"), match="ts"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062648
train
v3
Sensor network script: Node: rainfall | code: ref | fields: type, reading, value, depth Sensor: visibility | fields: lon, value, unit, depth Task: Get reading from rainfall where depth exceeds the total value from visibility for the same unit. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("visibility", code="clr"), match="unit"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062649
train
v2
Sensor network script: Node: visibility | code: gst | fields: reading, lon, level, value Sensor: air_quality | fields: depth, lat, reading, unit Task: Retrieve depth from visibility that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062650
train
v1
Sensor network script: Node: temperature | code: prt | fields: value, type, ts, reading Sensor: rainfall | fields: qc, type, depth, lon Task: Fetch level from temperature where ts exists in rainfall sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062651
train
v2
Sensor network script: Node: sunlight | code: gst | fields: lat, ts, reading, lon Sensor: soil_moisture | fields: ts, type, lon, level Task: Get depth from sunlight where a corresponding entry exists in soil_moisture with the same ts. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062652
train
v3
Sensor network script: Node: lightning | code: stn | fields: qc, reading, type, value Sensor: uv_index | fields: reading, qc, type, ts Task: Get reading from lightning where value exceeds the count of reading from uv_index for the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("uv_index", code="flx"), match="depth"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062653
train
v3
Sensor network script: Node: frost | code: hub | fields: reading, level, type, value Sensor: air_quality | fields: ts, depth, value, unit Task: Retrieve lon from frost with depth above the COUNT(value) of air_quality readings sharing the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("air_quality", code="prt"), match="depth"), ), output="lon", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062654
train
v2
Sensor network script: Node: dew_point | code: thr | fields: depth, reading, value, type Sensor: visibility | fields: type, lon, qc, value Task: Fetch lon from dew_point that have at least one corresponding visibility measurement for the same ts. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="ts", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062655
train
v1
Sensor network script: Node: drought_index | code: mst | fields: qc, reading, lon, lat Sensor: frost | fields: lon, type, ts, qc Task: Retrieve reading from drought_index whose unit is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "reading", "filter_col": "unit", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062656
train
v2
Sensor network script: Node: uv_index | code: clr | fields: depth, level, lon, lat Sensor: temperature | fields: lat, qc, type, value Task: Fetch reading from uv_index that have at least one corresponding temperature measurement for the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=has_match( source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062657
train
v3
Sensor network script: Node: humidity | code: hub | fields: ts, lat, depth, value Sensor: wind_speed | fields: ts, lat, lon, type Task: Retrieve value from humidity with depth above the MIN(depth) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("wind_speed", code="gst"), match="depth"), ), output="value", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062658
train
v2
Sensor network script: Node: cloud_cover | code: prt | fields: depth, unit, lat, type Sensor: evaporation | fields: qc, type, unit, depth Task: Fetch depth from cloud_cover that have at least one corresponding evaporation measurement for the same unit. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="unit", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062659
train
v2
Sensor network script: Node: turbidity | code: ref | fields: reading, ts, depth, lon Sensor: cloud_cover | fields: value, lon, type, level Task: Get lat from turbidity where a corresponding entry exists in cloud_cover with the same depth. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "lat", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062660
train
v1
Sensor network script: Node: air_quality | code: prt | fields: level, ts, reading, unit Sensor: snow_depth | fields: value, unit, qc, level Task: Retrieve lon from air_quality whose qc is found in snow_depth records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="qc", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lon", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062661
train
v1
Sensor network script: Node: drought_index | code: stn | fields: value, reading, unit, depth Sensor: air_quality | fields: depth, value, type, unit Task: Fetch value from drought_index where type exists in air_quality sensor data for the same depth. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "value", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062662
train
v3
Sensor network script: Node: wind_speed | code: gst | fields: type, lat, qc, level Sensor: humidity | fields: type, level, lon, ts Task: Get lat from wind_speed where value exceeds the total value from humidity for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=exceeds( field="value", threshold=aggregate("SUM", "value", source=Probe("humidity", code="hgr"), match="depth"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062663
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: level, qc, value, lon Sensor: dew_point | fields: qc, lon, level, type Task: Retrieve lat from soil_moisture that have at least one matching reading in dew_point sharing the same depth. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062664
train
v3
Sensor network script: Node: rainfall | code: ref | fields: level, lon, qc, reading Sensor: air_quality | fields: unit, value, depth, reading Task: Get value from rainfall where depth exceeds the average reading from air_quality for the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("air_quality", code="prt"), match="qc"), ), output="value", )
{ "outer_table": "rainfall", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062665
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: ts, value, qc, unit Sensor: air_quality | fields: unit, qc, depth, lon Task: Fetch depth from snow_depth that have at least one corresponding air_quality measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062666
train
v2
Sensor network script: Node: temperature | code: clr | fields: qc, value, unit, type Sensor: frost | fields: depth, type, unit, ts Task: Retrieve lat from temperature that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "lat", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062667
train
v1
Sensor network script: Node: uv_index | code: stn | fields: unit, lat, reading, lon Sensor: rainfall | fields: reading, unit, type, lon Task: Retrieve level from uv_index whose ts is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062668
train
v3
Sensor network script: Node: cloud_cover | code: gst | fields: type, qc, level, unit Sensor: air_quality | fields: value, lon, lat, reading Task: Fetch lat from cloud_cover where value is greater than the minimum of depth in air_quality for matching type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("air_quality", code="prt"), match="type"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062669
train
v2
Sensor network script: Node: cloud_cover | code: thr | fields: lon, type, reading, qc Sensor: frost | fields: type, reading, depth, ts Task: Fetch level from cloud_cover that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062670
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: ts, value, qc, level Sensor: turbidity | fields: value, lat, unit, qc Task: Retrieve level from cloud_cover with value above the SUM(depth) of turbidity readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("turbidity", code="ftu"), match="depth"), ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062671
train
v1
Sensor network script: Node: visibility | code: ref | fields: unit, level, type, depth Sensor: humidity | fields: unit, lat, ts, type Task: Get lat from visibility where depth appears in humidity readings with matching unit. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062672
train
v3
Sensor network script: Node: lightning | code: gst | fields: depth, qc, value, ts Sensor: snow_depth | fields: reading, depth, level, ts Task: Retrieve level from lightning with depth above the SUM(reading) of snow_depth readings sharing the same depth. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("snow_depth", code="snw"), match="depth"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062673
train
v2
Sensor network script: Node: evaporation | code: ref | fields: qc, depth, ts, reading Sensor: sunlight | fields: depth, level, lat, type Task: Fetch value from evaporation that have at least one corresponding sunlight measurement for the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "ref", "inner_alias": "brt", "proj_col": "value", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062674
train
v1
Sensor network script: Node: pressure | code: ref | fields: lon, level, type, reading Sensor: snow_depth | fields: ts, qc, depth, type Task: Fetch value from pressure where depth exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=set_member( field="depth", source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "pressure", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "value", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062675
train
v3
Sensor network script: Node: soil_moisture | code: stn | fields: ts, depth, reading, level Sensor: uv_index | fields: level, lon, qc, depth Task: Retrieve lat from soil_moisture with depth above the AVG(value) of uv_index readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("uv_index", code="flx"), match="type"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062676
train
v1
Sensor network script: Node: frost | code: thr | fields: lon, level, qc, reading Sensor: wind_speed | fields: ts, reading, qc, value Task: Fetch level from frost where depth exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="ts", ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062677
train
v1
Sensor network script: Node: frost | code: prt | fields: unit, level, ts, lon Sensor: wind_speed | fields: unit, ts, lon, lat Task: Fetch level from frost where type exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062678
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: value, level, reading, lat Sensor: uv_index | fields: depth, level, reading, lat Task: Get level from soil_moisture where qc appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062679
train
v2
Sensor network script: Node: lightning | code: stn | fields: level, value, type, depth Sensor: humidity | fields: lat, reading, ts, level Task: Get value from lightning where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "lightning", "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_062680
train
v2
Sensor network script: Node: uv_index | code: ref | fields: depth, lat, ts, type Sensor: humidity | fields: qc, value, lon, unit Task: Fetch lat from uv_index that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062681
train
v2
Sensor network script: Node: sunlight | code: thr | fields: unit, depth, qc, lon Sensor: rainfall | fields: level, unit, lon, ts Task: Fetch lat from sunlight that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062682
train
v3
Sensor network script: Node: lightning | code: ref | fields: value, ts, qc, lon Sensor: cloud_cover | fields: type, qc, lat, ts Task: Get value from lightning where depth exceeds the minimum reading from cloud_cover for the same qc. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062683
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: ts, depth, value, lat Sensor: visibility | fields: value, unit, ts, lat Task: Retrieve level from wind_speed that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062684
train
v2
Sensor network script: Node: visibility | code: stn | fields: qc, lon, value, level Sensor: uv_index | fields: reading, depth, qc, lon Task: Retrieve depth from visibility that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062685
train
v1
Sensor network script: Node: uv_index | code: stn | fields: reading, level, depth, unit Sensor: rainfall | fields: ts, lat, type, qc Task: Fetch lon from uv_index where depth exists in rainfall sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="stn"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062686
train
v3
Sensor network script: Node: lightning | code: ref | fields: reading, unit, depth, value Sensor: turbidity | fields: depth, reading, unit, level Task: Fetch level from lightning where depth is greater than the maximum of value in turbidity for matching ts. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="level", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "level", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062687
train
v3
Sensor network script: Node: uv_index | code: prt | fields: unit, lat, depth, ts Sensor: lightning | fields: depth, unit, level, lat Task: Get level from uv_index where reading exceeds the minimum value from lightning for the same type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("lightning", code="tnd"), match="type"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "prt", "inner_alias": "tnd", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062688
train
v3
Sensor network script: Node: air_quality | code: gst | fields: type, lat, lon, reading Sensor: cloud_cover | fields: level, depth, lon, reading Task: Retrieve value from air_quality with depth above the COUNT(depth) of cloud_cover readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062689
train
v2
Sensor network script: Node: turbidity | code: mst | fields: value, unit, qc, lat Sensor: visibility | fields: qc, lon, reading, unit Task: Get depth from turbidity where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062690
train
v3
Sensor network script: Node: visibility | code: ref | fields: type, ts, value, reading Sensor: temperature | fields: depth, lat, lon, value Task: Get depth from visibility where depth exceeds the count of depth from temperature for the same qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="depth", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062691
train
v1
Sensor network script: Node: sunlight | code: ref | fields: lon, unit, type, level Sensor: snow_depth | fields: lon, level, value, reading Task: Retrieve level from sunlight whose ts is found in snow_depth records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062692
train
v1
Sensor network script: Node: cloud_cover | code: gst | fields: ts, qc, value, depth Sensor: visibility | fields: type, level, lon, value Task: Fetch depth from cloud_cover where type exists in visibility sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062693
train
v1
Sensor network script: Node: visibility | code: mst | fields: reading, lat, value, level Sensor: lightning | fields: level, type, qc, lat Task: Get reading from visibility where qc appears in lightning readings with matching depth. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062694
train
v1
Sensor network script: Node: temperature | code: ref | fields: level, ts, reading, unit Sensor: uv_index | fields: unit, qc, value, type Task: Get lon from temperature where type appears in uv_index readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062695
train
v3
Sensor network script: Node: turbidity | code: hub | fields: qc, level, reading, depth Sensor: drought_index | fields: lat, reading, type, qc Task: Fetch lon from turbidity where value is greater than the count of of depth in drought_index for matching qc. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062696
train
v1
Sensor network script: Node: sunlight | code: thr | fields: depth, reading, type, unit Sensor: wind_speed | fields: reading, lon, lat, unit Task: Retrieve depth from sunlight whose ts is found in wind_speed records where ts matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="ts", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "ts", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_062697
train
v1
Sensor network script: Node: uv_index | code: hub | fields: qc, level, lat, lon Sensor: dew_point | fields: value, ts, type, level Task: Retrieve value from uv_index whose depth is found in dew_point records where type matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="depth", source=Probe("dew_point", code="cnd"), match="type", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "hub", "inner_alias": "cnd", "proj_col": "value", "filter_col": "depth", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062698
train
v1
Sensor network script: Node: pressure | code: prt | fields: qc, lon, ts, value Sensor: soil_moisture | fields: level, reading, value, qc Task: Get value from pressure where ts appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="value", )
{ "outer_table": "pressure", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_062699
train