07-14-2022 02:01 AM
I want to integrate the offline map along with the object's trajectory on the offline map. So can anyone help me with this?
07-14-2022 06:55 AM
something like this?
07-14-2022 08:37 AM
I want to do something like this. Can you help me with this
07-14-2022 06:34 PM - edited 07-14-2022 06:35 PM
@Ajayravi wrote:
I want to do something like this. Can you help me with this
Sounds like a fun project, Have you written any code yet?
07-15-2022 01:14 AM
I tried using a static map image and plotting it on the XY graph but that's not the exact way I wanted. As I want the lat and long to be plotted on the map
07-15-2022 01:55 AM
Does anyone knows how to open an OSM file on LabVIEW
07-15-2022 05:23 AM
@Ajayravi wrote:
Does anyone knows how to open an OSM file on LabVIEW
open an osm file as binary or as ASCII or .. ?
you need to describe your project/your task in more detail
08-02-2022 01:09 AM
sorry for the late reply. I have downloaded an osm file of a particular area, now I want to open that in LabVIEW but I am not sure how to do. So if you can help me out with this that would be very grateful
08-02-2022 04:44 AM - edited 08-02-2022 04:56 AM
OSM is the OpenStreetMap file format. It is XML based so you could indeed open it in LabVIEW and parse it as XML file. A very fun and time intensive project in itself already! 😁
But you probably do not want to go that low level. The next best thing is likely to find a library, likely as .Net interface, alternatingly as ActiveX interface if it absolutely has to be, and access that from LabVIEW with the according nodes.
You can find a list of API libraries and frameworks that can deal with OSM files here: https://wiki.openstreetmap.org/wiki/Frameworks
For use in LabVIEW the OsmAPIClient is probably the most likely candidate you want to investigate. But don't expect an install-point-and-click experience. This is a .Net API for which you will have to create the LabVIEW bindings first before you can start doing your first baby steps in trying to use your OSM file in LabVIEW.
Higher level APIs that may be interesting to look into for use in LabVIEW:
- BruTile
- libosmscout will require to interface through Call Library Node and potentially do some work on the C++ programming side to make the shared library interface more LabVIEW friendly
- OSMSharp
For these too, would you have to create LabVIEW bindings first, either through .Net nodes or the Call Library Node
08-02-2022 08:56 AM
Okay, thank you for the information. I will try it out!