Skip to content

Commit

Permalink
updated weathergen
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Morris committed May 4, 2023
1 parent 4acf91d commit 10162bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion maria/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def __init__(self, array, pointing, site):
region=self.site.region,
seasonal=self.site.seasonal,
diurnal=self.site.diurnal,
altitude=self.site.altitude
)


Expand Down Expand Up @@ -165,7 +166,7 @@ def __init__(self, array, pointing, site, config=DEFAULT_LAM_CONFIG, verbose=Fal
self,
attr,
sp.interpolate.RegularGridInterpolator(
(self.weather.height, self.weather.time),
(self.weather.levels, self.weather.time),
getattr(self.weather, attr),
)((self.heights, self.pointing.unix[None])),
)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

setuptools.setup(
name="maria",
version="0.0.12",
description="Simulates atmospheric emission for ground-based telescopes",
version="0.2.0",
description="Simulate observations of ground-based millimeter and submillimeter telescopes.",
long_description=readme,
author="Thomas W. Morris",
author_email="[email protected]",
Expand Down

0 comments on commit 10162bb

Please sign in to comment.