Reputation:
I am trying to read LAS file using java LasFileReader but I am not getting what would be the maven dependency for this import "import no.petroware.logio.las.LasFileReader;"
Upvotes: 0
Views: 151
Reputation: 1997
From the official site:
Log I/O is available for Java (LogIo.jar)...
According to this
The JSON Well Log Format accessor depends on the JSON API specification and an implementation of this:
So, you need 3 jars, which you can found it here
or directly clone the repository
git clone https://github.com/Petroware/LogIo.git
and the go to
./LogIo/lib
After that you have to import them to your project (eclipse steps).
Upvotes: 0