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;"
Asked
Active
Viewed 130 times
1 Answers
0
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).
- Right click on your project
- Select Build Path
- Click on Configure Build Path
- Click on Libraries and select Add External JARs
- Select the 3 jars
- Click and Apply and Ok

Rcordoval
- 1,932
- 2
- 19
- 25
-
"las.LasFileReader" is not available in any import – May 13 '19 at 11:54
-
Did you check if `no` package is available? or even in the classpath? – Rcordoval May 14 '19 at 03:28