Skip to content

Commit

Permalink
Disable SOAP Demo Integration Test
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Feb 22, 2025
1 parent 6e68b0d commit d59d78b
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -385,30 +385,33 @@ type Distance_Response {
errors: [CitiesError]
}
type EnergyObs {
type EnergyForecastSeries {
"""Cooling degree days"""
cdd: Float
"""City name (closest)"""
city_name: String
"""Average cloud cover (%)"""
clouds: Int
"""Country abbreviation"""
country_code: String
"""Date"""
date: Date
"""Average dew point temperature - Default (C)"""
dewpt: Float
"""Heating degree days"""
hdd: Float
"""Latitude"""
lat: Float
"""Average max wind direction (Degrees)"""
max_wind_dir: Int
"""Longitude"""
lon: Float
"""Average max wind direction at 100M height (Degrees)"""
max_wind_dir_100m: Int
"""Max wind speed - Default (m/s)"""
max_wind_spd: Float
"""Max wind speed at 100M height - Default (m/s)"""
max_wind_spd_100m: Float
"""Total precipitation in period - Default (mm)"""
precip: Float
Expand All @@ -419,52 +422,85 @@ type EnergyObs {
"""Total snowfall in period - Default (mm)"""
snow: Float
"""List of data sources used in response"""
sources: [String]
"""State abbreviation"""
state_code: String
"""Nearest Station ID [DEPRECATED]"""
station_id: String
"""
Average number of daily sun hours - # hours where Solar GHI > 1000 W/m^2
"""
sun_hours: Float
"""Total diffuse horizontal solar irradiance (W/m^2)"""
"""Total clear sky diffuse horizontal solar irradiance (W/m^2)"""
t_dhi: Float
"""Total direct normal solar irradiance (W/m^2)"""
"""Total clear sky direct normal solar irradiance (W/m^2)"""
t_dni: Float
"""Total global horizontal solar irradiance (W/m^2)"""
"""Total clear sky global horizontal solar irradiance (W/m^2)"""
t_ghi: Float
"""Total actual solar radiation (W/m^2)"""
t_solar_rad: Float
"""Average temperature - Default (C)"""
temp: Float
"""Local IANA time zone"""
timezone: String
"""Average wetbulb temperature - Default (C)"""
temp_wetbulb: Float
"""Timestamp in local time"""
timestamp_local: String
"""Timestamp UTC"""
timestamp_utc: String
"""Average wind direction (Degrees)"""
wind_dir: Int
"""Average wind speed - Default (m/s)"""
"""Average wind speed at 100M height - Default (m/s)"""
wind_spd: Float
}
type EnergyObsGroup {
"""City ID (closest)"""
city_id: Float
"""City name (closest)"""
city_name: String
"""Count of found observations"""
count: Int
data: [EnergyObs]
"""Country abbreviation"""
country_code: String
data: [EnergyObsSeries]
"""End Date"""
end_date: Int
end_date: Date
"""Latitude"""
lat: Float
"""Longitude"""
lon: Float
"""List of data sources used in response"""
sources: [String]
"""Start Date"""
start_date: Int
start_date: Date
"""State abbreviation"""
state_code: String
"""Nearest Station ID [DEPRECATED]"""
station_id: String
"""Degree day threshold units"""
threshold_units: String
"""Degree day threshold"""
threshold_value: String
"""Local IANA time zone"""
timezone: String
}
type EnergyObsGroupForecast {
Expand All @@ -473,7 +509,7 @@ type EnergyObsGroupForecast {
"""Country abbreviation"""
country_code: String
data: [EnergyObsSeries]
data: [EnergyForecastSeries]
"""Latitude"""
lat: Float
Expand Down Expand Up @@ -510,9 +546,18 @@ type EnergyObsSeries {
"""Heating degree days"""
hdd: Float
"""Average max wind direction (Degrees)"""
max_wind_dir: Int
"""Max wind speed - Default (m/s)"""
max_wind_spd: Float
"""Total precipitation in period - Default (mm)"""
precip: Float
"""Data revision status (interim or final)"""
revision_status: String
"""Average Relative humidity (%)"""
rh: Int
Expand All @@ -524,18 +569,30 @@ type EnergyObsSeries {
"""
sun_hours: Float
"""Total diffuse horizontal solar irradiance (W/m^2)"""
"""Total clear sky diffuse horizontal solar irradiance (W/m^2)"""
t_dhi: Float
"""Total direct normal solar irradiance (W/m^2)"""
"""Total clear sky direct normal solar irradiance (W/m^2)"""
t_dni: Float
"""Total global horizontal solar irradiance (W/m^2)"""
"""Total clear sky global horizontal solar irradiance (W/m^2)"""
t_ghi: Float
"""Total actual solar radiation (W/m^2)"""
t_solar_rad: Float
"""Average temperature - Default (C)"""
temp: Float
"""Average wetbulb temperature - Default (C)"""
temp_wetbulb: Float
"""Timestamp in local time"""
timestamp_local: String
"""Timestamp UTC"""
timestamp_utc: String
"""Average wind direction (Degrees)"""
wind_dir: Int
Expand Down
File renamed without changes.

0 comments on commit d59d78b

Please sign in to comment.