First let's import our requirements
import vortexasdk as v
You'll need to enter your Vortexa API key when prompted.
# Let's load some positions for vessels with class "lng"
vesselPositions = v.VesselPositions().search(vessel_class="lng").to_df()
vesselPositions.head()
That's it! You've successfully loaded AIS vessel positions data using the Vortexa SDK. Check out https://vortechsa.github.io/python-sdk/ for more examples