Skip to content

Commit

Permalink
swap latitude and longitude in description so it is correct
Browse files Browse the repository at this point in the history
  • Loading branch information
EdFage committed Dec 1, 2023
1 parent 3237fa4 commit 6ebd244
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 6ebd244

Please sign in to comment.