SourceXtractorPlusPlus 0.18
SourceXtractor++, the next generation SExtractor
__init__.py
Go to the documentation of this file.
1# -*- coding: utf-8 -*-
2
3# Copyright © 2019 Université de Genève, LMU Munich - Faculty of Physics, IAP-CNRS/Sorbonne Université
4#
5# This library is free software; you can redistribute it and/or modify it under
6# the terms of the GNU Lesser General Public License as published by the Free
7# Software Foundation; either version 3.0 of the License, or (at your option)
8# any later version.
9#
10# This library is distributed in the hope that it will be useful, but WITHOUT
11# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13# details.
14#
15# You should have received a copy of the GNU Lesser General Public License
16# along with this library; if not, write to the Free Software Foundation, Inc.,
17# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18from .measurement_images import (load_fits_images, print_measurement_images, load_fits_image,
19 ImageGroup, ByKeyword, ByPattern, MeasurementImage,
20 MeasurementGroup, FitsFile)
21from .model_fitting import (RangeType, Range, Unbounded, print_parameters, ConstantParameter,
22 FreeParameter, DependentParameter,get_pos_parameters,
23 FluxParameterType, get_flux_parameter, add_model,
24 ConstantModel, PointSourceModel, SersicModel, ExponentialModel,
25 DeVaucouleursModel, ComputeGraphModel, print_model_fitting_info, add_prior, set_max_iterations,
26 pixel_to_world_coordinate, radius_to_wc_angle, get_separation_angle, get_position_angle,
27 get_world_position_parameters, get_world_parameters,
28 set_modified_chi_squared_scale, set_engine, use_iterative_fitting, set_meta_iterations,
29 set_deblend_factor, set_meta_iteration_stop)
30
31from .aperture import *
32from .output import (add_output_column, print_output_columns)
33from .argv import *