Skip to content

Commit

Permalink
fixed name (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
marshHawk4 authored Mar 22, 2024
1 parent c17784f commit b31577b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cdr_schemas/area_extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ class AreaType(str, Enum):
CrossSection = "cross_section"
OCR = "ocr"
Polygon_Legend_Area = "polygon_legend_area"
line_point_Legend_Area = "line_point_legend_area"
Line_Point_Legend_Area = "line_point_legend_area"


class Area_Extraction(BaseModel):
"""
Area extraction of a cog.
"""

type: GeomType = GeomType.Polygon
coordinates: List[List[List[Union[float, int]]]]
bbox: Optional[List[Union[float, int]]] = Field(
Expand Down

0 comments on commit b31577b

Please sign in to comment.