@cquiroz/aladin-lite
Version:
AladinLite module
33 lines (32 loc) • 1.15 kB
JavaScript
// Copyright 2013 - UDS/CNRS
// The Aladin Lite program is distributed under the terms
// of the GNU General Public License version 3.
//
// This file is part of Aladin Lite.
//
// Aladin Lite is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 3 of the License.
//
// Aladin Lite is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// The GNU General Public License is available in COPYING file
// along with Aladin Lite.
//
/******************************************************************************
* Aladin Lite project
*
* File CooFrameEnum
*
* Author: Thomas Boch[CDS]
*
*****************************************************************************/
import { Projection } from './projection';
var ProjectionEnum = {
SIN: Projection.PROJ_SIN,
AITOFF: Projection.PROJ_AITOFF
};
export default ProjectionEnum;