Changeset 2356


Ignore:
Timestamp:
12/01/11 20:05:36 (12 years ago)
Author:
Takeshi Nakazato
Message:

New Development: Yes

JIRA Issue: Yes CAS-2816

Ready for Test: No

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Defined new class STGrid and its python interface.
The STGrid class performs single dish gridding.
At the moment, only single polarization data is supported.


Location:
trunk
Files:
4 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/CMakeLists.txt

    r2155 r2356  
    3838     ${PYTHONDIR}/simplelinefinder.py
    3939     ${PYTHONDIR}/utils.py
     40     ${PYTHONDIR}/asapgrid.py
    4041     ${PYTHONDIR}/svninfo.txt )
    4142
  • trunk/python/__init__.py

    r1875 r2356  
    5252from opacity import skydip
    5353from opacity import model as opacity_model
     54from asapgrid import asapgrid
    5455from _asap import srctype
    5556
  • trunk/src/CMakeLists.txt

    r2321 r2356  
    5858     ${SRCDIR}/AsapLogSink.cpp
    5959     ${SRCDIR}/STUpgrade.cpp
     60     ${SRCDIR}/STGrid.cpp
    6061     ${SRCDIR}/Templates.cpp )
    6162
     
    7879     ${SRCDIR}/python_MSWriter.cpp
    7980     ${SRCDIR}/python_LogSink.cpp
     81     ${SRCDIR}/python_STGrid.cpp
    8082     ${SRCDIR}/python_asap.cpp )
    8183
  • trunk/src/python_asap.cpp

    r1974 r2356  
    8484  asap::python::python_STAtmosphere();
    8585  asap::python::python_SrcType();
     86  asap::python::python_STGrid();
    8687
    8788#ifndef HAVE_LIBPYRAP
  • trunk/src/python_asap.h

    r2163 r2356  
    5252    void python_STAtmosphere();
    5353    void python_SrcType();
     54    void python_STGrid();
    5455
    5556  } // python
Note: See TracChangeset for help on using the changeset viewer.