GPS Device not able to read xml files

 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers GPS Device not able to read xml files
# 8  
Old 06-27-2017
Again, this is not xml. How did it get that extension? Who sent / created it? Do you have other files? A very simple one, mayhap?
# 9  
Old 06-27-2017
The file showed as .xml. I assume Uplay created it initially, then Callaway when they took over. I am attaching more files that are associated with the "new" unit.
# 10  
Old 06-27-2017
As an aside: Please note

Handheld gps receivers can read GPX files (geocaching files ) commonly and some other proprietary files that are in xml format.

They cannot read them all, the interpretive programming is hardcoded. Proprietary external software is need to preprocess the xml file so it becomes readable. GPSbabel and GPSexpert, for exsamples, convert GPX files back and forth to dozens of completely proprietary formats, including xml. They allow you to move data from one internal format to another, usually with GPX(xml) as the lingua franca (intermediate file).
This User Gave Thanks to jim mcnamara For This Post:
# 11  
Old 06-28-2017
Three of those are xml, course_info.xml is not. Unless we find additional help / info, I'm afraid I'm out of ideas.
This User Gave Thanks to RudiC For This Post:
# 12  
Old 06-28-2017
That's interesting. I'll look into GPS-specific end now. I was just hoping there was some kind of program that could "read" the file and determine what "coding", "language" etc, it was or that someone with experience with them could see it straight-away.

Thanks everybody, appreciate you all taking a look.
# 13  
Old 06-28-2017
There is one actually, called as 'file', but this baffles it. The next thing I tried was 'strings', to identify any text sequences inside it, which also found nothing (except one unhelpful close tag). This doesn't seem like a commonly known data format. It might actually be compressed in a proprietary manner since it contains so few strings.
# 14  
Old 06-28-2017
I tried gzipping the latest course_info.xml you posted, and it only shrinks from 1012K to 998K. An awful compression ratio like that is a pretty good sign that it's already compressed somehow. We won't be able to decode it until we know how it was compressed.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Read line from serial device with BASH

I'm new to Linux (Ubuntu 16.04), and very new to BASH scripting. I have a Numato 8-channel USB GPIO device, which is a DAQ that appears in the system as a serial port. In Linux it appears as ttyACM0. I can easily manipulate a GPO with, for example: echo "gpio set 7" > /dev/ttyACM0 ...followed... (12 Replies)
Discussion started by: Chalk-X
12 Replies

2. Shell Programming and Scripting

Splitting a single xml file into multiple xml files

Hi, I'm having a xml file with multiple xml header. so i want to split the file into multiple files. Sample.xml consists multiple headers so how can we split these multiple headers into multiple files in unix. eg : <?xml version="1.0" encoding="UTF-8"?> <ml:individual... (3 Replies)
Discussion started by: Narendra921631
3 Replies

3. Shell Programming and Scripting

Splitting xml file into several xml files using perl

Hi Everyone, I'm new here and I was checking this old post: /shell-programming-and-scripting/180669-splitting-file-into-several-smaller-files-using-perl.html (cannot paste link because of lack of points) I need to do something like this but understand very little of perl. I also check... (4 Replies)
Discussion started by: mcosta
4 Replies

4. Shell Programming and Scripting

Extract strings from XML files and create a new XML

Hello everybody, I have a double mission with some XML files, which is pretty challenging for my actual beginner UNIX knowledge. I need to extract some strings from multiple XML files and create a new XML file with the searched strings.. The original XML files contain the source code for... (12 Replies)
Discussion started by: milano.churchil
12 Replies

5. Programming

Problem with read data from serial device

I have problem with C programming. I want to send & receive data through serial communication. I send data(command) to device to get data from device but when receive data, it can't get altogether of data. It get only some data. What should I do to get altogether of data? If all of... (7 Replies)
Discussion started by: noppon_s
7 Replies

6. Shell Programming and Scripting

shell script to read a line in gps receiver log file and append that line to new file

Hi, I have gps receiver log..its giving readings .like below Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. GPSD,R=1 $GPGSV,3,1,11,08,16,328,40,11,36,127,00,28,33,283,39,20,11,165,00*71... (3 Replies)
Discussion started by: gudivada213
3 Replies

7. UNIX for Dummies Questions & Answers

install linux on GPS device?

hi all, this might be a silly question, but... a few years ago, i bought a Nortech Navigation E-GPS010. this is a car/hand-held GPS unit that, for a while, worked pretty well. in fact, it still works well. the map version on my GPS is dated 2006, so i thought i'd upgrade; however, the crappy... (10 Replies)
Discussion started by: jmd9qs
10 Replies

8. UNIX Desktop Questions & Answers

read XML xml element with REGEXP

Hi, I would need to read an xml element from an xml file to a local variable. Please could you help me with a shell script to get so? Considering that I have a file called file.xml like below: <header> <description>This is the description</description> <content>This is the... (2 Replies)
Discussion started by: oscarmon
2 Replies

9. UNIX for Dummies Questions & Answers

how to read and write device registers

hello friends, While in the process of writing device drivers, i am facing problem in reading and writing device registers.I got base address of those mapped device registers. Can i add offset of those registers to that Base address to get access of those... (1 Reply)
Discussion started by: sriram.ec
1 Replies

10. UNIX for Dummies Questions & Answers

how to read or write device files

hi everybody, i am working in device drivers.As a beginner to this field ,i dont know how to read or write device files. Will copy_to_user and copy_from_user help me? I have created a device file using mknod command .Can anybody help me in this regard :confused thanks in advance sriram (1 Reply)
Discussion started by: sriram.ec
1 Replies
Login or Register to Ask a Question