我需要在此特定目录中搜索此坐标附近的对象。我正在尝试对其进行编码,因为我不仅拥有此对象,而且还有许多其他对象。
设置:
var clicked = false;
var cindex = 0;
var lastone = 0;
var index = 0;
var index2 = 0;
$('.td').click(function() {
clicked = true;
cindex = $(this).index();
$(this).addClass('highlight');
});
$('.td').hover(function() {
if(clicked) {
index = $(this).index();
if(index > cindex) {
$(this).addClass('highlight');
}
}
}, function () {
if(clicked) {
index2 = $(this).index();
if(index2 > lastone) {
//$('.td').removeClass('highlight');
}
}
});
运行它:
>>> from astropy.vo.client import conesearch
>>> from astropy.coordinates import SkyCoord
>>> from astropy import units as u
>>> db = 'SDSS DR8 - Sloan Digital Sky Survey Data Release 8 2'
>>> search_size = 1*u.deg
>>> c = SkyCoord(ra = 305.008942, dec = -0.975747, unit=u.deg)
我知道警告只是SDSS设置搜索方式的奇怪问题,它不会影响任何事情。我已经尝试了20度,仍然无法找到任何东西。这是错误的,因为我有20度的其他对象,他们找到了对象!