Need help with files with "mlp" extension

  • Thread starter Thread starter Virous
  • Start date Start date
  • Tags Tags
    Extension files
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
10 replies · 2K views
Virous
Messages
68
Reaction score
0
Good Evening!

I have a few files with "mlp" extension, which are pH vs Time graphs from a lab data logger. The original software is unavailable to me, but in the Internet I can`t find anything to open it.

Please, help!
 
Physics news on Phys.org
No, these are not sound files. I`m absolutely sure, since I recorded all these files myself. Audio format is the only thing I get from Google as well.

I hope to find someone on this forum who possesses the same kind of data logger and will share his software with me. On the official website of the manufacturer I found the software (MultiLab), but only the latest version, which uses a different format (mlb instead of mlp).
 
Yeah, seems it`s the only way. They don`t tend to be fast when it comes to their support service. Especially on weekends :(
 
Have you looked at the files with an editor or binary dump (ala vim -b or the od command in linux)?

http://usevim.com/2012/06/20/vim-binary-files/

You might be able to construct a program in your favorite language or a script in Python to read it.
 
Yes, I tried to open them with a text editor. I can clearly see the header of the table (e.g. "Temperature"), but I can`t find any numbers.

http://www.filedropper.com/5_11 - this is one of the files.
 
Last edited by a moderator:
I can see two long strings with lots of groups of 3 symbols separated by 5 null-bytes. I presume, these are the values I need. 3 bytes should be enough to store a decimal number with 4 s.f., I guess. But I see no relationship between these groups and actual numbers :(
 
you have to worry about byte order too, known as little-endian vs big-endian format. If the mlp file was recorded on an Intel machine then the binary numbers are little-endian format. If it was a on PowerPC chip as an example, it would be big-endian format.

http://en.wikipedia.org/wiki/Endianness#Little-endian

Its hard to say whether they recorded that data as data points like ph value, temp value... or all ph values (an array) and all temp values
 
Viewed on a hex[adecimal] editor http://www.filedropper.com/5_11 begins ...
Code:
 DBLabFile.v.1.4 ...Exp..3...  ..Temperature.I/  O-1..C..
if that's any help.

http://www.fileformat.info/tool/hexdump.htm
5mpl online analysis = dunno.gif
 
Last edited by a moderator:
This dump is only partially helpful. The first few bytes are an identifying header and seeing the dots means you really need to look at the hex values for those bytes as they may be filler, or binary data like a floating or number...