noctua.utils package

Submodules

noctua.utils.analysis module

Analysis-related functions

class noctua.utils.analysis.EllipticalMoffat(amplitude=2000, x_0=0, y_0=0, fwhm_x=9, fwhm_y=9, alpha=5, theta=0, **kwargs)[source]

Bases: Fittable2DModel

From: http://www.aspylib.com/doc/aspylib_fitting.html

alpha = Parameter('alpha', value=5.0, bounds=(None, 10))
amplitude = Parameter('amplitude', value=2000.0, bounds=(0, 65535))
static evaluate(x, y, amplitude, x_0, y_0, fwhm_x, fwhm_y, alpha, theta)[source]

Evaluate the model on some input variables.

fwhm_x = Parameter('fwhm_x', value=9.0)
fwhm_y = Parameter('fwhm_y', value=9.0)
param_names = ('amplitude', 'x_0', 'y_0', 'fwhm_x', 'fwhm_y', 'alpha', 'theta')

Names of the parameters that describe models of this type.

The parameters in this tuple are in the same order they should be passed in when initializing a model of a specific type. Some types of models, such as polynomial models, have a different number of parameters depending on some other property of the model, such as the degree.

When defining a custom model class the value of this attribute is automatically set by the ~astropy.modeling.Parameter attributes defined in the class body.

theta = Parameter('theta', value=0.0, bounds=(-1.5707963267948966, 1.5707963267948966))
x_0 = Parameter('x_0', value=0.0)
y_0 = Parameter('y_0', value=0.0)
class noctua.utils.analysis.Moffat2DXY(amplitude=2000, x_0=0, y_0=0, gamma_x=9, gamma_y=9, alpha=3, **kwargs)[source]

Bases: Fittable2DModel

alpha = Parameter('alpha', value=3.0)
amplitude = Parameter('amplitude', value=2000.0, bounds=(0, 65535))
static evaluate(x, y, amplitude, x_0, y_0, gamma_x, gamma_y, alpha)[source]

Evaluate the model on some input variables.

static fit_deriv(x, y, amplitude, x_0, y_0, gamma_x, gamma_y, alpha)[source]
gamma_x = Parameter('gamma_x', value=9.0)
gamma_y = Parameter('gamma_y', value=9.0)
param_names = ('amplitude', 'x_0', 'y_0', 'gamma_x', 'gamma_y', 'alpha')

Names of the parameters that describe models of this type.

The parameters in this tuple are in the same order they should be passed in when initializing a model of a specific type. Some types of models, such as polynomial models, have a different number of parameters depending on some other property of the model, such as the degree.

When defining a custom model class the value of this attribute is automatically set by the ~astropy.modeling.Parameter attributes defined in the class body.

x_0 = Parameter('x_0', value=0.0)
y_0 = Parameter('y_0', value=0.0)
noctua.utils.analysis.fit_star(data, fwhm=10, background_estimation=900, model='moffat', display=False)[source]
noctua.utils.analysis.skyflat_exptime(average_counts_per_exptime, expected_counts=50000, binning=1, repeat=20, min_exp=0.1, max_exp=60)[source]

Calculate the exptime of sky flat images to obtain a given number of expected counts. Based on Tyson&Gal

noctua.utils.check module

Collection of decorators to check several type of errors in specific types of functions.

noctua.utils.check.ascom_errors(func)[source]

Decorator for handling exceptions on a class method. Put it on top of the class method.

noctua.utils.check.content_errors(content)[source]

Decorator for handling exceptions. Put it on top of the content() method in the shinsapp class.

noctua.utils.check.meteo_errors(func)[source]

Decorator for handling exceptions on a class method. Put it on top of the class method.

noctua.utils.check.request_errors(func)[source]

Decorator for handling exceptions on a class method. Put it on top of the class method.

noctua.utils.check.socket_errors(func)[source]

Decorator for handling exceptions on a class method. Put it on top of the class method.

noctua.utils.check.telnet_errors(func)[source]

Decorator for handling exceptions on a class method. Put it on top of the class method.

noctua.utils.coordinates module

noctua.utils.data_access_object module

class noctua.utils.data_access_object.ObservationBlockObject(path)[source]

Bases: object

content(name)[source]
create(name)[source]
delete(name)[source]
read(filename)[source]
show(name)[source]
property todos
update(name, data=[])[source]
noctua.utils.data_access_object.guess(value)[source]

noctua.utils.logger module

Custom format log

noctua.utils.logger.main()[source]

Main function

noctua.utils.logger.mylog()[source]

logger function

noctua.utils.structure module

Functions managing the several directory names.

noctua.utils.structure.date_folder()[source]

Create a date folder string based on astronomical convention (changes at midday UTC).

noctua.utils.structure.fits_path(header, dry=False)[source]

Create a fits file path where the file will be stored

noctua.utils.structure.foc_path(timestamp, dry=False)[source]

Create the focus output text file name and its path

noctua.utils.structure.frame_folder(header)[source]

Create a folder depending on the image type in FITS header

noctua.utils.structure.log_path(dry=False)[source]

Returns the Path object for the log directory. Creates it if it doesn’t exist (unless dry=True).

noctua.utils.structure.save_filename(infile_path_str)[source]

Save a fits file in its path with an ESO-style filename.

noctua.utils.url_stuff module

Utilities related to URLs

noctua.utils.url_stuff.build_url(itn)[source]

Build an URL from info of a .ini file

Module contents

Utils