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!
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
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!
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