Re: [Geotools-devel] Running geotools Quickstart without Maven

2024-03-02 Thread Jody Garnett
Those are for raster support, the rendering engine gt-render can draw rasters as well, and assume the many of the it.GeoSolutions plugins to hand geospatial rasters are available -- Jody Garnett On Fri, Mar 1, 2024 at 5:25 AM Amirhossein Nikfal wrote: > I could run the Quickstart application >

Re: [Geotools-devel] Running geotools Quickstart without Maven

2024-03-01 Thread Amirhossein Nikfal
I could run the Quickstart application without using Maven. My purpose was to get an understanding of what was going on. Maven's dependency tree shows 97 modules for this application. However, with only 22 ones out of thes

Re: [Geotools-devel] Running geotools Quickstart without Maven

2024-02-27 Thread Ian Turton
If you use maven it walks the dependency tree and finds all the jars it needs. Ian On Tue, 27 Feb 2024, 14:10 Amirhossein Nikfal, wrote: > Yes, the problem was due to the missing of apache.commons.lang3. Thank you > very much. > > But how could I know about this dependency before the compilatio

Re: [Geotools-devel] Running geotools Quickstart without Maven

2024-02-27 Thread Amirhossein Nikfal
Yes, the problem was due to the missing of apache.commons.lang3. Thank you very much. But how could I know about this dependency before the compilation? Neither in the pom file, nor in the contents of the jar file (gt-swing-31-SNAPSHOT.jar), there was no name regarding apache.commons.lang3. Also "

Re: [Geotools-devel] Running geotools Quickstart without Maven

2024-02-23 Thread Ian Turton
it looks like you haven't added (at least) the apache.commons.lang3 jar. This is what maven excels at so you should probably let it do it's magic rather than trying to muddle along with out it. Ian On Fri, 23 Feb 2024 at 14:49, Amirhossein Nikfal wrote: > The short code below can be compiled an

[Geotools-devel] Running geotools Quickstart without Maven

2024-02-23 Thread Amirhossein Nikfal
The short code below can be compiled and run successfully, but *after loading the shapefile*, shows error in line: FileDataStore store = FileDataStoreFinder.getDataStore(file); This is the way I compile and run it: java -d . Quickstart.java java org.geotools.tutorial.quickstart.Quickstart Code: p