Skip to content

Commit

Permalink
Updated IGSDB product_ids used in examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenCzarnecki committed Sep 20, 2024
1 parent 51a4d22 commit 5559462
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/bsdf_shade_igsdb_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

bsdf_hemisphere = pywincalc.BSDFHemisphere.create(pywincalc.BSDFBasisType.FULL)

bsdf_igsdb_id = 17200
bsdf_igsdb_id = 18955

bsdf_igsdb_response = requests.get(url_single_product_datafile.format(id=bsdf_igsdb_id), headers=headers)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# igsdb.lbl.gov and user-defined perforated geometry.

# This is the same material used in the venetian example but could be any material in the igsdb
shade_material_igsdb_id = 17935
shade_material_igsdb_id = 19179

shade_material_igsdb_response = requests.get(
url_single_product.format(id=shade_material_igsdb_id), headers=headers)
Expand Down
2 changes: 1 addition & 1 deletion examples/venetian_blind_igsdb_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
bsdf_hemisphere = pywincalc.BSDFHemisphere.create(pywincalc.BSDFBasisType.QUARTER)

# Download a venetian blind from the igsdb.lbl.gov.
slim_white_pella_venetian_blind_igsdb_id = 17186
slim_white_pella_venetian_blind_igsdb_id = 18420

slim_white_pella_venetian_blind_igsdb_response = requests.get(
url_single_product.format(id=slim_white_pella_venetian_blind_igsdb_id), headers=headers)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# This is the same material used in the venetian in the igsdb_exterior_shade_on_cleara_glass.py example
# but could be any material in the igsdb
shade_material_igsdb_id = 17935
shade_material_igsdb_id = 19179

shade_material_igsdb_response = requests.get(url_single_product.format(id=shade_material_igsdb_id), headers=headers)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# This is the same material used in the venetian in the igsdb_exterior_shade_on_cleara_glass.py example
# but could be any material in the igsdb
shade_material_igsdb_id = 17935
shade_material_igsdb_id = 19179

shade_material_igsdb_response = requests.get(url_single_product.format(id=shade_material_igsdb_id), headers=headers)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from igsdb_interaction import url_single_product, headers

# This is the same material used in the venetian example but could be any material in the igsdb
shade_material_igsdb_id = 17935
shade_material_igsdb_id = 19179

shade_material_igsdb_response = requests.get(
url_single_product.format(id=shade_material_igsdb_id), headers=headers)
Expand Down

0 comments on commit 5559462

Please sign in to comment.