Cruise Trajectory

https://colab.research.google.com/assets/colab-badge.svg https://mybinder.org/badge_logo.svg
cruise_trajectory(cruiseName)

Returns a dataframe containing the trajectory of the specified cruise.


Parameters:
cruiseName: string

The official cruise name. If applicable, you may also use cruise “nickname” (‘Diel’, ‘Gradients_1’ …). A full list of cruise names can be retrieved using cruise method.

Returns:

Pandas dataframe.


Example

#!pip install pycmap -q     #uncomment to install pycmap, if necessary

import pycmap

api = pycmap.API(token='<YOUR_API_KEY>')
api.cruise_trajectory('KM1513')
../../../../_images/sql.png

SQL Statement

Here is how to achieve the same results using a direct SQL statement. Please refer to Query for more information.

EXEC uspCruiseTrajectoryByName 'Cruise Official Name'

Example:

EXEC uspCruiseTrajectoryByName 'KM1513'