Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 1 3

Pulling Live Vessel Information (inc. Filter) from Interactive Map

Hi,

I am looking to extract all the possible data of vessels (filtered by trade flows - only carrying LNG) from the interactive map using Python.

Is anybody able to suggest the best way to do this? I would be eternally grateful!

pythonapivessel
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hello @sooraj.soin ,

Thank you for your participation in the forum.

Is the reply below satisfactory in resolving your query?

If yes, please click the 'Accept' text next to the appropriate reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

-AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,
AHS

1 Answer

· Write an Answer
Upvotes
Accepted
17.2k 82 39 63

Hi @sooraj.soin

To get started, you can use the Search API within the Refinitiv Data Library for Python. Here is a relevant code sample:

response = search.Definition(
    view = search.SearchViews.VESSEL_PHYSICAL_ASSETS,
    filter="VesselStatus eq 'IN SERVICE' and RCSAssetTypeLeaf xeq 'LNG Tanker'",
    select="RIC, SynonymSearchAll, DTSource, LocationTimestamp, IMO,Latitude, \
            Longitude, LocationDestination"
).get_data()
response.data.df
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.