Replies: 1 comment
-
Hi,
Thanks for the suggestion and great improvement of KML export. It is OK to submit this modification. If you find any other metadata that can be exported in the KML format it will be ok also.
F.
… Le 16 juin 2023 à 09:10, Patrice Boissier ***@***.***> a écrit :
Hello everyone,
I have a request from colleagues for exports in KML format: the ability to add attributes to exported NODES. In particular the date of installation and end of the NODE.
This would make it possible to import the KMLs into a GIS tool like QGIS and simply make network maps by selecting, for example, only the stations that are still active.
It would consist of adding an ExtendedData section to the Placemark.
For example, the Placemark for the RVRG GNSS NODE:
<Placemark id="RDCRVRG">
<name>RVRG : "Rivals"</name>
<description><![CDATA[<i></i><br>Déformations / GNSS OVPF<br><small>(VIEW.GNSS.RDCRVRG)</small>]]></description>
<open>1</open>
<styleUrl>#webobs</styleUrl>
<Point><coordinates>55.711555,-21.253548,2240.0</coordinates></Point>
</Placemark>
Could become :
<Placemark id="RDCRVRG">
<name>RVRG : "Rivals"</name>
<ExtendedData>
<Data name="active">
<value>0</value>
</Data>
<Data name="start">
<value>2001-01-01</value>
</Data>
<Data name="end">
<value>2004-01-01</value>
</Data>
</ExtendedData>
<description><![CDATA[<i></i><br>Déformations / GNSS OVPF<br><small>(VIEW.GNSS.RDCRVRG)</small>]]></description>
<open>1</open>
<styleUrl>#webobs</styleUrl>
<Point><coordinates>55.711555,-21.253548,2240.0</coordinates></Point>
</Placemark>
I located the section of code to modify in nloc.pl and I can submit this evolution soon.
Before I start making an edit, is it OK for you? Would you see any other attributes to add? (the type of the NODE, its alias, etc.)
—
Reply to this email directly, view it on GitHub <#134>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AD2J63QXS4ITFY3R67BMNODXLQBGRANCNFSM6AAAAAAZI252UM>.
You are receiving this because you are subscribed to this thread.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I have a request from colleagues for exports in KML format: the ability to add attributes to exported NODES. In particular the date of installation and end of the NODE.
This would make it possible to import the KMLs into a GIS tool like QGIS and simply make network maps by selecting, for example, only the stations that are still active.
It would consist of adding an ExtendedData section to the Placemark.
For example, the Placemark for the RVRG GNSS NODE:
Could become :
I located the section of code to modify in nloc.pl and I can submit this evolution soon.
Before I start making an edit, is it OK for you? Would you see any other attributes to add? (the type of the NODE, its alias, etc.)
Beta Was this translation helpful? Give feedback.
All reactions