Skip to content

Commit

Permalink
Whitelist CCS polygons as polygons attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
HansKallekleiv committed Oct 22, 2024
1 parent 27d38a2 commit 3b176a8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions backend_py/primary/primary/routers/polygons/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class PolygonsAttributeType(str, Enum):
PINCHOUT = "pinchout" # Values are pinchouts
SUBCROP = "subcrop" # Values are subcrops
FAULT_LINES = "fault_lines" # Values are fault lines
NAMED_AREA = "named_area" # Values are named areas, e.g. CCS containment polygons


class PolygonsMeta(BaseModel):
Expand Down
1 change: 1 addition & 0 deletions frontend/src/api/models/PolygonsAttributeType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ export enum PolygonsAttributeType {
PINCHOUT = 'pinchout',
SUBCROP = 'subcrop',
FAULT_LINES = 'fault_lines',
NAMED_AREA = 'named_area',
}
1 change: 0 additions & 1 deletion frontend/src/api/models/WellboreHeader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@ export type WellboreHeader = {
depthReferenceElevation: number;
wellborePurpose: string;
wellboreStatus: string;
slotIdentifier: string;
};

0 comments on commit 3b176a8

Please sign in to comment.