@@ -176,7 +176,7 @@ def ephemerides_async(self, airmass_lessthan=99,
176
176
closest_apparition = False , no_fragments = False ,
177
177
quantities = conf .eph_quantities ,
178
178
get_query_payload = False ,
179
- get_raw_response = False , cache = True ,
179
+ cache = True ,
180
180
extra_precision = False ):
181
181
"""
182
182
Query JPL Horizons for ephemerides.
@@ -480,10 +480,6 @@ def ephemerides_async(self, airmass_lessthan=99,
480
480
When set to `True` the method returns the HTTP request parameters as
481
481
a dict, default: False
482
482
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
-
487
483
extra_precision : boolean, optional
488
484
Enables extra precision in RA and DEC values; default: False
489
485
@@ -614,10 +610,6 @@ def ephemerides_async(self, airmass_lessthan=99,
614
610
if get_query_payload :
615
611
return request_payload
616
612
617
- # set return_raw flag, if raw response desired
618
- if get_raw_response :
619
- self .return_raw = True
620
-
621
613
# query and parse
622
614
response = self ._request ('GET' , self .server_url , params = request_payload ,
623
615
timeout = self .TIMEOUT , cache = cache )
@@ -637,7 +629,7 @@ def elements_async(self, get_query_payload=False,
637
629
refplane = 'ecliptic' ,
638
630
tp_type = 'absolute' ,
639
631
closest_apparition = False , no_fragments = False ,
640
- get_raw_response = False , cache = True ):
632
+ cache = True ):
641
633
"""
642
634
Query JPL Horizons for osculating orbital elements.
643
635
@@ -728,10 +720,6 @@ def elements_async(self, get_query_payload=False,
728
720
When set to ``True`` the method returns the HTTP request parameters
729
721
as a dict, default: False
730
722
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
-
735
723
736
724
Returns
737
725
-------
@@ -830,10 +818,6 @@ def elements_async(self, get_query_payload=False,
830
818
if get_query_payload :
831
819
return request_payload
832
820
833
- # set return_raw flag, if raw response desired
834
- if get_raw_response :
835
- self .return_raw = True
836
-
837
821
# query and parse
838
822
response = self ._request ('GET' , self .server_url , params = request_payload ,
839
823
timeout = self .TIMEOUT , cache = cache )
@@ -850,7 +834,7 @@ def elements_async(self, get_query_payload=False,
850
834
851
835
def vectors_async (self , get_query_payload = False ,
852
836
closest_apparition = False , no_fragments = False ,
853
- get_raw_response = False , cache = True ,
837
+ cache = True ,
854
838
refplane = 'ecliptic' , aberrations = 'geometric' ,
855
839
delta_T = False ,):
856
840
"""
@@ -933,10 +917,6 @@ def vectors_async(self, get_query_payload=False,
933
917
When set to `True` the method returns the HTTP request parameters as
934
918
a dict, default: False
935
919
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
-
940
920
refplane : string
941
921
Reference plane for all output quantities: ``'ecliptic'`` (ecliptic
942
922
and mean equinox of reference epoch), ``'earth'`` (Earth mean
@@ -1074,10 +1054,6 @@ def vectors_async(self, get_query_payload=False,
1074
1054
if get_query_payload :
1075
1055
return request_payload
1076
1056
1077
- # set return_raw flag, if raw response desired
1078
- if get_raw_response :
1079
- self .return_raw = True
1080
-
1081
1057
# query and parse
1082
1058
response = self ._request ('GET' , self .server_url , params = request_payload ,
1083
1059
timeout = self .TIMEOUT , cache = cache )
0 commit comments