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: type, qc, ts, depth Sensor: temperature | fields: reading, unit, lon, value Task: Retrieve lon from pressure with value above the SUM(reading) of temperature readings sharing the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=exceeds( field="value", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="lon", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "lon", "filter_col": "value", "agg_col": "reading", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021300
train
v2
Sensor network script: Node: frost | code: thr | fields: value, qc, lon, depth Sensor: drought_index | fields: lon, depth, value, type Task: Fetch reading from frost that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="reading", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "reading", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021301
train
v1
Sensor network script: Node: frost | code: prt | fields: level, qc, reading, lat Sensor: drought_index | fields: depth, level, qc, lon Task: Get level from frost where type appears in drought_index readings with matching qc. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="type", source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021302
train
v1
Sensor network script: Node: temperature | code: stn | fields: lon, ts, lat, reading Sensor: snow_depth | fields: reading, unit, value, lat Task: Fetch value from temperature where ts exists in snow_depth sensor data for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=set_member( field="ts", source=Probe("snow_depth", code="snw"), match="unit", ), output="value", )
{ "outer_table": "temperature", "inner_table": "snow_depth", "outer_alias": "stn", "inner_alias": "snw", "proj_col": "value", "filter_col": "ts", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021303
train
v1
Sensor network script: Node: rainfall | code: thr | fields: ts, lat, value, reading Sensor: cloud_cover | fields: value, lon, depth, level Task: Retrieve value from rainfall whose depth is found in cloud_cover records where depth matches the outer node. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=set_member( field="depth", source=Probe("cloud_cover", code="nbl"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "depth", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021304
train
v1
Sensor network script: Node: snow_depth | code: ref | fields: lon, reading, value, ts Sensor: temperature | fields: level, ts, unit, depth Task: Fetch value from snow_depth where depth exists in temperature sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=set_member( field="depth", source=Probe("temperature", code="thr"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021305
train
v1
Sensor network script: Node: wind_speed | code: stn | fields: level, qc, lat, ts Sensor: sunlight | fields: qc, level, unit, lon Task: Retrieve value from wind_speed whose depth is found in sunlight records where ts matches the outer node. Script:
readings = fetch( node=Node("wind_speed", code="stn"), filter=set_member( field="depth", source=Probe("sunlight", code="brt"), match="ts", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "stn", "inner_alias": "brt", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "stn.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021306
train
v2
Sensor network script: Node: wind_speed | code: prt | fields: lon, lat, reading, unit Sensor: dew_point | fields: level, lon, reading, lat Task: Retrieve lat from wind_speed that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021307
train
v2
Sensor network script: Node: lightning | code: hub | fields: reading, ts, lat, qc Sensor: frost | fields: value, lat, reading, lon Task: Fetch value from lightning that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("lightning", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "lightning", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "value", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021308
train
v3
Sensor network script: Node: turbidity | code: ref | fields: lon, unit, reading, lat Sensor: temperature | fields: qc, value, level, ts Task: Get depth from turbidity where reading exceeds the count of value from temperature for the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021309
train
v1
Sensor network script: Node: drought_index | code: mst | fields: ts, unit, reading, type Sensor: soil_moisture | fields: reading, unit, qc, type Task: Get lon from drought_index where type appears in soil_moisture readings with matching qc. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="type", source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "soil_moisture", "outer_alias": "mst", "inner_alias": "grvl", "proj_col": "lon", "filter_col": "type", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021310
train
v1
Sensor network script: Node: drought_index | code: ref | fields: lat, level, lon, qc Sensor: air_quality | fields: lat, value, ts, reading Task: Retrieve level from drought_index whose qc is found in air_quality records where type matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=set_member( field="qc", source=Probe("air_quality", code="prt"), match="type", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "qc", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021311
train
v2
Sensor network script: Node: turbidity | code: thr | fields: ts, lon, unit, qc Sensor: visibility | fields: level, unit, value, reading Task: Fetch depth from turbidity that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "depth", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021312
train
v1
Sensor network script: Node: air_quality | code: thr | fields: reading, qc, type, value Sensor: wind_speed | fields: qc, level, reading, lat Task: Retrieve depth from air_quality whose depth is found in wind_speed records where unit matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="depth", source=Probe("wind_speed", code="gst"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021313
train
v2
Sensor network script: Node: cloud_cover | code: hub | fields: qc, reading, depth, unit Sensor: rainfall | fields: unit, level, ts, value Task: Retrieve lon from cloud_cover that have at least one matching reading in rainfall sharing the same qc. Script:
readings = fetch( node=Node("cloud_cover", code="hub"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "lon", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021314
train
v2
Sensor network script: Node: wind_speed | code: gst | fields: depth, level, lon, unit Sensor: frost | fields: lat, reading, type, lon Task: Retrieve lon from wind_speed that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="gst"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021315
train
v1
Sensor network script: Node: humidity | code: ref | fields: lon, level, lat, depth Sensor: uv_index | fields: ts, qc, level, type Task: Retrieve lon from humidity whose unit is found in uv_index records where depth matches the outer node. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=set_member( field="unit", source=Probe("uv_index", code="flx"), match="depth", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "lon", "filter_col": "unit", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021316
train
v1
Sensor network script: Node: sunlight | code: stn | fields: lat, reading, depth, lon Sensor: rainfall | fields: depth, qc, unit, lat Task: Retrieve level from sunlight whose type is found in rainfall records where depth matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="stn"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="depth", ), output="level", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "stn", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021317
train
v2
Sensor network script: Node: evaporation | code: hub | fields: ts, level, type, lat Sensor: sunlight | fields: lon, reading, value, ts Task: Retrieve level from evaporation that have at least one matching reading in sunlight sharing the same type. Script:
readings = fetch( node=Node("evaporation", code="hub"), filter=has_match( source=Probe("sunlight", code="brt"), match="type", ), output="level", )
{ "outer_table": "evaporation", "inner_table": "sunlight", "outer_alias": "hub", "inner_alias": "brt", "proj_col": "level", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021318
train
v2
Sensor network script: Node: lightning | code: prt | fields: qc, lat, ts, lon Sensor: sunlight | fields: qc, ts, reading, type Task: Retrieve level from lightning that have at least one matching reading in sunlight sharing the same qc. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=has_match( source=Probe("sunlight", code="brt"), match="qc", ), output="level", )
{ "outer_table": "lightning", "inner_table": "sunlight", "outer_alias": "prt", "inner_alias": "brt", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021319
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: unit, reading, ts, type Sensor: pressure | fields: depth, ts, qc, value Task: Retrieve reading from wind_speed that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "thr", "inner_alias": "mbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021320
train
v1
Sensor network script: Node: turbidity | code: thr | fields: depth, value, type, unit Sensor: air_quality | fields: level, depth, lon, value Task: Fetch level from turbidity where unit exists in air_quality sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="unit", source=Probe("air_quality", code="prt"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "air_quality", "outer_alias": "thr", "inner_alias": "prt", "proj_col": "level", "filter_col": "unit", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021321
train
v2
Sensor network script: Node: drought_index | code: ref | fields: lon, lat, unit, value Sensor: dew_point | fields: depth, type, level, reading Task: Retrieve lon from drought_index that have at least one matching reading in dew_point sharing the same qc. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="qc", ), output="lon", )
{ "outer_table": "drought_index", "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_021322
train
v3
Sensor network script: Node: humidity | code: ref | fields: lon, lat, unit, value Sensor: evaporation | fields: type, ts, depth, level Task: Fetch lat from humidity where value is greater than the average of depth in evaporation for matching unit. Script:
readings = fetch( node=Node("humidity", code="ref"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("evaporation", code="evp"), match="unit"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021323
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: qc, lat, level, depth Sensor: evaporation | fields: unit, lon, level, type Task: Retrieve reading from soil_moisture that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "reading", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021324
train
v2
Sensor network script: Node: snow_depth | code: ref | fields: depth, value, unit, lat Sensor: air_quality | fields: type, level, qc, value Task: Retrieve level from snow_depth that have at least one matching reading in air_quality sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="ref"), filter=has_match( source=Probe("air_quality", code="prt"), match="depth", ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021325
train
v1
Sensor network script: Node: turbidity | code: gst | fields: level, qc, value, depth Sensor: rainfall | fields: unit, ts, depth, level Task: Retrieve depth from turbidity whose depth is found in rainfall records where unit matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "gst", "inner_alias": "rnfl", "proj_col": "depth", "filter_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021326
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: qc, unit, ts, value Sensor: wind_speed | fields: type, qc, depth, lon Task: Retrieve lon from soil_moisture with depth above the MAX(depth) of wind_speed readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("wind_speed", code="gst"), match="unit"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021327
train
v2
Sensor network script: Node: dew_point | code: mst | fields: level, unit, lat, value Sensor: evaporation | fields: lon, lat, unit, qc Task: Retrieve lat from dew_point that have at least one matching reading in evaporation sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("evaporation", code="evp"), match="qc", ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "mst", "inner_alias": "evp", "proj_col": "lat", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021328
train
v3
Sensor network script: Node: turbidity | code: clr | fields: ts, unit, lat, qc Sensor: temperature | fields: lon, qc, depth, unit Task: Fetch depth from turbidity where depth is greater than the average of reading in temperature for matching type. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("temperature", code="thr"), match="type"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021329
train
v1
Sensor network script: Node: temperature | code: hub | fields: lat, reading, qc, type Sensor: evaporation | fields: lat, type, level, value Task: Retrieve level from temperature whose type is found in evaporation records where unit matches the outer node. Script:
readings = fetch( node=Node("temperature", code="hub"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="level", )
{ "outer_table": "temperature", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021330
train
v2
Sensor network script: Node: visibility | code: ref | fields: qc, unit, reading, level Sensor: pressure | fields: type, level, depth, unit Task: Retrieve reading from visibility that have at least one matching reading in pressure sharing the same depth. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="depth", ), output="reading", )
{ "outer_table": "visibility", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "reading", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021331
train
v1
Sensor network script: Node: uv_index | code: clr | fields: lon, type, level, depth Sensor: lightning | fields: lon, value, depth, ts Task: Fetch lat from uv_index where depth exists in lightning sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=set_member( field="depth", source=Probe("lightning", code="tnd"), match="depth", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "lightning", "outer_alias": "clr", "inner_alias": "tnd", "proj_col": "lat", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021332
train
v2
Sensor network script: Node: humidity | code: prt | fields: unit, ts, value, type Sensor: turbidity | fields: ts, lon, depth, type Task: Get value from humidity where a corresponding entry exists in turbidity with the same ts. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="value", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021333
train
v3
Sensor network script: Node: frost | code: mst | fields: value, lat, unit, type Sensor: temperature | fields: qc, level, type, ts Task: Fetch level from frost where depth is greater than the minimum of depth in temperature for matching unit. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MIN", "depth", source=Probe("temperature", code="thr"), match="unit"), ), output="level", )
{ "outer_table": "frost", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "level", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021334
train
v2
Sensor network script: Node: soil_moisture | code: gst | fields: qc, level, value, unit Sensor: humidity | fields: ts, reading, lat, level Task: Retrieve level from soil_moisture that have at least one matching reading in humidity sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "humidity", "outer_alias": "gst", "inner_alias": "hgr", "proj_col": "level", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021335
train
v3
Sensor network script: Node: rainfall | code: ref | fields: reading, value, ts, lat Sensor: wind_speed | fields: ts, depth, lon, lat Task: Fetch depth from rainfall where value is greater than the maximum of value in wind_speed for matching depth. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("wind_speed", code="gst"), match="depth"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "wind_speed", "outer_alias": "ref", "inner_alias": "gst", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021336
train
v1
Sensor network script: Node: turbidity | code: thr | fields: value, type, lat, lon Sensor: humidity | fields: qc, unit, level, reading Task: Fetch depth from turbidity where qc exists in humidity sensor data for the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021337
train
v1
Sensor network script: Node: uv_index | code: gst | fields: level, ts, unit, lon Sensor: sunlight | fields: lat, type, unit, level Task: Retrieve lat from uv_index whose type is found in sunlight records where qc matches the outer node. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=set_member( field="type", source=Probe("sunlight", code="brt"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021338
train
v3
Sensor network script: Node: sunlight | code: mst | fields: unit, ts, depth, type Sensor: wind_speed | fields: ts, reading, unit, qc Task: Retrieve value from sunlight with depth above the SUM(reading) of wind_speed readings sharing the same depth. Script:
readings = fetch( node=Node("sunlight", code="mst"), filter=exceeds( field="depth", threshold=aggregate("SUM", "reading", source=Probe("wind_speed", code="gst"), match="depth"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "value", "filter_col": "depth", "agg_col": "reading", "agg_fn": "SUM", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021339
train
v2
Sensor network script: Node: rainfall | code: hub | fields: level, type, lat, ts Sensor: lightning | fields: type, lat, depth, unit Task: Get value from rainfall where a corresponding entry exists in lightning with the same depth. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("lightning", code="tnd"), match="depth", ), output="value", )
{ "outer_table": "rainfall", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021340
train
v2
Sensor network script: Node: visibility | code: ref | fields: qc, unit, reading, ts Sensor: temperature | fields: reading, depth, level, unit Task: Get lon from visibility where a corresponding entry exists in temperature with the same type. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "lon", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021341
train
v3
Sensor network script: Node: frost | code: stn | fields: qc, lon, type, level Sensor: cloud_cover | fields: lat, level, ts, qc Task: Get depth from frost where reading exceeds the average reading from cloud_cover for the same unit. Script:
readings = fetch( node=Node("frost", code="stn"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("cloud_cover", code="nbl"), match="unit"), ), output="depth", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021342
train
v2
Sensor network script: Node: rainfall | code: hub | fields: value, depth, reading, lon Sensor: humidity | fields: qc, type, depth, level Task: Fetch reading from rainfall that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "hub", "inner_alias": "hgr", "proj_col": "reading", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021343
train
v3
Sensor network script: Node: rainfall | code: ref | fields: ts, lat, value, level Sensor: evaporation | fields: ts, type, unit, value Task: Get lat from rainfall where reading exceeds the average reading from evaporation for the same type. Script:
readings = fetch( node=Node("rainfall", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("evaporation", code="evp"), match="type"), ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "evaporation", "outer_alias": "ref", "inner_alias": "evp", "proj_col": "lat", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "ref.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021344
train
v1
Sensor network script: Node: wind_speed | code: clr | fields: depth, type, lat, level Sensor: frost | fields: type, qc, lon, value Task: Get reading from wind_speed where ts appears in frost readings with matching type. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="type", ), output="reading", )
{ "outer_table": "wind_speed", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "reading", "filter_col": "ts", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021345
train
v3
Sensor network script: Node: dew_point | code: hub | fields: depth, reading, value, lon Sensor: cloud_cover | fields: value, qc, lat, type Task: Fetch lat from dew_point where value is greater than the maximum of value in cloud_cover for matching qc. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "value", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021346
train
v1
Sensor network script: Node: sunlight | code: thr | fields: depth, unit, reading, lat Sensor: wind_speed | fields: value, lon, lat, depth Task: Get reading from sunlight where type appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="depth", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "wind_speed", "outer_alias": "thr", "inner_alias": "gst", "proj_col": "reading", "filter_col": "type", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021347
train
v3
Sensor network script: Node: wind_speed | code: ref | fields: lon, ts, lat, value Sensor: soil_moisture | fields: lon, unit, depth, type Task: Get level from wind_speed where reading exceeds the average value from soil_moisture for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "value", source=Probe("soil_moisture", code="grvl"), match="depth"), ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "level", "filter_col": "reading", "agg_col": "value", "agg_fn": "AVG", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021348
train
v1
Sensor network script: Node: evaporation | code: prt | fields: qc, ts, value, reading Sensor: dew_point | fields: value, lat, qc, lon Task: Retrieve lon from evaporation whose ts is found in dew_point records where unit matches the outer node. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=set_member( field="ts", source=Probe("dew_point", code="cnd"), match="unit", ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "prt", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "ts", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021349
train
v2
Sensor network script: Node: evaporation | code: prt | fields: ts, qc, level, lat Sensor: visibility | fields: depth, value, level, lat Task: Fetch reading from evaporation that have at least one corresponding visibility measurement for the same qc. Script:
readings = fetch( node=Node("evaporation", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="reading", )
{ "outer_table": "evaporation", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "reading", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021350
train
v1
Sensor network script: Node: temperature | code: clr | fields: level, lon, value, type Sensor: humidity | fields: lon, type, lat, value Task: Get reading from temperature where depth appears in humidity readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="clr"), filter=set_member( field="depth", source=Probe("humidity", code="hgr"), match="depth", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "reading", "filter_col": "depth", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021351
train
v3
Sensor network script: Node: turbidity | code: hub | fields: unit, depth, type, value Sensor: lightning | fields: lon, qc, depth, lat Task: Retrieve level from turbidity with value above the MAX(reading) of lightning readings sharing the same depth. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=exceeds( field="value", threshold=aggregate("MAX", "reading", source=Probe("lightning", code="tnd"), match="depth"), ), output="level", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021352
train
v1
Sensor network script: Node: soil_moisture | code: ref | fields: lat, value, depth, type Sensor: rainfall | fields: depth, value, unit, reading Task: Get reading from soil_moisture where depth appears in rainfall readings with matching unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="unit", ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "rainfall", "outer_alias": "ref", "inner_alias": "rnfl", "proj_col": "reading", "filter_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021353
train
v2
Sensor network script: Node: wind_speed | code: mst | fields: level, type, lat, qc Sensor: visibility | fields: reading, ts, type, unit Task: Get level from wind_speed where a corresponding entry exists in visibility with the same unit. Script:
readings = fetch( node=Node("wind_speed", code="mst"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "mst", "inner_alias": "clr", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021354
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: qc, level, value, lat Sensor: visibility | fields: qc, value, level, lon Task: Retrieve lat from wind_speed that have at least one matching reading in visibility sharing the same unit. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("visibility", code="clr"), match="unit", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lat", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021355
train
v1
Sensor network script: Node: air_quality | code: thr | fields: depth, type, level, lon Sensor: soil_moisture | fields: ts, type, unit, lat Task: Get depth from air_quality where qc appears in soil_moisture readings with matching ts. Script:
readings = fetch( node=Node("air_quality", code="thr"), filter=set_member( field="qc", source=Probe("soil_moisture", code="grvl"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "depth", "filter_col": "qc", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021356
train
v1
Sensor network script: Node: temperature | code: prt | fields: qc, depth, lat, reading Sensor: drought_index | fields: lat, qc, level, reading Task: Get value from temperature where qc appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "temperature", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021357
train
v2
Sensor network script: Node: dew_point | code: gst | fields: qc, type, unit, reading Sensor: cloud_cover | fields: value, reading, type, ts Task: Retrieve value from dew_point that have at least one matching reading in cloud_cover sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021358
train
v3
Sensor network script: Node: visibility | code: mst | fields: depth, value, unit, ts Sensor: frost | fields: ts, type, unit, depth Task: Fetch value from visibility where reading is greater than the count of of reading in frost for matching unit. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("frost", code="frs"), match="unit"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021359
train
v2
Sensor network script: Node: rainfall | code: clr | fields: lon, value, unit, depth Sensor: humidity | fields: lon, ts, type, value Task: Get lon from rainfall where a corresponding entry exists in humidity with the same unit. Script:
readings = fetch( node=Node("rainfall", code="clr"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "clr", "inner_alias": "hgr", "proj_col": "lon", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021360
train
v2
Sensor network script: Node: turbidity | code: ref | fields: level, ts, value, lat Sensor: snow_depth | fields: depth, ts, level, lat Task: Retrieve depth from turbidity that have at least one matching reading in snow_depth sharing the same ts. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="ts", ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "depth", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021361
train
v2
Sensor network script: Node: rainfall | code: gst | fields: depth, reading, ts, type Sensor: dew_point | fields: ts, level, qc, unit Task: Get lon from rainfall where a corresponding entry exists in dew_point with the same ts. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021362
train
v2
Sensor network script: Node: wind_speed | code: clr | fields: type, qc, depth, level Sensor: pressure | fields: reading, depth, type, value Task: Fetch depth from wind_speed that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("wind_speed", code="clr"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "wind_speed", "inner_table": "pressure", "outer_alias": "clr", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021363
train
v3
Sensor network script: Node: visibility | code: ref | fields: reading, ts, value, qc Sensor: temperature | fields: qc, lat, level, type Task: Fetch value from visibility where reading is greater than the total of reading in temperature for matching qc. Script:
readings = fetch( node=Node("visibility", code="ref"), filter=exceeds( field="reading", threshold=aggregate("SUM", "reading", source=Probe("temperature", code="thr"), match="qc"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "ref", "inner_alias": "thr", "proj_col": "value", "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_021364
train
v3
Sensor network script: Node: lightning | code: stn | fields: lon, lat, unit, ts Sensor: uv_index | fields: qc, lat, lon, reading Task: Get reading from lightning where depth exceeds the average reading from uv_index for the same ts. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=exceeds( field="depth", threshold=aggregate("AVG", "reading", source=Probe("uv_index", code="flx"), match="ts"), ), output="reading", )
{ "outer_table": "lightning", "inner_table": "uv_index", "outer_alias": "stn", "inner_alias": "flx", "proj_col": "reading", "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_021365
train
v2
Sensor network script: Node: soil_moisture | code: hub | fields: ts, depth, qc, level Sensor: pressure | fields: lat, ts, level, qc Task: Retrieve depth from soil_moisture that have at least one matching reading in pressure sharing the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=has_match( source=Probe("pressure", code="mbl"), match="ts", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "hub", "inner_alias": "mbl", "proj_col": "depth", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021366
train
v1
Sensor network script: Node: uv_index | code: hub | fields: lat, level, value, lon Sensor: visibility | fields: reading, level, lon, depth Task: Fetch value from uv_index where ts exists in visibility sensor data for the same depth. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=set_member( field="ts", source=Probe("visibility", code="clr"), match="depth", ), output="value", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "value", "filter_col": "ts", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021367
train
v2
Sensor network script: Node: turbidity | code: mst | fields: value, level, lon, unit Sensor: rainfall | fields: reading, lat, depth, unit Task: Get level from turbidity where a corresponding entry exists in rainfall with the same unit. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="unit", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021368
train
v3
Sensor network script: Node: rainfall | code: thr | fields: value, type, ts, qc Sensor: turbidity | fields: ts, depth, type, qc Task: Get depth from rainfall where value exceeds the count of depth from turbidity for the same unit. Script:
readings = fetch( node=Node("rainfall", code="thr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="depth", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021369
train
v3
Sensor network script: Node: lightning | code: ref | fields: reading, lon, depth, lat Sensor: drought_index | fields: lat, depth, level, type Task: Fetch value from lightning where depth is greater than the count of of depth in drought_index for matching depth. Script:
readings = fetch( node=Node("lightning", code="ref"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("drought_index", code="drt"), match="depth"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "ref", "inner_alias": "drt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021370
train
v2
Sensor network script: Node: soil_moisture | code: thr | fields: value, level, qc, type Sensor: turbidity | fields: lat, type, qc, lon Task: Get level from soil_moisture where a corresponding entry exists in turbidity with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "level", "join_col": "unit", "correlated_ref": "thr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021371
train
v3
Sensor network script: Node: drought_index | code: ref | fields: value, lat, qc, lon Sensor: dew_point | fields: depth, ts, value, lon Task: Retrieve depth from drought_index with reading above the MAX(reading) of dew_point readings sharing the same unit. Script:
readings = fetch( node=Node("drought_index", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MAX", "reading", source=Probe("dew_point", code="cnd"), match="unit"), ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021372
train
v3
Sensor network script: Node: air_quality | code: mst | fields: level, lat, depth, lon Sensor: humidity | fields: depth, value, reading, type Task: Retrieve lat from air_quality with value above the MIN(reading) of humidity readings sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=exceeds( field="value", threshold=aggregate("MIN", "reading", source=Probe("humidity", code="hgr"), match="ts"), ), output="lat", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "value", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021373
train
v1
Sensor network script: Node: uv_index | code: prt | fields: lon, unit, qc, type Sensor: turbidity | fields: type, depth, lat, unit Task: Fetch lat from uv_index where type exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021374
train
v3
Sensor network script: Node: snow_depth | code: clr | fields: value, unit, lat, reading Sensor: turbidity | fields: level, reading, unit, lon Task: Fetch level from snow_depth where value is greater than the minimum of value in turbidity for matching ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("turbidity", code="ftu"), match="ts"), ), output="level", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "level", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021375
train
v3
Sensor network script: Node: turbidity | code: mst | fields: ts, lat, level, type Sensor: pressure | fields: value, lat, level, type Task: Fetch depth from turbidity where reading is greater than the count of of reading in pressure for matching qc. Script:
readings = fetch( node=Node("turbidity", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("pressure", code="mbl"), match="qc"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021376
train
v3
Sensor network script: Node: frost | code: mst | fields: value, reading, level, depth Sensor: dew_point | fields: qc, reading, level, lon Task: Retrieve reading from frost with value above the COUNT(depth) of dew_point readings sharing the same type. Script:
readings = fetch( node=Node("frost", code="mst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("dew_point", code="cnd"), match="type"), ), output="reading", )
{ "outer_table": "frost", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021377
train
v2
Sensor network script: Node: lightning | code: gst | fields: reading, unit, lat, depth Sensor: drought_index | fields: type, depth, level, lat Task: Fetch value from lightning that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021378
train
v3
Sensor network script: Node: soil_moisture | code: ref | fields: lon, type, depth, lat Sensor: turbidity | fields: reading, ts, lon, lat Task: Retrieve lon from soil_moisture with reading above the COUNT(depth) of turbidity readings sharing the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="unit"), ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "ref", "inner_alias": "ftu", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021379
train
v1
Sensor network script: Node: uv_index | code: prt | fields: lat, depth, type, reading Sensor: visibility | fields: value, lon, qc, unit Task: Get lon from uv_index where type appears in visibility readings with matching type. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021380
train
v3
Sensor network script: Node: snow_depth | code: gst | fields: value, unit, depth, level Sensor: drought_index | fields: unit, level, qc, depth Task: Retrieve depth from snow_depth with depth above the MAX(reading) of drought_index readings sharing the same unit. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("drought_index", code="drt"), match="unit"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021381
train
v3
Sensor network script: Node: evaporation | code: ref | fields: unit, lon, qc, value Sensor: dew_point | fields: depth, lat, qc, ts Task: Get lon from evaporation where reading exceeds the count of reading from dew_point for the same depth. Script:
readings = fetch( node=Node("evaporation", code="ref"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "reading", source=Probe("dew_point", code="cnd"), match="depth"), ), output="lon", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "filter_col": "reading", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "ref.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021382
train
v2
Sensor network script: Node: dew_point | code: gst | fields: reading, unit, type, value Sensor: pressure | fields: reading, lon, value, lat Task: Retrieve reading from dew_point that have at least one matching reading in pressure sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="gst"), filter=has_match( source=Probe("pressure", code="mbl"), match="qc", ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021383
train
v3
Sensor network script: Node: temperature | code: prt | fields: lat, qc, ts, lon Sensor: pressure | fields: depth, type, lat, ts Task: Retrieve depth from temperature with reading above the COUNT(depth) of pressure readings sharing the same ts. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("pressure", code="mbl"), match="ts"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "prt", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021384
train
v2
Sensor network script: Node: sunlight | code: clr | fields: depth, unit, lat, reading Sensor: rainfall | fields: depth, unit, ts, type Task: Fetch reading from sunlight that have at least one corresponding rainfall measurement for the same qc. Script:
readings = fetch( node=Node("sunlight", code="clr"), filter=has_match( source=Probe("rainfall", code="rnfl"), match="qc", ), output="reading", )
{ "outer_table": "sunlight", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "reading", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021385
train
v3
Sensor network script: Node: uv_index | code: clr | fields: type, reading, level, lat Sensor: drought_index | fields: ts, qc, type, reading Task: Fetch depth from uv_index where value is greater than the average of value in drought_index for matching qc. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="value", threshold=aggregate("AVG", "value", source=Probe("drought_index", code="drt"), match="qc"), ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "depth", "filter_col": "value", "agg_col": "value", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021386
train
v2
Sensor network script: Node: drought_index | code: gst | fields: unit, lat, lon, value Sensor: snow_depth | fields: value, type, level, reading Task: Retrieve lon from drought_index that have at least one matching reading in snow_depth sharing the same depth. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="lon", )
{ "outer_table": "drought_index", "inner_table": "snow_depth", "outer_alias": "gst", "inner_alias": "snw", "proj_col": "lon", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021387
train
v3
Sensor network script: Node: turbidity | code: prt | fields: qc, level, depth, unit Sensor: uv_index | fields: level, lat, reading, value Task: Get value from turbidity where value exceeds the minimum depth from uv_index for the same ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("uv_index", code="flx"), match="ts"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021388
train
v3
Sensor network script: Node: pressure | code: mst | fields: ts, lat, level, depth Sensor: temperature | fields: value, unit, lat, ts Task: Fetch reading from pressure where value is greater than the average of depth in temperature for matching ts. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=exceeds( field="value", threshold=aggregate("AVG", "depth", source=Probe("temperature", code="thr"), match="ts"), ), output="reading", )
{ "outer_table": "pressure", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021389
train
v3
Sensor network script: Node: turbidity | code: ref | fields: level, unit, value, depth Sensor: uv_index | fields: lat, level, type, reading Task: Get value from turbidity where depth exceeds the average depth from uv_index for the same qc. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("uv_index", code="flx"), match="qc"), ), output="value", )
{ "outer_table": "turbidity", "inner_table": "uv_index", "outer_alias": "ref", "inner_alias": "flx", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021390
train
v2
Sensor network script: Node: uv_index | code: prt | fields: level, value, lat, qc Sensor: visibility | fields: lon, value, lat, depth Task: Retrieve depth from uv_index that have at least one matching reading in visibility sharing the same depth. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="depth", ), output="depth", )
{ "outer_table": "uv_index", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "depth", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021391
train
v3
Sensor network script: Node: frost | code: prt | fields: reading, value, depth, ts Sensor: visibility | fields: level, value, unit, lon Task: Get value from frost where depth exceeds the average value from visibility for the same type. Script:
readings = fetch( node=Node("frost", code="prt"), filter=exceeds( field="depth", threshold=aggregate("AVG", "value", source=Probe("visibility", code="clr"), match="type"), ), output="value", )
{ "outer_table": "frost", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "value", "filter_col": "depth", "agg_col": "value", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021392
train
v2
Sensor network script: Node: evaporation | code: mst | fields: ts, qc, value, unit Sensor: dew_point | fields: type, reading, lon, ts Task: Get depth from evaporation where a corresponding entry exists in dew_point with the same type. Script:
readings = fetch( node=Node("evaporation", code="mst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="depth", )
{ "outer_table": "evaporation", "inner_table": "dew_point", "outer_alias": "mst", "inner_alias": "cnd", "proj_col": "depth", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021393
train
v2
Sensor network script: Node: snow_depth | code: stn | fields: lon, value, lat, type Sensor: humidity | fields: reading, lon, depth, unit Task: Fetch depth from snow_depth that have at least one corresponding humidity measurement for the same unit. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=has_match( source=Probe("humidity", code="hgr"), match="unit", ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "humidity", "outer_alias": "stn", "inner_alias": "hgr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021394
train
v1
Sensor network script: Node: turbidity | code: gst | fields: qc, reading, depth, lat Sensor: pressure | fields: lon, ts, lat, unit Task: Get reading from turbidity where qc appears in pressure readings with matching ts. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="ts", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "reading", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021395
train
v2
Sensor network script: Node: snow_depth | code: prt | fields: lon, reading, value, qc Sensor: turbidity | fields: lon, ts, unit, type Task: Fetch value from snow_depth that have at least one corresponding turbidity measurement for the same type. Script:
readings = fetch( node=Node("snow_depth", code="prt"), filter=has_match( source=Probe("turbidity", code="ftu"), match="type", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021396
train
v1
Sensor network script: Node: snow_depth | code: clr | fields: ts, lon, level, type Sensor: rainfall | fields: lon, depth, qc, value Task: Fetch value from snow_depth where depth exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("snow_depth", code="clr"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="ts", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "depth", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021397
train
v1
Sensor network script: Node: frost | code: prt | fields: type, level, depth, qc Sensor: humidity | fields: level, unit, depth, type Task: Retrieve value from frost whose unit is found in humidity records where qc matches the outer node. Script:
readings = fetch( node=Node("frost", code="prt"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="qc", ), output="value", )
{ "outer_table": "frost", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "filter_col": "unit", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_021398
train
v2
Sensor network script: Node: cloud_cover | code: gst | fields: reading, unit, depth, level Sensor: visibility | fields: reading, qc, value, type Task: Get reading from cloud_cover where a corresponding entry exists in visibility with the same type. Script:
readings = fetch( node=Node("cloud_cover", code="gst"), filter=has_match( source=Probe("visibility", code="clr"), match="type", ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "visibility", "outer_alias": "gst", "inner_alias": "clr", "proj_col": "reading", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_021399
train