Akarsh Simha | 3 Feb 16:44
Picon
Gravatar

KDE/kdeedu/kstars/kstars

SVN commit 920679 by asimha:

Applying Alexey Khudiakov's patch, making usability improvements to
the FOV Editor:

+ Telescope eyepiece apparent fields are now measured in Degrees
  instead of arcminutes.

+ Make the Eyepiece tab default

Thanks Alexey!

CCMAIL: kstars-devel <at> kde.org

 M  +1 -1      fovdialog.cpp  
 M  +2 -2      newfov.ui  

--- trunk/KDE/kdeedu/kstars/kstars/fovdialog.cpp #920678:920679
@@ -256,7 +256,7 @@

 void NewFOV::slotComputeFOV() {
     if ( sender() == ui->ComputeEyeFOV && ui->TLength1->value() > 0.0 ) {
-        ui->FOVEditX->setText( QString::number( (double) ui->EyeFOV->value() * ui->EyeLength->value() /
ui->TLength1->value(), 'f', 2 ).replace( '.', KGlobal::locale()->decimalSymbol() ) );
+        ui->FOVEditX->setText( QString::number( 60.0 * ui->EyeFOV->value() * ui->EyeLength->value() /
ui->TLength1->value(), 'f', 2 ).replace( '.', KGlobal::locale()->decimalSymbol() ) );
         ui->FOVEditY->setText( ui->FOVEditX->text() );
     }
     else if ( sender() == ui->ComputeCameraFOV && ui->TLength2->value() > 0.0 ) {
--- trunk/KDE/kdeedu/kstars/kstars/newfov.ui #920678:920679
(Continue reading)

Akarsh Simha | 3 Feb 17:21
Picon
Gravatar

www/sites/edu/kstars

SVN commit 920697 by asimha:

Updating the KStars feature list on the website.

CCMAIL: kstars-devel <at> kde.org

 M  +20 -3     index.php  

--- trunk/www/sites/edu/kstars/index.php #920696:920697
@@ -65,9 +65,26 @@
 	<li>Downloadable catalogs including Messier Images, Abell Planetary Nebulae</li>
     </ul>
     </li>
-    <li>Internet links for further information / pictures</li>
-    <li>Support for non-western sky cultures</li>
-    <li>
+    <li>Corrections for precession, nutation and atmospheric refraction</li>
+    <li>Tools for retrieval of data from Online Databases</li>
+    <li>Scriptable actions using D-Bus</li>
+    <li>Features for Educators and Students:
+    <ul>
+        <li>Adjustable simulation speed in order to view phenomena that happen over long timescales</li>
+	<li>KStars Astrocalculator to access some of the internal calculations of KStars, and also to predict
conjunctions etc</li>
+	<li>Astroinfo project to help facilitate learning with the aid of KStars</li>
+	<li>Internet links for further information / pictures of objects</li>
+    </ul>
+    </li>
+    <li>Features for Amateur Astronomers:
+    <ul>
(Continue reading)

Akarsh Simha | 3 Feb 20:43
Picon
Gravatar

KDE/kdeedu/kstars/kstars

SVN commit 920788 by asimha:

Making StarComponent a singleton. This makes parts of the code more
elegant.

CCMAIL: kstars-devel <at> kde.org

 M  +1 -1      finddialog.cpp  
 M  +2 -1      skycomponents/constellationlines.cpp  
 M  +1 -1      skycomponents/skymapcomposite.cpp  
 M  +0 -1      skycomponents/skymapcomposite.h  
 M  +10 -0     skycomponents/starcomponent.cpp  
 M  +15 -2     skycomponents/starcomponent.h  

--- trunk/KDE/kdeedu/kstars/kstars/finddialog.cpp #920787:920788
@@ -240,7 +240,7 @@
             // Looks like the user is looking for a HD star
             if( ok ) {
                 KStars *p = (KStars*)parent();
-                obj = p->data()->skyComposite()->getStarComponent()->findByHDIndex( HD );
+                obj = StarComponent::Instance()->findByHDIndex( HD );
             }
         }
     }
--- trunk/KDE/kdeedu/kstars/kstars/skycomponents/constellationlines.cpp #920787:920788
@@ -29,6 +29,7 @@
 #include "ksutils.h"
 #include "skyobject.h"
 #include "starobject.h"
+#include "starcomponent.h"
(Continue reading)

Akarsh Simha | 4 Feb 16:22
Picon
Gravatar

KDE/kdeedu/kstars/kstars/skycomponents

SVN commit 921118 by asimha:

Code quality improvements and a (rather critical) bugfix.

+ Removing old commented code that is no longer required

+ DeepStarComponent now uses functions used to find out star sizes and
  the limiting magnitude from StarComponent. This not only reduces
  code duplication but removes a critical bug where the star sizes
  were not in proportion with their magnitude, but would vary from
  catalog to catalog.

CCMAIL: kstars-devel <at> kde.org

 M  +3 -45     deepstarcomponent.cpp  
 M  +63 -57    starcomponent.cpp  
 M  +11 -1     starcomponent.h  

--- trunk/KDE/kdeedu/kstars/kstars/skycomponents/deepstarcomponent.cpp #921117:921118
@@ -174,6 +174,7 @@
     SkyMap *map = SkyMap::Instance();
     KStarsData* data = KStarsData::Instance();
     UpdateID updateID = data->updateID();
+    StarComponent *sc = StarComponent::Instance();

     float radius = map->fov();
     if ( radius > 90.0 ) radius = 90.0;
@@ -193,32 +194,8 @@
     double lgz = log10(Options::zoomFactor());
     // TODO: Enable hiding of faint stars
(Continue reading)

Akarsh Simha | 7 Feb 23:48
Picon
Gravatar

[X-POST] Question about Coma Diameters of Comets

Hi

Could someone provide me with an approximate relation that gives an
estimate for the diameter of a comet's coma?

I found a relation that gives me the nuclear diameter here:
http://articles.adsabs.harvard.edu/full/gif/1978BAICz..29..103K/0000113.000.html

I need this to calculate comet angular diameters in KStars, to make
the display more realistic.

Cartes du Ciel does display estimated angular diameters, but the
source code reads 'Personal formula based on experience'. I wanted to
know if I could find a more concrete formula.

Any other inputs - like estimates for dust tail / ion tail lengths etc
will be appreciated.

Thanks.

Regards
Akarsh
Prakash Mohan | 8 Feb 01:34
Picon
Gravatar

[Patch]Fixing the bug on Whats up tonight dialog box

Hey,

This patch fixes the erroneous display of 118n_plural_argument_missing
in the Night Duration.

Cheers,
Prakash

-- 
Prakash
Undergraduate Student
Department of Aerospace Engineering
Indian Institute Of Technology Madras
Index: wutdialog.cpp
===================================================================
--- wutdialog.cpp	(revision 922944)
+++ wutdialog.cpp	(working copy)
@@ -167,7 +167,7 @@

     WUT->SunSetLabel->setText( i18n( "Sunset: %1" , sSet) );
     WUT->SunRiseLabel->setText( i18n( "Sunrise: %1" , sRise) );
-    WUT->NightDurationLabel->setText( i18np( "Night duration: 1 hour", "Night duration: %1 hours",
sDuration ) );
+    WUT->NightDurationLabel->setText( i18n("Night duration: %1 hours", sDuration ) );

     // moon almanac information
     KSMoon *oMoon = (KSMoon*) kstars->data()->objectNamed( "Moon" );
(Continue reading)

Akarsh Simha | 8 Feb 02:00
Picon
Gravatar

KDE/kdeedu/kstars/kstars/tools

SVN commit 923013 by asimha:

Applying Prakash's patch fixing a wrong i18np call in the What's up
tonight dialog.

CCMAIL: kstars-devel <at> kde.org

 M  +1 -1      wutdialog.cpp  

--- trunk/KDE/kdeedu/kstars/kstars/tools/wutdialog.cpp #923012:923013
@@ -167,7 +167,7 @@

     WUT->SunSetLabel->setText( i18n( "Sunset: %1" , sSet) );
     WUT->SunRiseLabel->setText( i18n( "Sunrise: %1" , sRise) );
-    WUT->NightDurationLabel->setText( i18np( "Night duration: 1 hour", "Night duration: %1 hours",
sDuration ) );
+    WUT->NightDurationLabel->setText( i18n("Night duration: %1 hours", sDuration ) );

     // moon almanac information
     KSMoon *oMoon = (KSMoon*) kstars->data()->objectNamed( "Moon" );
Prakash Mohan | 8 Feb 02:07
Picon
Gravatar

[Patch] Removing some ambiguity in the Whats up Tonight dialog box

Hey,
       This adds a display of date to the Sunrise, sunset, moonrise,
and moonset to remove any possible confusion as just times were being
displayed beforehand.

Cheers,
Prakash
-- 
Prakash
Undergraduate Student
Department of Aerospace Engineering
Indian Institute Of Technology Madras
Index: kstars/kstars/tools/wutdialog.cpp
===================================================================
--- kstars/kstars/tools/wutdialog.cpp	(revision 923013)
+++ kstars/kstars/tools/wutdialog.cpp	(working copy)
@@ -165,8 +165,8 @@
         sDuration = KGlobal::locale()->formatTime( tDur );
     }

-    WUT->SunSetLabel->setText( i18n( "Sunset: %1" , sSet) );
-    WUT->SunRiseLabel->setText( i18n( "Sunrise: %1" , sRise) );
+    WUT->SunSetLabel->setText( i18n( "Sunset: %1 on %2" , sSet, KGlobal::locale()->formatDate(
Evening.date(), KLocale::LongDate) ) );
+    WUT->SunRiseLabel->setText( i18n( "Sunrise: %1 on %2" , sRise, KGlobal::locale()->formatDate(
Tomorrow.date(), KLocale::LongDate) ) );
     WUT->NightDurationLabel->setText( i18n("Night duration: %1 hours", sDuration ) );

(Continue reading)

JeaMY Lee | 8 Feb 13:10
Picon

Re: [X-POST] Question about Coma Diameters of Comets

hello,
> Hi
>
> Could someone provide me with an approximate relation that gives an
> estimate for the diameter of a comet's coma?
try this one from guide:
http://www.projectpluto.com/update7b.htm#comet_tail_formula
hth
--

-- 
.mostly harmless
 jeamy
 http://jeamy.werk1.at/
Akarsh Simha | 8 Feb 16:28
Picon
Gravatar

Re: [X-POST] Question about Coma Diameters of Comets


> try this one from guide:
> http://www.projectpluto.com/update7b.htm#comet_tail_formula
> hth

Thanks a million, Jeamy. I'll implement this sometime soon.

I've downloaded the MPCreader generated comets.dat from your website,
and I'll do all the checks (magnitude, coma diameter, position)
shortly.

Regards
Akarsh

Gmane