-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
274 refactor kmlpy #279
274 refactor kmlpy #279
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## develop #279 +/- ##
===========================================
- Coverage 93.05% 91.47% -1.59%
===========================================
Files 33 40 +7
Lines 4838 4574 -264
===========================================
- Hits 4502 4184 -318
- Misses 336 390 +54 ☔ View full report in Codecov by Sentry. |
Watermelon AI SummaryThis Pull Request introduces a significant refactoring of the codebase for a library that handles KML files, improving code structure for better maintainability and feature handling. It cleans up type annotations, enhances parsing mechanisms, and implements new classes to better manage elements like Regions and NetworkLinks, streamlining the handling of location and time-based data. GitHub PRs
Click here to login to Jira |
) | ||
k2 = kml.KML() | ||
k2.from_string(k.to_string()) | ||
k2 = kml.KML.class_from_string(k.to_string(), ns="") | ||
assert k.to_string() == k2.to_string() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR contains console logs. Please review or remove them.
PR Summary
|
No description provided.