Skip to content

Commit

Permalink
Add default value
Browse files Browse the repository at this point in the history
  • Loading branch information
EdFage committed Dec 7, 2023
1 parent f1079af commit 6242caf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quartz_solar_forecast/pydantic_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class PVSite(BaseModel):
latitude: float = Field(..., description="the latitude of the site", ge=-90, le=90)
longitude: float = Field(..., description="the longitude of the site", ge=-180, le=180)
capacity_kwp: float = Field(..., description="the capacity [kwp] of the site", ge=0)
tilt: float = Field(..., description="the tilt of the site [degrees], the panels' angle relative to horizontal ground", ge=0, le=90)
orientation: float = Field(..., description="the orientation of the site [degrees], the angle between north and the direction the panels face, measured on the horizontal plane."
tilt: float = Field(default=35, description="the tilt of the site [degrees], the panels' angle relative to horizontal ground", ge=0, le=90)
orientation: float = Field(default=180, description="the orientation of the site [degrees], the angle between north and the direction the panels face, measured on the horizontal plane."
, ge=0, le=360)

0 comments on commit 6242caf

Please sign in to comment.