Skip to content

Commit 0e8bda5

Browse files
DOCS: changes on links website
1 parent a1873e6 commit 0e8bda5

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

rocketpy/EnvironmentAnalysis.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ class EnvironmentAnalysis:
5454
- The class then parses the weather data from the start date to the end date.
5555
- The class then calculates the average max/min temperature, average max wind gust, and average day wind rose.
5656
- The class then plots the average max/min temperature, average max wind gust, and average day wind rose.
57+
58+
TODOs:
59+
- Add maxExpectedHeight to the class.
5760
"""
5861

5962
def __init__(
@@ -488,9 +491,7 @@ def parsePressureLevelData(self):
488491
Parse pressure level data from a weather file.
489492
490493
Sources of information:
491-
TODO: Fix website that is guiding to single levels data
492-
- https://cds.climate.copernicus.eu/cdsapp#!/dataset/reanalysis-era5-single-levels-preliminary-back-extension?tab=overview
493-
-
494+
- https://cds.climate.copernicus.eu/cdsapp#!/dataset/reanalysis-era5-pressure-levels?tab=form
494495
495496
Must get the following variables from a ERA5 file:
496497
- Geopotential
@@ -683,9 +684,10 @@ def parseSurfaceData(self):
683684
"""
684685
Parse surface data from a weather file.
685686
Currently only supports files from ECMWF.
687+
You can download a file from the following website: https://cds.climate.copernicus.eu/cdsapp#!/dataset/reanalysis-era5-single-levels?tab=form
686688
687689
Must get the following variables:
688-
- surface elevation: self.elevation = float
690+
- surface elevation: self.elevation = float # Select 'Geopotential'
689691
- 2m temperature: surfaceTemperature = float
690692
- Surface pressure: surfacePressure = float
691693
- 10m u-component of wind: surface10mWindVelocityX = float
@@ -2746,7 +2748,6 @@ def exportMeanProfiles(self, filename="export_env_analysis"):
27462748
"elevation": self.elevation,
27472749
"timeZone": self.preferred_timezone,
27482750
"unit_system": self.unit_system,
2749-
# "maxExpectedHeight": 80000, # TODO: Implement this parameter at EnvAnalysis Class
27502751
"surfaceDataFile": self.surfaceDataFile,
27512752
"pressureLevelDataFile": self.pressureLevelDataFile,
27522753
"atmosphericModelPressureProfile": organized_pressure_dict,

0 commit comments

Comments
 (0)