-
Historical Ports / Vessel data through API
Hello, I've been trying to pull some historical data about Ports using the API. This data is available through the Desktop app but I need to be able to do it programmatically. I've been digging around but couldn't find a solution. There could be 2 ways to approach the problem: Ports - I have seen a few old questions on the…
-
PORTS data pulled in API
I am trying to compile a list of all vessels that have left a list of ports. I have checked the 'PORTS' app. This works well but doesn't have origin port or commodity as columns in the result. I would like to pull this in Python too if that's easier. I have a list of 17 berths. I am trying to figure out how to generate a…
-
Can you return full arrival dataset for a specific port, similar to how the PORTS app works.
I would like to return a dataframe with all the vessel arrivals historically that have entered a given port. The PORTS app does this but is manual and only allows for 15,000 data points to be extracted.
-
Looking for all possible column headers for a script for Shipping Assets
I am trying to find all the possible column headers for a script but there doesn't seem to be any help finding what are the possible filters. Using Codebook and taking one of their examples on shipping and want to return a different set of columns on the dataframe but within codebook examples-> 06 - > Shipping, you find…
-
Match screening missing case reference
When screening vessels in batch, some vessels are missing case reference when the result returns. However, the case is created. This also happens when there is only one vessel in the batch. For example, then vessel "FINESSE NEW YORK" IMO: 907205 is never returned with caseId and caseSystemId. Why does this happen?
-
Is there a Eikon API to pull vessel tracking data from the interactive map?
I am looking to pull vessel information from interactive map through API? Is this possible?
-
Symbology conversion for vessel IMOs
Hi, I have a list of vessels for which I have the IMO numbers (more than 20,000 vessels) and I would like to get the RICs for these vessels. There seems to be no data item for Vessel RIC and hence Eikon Get Data functionality wont be helpful. RDP search for Vessel Physical assets can be one option but I am not sure how to…
-
Eikon Python API: Vessels arriving to specific port
Using Eikon Python Data API, is there a way I can programmatically calculate how many vessels (above 5000 GT) arrive to a specific port (for example Singapore) per day? Thanks in advance.
-
Vessels going through China eikon API Python
Hi, I tried to use the code below to get the vessels that go through china but I get the following error AttributeError: 'NoneType' object has no attribute '_get_endpoint_config' This is my code below import refinitiv.dataplatform as rdp #from refinitiv.data.content import search df = rdp.search( view =…
-
Vessel API Pull Issues
I have Eikon Commodities product, and am struggling with two issues: * Certain fields only populate on the earliest DateTime. * When I add certain RICS, I get an error message and the Tuple only returns a one row dataframe , in the example below I added the field “TR.AssetDestinationPortCountry” which triggered the error.…
-
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!
-
I'd like to know if you can help us with an API with some information about vessels. To explain i...
...t better, the idea is to input the IMO number of an vessel and Refinitiv return us the fields below Dear all, good day! I'd like to know if you can help us with an API with some information about vessels. To explain it better, the idea is to input the IMO number of an vessel and Refinitiv return us the fields below:…
-
[REST API] Vessel Physical Assets
Hello all, I am trying to select new columns for the new data available for the vessels voyages: Last trade flow information: Charterer, Commodity, Cargo Size, Rate, Load Port, Load Date, Discharge Port, Discharge Data, Status, Previous Port and Previous Port Duration. However, when we tried to insert on the select part…
-
How to know what filters are available for a search?
I want to select fields from vessels and I want to apply the same filters I applied in the desktop version. How could I know the names to the filters?
-
Getting CA.C fields via Eikon Data API
My goal is to get vessel-related fields from Eikon Data API given a list of IMOs. Currently, I have the following code (that is working): import eikon as ek fields = ['TR.AssetLocationDate','TR.AssetName', 'TR.AssetLocationLatitude','TR.AssetLocationLongitude', 'TR.AssetLocationDraught','TR.AssetLocationDraughtPercentage']…