Skip to content
Snippets Groups Projects
Select Git revision
  • ce11abce4d3ebdf24dba017200407ff18d9e55ea
  • master default protected
  • L2SS-1914-fix_job_dispatch
  • TMSS-3170
  • TMSS-3167
  • TMSS-3161
  • TMSS-3158-Front-End-Only-Allow-Changing-Again
  • TMSS-3133
  • TMSS-3319-Fix-Templates
  • test-fix-deploy
  • TMSS-3134
  • TMSS-2872
  • defer-state
  • add-custom-monitoring-points
  • TMSS-3101-Front-End-Only
  • TMSS-984-choices
  • SDC-1400-Front-End-Only
  • TMSS-3079-PII
  • TMSS-2936
  • check-for-max-244-subbands
  • TMSS-2927---Front-End-Only-PXII
  • Before-Remove-TMSS
  • LOFAR-Release-4_4_318 protected
  • LOFAR-Release-4_4_317 protected
  • LOFAR-Release-4_4_316 protected
  • LOFAR-Release-4_4_315 protected
  • LOFAR-Release-4_4_314 protected
  • LOFAR-Release-4_4_313 protected
  • LOFAR-Release-4_4_312 protected
  • LOFAR-Release-4_4_311 protected
  • LOFAR-Release-4_4_310 protected
  • LOFAR-Release-4_4_309 protected
  • LOFAR-Release-4_4_308 protected
  • LOFAR-Release-4_4_307 protected
  • LOFAR-Release-4_4_306 protected
  • LOFAR-Release-4_4_304 protected
  • LOFAR-Release-4_4_303 protected
  • LOFAR-Release-4_4_302 protected
  • LOFAR-Release-4_4_301 protected
  • LOFAR-Release-4_4_300 protected
  • LOFAR-Release-4_4_299 protected
41 results

CMakeLists.txt

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)