We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have this kml file: https://drive.google.com/file/d/0B6n-0chrqAAMbHhwRmwzSWFxNUU/edit?usp=sharing
When I run Simple-KML to parse it, I can the track and the schemaUrl, but not the gx:coord and timestamps. Any ideas why this is happening ?
Here is my code:
Document feature = (Document)kmlResult.getFeature(); for (Feature f : feature.getFeatureList()) { Placemark placemark = (Placemark)f; for (Geometry g : placemark.getGeometryList()) { if (g instanceof MultiTrack) { try { MultiTrack thisTrackSet = (MultiTrack)g; Log.d(TAG, thisTrackSet.getAltitudeMode()); Log.i(TAG, "number of tracks: " +thisTrackSet.getTrackList().size() ); for (Track t: thisTrackSet.getTrackList() ) { Log.i(TAG, "number of schemaUrl: " + t.getExtendedData().getSchemaDataList().size()); for (SchemaData url:t.getExtendedData().getSchemaDataList() ) { Log.d(TAG, "url: "+url.getSchemaUrl() ); } Log.i(TAG, t.getCoord() ); Log.i(TAG, t.getWhen()); counter++; } ....
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have this kml file:
https://drive.google.com/file/d/0B6n-0chrqAAMbHhwRmwzSWFxNUU/edit?usp=sharing
When I run Simple-KML to parse it, I can the track and the schemaUrl, but not the gx:coord and timestamps. Any ideas why this is happening ?
Here is my code:
The text was updated successfully, but these errors were encountered: