Skip to content

Commit

Permalink
#66 Merge pull request from deshima-dev/astropenguin/issue65
Browse files Browse the repository at this point in the history
Fix weather information
  • Loading branch information
astropenguin authored Aug 9, 2024
2 parents fb07b42 + 3822162 commit b6240a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ da = MS.new(
| | lat_origin | Coordinate | Reference sky latitude | deg | 0.0 | numpy.ndarray | (time,) | float64 |
| | frame | Coordinate | Sky coordinate frame | - | "altaz" | numpy.ndarray | () | str (<U16) |
| Weather information | temperature | Coordinate | Ground atmospheric temperature | K | 0.0 | numpy.ndarray | (time,) | float64 |
| | pressure | Coordinate | Ground atmospheric pressure | Pa | 0.0 | numpy.ndarray | (time,) | float64 |
| | humidity | Coordinate | Ground relative humidity | 1 | 0.0 | numpy.ndarray | (time,) | float64 |
| | pressure | Coordinate | Ground atmospheric pressure | hPa | 0.0 | numpy.ndarray | (time,) | float64 |
| | humidity | Coordinate | Ground relative humidity | % | 0.0 | numpy.ndarray | (time,) | float64 |
| | wind_speed | Coordinate | Ground wind speed | m s^-1 | 0.0 | numpy.ndarray | (time,) | float64 |
| | wind_direction | Coordinate | Ground wind direction | deg | 0.0 | numpy.ndarray | (time,) | float64 |
| Data information | bandwidth | Coordinate | Effective channel bandwidth | Hz | 0.0 | numpy.ndarray | (chan,) | float64 |
Expand Down
2 changes: 1 addition & 1 deletion dems/d2.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class Temperature:
class Pressure:
data: Data[Ti, float]
long_name: Attr[str] = "Ground atmospheric pressure"
units: Attr[str] = "Pa"
units: Attr[str] = "hPa"


@dataclass
Expand Down

0 comments on commit b6240a4

Please sign in to comment.