Hi friends,
I have queried a particular ship's RIC based on its IMO in the python language like so:
RIC_code = ek.get_symbology("9040455", from_symbol_type="IMO", to_symbol_type="RIC")
RIC_code
the response is
RIC9040455C}KM7309468913
But when I use the returned RIC in a subsequent query
data2 = ek.get_timeseries('C}KM7309468913', # the RIC
fields='*', # all fields
start_date='2019-09-01', # start date
end_date='2019-10-31') # end date
I get an error response :
Error with C}KM7309468913: Invalid RIC C}KM7309468913: Invalid RIC | .
Is there a way to get past this to the data I want?
Thank you.