Skip to content
Snippets Groups Projects
Select Git revision
  • 42d5d5b1d95b3e4941acb76ade3bf83177587743
  • main default protected
  • test-10rc4
  • test-pytango-10rc2
  • bassa-main-patch-68330
  • fix-hfd5-close-error
  • offer-ports-constant
  • fix-timestamps-refactor-matrix-construction
  • bugfixes
  • fix-bst-dimensions
  • fix-bsts
  • L2SS-1465-add-bst-metadata
  • L2SS-1464-add-antennafield-to-filename
  • L2SS-1451-simplify-cmdline
  • L2SS-1425-dont-rewrite-whole-dict
  • testing-specify-file
  • also-record-tilebeam-tracking-enabled
  • dont-modulo-16
  • remove-parse-device-attributes
  • support-higher-gn-indices
  • L2SS-1080_get_statistics_writer_package_version
  • v0.23
  • v0.22.3 protected
  • v0.22.dev4 protected
  • v0.22.dev3 protected
  • v0.22.2 protected
  • v0.22.1 protected
  • v0.22.dev2 protected
  • v0.22
  • v0.22.dev1 protected
  • v0.22.dev0 protected
  • v0.21
  • v0.21.dev6 protected
  • v0.21.dev5 protected
  • v0.21.dev4 protected
  • v0.21.dev3 protected
  • v0.21.dev2 protected
  • v0.21.dev1 protected
  • v0.21.dev0 protected
  • v0.20
  • v0.20.dev1 protected
41 results

test_file_reader.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    _version.py 1.37 KiB
    # -*- coding: utf-8 -*-
    #
    # This module stores the version and changelog
    
    # Version number
    __version__ = '1.4.2'
    
    # Change log
    def changelog():
        log = """
        LSMTool Changelog.
        -----------------------------------------------
    
        2019/10/01 - Version 1.4.2
    
            Fix to incorrect header on write
    
            Add meanshift grouping algorithm
    
        2019/04/12 - Version 1.4.1
    
            Fix installation on Python 3 systems
    
            Update GSM url
    
        2019/03/21 - Version 1.4.0
    
            Allow 2D images as masks in group operation
    
            Add TGSS and GSM VO queries
    
            Add option to apply beam attenuation during write
    
        2018/05/04 - Version 1.3.1
    
            Improve packaging support
    
        2018/05/03 - Version 1.3.0
    
            Add option to tessellate using patches
    
        2017/06/15 - Version 1.2.0
    
        2017/05/09
    
            Add a "pad_index" option to lsm.group() to allow the patch index to be
            padded with leading zeros
    
        2017/05/05
    
            Improve the "tessellate" grouping algorithm when negative fluxes are
            present
    
        2017/04/21
    
            Add support for LogarithmicSI column
    
            Add a "voronoi" option to lsm.group() to allow a previously grouped sky
            model to be regrouped using Voronoi tessellation
    
        2016/01/28 - Version 1.1.0
    
            Add support for FACTOR-formatted output
    
        2014/06/25 - Version 1.0.0 (initial release)
        """
    
        print(log)