I am working with simulation models trying to carrying out some predictions in ocean waves and this stuff. (MITgcm)
I am able to run the program and generate hundreds of .data and .meta files, but i don't know how to visualize them.
I think it is possible to read and visualize it using Mathematica or Python, but i really don't know how to do it.
Documentation says:
"Each variable is associated with two files with suffix names .data and .meta. The .data file contains the data written in binary form (big endian by default). The .meta file is a “header” file that contains information about the size and the structure of the .data file. This way of organizing the output is particularly useful when running multi-processors calculations."

Importfunction and perhaps this link for vizualization: https://reference.wolfram.com/language/guide/DataVisualization.html – e.doroskevic Feb 10 '16 at 20:20BinaryRead, though you will need to understand the file format to interpret the data properly. According to that link there are matlab scripts included with MITgcm which read the output files. You could examine those scripts and write a Mathematica version. – Simon Woods Feb 10 '16 at 20:38