1from __future__ import absolute_import
2# This file is part of the Astrometry.net suite.
3# Licensed under a 3-clause BSD style license - see LICENSE
4from .common import *
5from .dr9 import *
6
7class DR10(DR9):
8
9    def __init__(self, **kwargs):
10        '''
11        Useful kwargs:
12
13        basedir : (string) - local directory where data will be stored.
14        '''
15        super(DR9, self).__init__(**kwargs)
16        self.dasurl = 'http://data.sdss3.org/sas/dr10/boss/'
17
18    def getDRNumber(self):
19        return 10
20
21    def _get_runlist_filename(self):
22        return self._get_data_file('runList-dr10.par')
23
24