Skip to content

Commit

Permalink
Update level_3_lighting_90_1_definition table
Browse files Browse the repository at this point in the history
Updated the supplemental power density field from "supplemental_lighting_per_area" to "supplemental_lighting_power_density" for consistency.
  • Loading branch information
AmmarDeh committed May 7, 2024
1 parent 32e6d03 commit 5d0602d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
lighting_secondary_space_type TEXT,
lighting_power_density NUMERIC NOT NULL,
lighting_power_density_unit TEXT DEFAULT 'w/ft2' NOT NULL,
supplemental_lighting_per_area NUMERIC,
supplemental_lighting_power_density NUMERIC,
supplemental_lighting_power_density_unit TEXT,
rcr_threshold NUMERIC,
automatic_daylight_responsive_controls_for_sidelighting TEXT,
Expand All @@ -51,7 +51,7 @@
lighting_secondary_space_type,
lighting_power_density,
lighting_power_density_unit,
supplemental_lighting_per_area,
supplemental_lighting_power_density,
supplemental_lighting_power_density_unit,
rcr_threshold,
automatic_daylight_responsive_controls_for_sidelighting,
Expand All @@ -70,7 +70,7 @@
"lighting_secondary_space_type": "",
"lighting_power_density": 0.0,
"lighting_power_density_unit": "W/ft2",
"supplemental_lighting_per_area": 0.0,
"supplemental_lighting_power_density": 0.0,
"supplemental_lighting_power_density_unit": "W/ft2",
"rcr_threshold": 0.0,
"automatic_daylight_responsive_controls_for_sidelighting": "",
Expand Down Expand Up @@ -124,7 +124,7 @@ def _preprocess_record(self, record):
getattr_either("lighting_secondary_space_type", record),
getattr_either("lighting_power_density", record),
getattr_either("lighting_power_density_unit", record, "W/ft2"),
getattr_either("supplemental_lighting_per_area", record),
getattr_either("supplemental_lighting_power_density", record),
getattr_either("supplemental_lighting_power_density_unit", record, "W/ft2"),
getattr_either("rcr_threshold", record),
getattr_either(
Expand Down

0 comments on commit 5d0602d

Please sign in to comment.