Skip to content
Snippets Groups Projects
Select Git revision
  • 123d2767d7402d1c1b390c69da18be513b25c1bb
  • master default protected
  • ingest_info
  • optimize_workflow
  • releases/v5.1 protected
  • releases/v5.1rc1 protected
  • reverse_versions
  • poppy_integration_v50
  • poppy_integration
  • releases/v5.0 protected
  • use-versioned-releases
  • releases/v5.0rc2 protected
  • releases/v5.0rc1 protected
  • releases/ldv_v407_atdb protected
  • ldv_v407_debug
  • releases/ldv_v406_debug protected
  • releases/ldv_v405 protected
  • releases/ldv_v404 protected
  • v5.1
  • v5.0
  • v5.0rc2
  • v5.0rc1
  • ldv_v406_debug
  • ldv_v405_debug
  • ldv_v404
  • ldv_v403
  • ldv_v402
  • v4.0
  • ldv_v401
  • ldv_v40
  • ldv_v031
  • ldv_v03
  • ldv_v01
33 results

dp3concat.cwl

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)