Open
Conversation
Co-authored-by: tbsalling <669154+tbsalling@users.noreply.github.com>
Co-authored-by: tbsalling <669154+tbsalling@users.noreply.github.com>
Co-authored-by: tbsalling <669154+tbsalling@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add new feature suggestion functionality
Add KML export for Google Earth visualization
Nov 1, 2025
Owner
|
@copilot Show a snippet of kml produced by this new exporter? |
Contributor
Author
Here's a sample KML output generated from two AIS vessels: <?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>AIS Vessel Tracks</name>
<description>Vessel positions from AIS data</description>
<Placemark>
<name>MMSI 576048000</name>
<description><![CDATA[
<b>MMSI:</b> 576048000<br/>
<b>Transponder Class:</b> A<br/>
<b>Position:</b> 37.912167, -122.422989<br/>
<b>Speed:</b> 6.6 knots<br/>
<b>Course:</b> 350.0°<br/>
<b>Heading:</b> 355°<br/>
<b>Last Update:</b> 2025-11-16T08:52:17.831436501Z<br/>
]]></description>
<Point>
<coordinates>-122.422989,37.912167,0</coordinates>
</Point>
</Placemark>
<Placemark>
<name>FOURTH QUARTER</name>
<description><![CDATA[
<b>MMSI:</b> 367524080<br/>
<b>Callsign:</b> WDG3250<br/>
<b>Vessel Name:</b> FOURTH QUARTER<br/>
<b>Ship Type:</b> Towing<br/>
<b>Transponder Class:</b> A<br/>
<b>Position:</b> 30.048880, -90.567841<br/>
<b>Speed:</b> 0.0 knots<br/>
<b>Course:</b> 226.3°<br/>
<b>Last Update:</b> 2025-11-16T08:52:17.824846429Z<br/>
<b>Dimensions:</b> Length 21m (Beam 8m)<br/>
]]></description>
<Point>
<coordinates>-90.567841,30.048880,0</coordinates>
</Point>
</Placemark>
</Document>
</kml>Each vessel is represented as a KML Placemark with:
The KML is compatible with Google Earth and other KML viewers. |
Owner
|
@copilot resolve merge conflicts |
Co-authored-by: tbsalling <669154+tbsalling@users.noreply.github.com>
Contributor
Author
Merge conflicts resolved in commit bc6e040. The conflicts were:
All 112 tests pass successfully after the merge. |
Owner
|
@copilot merge the master branch into this feature branch |
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Feature Implementation: KML Export for Google Earth
Implementing KML (Keyhole Markup Language) export functionality to visualize AIS vessel tracks in Google Earth, as mentioned in the project roadmap.
Implementation Plan:
Update module-info.java to export new package(module descriptor removed in master)Technical Details:
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.