Skip to content

Commit

Permalink
Merge pull request #101 from asam-ev/5-retroreflectivity
Browse files Browse the repository at this point in the history
add retro-reflectivity to the material schema
  • Loading branch information
ClemensLinnhoff authored Sep 18, 2024
2 parents 89d2146 + 07ad0f8 commit 1ef5103
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions schemas/material_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,24 @@
"type": "string",
"description": "Relative path to a property lookup table file with electromagnetic material properties.",
"pattern": ".*_emp\\.xompt$"
},
"retroreflectivity_data": {
"type": "object",
"description": "Information about the retro-reflective properties of the material in the visible light spectrum.",
"properties": {
"coefficient_of_retroreflection": {
"type": "number",
"description": "Coefficient of retro-reflection in cd lx^-1 m^-2."
},
"source": {
"type": "string",
"description": "Source of the retro-reflectivity data."
}
},
"required": [
"coefficient_of_retroreflection",
"source"
]
}
},
"required": [
Expand Down

0 comments on commit 1ef5103

Please sign in to comment.