Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# Make sure the phrosty module can be found so we can document the API

sys.path.insert( 0, str( pathlib.Path( '..' ).resolve() ) )
autodoc_mock_imports = [ 'astropy', 'photutils', 'cupy', 'nvtx', 'matplotlib', 'galsim',
autodoc_mock_imports = [ 'astropy', 'cupy', 'galsim', 'matplotlib', 'numpy', 'nvtx', 'pandas', 'photutils',
'sfft', 'snpit_utils', 'snappl' ]


Expand Down
2 changes: 1 addition & 1 deletion phrosty/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def pointings_near_mjd(mjd, window=3, obseq_path=None):
return pointings


def get_mjd_info(mjd_start=-np.inf, mjd_end=np.inf, return_inverse=False, obseq_path=None):
def get_mjd_info(mjd_start=0, mjd_end=np.inf, return_inverse=False, obseq_path=None):
"""Get all pointings and corresponding filters between two MJDs.
Returns an astropy table with columns 'filter' and 'pointing'.
Expand Down
Loading