void HipparcosTest::testWindow() { debug(LOG_DEBUG, DEBUG_LOG, 0, "testWindow() begin"); RaDec center(0, 0); center.ra().hours(6.75247702777777777777); center.dec().degrees(-16.71611583333333333333); Angle width; width.hours(1); Angle height; height.degrees(15); SkyWindow window(center, width, height); Catalog::starsetptr stars = catalog->find(window, MagnitudeRange(-30, 4.5)); debug(LOG_DEBUG, DEBUG_LOG, 0, "%d stars", stars->size()); CPPUNIT_ASSERT(stars->size() == 10); Catalog::starset::const_iterator s; for (s = stars->begin(); s != stars->end(); s++) { debug(LOG_DEBUG, DEBUG_LOG, 0, "%s", s->toString().c_str()); } debug(LOG_DEBUG, DEBUG_LOG, 0, "testWindow() end"); }
void HipparcosTest::testWindowIterator() { debug(LOG_DEBUG, DEBUG_LOG, 0, "testWindowIterator() begin"); RaDec center(0, 0); center.ra().hours(6.75247702777777777777); center.dec().degrees(-16.71611583333333333333); Angle width; width.hours(1); Angle height; height.degrees(15); SkyWindow window(center, width, height); CatalogIterator i = catalog->findIter(window, MagnitudeRange(-30, 4.5)); unsigned long long counter = 0; for (; !i.isEnd(); ++i) { counter++; Star s = *i; debug(LOG_DEBUG, DEBUG_LOG, 0, "%s", s.toString().c_str()); } CPPUNIT_ASSERT(counter == 10); debug(LOG_DEBUG, DEBUG_LOG, 0, "testWindowIterator() end"); }
Angle Angle::hms_to_angle(const std::string& hms) { Angle result; result.hours(angle_parser(hms).value()); return result; }