Clear Filters
Clear Filters

How to convert AIS signal into ship trajectory images in MATLAB?

6 views (last 30 days)
I want to know that how to convert AIS signal into ship trajectory images i MATLAB? I have searched a lot but couldn't find any proper and accurate information regarding this. kindly plzz guide me.
Thanks in advance

Answers (1)

surya venu
surya venu on 11 Jun 2024
Hi,
Here is the offical MathWorks documentation on Ship Tracking using AIS Signals:
If you like to decode the AIS signals, make use of this AIS Decoder from File Exchange:
Here are the steps to create trajectory images:
Trajectory Creation:
  • Loop through AIS Data: Iterate through each AIS message in your data.
  • Create Trajectory Points: For each message, create a data point containing the extracted longitude, latitude, and timestamp.
  • Consider Time Intervals: You might want to consider the time interval between AIS messages. If positions are not received continuously, you can use interpolation techniques to create a smoother trajectory.
Image Generation:
  • Define Image Canvas: Set up a canvas image representing the geographical area you want to visualize. This could be a pre-defined map image or a blank image with appropriate scaling for latitude and longitude.
  • Plot Trajectory Points: Use MATLAB's plotting functions like "plot" or "scatter" to plot the extracted trajectory points on the image canvas. You can color-code the points based on timestamps or ship attributes for better visualization.
Hope it helps.

Categories

Find more on Geographic Plots in Help Center and File Exchange

Tags

Products


Release

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!