Skip to content

Commit

Permalink
Merge pull request #9 from EdFage/latitude-longitude-fix
Browse files Browse the repository at this point in the history
swap latitude and longitude in description so it is correct
  • Loading branch information
peterdudfield authored Dec 4, 2023
2 parents 3237fa4 + 6ebd244 commit ae63b01
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 @@ -3,6 +3,6 @@

class PVSite(BaseModel):

latitude: float = Field(..., description="the longitude of the site", ge=-90, le=90)
longitude: float = Field(..., description="the latitude of the site", ge=-180, le=180)
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)

0 comments on commit ae63b01

Please sign in to comment.