You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kstars/kstars/tools/modcalcgalcoord.cpp

372 lines
8.7 KiB

/***************************************************************************
modcalcgal.cpp - description
-------------------
begin : Thu Jan 17 2002
copyright : (C) 2002 by Pablo de Vicente
email : vicente@oan.es
***************************************************************************/
/***************************************************************************
* *
* This program 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; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "dms.h"
#include "dmsbox.h"
#include "skypoint.h"
#include "modcalcgalcoord.h"
#include "modcalcgalcoord.moc"
#include "kstarsdatetime.h"
#include <tqradiobutton.h>
#include <tqstring.h>
#include <tqcheckbox.h>
#include <tqradiobutton.h>
#include <tqtextstream.h>
#include <tdelocale.h>
#include <klineedit.h>
#include <tdeapplication.h>
#include <tdefiledialog.h>
#include <tdemessagebox.h>
modCalcGalCoord::modCalcGalCoord(TQWidget *parentSplit, const char *name) : modCalcGalCoordDlg(parentSplit,name) {
equRadio->setChecked(TRUE);
raBox->setDegType(FALSE);
show();
}
modCalcGalCoord::~modCalcGalCoord() {
}
void modCalcGalCoord::getGalCoords (void) {
galLong = lgBox->createDms();
galLat = bgBox->createDms();
epoch = getEpoch( epochName->text() );
}
void modCalcGalCoord::getEquCoords (void) {
raCoord = raBox->createDms(FALSE);
decCoord = decBox->createDms();
epoch = getEpoch( epochName->text() );
}
double modCalcGalCoord::getEpoch (TQString eName) {
double epoch = eName.toDouble();
return epoch;
}
void modCalcGalCoord::slotClearCoords (void) {
raBox->clearFields();
decBox->clearFields();
lgBox->clearFields();
bgBox->clearFields();
}
void modCalcGalCoord::slotComputeCoords (void) {
if(galRadio->isChecked()) {
getGalCoords();
// checkEpoch();
GalToEqu();
showEquCoords();
} else {
getEquCoords();
// checkEpoch();
EquToGal();
showGalCoords();
}
}
void modCalcGalCoord::showEquCoords(void) {
raBox->show( raCoord , FALSE);
decBox->show( decCoord );
}
void modCalcGalCoord::showGalCoords(void) {
lgBox->show( galLong );
bgBox->show( galLat );
}
void modCalcGalCoord::GalToEqu(void) {
SkyPoint sp = SkyPoint();
sp.GalacticToEquatorial1950(&galLong, &galLat);
sp.set(*sp.ra(), *sp.dec() );
KStarsDateTime dt;
dt.setFromEpoch( epoch );
long double jdf = dt.djd();
sp.precessFromAnyEpoch(B1950,jdf);
raCoord.set( *sp.ra() );
decCoord.set( *sp.dec() );
}
void modCalcGalCoord::EquToGal(void) {
SkyPoint sp = SkyPoint (raCoord, decCoord);
KStarsDateTime dt;
dt.setFromEpoch( epoch );
long double jd0 = dt.djd();
sp.precessFromAnyEpoch(jd0,B1950);
sp.Equatorial1950ToGalactic(galLong, galLat);
}
void modCalcGalCoord::galCheck() {
galLatCheckBatch->setChecked(false);
galLatBoxBatch->setEnabled(false);
galLongCheckBatch->setChecked(false);
galLongBoxBatch->setEnabled(false);
galInputCoords = FALSE;
}
void modCalcGalCoord::equCheck() {
raCheckBatch->setChecked(false);
raBoxBatch->setEnabled(false);
decCheckBatch->setChecked(false);
decBoxBatch->setEnabled(false);
epochCheckBatch->setChecked(false);
galInputCoords = TRUE;
}
void modCalcGalCoord::slotRaCheckedBatch(){
if ( raCheckBatch->isChecked() ) {
raBoxBatch->setEnabled( false );
galCheck();
} else {
raBoxBatch->setEnabled( true );
}
}
void modCalcGalCoord::slotDecCheckedBatch(){
if ( decCheckBatch->isChecked() ) {
decBoxBatch->setEnabled( false );
galCheck();
} else {
decBoxBatch->setEnabled( true );
}
}
void modCalcGalCoord::slotEpochCheckedBatch(){
epochCheckBatch->setChecked(false);
if ( epochCheckBatch->isChecked() ) {
epochBoxBatch->setEnabled( false );
galCheck();
} else {
epochBoxBatch->setEnabled( true );
}
}
void modCalcGalCoord::slotGalLatCheckedBatch(){
if ( galLatCheckBatch->isChecked() ) {
galLatBoxBatch->setEnabled( false );
equCheck();
} else {
galLatBoxBatch->setEnabled( true );
}
}
void modCalcGalCoord::slotGalLongCheckedBatch(){
if ( galLongCheckBatch->isChecked() ) {
galLongBoxBatch->setEnabled( false );
equCheck();
} else {
galLongBoxBatch->setEnabled( true );
}
}
void modCalcGalCoord::slotInputFile() {
TQString inputFileName;
inputFileName = KFileDialog::getOpenFileName( );
InputLineEditBatch->setText( inputFileName );
}
void modCalcGalCoord::slotOutputFile() {
TQString outputFileName;
outputFileName = KFileDialog::getSaveFileName( );
OutputLineEditBatch->setText( outputFileName );
}
void modCalcGalCoord::slotRunBatch() {
TQString inputFileName;
inputFileName = InputLineEditBatch->text();
// We open the input file and read its content
if ( TQFile::exists(inputFileName) ) {
TQFile f( inputFileName );
if ( !f.open( IO_ReadOnly) ) {
TQString message = i18n( "Could not open file %1.").arg( f.name() );
KMessageBox::sorry( 0, message, i18n( "Could Not Open File" ) );
inputFileName = "";
return;
}
// processLines(&f);
TQTextStream istream(&f);
processLines(istream);
// readFile( istream );
f.close();
} else {
TQString message = i18n( "Invalid file: %1" ).arg( inputFileName );
KMessageBox::sorry( 0, message, i18n( "Invalid file" ) );
inputFileName = "";
InputLineEditBatch->setText( inputFileName );
return;
}
}
void modCalcGalCoord::processLines( TQTextStream &istream ) {
// we open the output file
// TQTextStream istream(&fIn);
TQString outputFileName;
outputFileName = OutputLineEditBatch->text();
TQFile fOut( outputFileName );
fOut.open(IO_WriteOnly);
TQTextStream ostream(&fOut);
TQString line;
TQString space = " ";
int i = 0;
SkyPoint sp;
dms raB, decB, galLatB, galLongB;
double epoch0B(0.0);
KStarsDateTime dt;
while ( ! istream.eof() ) {
line = istream.readLine();
line.stripWhiteSpace();
//Go through the line, looking for parameters
TQStringList fields = TQStringList::split( " ", line );
i = 0;
// Input coords are galactic coordinates:
if (galInputCoords) {
// Read Galactic Longitude and write in ostream if corresponds
if(galLongCheckBatch->isChecked() ) {
galLongB = dms::fromString( fields[i], TRUE);
i++;
} else
galLongB = galLongBoxBatch->createDms(TRUE);
if ( allRadioBatch->isChecked() )
ostream << galLongB.toDMSString() << space;
else
if(galLongCheckBatch->isChecked() )
ostream << galLongB.toDMSString() << space;
// Read Galactic Latitude and write in ostream if corresponds
if(galLatCheckBatch->isChecked() ) {
galLatB = dms::fromString( fields[i], TRUE);
i++;
} else
galLatB = galLatBoxBatch->createDms(TRUE);
if ( allRadioBatch->isChecked() )
ostream << galLatB.toDMSString() << space;
else
if(galLatCheckBatch->isChecked() )
ostream << galLatB.toDMSString() << space;
sp = SkyPoint ();
sp.GalacticToEquatorial1950(&galLongB, &galLatB);
ostream << sp.ra()->toHMSString() << space << sp.dec()->toDMSString() << epoch0B << endl;
// Input coords. are equatorial coordinates:
} else {
// Read RA and write in ostream if corresponds
if(raCheckBatch->isChecked() ) {
raB = dms::fromString( fields[i],FALSE);
i++;
} else
raB = raBoxBatch->createDms(FALSE);
if ( allRadioBatch->isChecked() )
ostream << raB.toHMSString() << space;
else
if(raCheckBatch->isChecked() )
ostream << raB.toHMSString() << space;
// Read DEC and write in ostream if corresponds
if(decCheckBatch->isChecked() ) {
decB = dms::fromString( fields[i], TRUE);
i++;
} else
decB = decBoxBatch->createDms();
if ( allRadioBatch->isChecked() )
ostream << decB.toDMSString() << space;
else
if(decCheckBatch->isChecked() )
ostream << decB.toDMSString() << space;
// Read Epoch and write in ostream if corresponds
if(epochCheckBatch->isChecked() ) {
epoch0B = fields[i].toDouble();
i++;
} else
epoch0B = getEpoch( epochBoxBatch->text() );
if ( allRadioBatch->isChecked() )
ostream << epoch0B << space;
else
if(epochCheckBatch->isChecked() )
ostream << epoch0B << space;
sp = SkyPoint (raB, decB);
dt.setFromEpoch( epoch0B );
long double jdf = dt.djd();
sp.precessFromAnyEpoch(B1950,jdf);
sp.Equatorial1950ToGalactic(galLongB, galLatB);
ostream << galLongB.toDMSString() << space << galLatB.toDMSString() << endl;
}
}
fOut.close();
}