variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v3
Sensor network script: Node: pressure | code: prt | fields: qc, lon, unit, ts Sensor: evaporation | fields: lat, ts, qc, depth Task: Retrieve depth from pressure with value above the MIN(reading) of evaporation readings sharing the same depth. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("evaporation", code="evp"), match="depth"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "prt", "inner_alias": "evp", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064600
train
v2
Sensor network script: Node: uv_index | code: gst | fields: value, lat, reading, lon Sensor: rainfall | fields: ts, qc, level, lat Task: Fetch lon from uv_index that have at least one corresponding rainfall measurement for the same depth. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="depth", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064601
train
v3
Sensor network script: Node: sunlight | code: ref | fields: unit, depth, type, qc Sensor: drought_index | fields: reading, level, qc, unit Task: Fetch lon from sunlight where value is greater than the minimum of reading in drought_index for matching unit. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064602
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: unit, lon, level, ts Sensor: uv_index | fields: level, lon, type, ts Task: Fetch reading from wind_speed where qc exists in uv_index sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064603
train
v2
Sensor network script: Node: drought_index | code: clr | fields: depth, reading, type, unit Sensor: air_quality | fields: unit, qc, ts, reading Task: Retrieve depth from drought_index that have at least one matching reading in air_quality sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064604
train
v3
Sensor network script: Node: cloud_cover | code: hub | fields: level, type, qc, depth Sensor: wind_speed | fields: reading, lat, unit, qc Task: Retrieve lon from cloud_cover with value above the MIN(reading) of wind_speed readings sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064605
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: reading, depth, qc, level Sensor: uv_index | fields: lon, qc, depth, level Task: Retrieve value from soil_moisture that have at least one matching reading in uv_index sharing the same qc. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064606
train
v1
Sensor network script: Node: turbidity | code: ref | fields: reading, lon, value, depth Sensor: wind_speed | fields: ts, type, qc, level Task: Fetch value from turbidity where unit exists in wind_speed sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="unit", source=Probe("wind_speed", code="gst"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "value", "filter_col": "unit", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064607
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: unit, reading, lat, depth Sensor: frost | fields: lon, unit, ts, type Task: Retrieve lat from snow_depth that have at least one matching reading in frost sharing the same qc. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("frost", code="frs"), match="qc", ), output="lat", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "ref", "inner_alias": "frs", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064608
train
v1
Sensor network script: Node: snow_depth | code: gst | fields: value, depth, unit, level Sensor: temperature | fields: unit, value, type, ts Task: Get depth from snow_depth where unit appears in temperature readings with matching depth. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="depth", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "filter_col": "unit", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064609
train
v2
Sensor network script: Node: evaporation | code: stn | fields: lon, unit, type, lat Sensor: air_quality | fields: reading, ts, type, depth Task: Retrieve reading from evaporation that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("evaporation", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "reading", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064610
train
v2
Sensor network script: Node: turbidity | code: ref | fields: lon, unit, lat, ts Sensor: uv_index | fields: ts, level, qc, depth Task: Fetch level from turbidity that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "level", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064611
train
v1
Sensor network script: Node: rainfall | code: clr | fields: level, type, value, unit Sensor: wind_speed | fields: depth, qc, lat, unit Task: Fetch lon from rainfall where ts exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=set_member( field="ts", source=Probe("wind_speed", code="gst"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "clr", "inner_alias": "gst", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064612
train
v2
Sensor network script: Node: visibility | code: stn | fields: ts, qc, lon, value Sensor: uv_index | fields: lat, depth, qc, level Task: Get lat from visibility where a corresponding entry exists in uv_index with the same unit. Script:
readings = fetch( node=Node("visibility", code="stn"), filter=has_match( source=Probe("uv_index", code="flx"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "lat", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064613
train
v1
Sensor network script: Node: temperature | code: thr | fields: ts, level, type, depth Sensor: uv_index | fields: value, type, lat, unit Task: Fetch depth from temperature where qc exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="qc", source=Probe("uv_index", code="flx"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064614
train
v3
Sensor network script: Node: lightning | code: thr | fields: lat, value, type, reading Sensor: visibility | fields: depth, reading, type, qc Task: Retrieve lat from lightning with value above the SUM(depth) of visibility readings sharing the same unit. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("visibility", code="clr"), match="unit"), ), output="lat", )
{ "outer_table": "lightning", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064615
train
v1
Sensor network script: Node: lightning | code: ref | fields: ts, type, level, qc Sensor: snow_depth | fields: ts, unit, lat, qc Task: Fetch depth from lightning where type exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=set_member( field="type", source=Probe("snow_depth", code="snw"), match="unit", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064616
train
v3
Sensor network script: Node: rainfall | code: mst | fields: lon, depth, lat, reading Sensor: frost | fields: ts, value, unit, lat Task: Get depth from rainfall where depth exceeds the total reading from frost for the same depth. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("frost", code="frs"), match="depth"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064617
train
v1
Sensor network script: Node: snow_depth | code: thr | fields: ts, value, unit, level Sensor: lightning | fields: unit, ts, lon, value Task: Retrieve depth from snow_depth whose ts is found in lightning records where type matches the outer node. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=set_member( field="ts", source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "lightning", "outer_alias": "thr", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064618
train
v2
Sensor network script: Node: air_quality | code: clr | fields: value, lon, qc, lat Sensor: rainfall | fields: unit, reading, depth, lat Task: Fetch level from air_quality that have at least one corresponding rainfall measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064619
train
v1
Sensor network script: Node: evaporation | code: ref | fields: type, ts, reading, value Sensor: visibility | fields: lon, type, unit, lat Task: Get reading from evaporation where depth appears in visibility readings with matching unit. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "ref", "inner_alias": "clr", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064620
train
v3
Sensor network script: Node: cloud_cover | code: prt | fields: level, value, ts, unit Sensor: frost | fields: level, unit, type, depth Task: Fetch lat from cloud_cover where depth is greater than the minimum of value in frost for matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("frost", code="frs"), match="qc"), ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064621
train
v1
Sensor network script: Node: pressure | code: gst | fields: type, depth, level, lat Sensor: humidity | fields: depth, ts, type, lon Task: Fetch lat from pressure where unit exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064622
train
v1
Sensor network script: Node: wind_speed | code: gst | fields: ts, lon, level, reading Sensor: lightning | fields: ts, qc, unit, depth Task: Fetch value from wind_speed where qc exists in lightning sensor data for the same ts. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064623
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: lat, qc, level, reading Sensor: snow_depth | fields: lat, unit, value, qc Task: Retrieve value from soil_moisture with reading above the MIN(value) of snow_depth readings sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "value", source=Probe("snow_depth", code="snw"), match="ts"), ), output="value", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "value", "filter_col": "reading", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064624
train
v3
Sensor network script: Node: turbidity | code: hub | fields: type, unit, ts, level Sensor: humidity | fields: ts, level, lat, depth Task: Get lat from turbidity where depth exceeds the count of reading from humidity for the same ts. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "depth", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064625
train
v1
Sensor network script: Node: humidity | code: prt | fields: value, lon, level, lat Sensor: temperature | fields: lat, type, reading, qc Task: Fetch reading from humidity where ts exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "reading", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064626
train
v3
Sensor network script: Node: temperature | code: stn | fields: depth, ts, qc, reading Sensor: pressure | fields: depth, level, reading, type Task: Get lat from temperature where value exceeds the average value from pressure for the same depth. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("pressure", code="mbl"), match="depth"), ), output="lat", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064627
train
v2
Sensor network script: Node: snow_depth | code: clr | fields: qc, type, lat, reading Sensor: air_quality | fields: type, lon, depth, reading Task: Fetch value from snow_depth that have at least one corresponding air_quality measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "clr", "inner_alias": "prt", "proj_col": "value", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064628
train
v3
Sensor network script: Node: pressure | code: thr | fields: ts, value, lat, level Sensor: uv_index | fields: lat, qc, depth, reading Task: Get lon from pressure where reading exceeds the count of value from uv_index for the same unit. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("uv_index", code="flx"), match="unit"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "lon", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064629
train
v3
Sensor network script: Node: drought_index | code: ref | fields: level, ts, qc, type Sensor: cloud_cover | fields: lat, ts, level, qc Task: Fetch level from drought_index where value is greater than the count of of reading in cloud_cover for matching ts. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("cloud_cover", code="nbl"), match="ts"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "ref", "inner_alias": "nbl", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064630
train
v2
Sensor network script: Node: lightning | code: clr | fields: depth, value, lon, type Sensor: cloud_cover | fields: lat, value, depth, level Task: Fetch lat from lightning that have at least one corresponding cloud_cover measurement for the same unit. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="lat", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064631
train
v3
Sensor network script: Node: rainfall | code: stn | fields: depth, qc, level, ts Sensor: temperature | fields: lon, level, value, reading Task: Retrieve depth from rainfall with depth above the SUM(value) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064632
train
v2
Sensor network script: Node: rainfall | code: clr | fields: lat, qc, ts, unit Sensor: humidity | fields: reading, lat, ts, qc Task: Fetch depth from rainfall that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064633
train
v2
Sensor network script: Node: evaporation | code: thr | fields: lat, type, level, unit Sensor: cloud_cover | fields: reading, lon, lat, level Task: Retrieve reading from evaporation that have at least one matching reading in cloud_cover sharing the same unit. Script:
readings = fetch( node=Node("evaporation", code="thr"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="unit", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "reading", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064634
train
v1
Sensor network script: Node: air_quality | code: thr | fields: type, ts, qc, reading Sensor: soil_moisture | fields: ts, value, qc, type Task: Retrieve value from air_quality whose ts is found in soil_moisture records where type matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="type", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "value", "filter_col": "ts", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064635
train
v2
Sensor network script: Node: pressure | code: thr | fields: lon, lat, reading, unit Sensor: drought_index | fields: depth, ts, level, reading Task: Get level from pressure where a corresponding entry exists in drought_index with the same depth. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="level", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064636
train
v3
Sensor network script: Node: temperature | code: clr | fields: value, lat, lon, level Sensor: cloud_cover | fields: ts, lon, type, qc Task: Fetch depth from temperature where reading is greater than the average of reading in cloud_cover for matching type. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "depth", "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_064637
train
v1
Sensor network script: Node: visibility | code: gst | fields: value, reading, unit, lon Sensor: rainfall | fields: depth, lat, level, unit Task: Fetch reading from visibility where unit exists in rainfall sensor data for the same unit. Script:
readings = fetch( node=Node("visibility", code="gst"), filter=set_member( field="unit", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064638
train
v1
Sensor network script: Node: pressure | code: stn | fields: level, lon, unit, ts Sensor: dew_point | fields: lat, ts, type, lon Task: Retrieve depth from pressure whose unit is found in dew_point records where qc matches the outer node. Script:
readings = fetch( node=Node("pressure", code="stn"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "pressure", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064639
train
v2
Sensor network script: Node: humidity | code: thr | fields: ts, type, reading, qc Sensor: rainfall | fields: lon, qc, reading, level Task: Get level from humidity where a corresponding entry exists in rainfall with the same type. Script:
readings = fetch( node=Node("humidity", code="thr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "humidity", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "level", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064640
train
v3
Sensor network script: Node: cloud_cover | code: ref | fields: depth, value, lon, level Sensor: wind_speed | fields: type, level, value, qc Task: Get lon from cloud_cover where reading exceeds the total reading from wind_speed for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064641
train
v1
Sensor network script: Node: air_quality | code: gst | fields: reading, lon, value, lat Sensor: temperature | fields: depth, lon, ts, lat Task: Fetch value from air_quality where unit exists in temperature sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=set_member( field="unit", source=Probe("temperature", code="thr"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064642
train
v2
Sensor network script: Node: drought_index | code: prt | fields: type, qc, lon, unit Sensor: cloud_cover | fields: unit, value, lon, lat Task: Fetch value from drought_index that have at least one corresponding cloud_cover measurement for the same qc. Script:
readings = fetch( node=Node("drought_index", code="prt"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="qc", ), output="value", )
{ "outer_table": "drought_index", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "value", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064643
train
v3
Sensor network script: Node: drought_index | code: ref | fields: ts, qc, lon, level Sensor: snow_depth | fields: type, lon, unit, ts Task: Fetch level from drought_index where reading is greater than the count of of value in snow_depth for matching type. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("snow_depth", code="snw"), match="type"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064644
train
v2
Sensor network script: Node: rainfall | code: thr | fields: depth, type, level, lat Sensor: pressure | fields: level, lon, value, unit Task: Fetch depth from rainfall that have at least one corresponding pressure measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064645
train
v1
Sensor network script: Node: drought_index | code: ref | fields: level, type, reading, lon Sensor: wind_speed | fields: lat, ts, reading, type Task: Fetch level from drought_index where qc exists in wind_speed sensor data for the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="unit", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "level", "filter_col": "qc", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064646
train
v2
Sensor network script: Node: turbidity | code: hub | fields: value, qc, ts, type Sensor: humidity | fields: qc, lon, unit, depth Task: Get value from turbidity where a corresponding entry exists in humidity with the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064647
train
v3
Sensor network script: Node: dew_point | code: prt | fields: type, qc, unit, lat Sensor: drought_index | fields: level, ts, qc, lon Task: Fetch reading from dew_point where reading is greater than the average of value in drought_index for matching ts. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "reading", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064648
train
v1
Sensor network script: Node: sunlight | code: thr | fields: qc, level, value, lat Sensor: uv_index | fields: value, unit, level, ts Task: Retrieve depth from sunlight whose ts is found in uv_index records where qc matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="ts", source=Probe("uv_index", code="flx"), match="qc", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "uv_index", "outer_alias": "thr", "inner_alias": "flx", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064649
train
v3
Sensor network script: Node: pressure | code: mst | fields: ts, reading, type, depth Sensor: evaporation | fields: lat, value, type, reading Task: Retrieve depth from pressure with reading above the SUM(reading) of evaporation readings sharing the same qc. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("evaporation", code="evp"), match="qc"), ), output="depth", )
{ "outer_table": "pressure", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064650
train
v2
Sensor network script: Node: rainfall | code: clr | fields: level, lon, value, unit Sensor: turbidity | fields: type, level, depth, lon Task: Retrieve reading from rainfall that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "reading", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064651
train
v2
Sensor network script: Node: humidity | code: stn | fields: type, ts, level, lon Sensor: wind_speed | fields: type, lat, lon, unit Task: Fetch lon from humidity that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064652
train
v1
Sensor network script: Node: rainfall | code: stn | fields: lat, qc, type, reading Sensor: wind_speed | fields: depth, lat, ts, qc Task: Fetch reading from rainfall where qc exists in wind_speed sensor data for the same type. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="type", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "reading", "filter_col": "qc", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064653
train
v1
Sensor network script: Node: rainfall | code: thr | fields: lon, qc, type, depth Sensor: snow_depth | fields: value, type, qc, lon Task: Get level from rainfall where qc appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="qc", source=Probe("snow_depth", code="snw"), match="depth", ), output="level", )
{ "outer_table": "rainfall", "inner_table": "snow_depth", "outer_alias": "thr", "inner_alias": "snw", "proj_col": "level", "filter_col": "qc", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064654
train
v2
Sensor network script: Node: sunlight | code: clr | fields: type, depth, unit, ts Sensor: wind_speed | fields: level, ts, unit, type Task: Fetch level from sunlight that have at least one corresponding wind_speed measurement for the same type. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("wind_speed", code="gst"), match="type", ), output="level", )
{ "outer_table": "sunlight", "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_064655
train
v1
Sensor network script: Node: turbidity | code: hub | fields: lon, level, ts, value Sensor: uv_index | fields: qc, level, depth, type Task: Fetch level from turbidity where type exists in uv_index sensor data for the same unit. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="type", source=Probe("uv_index", code="flx"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "hub", "inner_alias": "flx", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064656
train
v2
Sensor network script: Node: soil_moisture | code: prt | fields: lon, value, type, ts Sensor: frost | fields: value, lon, level, depth Task: Fetch level from soil_moisture that have at least one corresponding frost measurement for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "level", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064657
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: level, type, lon, value Sensor: wind_speed | fields: lon, qc, lat, reading Task: Fetch reading from snow_depth that have at least one corresponding wind_speed measurement for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064658
train
v2
Sensor network script: Node: wind_speed | code: stn | fields: level, lat, reading, depth Sensor: pressure | fields: lon, depth, reading, lat Task: Get level from wind_speed where a corresponding entry exists in pressure with the same depth. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "level", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064659
train
v2
Sensor network script: Node: temperature | code: thr | fields: qc, depth, ts, lon Sensor: turbidity | fields: reading, ts, value, lat Task: Retrieve lon from temperature that have at least one matching reading in turbidity sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "lon", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064660
train
v2
Sensor network script: Node: humidity | code: gst | fields: level, value, unit, ts Sensor: temperature | fields: unit, qc, type, lat Task: Get lat from humidity where a corresponding entry exists in temperature with the same depth. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="depth", ), output="lat", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "lat", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064661
train
v1
Sensor network script: Node: temperature | code: thr | fields: reading, lat, lon, type Sensor: evaporation | fields: lat, ts, value, reading Task: Get level from temperature where type appears in evaporation readings with matching ts. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="ts", ), output="level", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "thr", "inner_alias": "evp", "proj_col": "level", "filter_col": "type", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064662
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: reading, unit, ts, lon Sensor: rainfall | fields: type, value, depth, lon Task: Get depth from cloud_cover where a corresponding entry exists in rainfall with the same ts. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="ts", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064663
train
v3
Sensor network script: Node: wind_speed | code: clr | fields: value, depth, type, unit Sensor: cloud_cover | fields: value, qc, level, unit Task: Get lat from wind_speed where depth exceeds the count of depth from cloud_cover for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "cloud_cover", "outer_alias": "clr", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064664
train
v3
Sensor network script: Node: dew_point | code: mst | fields: reading, lon, ts, depth Sensor: lightning | fields: qc, type, unit, lon Task: Get value from dew_point where depth exceeds the minimum depth from lightning for the same ts. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064665
train
v3
Sensor network script: Node: lightning | code: stn | fields: value, unit, ts, qc Sensor: soil_moisture | fields: depth, level, lon, ts Task: Get depth from lightning where value exceeds the maximum reading from soil_moisture for the same qc. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("soil_moisture", code="grvl"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "depth", "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_064666
train
v2
Sensor network script: Node: air_quality | code: ref | fields: depth, reading, value, lon Sensor: uv_index | fields: unit, type, qc, lon Task: Fetch reading from air_quality that have at least one corresponding uv_index measurement for the same ts. Script:
readings = fetch( node=Node("air_quality", code="ref"), filter=has_match( source=Probe("uv_index", code="flx"), match="ts", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "reading", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064667
train
v2
Sensor network script: Node: frost | code: hub | fields: qc, value, level, ts Sensor: wind_speed | fields: unit, value, qc, type Task: Retrieve lon from frost that have at least one matching reading in wind_speed sharing the same ts. Script:
readings = fetch( node=Node("frost", code="hub"), filter=has_match( source=Probe("wind_speed", code="gst"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "lon", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064668
train
v2
Sensor network script: Node: wind_speed | code: hub | fields: value, lon, qc, ts Sensor: rainfall | fields: value, type, lon, lat Task: Fetch level from wind_speed that have at least one corresponding rainfall measurement for the same type. Script:
readings = fetch( node=Node("wind_speed", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064669
train
v3
Sensor network script: Node: turbidity | code: ref | fields: level, ts, depth, value Sensor: evaporation | fields: ts, depth, lon, reading Task: Get reading from turbidity where value exceeds the maximum value from evaporation for the same type. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064670
train
v2
Sensor network script: Node: cloud_cover | code: mst | fields: qc, lat, depth, level Sensor: frost | fields: type, unit, lon, lat Task: Retrieve lat from cloud_cover that have at least one matching reading in frost sharing the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=has_match( source=Probe("frost", code="frs"), match="type", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064671
train
v3
Sensor network script: Node: visibility | code: thr | fields: value, ts, lon, depth Sensor: rainfall | fields: reading, lon, level, ts Task: Fetch lat from visibility where value is greater than the minimum of reading in rainfall for matching depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="lat", )
{ "outer_table": "visibility", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064672
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: lon, value, lat, type Sensor: snow_depth | fields: level, value, reading, lon Task: Get reading from soil_moisture where ts appears in snow_depth readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="depth", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "reading", "filter_col": "ts", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064673
train
v2
Sensor network script: Node: visibility | code: thr | fields: reading, type, qc, unit Sensor: sunlight | fields: lat, lon, unit, reading Task: Get lon from visibility where a corresponding entry exists in sunlight with the same depth. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=has_match( source=Probe("sunlight", code="brt"), match="depth", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "lon", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064674
train
v2
Sensor network script: Node: sunlight | code: hub | fields: ts, lon, value, level Sensor: temperature | fields: depth, level, unit, ts Task: Get value from sunlight where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("sunlight", code="hub"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="value", )
{ "outer_table": "sunlight", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "value", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064675
train
v1
Sensor network script: Node: air_quality | code: stn | fields: type, reading, lat, qc Sensor: pressure | fields: value, depth, level, lat Task: Fetch reading from air_quality where depth exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="type", ), output="reading", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "depth", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064676
train
v1
Sensor network script: Node: soil_moisture | code: stn | fields: type, lat, qc, lon Sensor: temperature | fields: ts, lat, type, value Task: Fetch reading from soil_moisture where ts exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="stn"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="ts", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "reading", "filter_col": "ts", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064677
train
v3
Sensor network script: Node: drought_index | code: clr | fields: qc, ts, depth, level Sensor: uv_index | fields: lat, type, value, lon Task: Fetch level from drought_index where value is greater than the average of reading in uv_index for matching qc. Script:
readings = fetch( node=Node("drought_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="qc"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064678
train
v1
Sensor network script: Node: drought_index | code: hub | fields: lon, unit, level, reading Sensor: evaporation | fields: ts, depth, reading, qc Task: Retrieve value from drought_index whose unit is found in evaporation records where depth matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="hub"), filter=set_member( field="unit", source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "drought_index", "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_064679
train
v3
Sensor network script: Node: temperature | code: mst | fields: type, unit, level, ts Sensor: lightning | fields: type, lon, ts, qc Task: Get lon from temperature where reading exceeds the minimum depth from lightning for the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("lightning", code="tnd"), match="unit"), ), output="lon", )
{ "outer_table": "temperature", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064680
train
v3
Sensor network script: Node: dew_point | code: gst | fields: qc, unit, lat, ts Sensor: sunlight | fields: unit, lon, value, qc Task: Fetch reading from dew_point where value is greater than the count of of depth in sunlight for matching unit. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("sunlight", code="brt"), match="unit"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064681
train
v3
Sensor network script: Node: sunlight | code: thr | fields: qc, value, depth, lat Sensor: air_quality | fields: depth, reading, lat, level Task: Get value from sunlight where value exceeds the maximum reading from air_quality for the same type. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("air_quality", code="prt"), match="type"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "value", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064682
train
v1
Sensor network script: Node: visibility | code: thr | fields: qc, reading, depth, lat Sensor: air_quality | fields: lon, reading, value, ts Task: Retrieve lon from visibility whose qc is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="thr"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="unit", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "lon", "filter_col": "qc", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064683
train
v2
Sensor network script: Node: visibility | code: prt | fields: lon, type, value, level Sensor: humidity | fields: lat, depth, unit, ts Task: Retrieve depth from visibility that have at least one matching reading in humidity sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="depth", ), output="depth", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064684
train
v2
Sensor network script: Node: frost | code: clr | fields: level, depth, type, lon Sensor: snow_depth | fields: reading, value, unit, qc Task: Retrieve depth from frost that have at least one matching reading in snow_depth sharing the same depth. Script:
readings = fetch( node=Node("frost", code="clr"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="depth", )
{ "outer_table": "frost", "inner_table": "snow_depth", "outer_alias": "clr", "inner_alias": "snw", "proj_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064685
train
v1
Sensor network script: Node: frost | code: clr | fields: depth, reading, lat, type Sensor: humidity | fields: type, value, lon, qc Task: Fetch depth from frost where type exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("frost", code="clr"), filter=set_member( field="type", source=Probe("humidity", code="hgr"), match="qc", ), output="depth", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064686
train
v1
Sensor network script: Node: lightning | code: thr | fields: depth, lon, type, unit Sensor: wind_speed | fields: unit, reading, depth, ts Task: Retrieve depth from lightning whose qc is found in wind_speed records where type matches the outer node. Script:
readings = fetch( node=Node("lightning", code="thr"), filter=set_member( field="qc", source=Probe("wind_speed", code="gst"), match="type", ), output="depth", )
{ "outer_table": "lightning", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064687
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: reading, type, qc, lat Sensor: rainfall | fields: unit, ts, lon, reading Task: Fetch lon from soil_moisture where depth is greater than the maximum of reading in rainfall for matching ts. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("rainfall", code="rnfl"), match="ts"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064688
train
v3
Sensor network script: Node: drought_index | code: ref | fields: reading, type, level, value Sensor: rainfall | fields: qc, level, value, reading Task: Get depth from drought_index where value exceeds the count of value from rainfall for the same depth. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064689
train
v3
Sensor network script: Node: visibility | code: prt | fields: value, lon, type, depth Sensor: pressure | fields: lat, level, lon, unit Task: Retrieve value from visibility with value above the SUM(depth) of pressure readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "depth", source=Probe("pressure", code="mbl"), match="type"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064690
train
v1
Sensor network script: Node: temperature | code: thr | fields: lon, ts, level, qc Sensor: soil_moisture | fields: type, qc, lat, reading Task: Fetch lon from temperature where ts exists in soil_moisture sensor data for the same depth. Script:
readings = fetch( node=Node("temperature", code="thr"), filter=set_member( field="ts", source=Probe("soil_moisture", code="grvl"), match="depth", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064691
train
v1
Sensor network script: Node: lightning | code: prt | fields: reading, ts, qc, lat Sensor: humidity | fields: ts, unit, value, reading Task: Retrieve level from lightning whose qc is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "level", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064692
train
v2
Sensor network script: Node: temperature | code: mst | fields: unit, depth, lat, value Sensor: humidity | fields: level, lat, ts, depth Task: Retrieve value from temperature that have at least one matching reading in humidity sharing the same unit. Script:
readings = fetch( node=Node("temperature", code="mst"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064693
train
v3
Sensor network script: Node: humidity | code: hub | fields: ts, value, unit, depth Sensor: temperature | fields: reading, value, ts, lat Task: Fetch lat from humidity where reading is greater than the maximum of depth in temperature for matching qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("temperature", code="thr"), match="qc"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064694
train
v3
Sensor network script: Node: lightning | code: prt | fields: lon, lat, level, reading Sensor: cloud_cover | fields: level, reading, lon, ts Task: Get depth from lightning where depth exceeds the maximum reading from cloud_cover for the same qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="depth", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064695
train
v3
Sensor network script: Node: soil_moisture | code: mst | fields: type, lat, reading, value Sensor: visibility | fields: depth, value, level, qc Task: Fetch level from soil_moisture where reading is greater than the total of reading in visibility for matching qc. Script:
readings = fetch( node=Node("soil_moisture", code="mst"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("visibility", code="clr"), match="qc"), ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "filter_col": "reading", "agg_col": "reading", "agg_fn": "SUM", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_064696
train
v2
Sensor network script: Node: turbidity | code: clr | fields: depth, lat, reading, ts Sensor: uv_index | fields: level, depth, lat, lon Task: Get reading from turbidity where a corresponding entry exists in uv_index with the same type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "reading", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064697
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: ts, lat, unit, type Sensor: soil_moisture | fields: ts, qc, lon, depth Task: Fetch lat from cloud_cover where type exists in soil_moisture sensor data for the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "cloud_cover", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064698
train
v2
Sensor network script: Node: evaporation | code: ref | fields: qc, reading, value, ts Sensor: dew_point | fields: ts, lat, qc, unit Task: Retrieve lon from evaporation that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_064699
train