@@ -176,7 +176,7 @@ def ephemerides_async(self, airmass_lessthan=99,
176176 closest_apparition = False , no_fragments = False ,
177177 quantities = conf .eph_quantities ,
178178 get_query_payload = False ,
179- get_raw_response = False , cache = True ,
179+ cache = True ,
180180 extra_precision = False ):
181181 """
182182 Query JPL Horizons for ephemerides.
@@ -480,10 +480,6 @@ def ephemerides_async(self, airmass_lessthan=99,
480480 When set to `True` the method returns the HTTP request parameters as
481481 a dict, default: False
482482
483- get_raw_response : boolean, optional
484- Return raw data as obtained by JPL Horizons without parsing the data
485- into a table, default: False
486-
487483 extra_precision : boolean, optional
488484 Enables extra precision in RA and DEC values; default: False
489485
@@ -614,10 +610,6 @@ def ephemerides_async(self, airmass_lessthan=99,
614610 if get_query_payload :
615611 return request_payload
616612
617- # set return_raw flag, if raw response desired
618- if get_raw_response :
619- self .return_raw = True
620-
621613 # query and parse
622614 response = self ._request ('GET' , self .server_url , params = request_payload ,
623615 timeout = self .TIMEOUT , cache = cache )
@@ -637,7 +629,7 @@ def elements_async(self, get_query_payload=False,
637629 refplane = 'ecliptic' ,
638630 tp_type = 'absolute' ,
639631 closest_apparition = False , no_fragments = False ,
640- get_raw_response = False , cache = True ):
632+ cache = True ):
641633 """
642634 Query JPL Horizons for osculating orbital elements.
643635
@@ -728,10 +720,6 @@ def elements_async(self, get_query_payload=False,
728720 When set to ``True`` the method returns the HTTP request parameters
729721 as a dict, default: False
730722
731- get_raw_response: boolean, optional
732- Return raw data as obtained by JPL Horizons without parsing the data
733- into a table, default: False
734-
735723
736724 Returns
737725 -------
@@ -830,10 +818,6 @@ def elements_async(self, get_query_payload=False,
830818 if get_query_payload :
831819 return request_payload
832820
833- # set return_raw flag, if raw response desired
834- if get_raw_response :
835- self .return_raw = True
836-
837821 # query and parse
838822 response = self ._request ('GET' , self .server_url , params = request_payload ,
839823 timeout = self .TIMEOUT , cache = cache )
@@ -850,7 +834,7 @@ def elements_async(self, get_query_payload=False,
850834
851835 def vectors_async (self , get_query_payload = False ,
852836 closest_apparition = False , no_fragments = False ,
853- get_raw_response = False , cache = True ,
837+ cache = True ,
854838 refplane = 'ecliptic' , aberrations = 'geometric' ,
855839 delta_T = False ,):
856840 """
@@ -933,10 +917,6 @@ def vectors_async(self, get_query_payload=False,
933917 When set to `True` the method returns the HTTP request parameters as
934918 a dict, default: False
935919
936- get_raw_response: boolean, optional
937- Return raw data as obtained by JPL Horizons without parsing the data
938- into a table, default: False
939-
940920 refplane : string
941921 Reference plane for all output quantities: ``'ecliptic'`` (ecliptic
942922 and mean equinox of reference epoch), ``'earth'`` (Earth mean
@@ -1074,10 +1054,6 @@ def vectors_async(self, get_query_payload=False,
10741054 if get_query_payload :
10751055 return request_payload
10761056
1077- # set return_raw flag, if raw response desired
1078- if get_raw_response :
1079- self .return_raw = True
1080-
10811057 # query and parse
10821058 response = self ._request ('GET' , self .server_url , params = request_payload ,
10831059 timeout = self .TIMEOUT , cache = cache )
0 commit comments