variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: humidity | code: prt | fields: lon, level, reading, ts Sensor: evaporation | fields: lon, reading, lat, value Task: Get lon from humidity where a corresponding entry exists in evaporation with the same qc. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "lon", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009600
train
v3
Sensor network script: Node: drought_index | code: gst | fields: lat, ts, lon, value Sensor: dew_point | fields: lon, value, reading, type Task: Get depth from drought_index where depth exceeds the maximum value from dew_point for the same ts. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009601
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: ts, unit, lat, depth Sensor: uv_index | fields: unit, lat, type, ts Task: Retrieve lat from cloud_cover with value above the MAX(depth) of uv_index readings sharing the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("uv_index", code="flx"), match="depth"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009602
train
v2
Sensor network script: Node: pressure | code: ref | fields: qc, lat, unit, lon Sensor: cloud_cover | fields: reading, type, lon, lat Task: Retrieve depth from pressure that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009603
train
v3
Sensor network script: Node: drought_index | code: prt | fields: level, qc, reading, lon Sensor: evaporation | fields: type, value, ts, depth Task: Fetch reading from drought_index where depth is greater than the maximum of value in evaporation for matching unit. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="unit"), ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009604
train
v2
Sensor network script: Node: visibility | code: prt | fields: value, lat, reading, lon Sensor: uv_index | fields: type, lon, lat, ts Task: Fetch lon from visibility that have at least one corresponding uv_index measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "lon", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009605
train
v1
Sensor network script: Node: air_quality | code: ref | fields: type, unit, lon, ts Sensor: humidity | fields: level, lon, qc, unit Task: Retrieve lat from air_quality whose type is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "ref", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009606
train
v1
Sensor network script: Node: snow_depth | code: stn | fields: level, reading, ts, type Sensor: humidity | fields: lat, qc, type, ts Task: Get depth from snow_depth where ts appears in humidity readings with matching type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=set_member( field="ts", source=Probe("humidity", code="hgr"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009607
train
v3
Sensor network script: Node: temperature | code: ref | fields: type, ts, value, reading Sensor: frost | fields: level, ts, depth, unit Task: Get lon from temperature where value exceeds the maximum reading from frost for the same depth. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009608
train
v2
Sensor network script: Node: pressure | code: ref | fields: depth, unit, type, level Sensor: drought_index | fields: value, level, type, ts Task: Get depth from pressure where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("pressure", code="ref"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009609
train
v3
Sensor network script: Node: lightning | code: ref | fields: value, unit, reading, type Sensor: visibility | fields: type, qc, level, value Task: Fetch lat from lightning where value is greater than the count of of reading in visibility for matching type. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="type"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009610
train
v1
Sensor network script: Node: sunlight | code: clr | fields: unit, level, lon, ts Sensor: soil_moisture | fields: lat, reading, level, value Task: Get reading from sunlight where ts appears in soil_moisture readings with matching unit. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009611
train
v2
Sensor network script: Node: drought_index | code: mst | fields: level, lat, type, value Sensor: frost | fields: level, lat, unit, ts Task: Fetch level from drought_index that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "level", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009612
train
v1
Sensor network script: Node: drought_index | code: gst | fields: depth, lat, qc, lon Sensor: lightning | fields: lat, reading, qc, level Task: Fetch lat from drought_index where type exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="qc", ), output="lat", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009613
train
v1
Sensor network script: Node: drought_index | code: mst | fields: lat, unit, value, level Sensor: uv_index | fields: lon, level, unit, value Task: Get reading from drought_index where depth appears in uv_index readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="depth", source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009614
train
v2
Sensor network script: Node: visibility | code: hub | fields: ts, qc, value, lon Sensor: rainfall | fields: lon, qc, value, type Task: Get reading from visibility where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009615
train
v1
Sensor network script: Node: soil_moisture | code: mst | fields: type, unit, depth, lon Sensor: turbidity | fields: depth, lon, unit, ts Task: Get depth from soil_moisture where depth appears in turbidity readings with matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=set_member( field="depth", source=Probe("turbidity", code="ftu"), match="qc", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "mst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009616
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: level, reading, lat, depth Sensor: rainfall | fields: ts, value, qc, lon Task: Get reading from wind_speed where qc appears in rainfall readings with matching qc. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009617
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: lat, qc, lon, level Sensor: soil_moisture | fields: depth, type, ts, reading Task: Fetch reading from wind_speed where type exists in soil_moisture sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "clr", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009618
train
v1
Sensor network script: Node: soil_moisture | code: prt | fields: lon, level, ts, depth Sensor: drought_index | fields: lat, unit, level, qc Task: Retrieve level from soil_moisture whose unit is found in drought_index records where qc matches the outer node. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=set_member( field="unit", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009619
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: lon, ts, depth, lat Sensor: humidity | fields: lon, unit, qc, ts Task: Fetch reading from soil_moisture that have at least one corresponding humidity measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009620
train
v2
Sensor network script: Node: dew_point | code: mst | fields: reading, unit, level, lat Sensor: pressure | fields: qc, level, lat, lon Task: Fetch lon from dew_point that have at least one corresponding pressure measurement for the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "lon", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009621
train
v2
Sensor network script: Node: visibility | code: stn | fields: value, ts, type, level Sensor: frost | fields: depth, qc, reading, level Task: Retrieve reading from visibility that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "stn", "inner_alias": "frs", "proj_col": "reading", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009622
train
v3
Sensor network script: Node: pressure | code: mst | fields: reading, qc, level, lon Sensor: sunlight | fields: unit, level, qc, value Task: Fetch lon from pressure where reading is greater than the count of of reading in sunlight for matching ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009623
train
v3
Sensor network script: Node: frost | code: hub | fields: unit, ts, depth, lat Sensor: pressure | fields: depth, lon, reading, type Task: Fetch value from frost where depth is greater than the minimum of reading in pressure for matching ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("pressure", code="mbl"), match="ts"), ), output="value", )
{ "outer_table": "frost", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009624
train
v1
Sensor network script: Node: visibility | code: stn | fields: ts, depth, type, lat Sensor: turbidity | fields: type, reading, ts, lon Task: Get lat from visibility where type appears in turbidity readings with matching ts. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="ts", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "turbidity", "outer_alias": "stn", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009625
train
v3
Sensor network script: Node: lightning | code: stn | fields: unit, ts, level, reading Sensor: visibility | fields: reading, value, lon, lat Task: Retrieve value from lightning with reading above the MIN(value) of visibility readings sharing the same type. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("visibility", code="clr"), match="type"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009626
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: type, ts, value, reading Sensor: rainfall | fields: qc, lon, type, lat Task: Fetch lon from snow_depth that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009627
train
v3
Sensor network script: Node: wind_speed | code: stn | fields: lon, value, level, type Sensor: lightning | fields: reading, value, unit, type Task: Retrieve lat from wind_speed with depth above the AVG(reading) of lightning readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009628
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: unit, lat, depth, lon Sensor: lightning | fields: reading, depth, type, lat Task: Retrieve lon from soil_moisture that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009629
train
v2
Sensor network script: Node: temperature | code: ref | fields: unit, lat, qc, level Sensor: turbidity | fields: ts, depth, lon, value Task: Fetch depth from temperature that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009630
train
v1
Sensor network script: Node: uv_index | code: mst | fields: qc, unit, ts, level Sensor: visibility | fields: qc, ts, depth, type Task: Fetch lon from uv_index where depth exists in visibility sensor data for the same unit. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="unit", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009631
train
v2
Sensor network script: Node: drought_index | code: clr | fields: qc, lat, level, lon Sensor: wind_speed | fields: level, value, lon, reading Task: Retrieve level from drought_index that have at least one matching reading in wind_speed sharing the same type. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "level", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009632
train
v1
Sensor network script: Node: uv_index | code: mst | fields: reading, depth, lon, value Sensor: sunlight | fields: ts, unit, level, reading Task: Get lat from uv_index where ts appears in sunlight readings with matching depth. Script:
readings = fetch( node=Node("uv_index", code="mst"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "ts", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009633
train
v1
Sensor network script: Node: temperature | code: clr | fields: unit, type, value, lon Sensor: uv_index | fields: unit, level, reading, value Task: Fetch value from temperature where unit exists in uv_index sensor data for the same type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009634
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: lon, lat, value, type Sensor: soil_moisture | fields: ts, type, value, reading Task: Retrieve reading from cloud_cover whose type is found in soil_moisture records where unit matches the outer node. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="unit", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "prt", "inner_alias": "grvl", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009635
train
v2
Sensor network script: Node: temperature | code: hub | fields: lat, reading, level, ts Sensor: drought_index | fields: lat, type, value, depth Task: Fetch lon from temperature that have at least one corresponding drought_index measurement for the same type. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=has_match( source=Probe("drought_index", code="drt"), match="type", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "hub", "inner_alias": "drt", "proj_col": "lon", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009636
train
v1
Sensor network script: Node: drought_index | code: ref | fields: type, reading, qc, level Sensor: pressure | fields: ts, depth, lat, type Task: Get depth from drought_index where qc appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="depth", ), output="depth", )
{ "outer_table": "drought_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_009637
train
v1
Sensor network script: Node: wind_speed | code: mst | fields: qc, ts, type, reading Sensor: sunlight | fields: lat, ts, reading, lon Task: Fetch level from wind_speed where unit exists in sunlight sensor data for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=set_member( field="unit", source=Probe("sunlight", code="brt"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009638
train
v3
Sensor network script: Node: drought_index | code: hub | fields: lon, depth, type, reading Sensor: visibility | fields: ts, lon, type, depth Task: Fetch level from drought_index where depth is greater than the count of of reading in visibility for matching ts. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("visibility", code="clr"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009639
train
v1
Sensor network script: Node: pressure | code: prt | fields: unit, value, lat, type Sensor: uv_index | fields: type, lon, value, ts Task: Fetch reading from pressure where ts exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009640
train
v3
Sensor network script: Node: humidity | code: stn | fields: level, ts, lat, depth Sensor: lightning | fields: unit, depth, value, level Task: Get lat from humidity where reading exceeds the maximum value from lightning for the same qc. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("lightning", code="tnd"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009641
train
v1
Sensor network script: Node: dew_point | code: gst | fields: type, value, ts, lon Sensor: pressure | fields: ts, depth, unit, qc Task: Retrieve lon from dew_point whose type is found in pressure records where depth matches the outer node. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009642
train
v3
Sensor network script: Node: visibility | code: mst | fields: level, lat, type, depth Sensor: evaporation | fields: reading, qc, ts, unit Task: Get lat from visibility where depth exceeds the count of reading from evaporation for the same qc. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009643
train
v1
Sensor network script: Node: drought_index | code: ref | fields: unit, lat, reading, depth Sensor: air_quality | fields: value, type, unit, depth Task: Retrieve reading from drought_index whose unit is found in air_quality records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "reading", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009644
train
v3
Sensor network script: Node: rainfall | code: prt | fields: reading, level, unit, lat Sensor: humidity | fields: reading, value, qc, lon Task: Retrieve reading from rainfall with depth above the COUNT(reading) of humidity readings sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="depth"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009645
train
v3
Sensor network script: Node: rainfall | code: ref | fields: ts, lon, reading, lat Sensor: dew_point | fields: value, reading, lat, depth Task: Retrieve reading from rainfall with reading above the MIN(reading) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009646
train
v2
Sensor network script: Node: air_quality | code: mst | fields: reading, unit, level, type Sensor: frost | fields: unit, lat, type, value Task: Retrieve depth from air_quality that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009647
train
v1
Sensor network script: Node: rainfall | code: gst | fields: value, lon, reading, unit Sensor: sunlight | fields: lat, level, lon, ts Task: Get lon from rainfall where qc appears in sunlight readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="type", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009648
train
v1
Sensor network script: Node: turbidity | code: thr | fields: unit, depth, reading, type Sensor: snow_depth | fields: level, reading, depth, lat Task: Fetch level from turbidity where ts exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009649
train
v2
Sensor network script: Node: frost | code: prt | fields: unit, lat, depth, level Sensor: visibility | fields: type, unit, level, lon Task: Fetch level from frost that have at least one corresponding visibility measurement for the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="level", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009650
train
v1
Sensor network script: Node: frost | code: hub | fields: reading, qc, type, lat Sensor: evaporation | fields: type, unit, ts, level Task: Get value from frost where unit appears in evaporation readings with matching depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "frost", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "filter_col": "unit", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009651
train
v3
Sensor network script: Node: drought_index | code: hub | fields: type, depth, level, ts Sensor: soil_moisture | fields: ts, type, reading, level Task: Get value from drought_index where value exceeds the minimum value from soil_moisture for the same qc. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="value", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009652
train
v1
Sensor network script: Node: rainfall | code: mst | fields: reading, type, value, lon Sensor: sunlight | fields: lon, reading, qc, level Task: Retrieve reading from rainfall whose depth is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="qc", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "depth", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009653
train
v1
Sensor network script: Node: drought_index | code: clr | fields: unit, value, ts, qc Sensor: cloud_cover | fields: type, ts, lat, value Task: Retrieve level from drought_index whose type is found in cloud_cover records where qc matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009654
train
v1
Sensor network script: Node: dew_point | code: stn | fields: level, reading, ts, lat Sensor: rainfall | fields: type, reading, ts, lon Task: Fetch reading from dew_point where type exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "type", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009655
train
v3
Sensor network script: Node: humidity | code: thr | fields: level, qc, lat, unit Sensor: uv_index | fields: lat, qc, depth, ts Task: Get lat from humidity where reading exceeds the minimum value from uv_index for the same depth. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("uv_index", code="flx"), match="depth"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009656
train
v3
Sensor network script: Node: dew_point | code: stn | fields: type, lon, ts, reading Sensor: soil_moisture | fields: reading, lon, type, unit Task: Fetch depth from dew_point where value is greater than the maximum of depth in soil_moisture for matching qc. Script:
readings = fetch( node=Node("dew_point", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "depth", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009657
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: value, type, lat, lon Sensor: frost | fields: value, reading, qc, lat Task: Get value from snow_depth where a corresponding entry exists in frost with the same depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "value", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009658
train
v3
Sensor network script: Node: lightning | code: prt | fields: reading, qc, lat, type Sensor: pressure | fields: level, ts, unit, reading Task: Get depth from lightning where reading exceeds the maximum depth from pressure for the same depth. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("pressure", code="mbl"), match="depth"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009659
train
v3
Sensor network script: Node: sunlight | code: ref | fields: depth, level, value, lat Sensor: dew_point | fields: level, lat, unit, depth Task: Retrieve lon from sunlight with reading above the AVG(reading) of dew_point readings sharing the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("dew_point", code="cnd"), match="qc"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009660
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: depth, reading, qc, lat Sensor: frost | fields: value, reading, lon, unit Task: Retrieve lat from cloud_cover with reading above the AVG(reading) of frost readings sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("frost", code="frs"), match="type"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009661
train
v1
Sensor network script: Node: uv_index | code: gst | fields: lon, depth, reading, lat Sensor: air_quality | fields: unit, type, qc, lon Task: Fetch reading from uv_index where qc exists in air_quality sensor data for the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="type", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009662
train
v2
Sensor network script: Node: lightning | code: stn | fields: unit, qc, ts, reading Sensor: snow_depth | fields: ts, reading, value, type Task: Fetch value from lightning that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009663
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: type, value, reading, unit Sensor: evaporation | fields: ts, value, qc, lon Task: Get value from cloud_cover where a corresponding entry exists in evaporation with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="ts", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "value", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009664
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: ts, lon, level, reading Sensor: visibility | fields: unit, lon, lat, depth Task: Get lat from snow_depth where a corresponding entry exists in visibility with the same qc. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "lat", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009665
train
v2
Sensor network script: Node: pressure | code: gst | fields: unit, type, level, reading Sensor: sunlight | fields: unit, reading, qc, type Task: Fetch lon from pressure that have at least one corresponding sunlight measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="lon", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lon", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009666
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: lon, type, level, reading Sensor: lightning | fields: qc, lat, depth, reading Task: Get level from wind_speed where type appears in lightning readings with matching unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="type", source=Probe("lightning", code="tnd"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009667
train
v1
Sensor network script: Node: drought_index | code: ref | fields: unit, type, lat, reading Sensor: rainfall | fields: lon, level, lat, ts Task: Retrieve reading from drought_index whose ts is found in rainfall records where ts matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="ts", ), output="reading", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009668
train
v2
Sensor network script: Node: temperature | code: ref | fields: qc, unit, ts, type Sensor: dew_point | fields: lat, depth, lon, qc Task: Fetch lat from temperature that have at least one corresponding dew_point measurement for the same ts. Script:
readings = fetch( node=Node("temperature", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lat", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lat", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009669
train
v3
Sensor network script: Node: evaporation | code: thr | fields: depth, level, ts, qc Sensor: sunlight | fields: reading, lat, level, depth Task: Retrieve lat from evaporation with reading above the MAX(value) of sunlight readings sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("sunlight", code="brt"), match="depth"), ), output="lat", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009670
train
v2
Sensor network script: Node: sunlight | code: hub | fields: depth, value, lat, unit Sensor: air_quality | fields: qc, value, reading, ts Task: Retrieve level from sunlight that have at least one matching reading in air_quality sharing the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "hub", "inner_alias": "prt", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009671
train
v1
Sensor network script: Node: cloud_cover | code: prt | fields: value, ts, level, type Sensor: wind_speed | fields: value, qc, lon, unit Task: Get level from cloud_cover where type appears in wind_speed readings with matching type. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "level", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009672
train
v1
Sensor network script: Node: air_quality | code: stn | fields: unit, type, reading, value Sensor: lightning | fields: ts, unit, lon, level Task: Fetch level from air_quality where unit exists in lightning sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="qc", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "stn", "inner_alias": "tnd", "proj_col": "level", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009673
train
v1
Sensor network script: Node: uv_index | code: gst | fields: qc, reading, lon, value Sensor: evaporation | fields: depth, type, level, qc Task: Fetch lon from uv_index where depth exists in evaporation sensor data for the same ts. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="depth", source=Probe("evaporation", code="evp"), match="ts", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "lon", "filter_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009674
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: ts, type, level, unit Sensor: soil_moisture | fields: unit, type, level, ts Task: Retrieve lat from snow_depth whose unit is found in soil_moisture records where ts matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="unit", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "unit", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009675
train
v3
Sensor network script: Node: temperature | code: prt | fields: qc, lat, type, lon Sensor: drought_index | fields: value, type, ts, depth Task: Retrieve lon from temperature with value above the AVG(value) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="unit"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009676
train
v1
Sensor network script: Node: frost | code: hub | fields: qc, reading, depth, ts Sensor: visibility | fields: lon, qc, reading, depth Task: Fetch level from frost where ts exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("frost", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="level", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009677
train
v2
Sensor network script: Node: soil_moisture | code: clr | fields: qc, reading, lat, type Sensor: frost | fields: lon, lat, reading, type Task: Fetch reading from soil_moisture that have at least one corresponding frost measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009678
train
v1
Sensor network script: Node: rainfall | code: thr | fields: reading, lat, depth, value Sensor: wind_speed | fields: reading, value, type, level Task: Fetch lat from rainfall where depth exists in wind_speed sensor data for the same depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="depth", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009679
train
v2
Sensor network script: Node: air_quality | code: stn | fields: unit, lat, value, type Sensor: temperature | fields: value, depth, lon, reading Task: Retrieve lon from air_quality that have at least one matching reading in temperature sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lon", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009680
train
v2
Sensor network script: Node: visibility | code: hub | fields: lat, unit, reading, level Sensor: rainfall | fields: unit, value, depth, lat Task: Fetch lat from visibility that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("visibility", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lat", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009681
train
v1
Sensor network script: Node: air_quality | code: hub | fields: value, reading, level, lon Sensor: wind_speed | fields: lat, lon, level, qc Task: Get reading from air_quality where depth appears in wind_speed readings with matching unit. Script:
readings = fetch( node=Node("air_quality", code="hub"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009682
train
v3
Sensor network script: Node: temperature | code: hub | fields: reading, lon, ts, level Sensor: soil_moisture | fields: unit, lon, value, reading Task: Fetch lon from temperature where value is greater than the minimum of value in soil_moisture for matching qc. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "hub", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009683
train
v2
Sensor network script: Node: rainfall | code: gst | fields: value, unit, lon, qc Sensor: soil_moisture | fields: reading, unit, level, lon Task: Retrieve value from rainfall that have at least one matching reading in soil_moisture sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "soil_moisture", "outer_alias": "gst", "inner_alias": "grvl", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009684
train
v3
Sensor network script: Node: cloud_cover | code: stn | fields: lon, reading, lat, value Sensor: visibility | fields: value, qc, unit, depth Task: Fetch reading from cloud_cover where depth is greater than the count of of value in visibility for matching ts. Script:
readings = fetch( node=Node("cloud_cover", code="stn"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "value", source=Probe("visibility", code="clr"), match="ts"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "stn", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "agg_col": "value", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_009685
train
v3
Sensor network script: Node: turbidity | code: clr | fields: lat, ts, qc, depth Sensor: drought_index | fields: depth, ts, value, level Task: Fetch lon from turbidity where depth is greater than the count of of depth in drought_index for matching qc. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="qc"), ), output="lon", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009686
train
v3
Sensor network script: Node: evaporation | code: thr | fields: depth, lat, type, unit Sensor: soil_moisture | fields: qc, ts, value, lon Task: Fetch depth from evaporation where depth is greater than the average of value in soil_moisture for matching unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009687
train
v1
Sensor network script: Node: temperature | code: prt | fields: qc, depth, unit, ts Sensor: rainfall | fields: ts, type, lat, unit Task: Retrieve level from temperature whose unit is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "rainfall", "outer_alias": "prt", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009688
train
v2
Sensor network script: Node: rainfall | code: mst | fields: type, depth, lon, lat Sensor: lightning | fields: value, lon, depth, lat Task: Retrieve level from rainfall that have at least one matching reading in lightning sharing the same depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009689
train
v3
Sensor network script: Node: lightning | code: stn | fields: depth, value, type, ts Sensor: snow_depth | fields: value, depth, lat, qc Task: Fetch lon from lightning where value is greater than the maximum of reading in snow_depth for matching qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("snow_depth", code="snw"), match="qc"), ), output="lon", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009690
train
v2
Sensor network script: Node: temperature | code: gst | fields: qc, level, type, lat Sensor: cloud_cover | fields: unit, level, depth, value Task: Retrieve depth from temperature that have at least one matching reading in cloud_cover sharing the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009691
train
v1
Sensor network script: Node: uv_index | code: clr | fields: lon, reading, depth, value Sensor: drought_index | fields: ts, lon, qc, depth Task: Fetch reading from uv_index where qc exists in drought_index sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "reading", "filter_col": "qc", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009692
train
v3
Sensor network script: Node: snow_depth | code: thr | fields: reading, value, unit, qc Sensor: dew_point | fields: reading, value, lon, depth Task: Get reading from snow_depth where depth exceeds the count of reading from dew_point for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009693
train
v2
Sensor network script: Node: uv_index | code: ref | fields: lat, depth, unit, level Sensor: cloud_cover | fields: ts, lon, value, depth Task: Retrieve reading from uv_index that have at least one matching reading in cloud_cover sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="depth", ), output="reading", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009694
train
v1
Sensor network script: Node: temperature | code: gst | fields: lat, unit, lon, depth Sensor: dew_point | fields: unit, reading, depth, type Task: Fetch reading from temperature where qc exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="qc", source=Probe("dew_point", code="cnd"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "qc", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009695
train
v1
Sensor network script: Node: uv_index | code: ref | fields: lat, qc, reading, value Sensor: snow_depth | fields: depth, reading, lon, lat Task: Fetch depth from uv_index where ts exists in snow_depth sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="ref"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="qc", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009696
train
v2
Sensor network script: Node: soil_moisture | code: mst | fields: level, value, unit, reading Sensor: uv_index | fields: qc, reading, type, value Task: Fetch value from soil_moisture that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "mst", "inner_alias": "flx", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009697
train
v2
Sensor network script: Node: evaporation | code: clr | fields: lat, unit, value, reading Sensor: frost | fields: lat, lon, ts, qc Task: Retrieve value from evaporation that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009698
train
v2
Sensor network script: Node: evaporation | code: clr | fields: depth, ts, value, lat Sensor: frost | fields: ts, depth, qc, unit Task: Retrieve reading from evaporation that have at least one matching reading in frost sharing the same ts. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_009699
train