File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ class AtmosphericModelTypes(str, Enum):
88 STANDARD_ATMOSPHERE : str = "STANDARD_ATMOSPHERE"
99 CUSTOM_ATMOSPHERE : str = "CUSTOM_ATMOSPHERE"
1010 WYOMING_SOUNDING : str = "WYOMING_SOUNDING"
11- NOAARUCSOUNDING : str = "NOAARUCSOUNDING"
1211 FORECAST : str = "FORECAST"
1312 REANALYSIS : str = "REANALYSIS"
1413 ENSEMBLE : str = "ENSEMBLE"
@@ -17,7 +16,7 @@ class AtmosphericModelTypes(str, Enum):
1716class Env (BaseModel ):
1817 latitude : float
1918 longitude : float
20- elevation : Optional [int ] = None
19+ elevation : Optional [int ] = 0
2120
2221 # Optional parameters
2322 atmospheric_model_type : Optional [AtmosphericModelTypes ] = None
Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ class InterpolationMethods(str, Enum):
3131 LINEAR : str = "LINEAR"
3232 SPLINE : str = "SPLINE"
3333 AKIMA : str = "AKIMA"
34+ POLYNOMIAL : str = "POLYNOMIAL"
35+ SHEPARD : str = "SHEPARD"
36+ RBF : str = "RBF"
3437
3538
3639class MotorTank (BaseModel ):
You can’t perform that action at this time.
0 commit comments