<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-11852</id>
	<title>Nabble - codehaus - geotools</title>
	<updated>2009-11-22T06:41:37Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/codehaus---geotools-f11852.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/codehaus---geotools-f11852.html" />
	<subtitle type="html">Geotools is an open source Java GIS toolkit for developing standards compliant solutions. It provides an implementation of Open Geospatial Consortium (OGC) specifications as they are developed. codehaus - geotools home is &lt;a href=&quot;http://geotools.codehaus.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26464491</id>
	<title>Displaying a JPG image with World file question</title>
	<published>2009-11-22T06:41:37Z</published>
	<updated>2009-11-22T06:41:37Z</updated>
	<author>
		<name>dMacLeod</name>
	</author>
	<content type="html">I've just started learning the GeoTools api and GIS in general. I'm creating my own GIS viewer to help me learn GIS concepts.
&lt;br&gt;&lt;br&gt;I'm using GeoTools 2.6 and having a problem displaying a JPG image. I went through the Image tutorial to get a code example. It appears the &amp;quot;findformat()&amp;quot; trys to make a connection to a server, I'm not sure why it is doing this. The code throws an exception at that point. Is there a way to display a JPG file without having to make a connection to a server? Is there an example of how to do this?
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;Dan MaLeod
&lt;br&gt;&lt;br&gt;&lt;br&gt;[code]
&lt;br&gt;File file = null;
&lt;br&gt;file = JFileDataStoreChooser.showOpenFile(&amp;quot;jpg&amp;quot;, null);
&lt;br&gt;AbstractGridFormat format = GridFormatFinder.findFormat( file );
&lt;br&gt;AbstractGridCoverage2DReader reader = format.getReader(file);
&lt;br&gt;[/code]&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Displaying-a-JPG-image-with-World-file-question-tp26464491p26464491.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26418780</id>
	<title>Re: Trouble reading Oracle Geometry</title>
	<published>2009-11-18T17:16:07Z</published>
	<updated>2009-11-18T17:16:07Z</updated>
	<author>
		<name>sosna</name>
	</author>
	<content type="html">Thank You very much Andrea. U saved me some time. I will look into the class u mentioned. Cheers!&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-reading-Oracle-Geometry-tp26394994p26418780.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26397730</id>
	<title>Re: Trouble reading Oracle Geometry</title>
	<published>2009-11-17T13:13:44Z</published>
	<updated>2009-11-17T13:13:44Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">sosna ha scritto:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I was able to read this geometry using oracle.spatial.geometry.JGeometry.
&lt;br&gt;&amp;gt; Below the code:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; public static void main(String[] args) {
&lt;br&gt;&amp;gt; 		// TODO Auto-generated method stub
&lt;br&gt;&amp;gt; 		
&lt;br&gt;&amp;gt; 		Connection ora_con = Oracle.getOracleConnection();
&lt;br&gt;&amp;gt; 		
&lt;br&gt;&amp;gt; 	//	String sql = &amp;quot;SELECT name, shape FROM GEOM WHERE shape IS NOT NULL&amp;quot;;
&lt;br&gt;&amp;gt; 		String sql = &amp;quot;SELECT id, geom from WOJEWODZTWA where rownum &amp;lt; 2&amp;quot;;
&lt;br&gt;&amp;gt; 		try {
&lt;br&gt;&amp;gt; 			Statement stmt = ora_con.createStatement();
&lt;br&gt;&amp;gt; 			ResultSet rs = stmt.executeQuery(sql);
&lt;br&gt;&amp;gt; 			while (rs.next()){				
&lt;br&gt;&amp;gt; 				System.out.println(&amp;quot;&amp;gt;&amp;gt;&amp;gt;&amp;quot; + rs.getString(1) + &amp;quot;&amp;lt;&amp;lt;&amp;lt;&amp;quot;);
&lt;br&gt;&amp;gt; 				STRUCT st = (oracle.sql.STRUCT) rs.getObject(2);
&lt;br&gt;&amp;gt; 				JGeometry j_geom = JGeometry.load(st);
&lt;br&gt;&amp;gt; 				
&lt;br&gt;&amp;gt; 				System.out.println(&amp;quot;DIMENSIONS: &amp;quot; + j_geom.getDimensions());
&lt;br&gt;&amp;gt; 				System.out.println(&amp;quot;NUM POINTS: &amp;quot; + j_geom.getNumPoints() + &amp;quot;\n&amp;quot;);
&lt;br&gt;&amp;gt; 				System.out.println(&amp;quot;SIZE: &amp;quot; + j_geom.getSize());
&lt;br&gt;&amp;gt; }}}
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Now i got problem converting this JGeometry into Geometry that i could
&lt;br&gt;&amp;gt; insert into postgis. Any help how this can be accomplished? Thanks
&lt;/div&gt;&lt;br&gt;We never had such code. The original public administration that 
&lt;br&gt;sponsored the Oracle datastore did not want any dependency on JGeometry
&lt;br&gt;because back at the time Oracle was threatening to drop support on that
&lt;br&gt;library.
&lt;br&gt;Today going back to JGeometry is extra work and would also be slower
&lt;br&gt;unless one can assume the usage of Oracle 11 (we can't, we need to 
&lt;br&gt;support back to Oracle 9) so we never looked into it.
&lt;br&gt;It's better to just look into the SDO class in the GeoTools Oracle 
&lt;br&gt;datastore and make it more tolerant to that raft of null values.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-reading-Oracle-Geometry-tp26394994p26397730.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26396460</id>
	<title>Re: Trouble reading Oracle Geometry</title>
	<published>2009-11-17T12:15:36Z</published>
	<updated>2009-11-17T12:15:36Z</updated>
	<author>
		<name>sosna</name>
	</author>
	<content type="html">I was able to read this geometry using oracle.spatial.geometry.JGeometry. Below the code:
&lt;br&gt;&lt;br&gt;public static void main(String[] args) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated method stub
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Connection ora_con = Oracle.getOracleConnection();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //	String sql = &amp;quot;SELECT name, shape FROM GEOM WHERE shape IS NOT NULL&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String sql = &amp;quot;SELECT id, geom from WOJEWODZTWA where rownum &amp;lt; 2&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Statement stmt = ora_con.createStatement();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ResultSet rs = stmt.executeQuery(sql);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; while (rs.next()){				
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;&amp;gt;&amp;gt;&amp;gt;&amp;quot; + rs.getString(1) + &amp;quot;&amp;lt;&amp;lt;&amp;lt;&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; STRUCT st = (oracle.sql.STRUCT) rs.getObject(2);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; JGeometry j_geom = JGeometry.load(st);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;DIMENSIONS: &amp;quot; + j_geom.getDimensions());
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;NUM POINTS: &amp;quot; + j_geom.getNumPoints() + &amp;quot;\n&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;SIZE: &amp;quot; + j_geom.getSize());
&lt;br&gt;}}}
&lt;br&gt;&lt;br&gt;Now i got problem converting this JGeometry into Geometry that i could insert into postgis. Any help how this can be accomplished? Thanks&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-reading-Oracle-Geometry-tp26394994p26396460.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26395592</id>
	<title>Re: Trouble reading Oracle Geometry</title>
	<published>2009-11-17T11:02:52Z</published>
	<updated>2009-11-17T11:02:52Z</updated>
	<author>
		<name>sosna</name>
	</author>
	<content type="html">I really dont know how the geometry was generated. I used ArcGis DataInteroperability and GeoKettle to export this data to postgis. These applications could read this data and export it to postgis. &lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-reading-Oracle-Geometry-tp26394994p26395592.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26395295</id>
	<title>Re: Trouble reading Oracle Geometry</title>
	<published>2009-11-17T10:45:18Z</published>
	<updated>2009-11-17T10:45:18Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">sosna ha scritto:
&lt;br&gt;&amp;gt; Hello
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am a total beginner and i am trying to read geometry stored in Oracle. I
&lt;br&gt;&amp;gt; keep getting &amp;quot;POLYGON EMPTY&amp;quot; when trying to system.out geometry values. Here
&lt;br&gt;&amp;gt; is the code:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; First row:
&lt;br&gt;&amp;gt; MDSYS.SDO_GEOMETRY(2003, null, null, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 1,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null), MDSYS.SDO_ORDINATE_ARRAY(19.256710, 54.149978, 19.256631, 54.1499,
&lt;br&gt;&amp;gt; 19.255882, 54.149334, 19.255308, 54.148660, 19.254540, 54.147725, 19.253780,
&lt;br&gt;&amp;gt; 54.146949, 19.253029, 54.146331, 19.252279, 54.145712, 19.251791, 54.144984,
&lt;br&gt;&amp;gt; 19.251034, 54.144260, 19.250296, 54.143720, 19.249436, 54.142735, 19.248951,
&lt;br&gt;&amp;gt; 54.142059, 19.248386, 54.141542, 19.247724, 54.140922, 19.247251, 54.140457,
&lt;br&gt;&amp;gt; 19.246593, 54.139889, 19.245511, 54.138118, 19.244597, 54.136132, 19.244642,
&lt;br&gt;&amp;gt; 54.135288, 19.244232, 54.134347, 19.243275, 54.133205, 19.242217, 54.131662,
&lt;br&gt;&amp;gt; 19.241495, 54.130547, 19.241114, 54.130035, 19.240869, 54.129572, 19.240444,
&lt;br&gt;&amp;gt; 54.129061, 19.239825, 54.128242, 19.238631, 54.127407, 19.237805, 54.126826,
&lt;br&gt;&amp;gt; 19.236842, 54.126169, 19.235703, 54.125541, 19.232405, 54.123885, 19.231229,
&lt;br&gt;&amp;gt; 54.123387, 19.230593, 54.123061, 19.229055, 54.122388, 19.227478, 54.121820,
&lt;br&gt;&amp;gt; 19.226076, 54.121196, 19.224801, 54.120492, 19.223493, 54.119824, 19.222482,
&lt;br&gt;&amp;gt; 54.119089, 19.221603, 54.118352, 19.220872, 54.117898, 19.220319, 54.117466,
&lt;br&gt;&amp;gt; 19.219681, 54.117089, 19.218993, 54.116608, 19.218076, 54.115975, 19.217093,
&lt;br&gt;&amp;gt; 54.115005, 19.219121, 54.114942, 19.226506, 54.114771))
&lt;/div&gt;&lt;br&gt;This geometry definition seems broken to me, those tools are probably 
&lt;br&gt;less picky than GeoTools and ignoring that raft of null values you have
&lt;br&gt;there after the 1, 1003, 1 part (which seems correct per se)?
&lt;br&gt;What generated them?
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-reading-Oracle-Geometry-tp26394994p26395295.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26395030</id>
	<title>Re: Trouble reading Oracle Geometry</title>
	<published>2009-11-17T10:25:52Z</published>
	<updated>2009-11-17T10:25:52Z</updated>
	<author>
		<name>Jody Garnett-3</name>
	</author>
	<content type="html">Hi Sosna:
&lt;br&gt;&lt;br&gt;We actually have a users list set up on source forge ... &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26395030&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;geotools-gt2-users@...&lt;/a&gt;
&lt;br&gt;If you could kindly direct your inquiry there.
&lt;br&gt;&lt;br&gt;Jody
&lt;br&gt;&lt;br&gt;On 17/11/2009, at 4:23 PM, sosna wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am a total beginner and i am trying to read geometry stored in Oracle. I
&lt;br&gt;&amp;gt; keep getting &amp;quot;POLYGON EMPTY&amp;quot; when trying to system.out geometry values. Here
&lt;br&gt;&amp;gt; is the code:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; public static void main(String[] args) {
&lt;br&gt;&amp;gt; 	
&lt;br&gt;&amp;gt; 		Map params = new HashMap();
&lt;br&gt;&amp;gt; 		//I fill the params
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 		DataStore oracleDatastore = null;
&lt;br&gt;&amp;gt; 		try {
&lt;br&gt;&amp;gt; 			oracleDatastore = DataStoreFinder.getDataStore(params);
&lt;br&gt;&amp;gt; 		} catch (IOException e) {
&lt;br&gt;&amp;gt; 			// TODO Auto-generated catch block
&lt;br&gt;&amp;gt; 			e.printStackTrace();
&lt;br&gt;&amp;gt; 		}finally{
&lt;br&gt;&amp;gt; 			
&lt;br&gt;&amp;gt; 		}
&lt;br&gt;&amp;gt; 		
&lt;br&gt;&amp;gt; 		FeatureSource fsBC = null;
&lt;br&gt;&amp;gt; 		try {
&lt;br&gt;&amp;gt; 			fsBC = oracleDatastore.getFeatureSource(&amp;quot;WOJEWODZTWA&amp;quot;);
&lt;br&gt;&amp;gt; 			FeatureCollection fc = fsBC.getFeatures(Query.ALL);
&lt;br&gt;&amp;gt; 			
&lt;br&gt;&amp;gt; 			for( Iterator i=fc.iterator(); i.hasNext();){
&lt;br&gt;&amp;gt; 		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SimpleFeatureImpl feature = (SimpleFeatureImpl) i.next();
&lt;br&gt;&amp;gt; 		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; 		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println(&amp;quot;NAZWA: &amp;quot; + feature.getAttribute(&amp;quot;NAZWA&amp;quot;));
&lt;br&gt;&amp;gt; 		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println(&amp;quot;DEFAULT GEOM: &amp;quot; +
&lt;br&gt;&amp;gt; feature.getDefaultGeometry());
&lt;br&gt;&amp;gt; 		 &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;gt; 		} catch (IOException e) {
&lt;br&gt;&amp;gt; 			// TODO Auto-generated catch block
&lt;br&gt;&amp;gt; 			e.printStackTrace();
&lt;br&gt;&amp;gt; 		}
&lt;br&gt;&amp;gt; 		
&lt;br&gt;&amp;gt; 	} 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The result is:
&lt;br&gt;&amp;gt; NAZWA: WOJ. ZACHODNIOPOMORSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. ŚWIĘTOKRZYSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. WARMIŃSKO-MAZURSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. KUJAWSKO-POMORSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. ŁÓDZKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. MAŁOPOLSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. DOLNOŚLĄSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. LUBUSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. DOLNOŚLĄSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. KUJAWSKO-POMORSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. LUBELSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. LUBUSKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; NAZWA: WOJ. ŁÓDZKIE
&lt;br&gt;&amp;gt; DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I know that there is geometry stored. I can draw it using some tools. Below
&lt;br&gt;&amp;gt; i put 2 random rows with geometry column from oracle.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; First row:
&lt;br&gt;&amp;gt; MDSYS.SDO_GEOMETRY(2003, null, null, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 1,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null), MDSYS.SDO_ORDINATE_ARRAY(19.256710, 54.149978, 19.256631, 54.1499,
&lt;br&gt;&amp;gt; 19.255882, 54.149334, 19.255308, 54.148660, 19.254540, 54.147725, 19.253780,
&lt;br&gt;&amp;gt; 54.146949, 19.253029, 54.146331, 19.252279, 54.145712, 19.251791, 54.144984,
&lt;br&gt;&amp;gt; 19.251034, 54.144260, 19.250296, 54.143720, 19.249436, 54.142735, 19.248951,
&lt;br&gt;&amp;gt; 54.142059, 19.248386, 54.141542, 19.247724, 54.140922, 19.247251, 54.140457,
&lt;br&gt;&amp;gt; 19.246593, 54.139889, 19.245511, 54.138118, 19.244597, 54.136132, 19.244642,
&lt;br&gt;&amp;gt; 54.135288, 19.244232, 54.134347, 19.243275, 54.133205, 19.242217, 54.131662,
&lt;br&gt;&amp;gt; 19.241495, 54.130547, 19.241114, 54.130035, 19.240869, 54.129572, 19.240444,
&lt;br&gt;&amp;gt; 54.129061, 19.239825, 54.128242, 19.238631, 54.127407, 19.237805, 54.126826,
&lt;br&gt;&amp;gt; 19.236842, 54.126169, 19.235703, 54.125541, 19.232405, 54.123885, 19.231229,
&lt;br&gt;&amp;gt; 54.123387, 19.230593, 54.123061, 19.229055, 54.122388, 19.227478, 54.121820,
&lt;br&gt;&amp;gt; 19.226076, 54.121196, 19.224801, 54.120492, 19.223493, 54.119824, 19.222482,
&lt;br&gt;&amp;gt; 54.119089, 19.221603, 54.118352, 19.220872, 54.117898, 19.220319, 54.117466,
&lt;br&gt;&amp;gt; 19.219681, 54.117089, 19.218993, 54.116608, 19.218076, 54.115975, 19.217093,
&lt;br&gt;&amp;gt; 54.115005, 19.219121, 54.114942, 19.226506, 54.114771))
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Second row:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; MDSYS.SDO_GEOMETRY(2003, null, null, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 1,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null, null, null, null, null, null, null, null, null, null, null, null,
&lt;br&gt;&amp;gt; null), MDSYS.SDO_ORDINATE_ARRAY(18.266324, 53.738770, 18.267227, 53.739179,
&lt;br&gt;&amp;gt; 18.267847, 53.739520, 18.266732, 53.741128, 18.269549, 53.741573, 18.268740,
&lt;br&gt;&amp;gt; 53.742725, 18.267649, 53.743952, 18.263979, 53.743896, 18.261632, 53.743978,
&lt;br&gt;&amp;gt; 18.260241, 53.744191, 18.257936, 53.744328, 18.257812, 53.744816, 18.257454,
&lt;br&gt;&amp;gt; 53.745379, 18.256882, 53.745692, 18.256222, 53.745949, 18.255252, 53.746036,
&lt;br&gt;&amp;gt; 18.254348, 53.745825, 18.253729, 53.745457, 18.252335, 53.744308, 18.250636,
&lt;br&gt;&amp;gt; 53.742908, 18.249234, 53.743284, 18.248246, 53.743642, 18.250267, 53.744342,
&lt;br&gt;&amp;gt; 18.251111, 53.744770, 18.251322, 53.745047, 18.250315, 53.744997, 18.248009,
&lt;br&gt;&amp;gt; 53.744454, 18.245647, 53.744072, 18.242510, 53.743592, 18.238785, 53.742988,
&lt;br&gt;&amp;gt; 18.230746, 53.741658, 18.224521, 53.740670, 18.218847, 53.739694, 18.219382,
&lt;br&gt;&amp;gt; 53.741993, 18.220134, 53.745876, 18.217737, 53.745330, 18.217218, 53.745536,
&lt;br&gt;&amp;gt; 18.217147, 53.745915, 18.217241, 53.746571, 18.216496, 53.746717, 18.215352,
&lt;br&gt;&amp;gt; 53.746663, 18.213806, 53.746436, 18.212870, 53.746006, 18.212068, 53.745633,
&lt;br&gt;&amp;gt; 18.211518, 53.745620, 18.211160, 53.744795, 18.209726, 53.744952, 18.2095,
&lt;br&gt;&amp;gt; 53.744212, 18.209346, 53.743773, 18.208953, 53.743464))
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What i am doing wrong? My task is to copy this geometry to postgis but i am
&lt;br&gt;&amp;gt; stuck at reading it. I want to read its cooridinates then insert into
&lt;br&gt;&amp;gt; postgis.
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/Trouble-reading-Oracle-Geometry-tp26394994p26394994.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Trouble-reading-Oracle-Geometry-tp26394994p26394994.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the geotools - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-reading-Oracle-Geometry-tp26394994p26395030.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26394994</id>
	<title>Trouble reading Oracle Geometry</title>
	<published>2009-11-17T10:23:26Z</published>
	<updated>2009-11-17T10:23:26Z</updated>
	<author>
		<name>sosna</name>
	</author>
	<content type="html">Hello
&lt;br&gt;&lt;br&gt;I am a total beginner and i am trying to read geometry stored in Oracle. I keep getting &amp;quot;POLYGON EMPTY&amp;quot; when trying to system.out geometry values. Here is the code:
&lt;br&gt;&lt;br&gt;public static void main(String[] args) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Map params = new HashMap();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //I fill the params
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DataStore oracleDatastore = null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; oracleDatastore = DataStoreFinder.getDataStore(params);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (IOException e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }finally{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FeatureSource fsBC = null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fsBC = oracleDatastore.getFeatureSource(&amp;quot;WOJEWODZTWA&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FeatureCollection fc = fsBC.getFeatures(Query.ALL);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for( Iterator i=fc.iterator(); i.hasNext();){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SimpleFeatureImpl feature = (SimpleFeatureImpl) i.next();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;NAZWA: &amp;quot; + feature.getAttribute(&amp;quot;NAZWA&amp;quot;));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;DEFAULT GEOM: &amp;quot; + feature.getDefaultGeometry());
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (IOException e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } 
&lt;br&gt;&lt;br&gt;The result is:
&lt;br&gt;NAZWA: WOJ. ZACHODNIOPOMORSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. ŚWIĘTOKRZYSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. WARMIŃSKO-MAZURSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. KUJAWSKO-POMORSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. ŁÓDZKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. MAŁOPOLSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. DOLNOŚLĄSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. LUBUSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. DOLNOŚLĄSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. KUJAWSKO-POMORSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. LUBELSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. LUBUSKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;NAZWA: WOJ. ŁÓDZKIE
&lt;br&gt;DEFAULT GEOM: POLYGON EMPTY
&lt;br&gt;&lt;br&gt;I know that there is geometry stored. I can draw it using some tools. Below i put 2 random rows with geometry column from oracle.
&lt;br&gt;&lt;br&gt;First row:
&lt;br&gt;MDSYS.SDO_GEOMETRY(2003, null, null, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null), MDSYS.SDO_ORDINATE_ARRAY(19.256710, 54.149978, 19.256631, 54.1499, 19.255882, 54.149334, 19.255308, 54.148660, 19.254540, 54.147725, 19.253780, 54.146949, 19.253029, 54.146331, 19.252279, 54.145712, 19.251791, 54.144984, 19.251034, 54.144260, 19.250296, 54.143720, 19.249436, 54.142735, 19.248951, 54.142059, 19.248386, 54.141542, 19.247724, 54.140922, 19.247251, 54.140457, 19.246593, 54.139889, 19.245511, 54.138118, 19.244597, 54.136132, 19.244642, 54.135288, 19.244232, 54.134347, 19.243275, 54.133205, 19.242217, 54.131662, 19.241495, 54.130547, 19.241114, 54.130035, 19.240869, 54.129572, 19.240444, 54.129061, 19.239825, 54.128242, 19.238631, 54.127407, 19.237805, 54.126826, 19.236842, 54.126169, 19.235703, 54.125541, 19.232405, 54.123885, 19.231229, 54.123387, 19.230593, 54.123061, 19.229055, 54.122388, 19.227478, 54.121820, 19.226076, 54.121196, 19.224801, 54.120492, 19.223493, 54.119824, 19.222482, 54.119089, 19.221603, 54.118352, 19.220872, 54.117898, 19.220319, 54.117466, 19.219681, 54.117089, 19.218993, 54.116608, 19.218076, 54.115975, 19.217093, 54.115005, 19.219121, 54.114942, 19.226506, 54.114771))
&lt;br&gt;&lt;br&gt;Second row:
&lt;br&gt;&lt;br&gt;MDSYS.SDO_GEOMETRY(2003, null, null, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null), MDSYS.SDO_ORDINATE_ARRAY(18.266324, 53.738770, 18.267227, 53.739179, 18.267847, 53.739520, 18.266732, 53.741128, 18.269549, 53.741573, 18.268740, 53.742725, 18.267649, 53.743952, 18.263979, 53.743896, 18.261632, 53.743978, 18.260241, 53.744191, 18.257936, 53.744328, 18.257812, 53.744816, 18.257454, 53.745379, 18.256882, 53.745692, 18.256222, 53.745949, 18.255252, 53.746036, 18.254348, 53.745825, 18.253729, 53.745457, 18.252335, 53.744308, 18.250636, 53.742908, 18.249234, 53.743284, 18.248246, 53.743642, 18.250267, 53.744342, 18.251111, 53.744770, 18.251322, 53.745047, 18.250315, 53.744997, 18.248009, 53.744454, 18.245647, 53.744072, 18.242510, 53.743592, 18.238785, 53.742988, 18.230746, 53.741658, 18.224521, 53.740670, 18.218847, 53.739694, 18.219382, 53.741993, 18.220134, 53.745876, 18.217737, 53.745330, 18.217218, 53.745536, 18.217147, 53.745915, 18.217241, 53.746571, 18.216496, 53.746717, 18.215352, 53.746663, 18.213806, 53.746436, 18.212870, 53.746006, 18.212068, 53.745633, 18.211518, 53.745620, 18.211160, 53.744795, 18.209726, 53.744952, 18.2095, 53.744212, 18.209346, 53.743773, 18.208953, 53.743464))
&lt;br&gt;&lt;br&gt;What i am doing wrong? My task is to copy this geometry to postgis but i am stuck at reading it. I want to read its cooridinates then insert into postgis.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-reading-Oracle-Geometry-tp26394994p26394994.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26217378</id>
	<title>Re: Trouble using CRS from ESRI ArcGIS 9.3 (esri:102003)</title>
	<published>2009-11-05T10:56:58Z</published>
	<updated>2009-11-05T10:56:58Z</updated>
	<author>
		<name>Benjamin Wright</name>
	</author>
	<content type="html">Thanks Andrea, that fixed the problem.
&lt;br&gt;&lt;br&gt;I see what you mean with the inaccurate transformations though. &amp;nbsp;With this particular transformation we don't see a significant problem, but with another one that was not working we're seeing latitude shifted by several kilometers (in the Eastern US / New England Area). &amp;nbsp;Could be a problem with what we're doing or with the transformation - we'll have to look into it further.
&lt;br&gt;&lt;br&gt;-Ben Wright
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Andrea Aime-4 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Benjamin Wright ha scritto:
&lt;br&gt;&amp;gt; I'm having trouble using a CRS I'm getting from an ESRI ArcGIS 9.3 server.
&lt;br&gt;&amp;gt; (MapServer Service)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The error I get is:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Caused by: org.opengis.referencing.operation.OperationNotFoundException:
&lt;br&gt;&amp;gt; Bursa wolf parameters required.
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:1072)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:1136)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:881)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:998)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperation(DefaultCoordinateOperationFactory.java:267)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.BufferedCoordinateOperationFactory.createOperation(BufferedCoordinateOperationFactory.java:254)
&lt;br&gt;&amp;gt; 	at org.geotools.referencing.CRS.findMathTransform(CRS.java:1001)
&lt;br&gt;&amp;gt; 	at org.geotools.referencing.CRS.findMathTransform(CRS.java:969)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The call made into this is:
&lt;br&gt;&amp;gt; CRS.findMathTransform(CRS_IN_QUESTION,DefaultGeographicCRS.WGS84);
&lt;br&gt;&lt;br&gt;Just use
&lt;br&gt;CRS.findMathTransform(CRS_IN_QUESTION,DefaultGeographicCRS.WGS84, true);
&lt;br&gt;&lt;br&gt;instead
&lt;br&gt;&lt;br&gt;&amp;gt; I get the CRS from the WKT:
&lt;br&gt;&amp;gt; PROJCS[&amp;quot;USA_Contiguous_Albers_Equal_Area_Conic&amp;quot;,GEOGCS[&amp;quot;GCS_North_American_1983&amp;quot;,DATUM[&amp;quot;D_North_American_1983&amp;quot;,SPHEROID[&amp;quot;GRS_1980&amp;quot;,6378137.0,298.257222101]],PRIMEM[&amp;quot;Greenwich&amp;quot;,0.0],UNIT[&amp;quot;Degree&amp;quot;,0.0174532925199433]],PROJECTION[&amp;quot;Albers&amp;quot;],PARAMETER[&amp;quot;False_Easting&amp;quot;,0.0],PARAMETER[&amp;quot;False_Northing&amp;quot;,0.0],PARAMETER[&amp;quot;Central_Meridian&amp;quot;,-96.0],PARAMETER[&amp;quot;Standard_Parallel_1&amp;quot;,29.5],PARAMETER[&amp;quot;Standard_Parallel_2&amp;quot;,45.5],PARAMETER[&amp;quot;Latitude_Of_Origin&amp;quot;,37.5],UNIT[&amp;quot;Meter&amp;quot;,1.0],AUTHORITY[&amp;quot;ESRI&amp;quot;,&amp;quot;102003&amp;quot;]]
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Spatial Reference:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://spatialreference.org/ref/esri/102003/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://spatialreference.org/ref/esri/102003/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm using Geotools version 2.5.2
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What are 'Bursa wolf parameters'? &amp;nbsp;Do I need them? &amp;nbsp;
&lt;br&gt;&lt;br&gt;The Bursa Wolf parameter are required to get decent precision (4m 
&lt;br&gt;usually) in datum shifts, without them you might get a transformation
&lt;br&gt;error around 100m easily.
&lt;br&gt;In the case of NAD83 -&amp;gt; WGS84 the error should not be so big without
&lt;br&gt;them, but I've never actually measured it
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-using-CRS-from-ESRI-ArcGIS-9.3-%28esri%3A102003%29-tp26215762p26217378.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26217020</id>
	<title>Re: Trouble using CRS from ESRI ArcGIS 9.3 (esri:102003)</title>
	<published>2009-11-05T07:40:30Z</published>
	<updated>2009-11-05T07:40:30Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">Benjamin Wright ha scritto:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I'm having trouble using a CRS I'm getting from an ESRI ArcGIS 9.3 server.
&lt;br&gt;&amp;gt; (MapServer Service)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The error I get is:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Caused by: org.opengis.referencing.operation.OperationNotFoundException:
&lt;br&gt;&amp;gt; Bursa wolf parameters required.
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:1072)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:1136)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:881)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:998)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperation(DefaultCoordinateOperationFactory.java:267)
&lt;br&gt;&amp;gt; 	at
&lt;br&gt;&amp;gt; org.geotools.referencing.operation.BufferedCoordinateOperationFactory.createOperation(BufferedCoordinateOperationFactory.java:254)
&lt;br&gt;&amp;gt; 	at org.geotools.referencing.CRS.findMathTransform(CRS.java:1001)
&lt;br&gt;&amp;gt; 	at org.geotools.referencing.CRS.findMathTransform(CRS.java:969)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The call made into this is:
&lt;br&gt;&amp;gt; CRS.findMathTransform(CRS_IN_QUESTION,DefaultGeographicCRS.WGS84);
&lt;/div&gt;&lt;br&gt;Just use
&lt;br&gt;CRS.findMathTransform(CRS_IN_QUESTION,DefaultGeographicCRS.WGS84, true);
&lt;br&gt;&lt;br&gt;instead
&lt;br&gt;&lt;br&gt;&amp;gt; I get the CRS from the WKT:
&lt;br&gt;&amp;gt; PROJCS[&amp;quot;USA_Contiguous_Albers_Equal_Area_Conic&amp;quot;,GEOGCS[&amp;quot;GCS_North_American_1983&amp;quot;,DATUM[&amp;quot;D_North_American_1983&amp;quot;,SPHEROID[&amp;quot;GRS_1980&amp;quot;,6378137.0,298.257222101]],PRIMEM[&amp;quot;Greenwich&amp;quot;,0.0],UNIT[&amp;quot;Degree&amp;quot;,0.0174532925199433]],PROJECTION[&amp;quot;Albers&amp;quot;],PARAMETER[&amp;quot;False_Easting&amp;quot;,0.0],PARAMETER[&amp;quot;False_Northing&amp;quot;,0.0],PARAMETER[&amp;quot;Central_Meridian&amp;quot;,-96.0],PARAMETER[&amp;quot;Standard_Parallel_1&amp;quot;,29.5],PARAMETER[&amp;quot;Standard_Parallel_2&amp;quot;,45.5],PARAMETER[&amp;quot;Latitude_Of_Origin&amp;quot;,37.5],UNIT[&amp;quot;Meter&amp;quot;,1.0],AUTHORITY[&amp;quot;ESRI&amp;quot;,&amp;quot;102003&amp;quot;]]
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Spatial Reference:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://spatialreference.org/ref/esri/102003/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://spatialreference.org/ref/esri/102003/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm using Geotools version 2.5.2
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What are 'Bursa wolf parameters'? &amp;nbsp;Do I need them? &amp;nbsp;
&lt;br&gt;&lt;br&gt;The Bursa Wolf parameter are required to get decent precision (4m 
&lt;br&gt;usually) in datum shifts, without them you might get a transformation
&lt;br&gt;error around 100m easily.
&lt;br&gt;In the case of NAD83 -&amp;gt; WGS84 the error should not be so big without
&lt;br&gt;them, but I've never actually measured it
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-using-CRS-from-ESRI-ArcGIS-9.3-%28esri%3A102003%29-tp26215762p26217020.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26215762</id>
	<title>Trouble using CRS from ESRI ArcGIS 9.3 (esri:102003)</title>
	<published>2009-11-05T07:31:08Z</published>
	<updated>2009-11-05T07:31:08Z</updated>
	<author>
		<name>Benjamin Wright</name>
	</author>
	<content type="html">I'm having trouble using a CRS I'm getting from an ESRI ArcGIS 9.3 server. (MapServer Service)
&lt;br&gt;&lt;br&gt;The error I get is:
&lt;br&gt;&lt;br&gt;Caused by: org.opengis.referencing.operation.OperationNotFoundException: Bursa wolf parameters required.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:1072)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:1136)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:881)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperationStep(DefaultCoordinateOperationFactory.java:998)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.geotools.referencing.operation.DefaultCoordinateOperationFactory.createOperation(DefaultCoordinateOperationFactory.java:267)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.geotools.referencing.operation.BufferedCoordinateOperationFactory.createOperation(BufferedCoordinateOperationFactory.java:254)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.geotools.referencing.CRS.findMathTransform(CRS.java:1001)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.geotools.referencing.CRS.findMathTransform(CRS.java:969)
&lt;br&gt;&lt;br&gt;The call made into this is:
&lt;br&gt;CRS.findMathTransform(CRS_IN_QUESTION,DefaultGeographicCRS.WGS84);
&lt;br&gt;&lt;br&gt;I get the CRS from the WKT:
&lt;br&gt;PROJCS[&amp;quot;USA_Contiguous_Albers_Equal_Area_Conic&amp;quot;,GEOGCS[&amp;quot;GCS_North_American_1983&amp;quot;,DATUM[&amp;quot;D_North_American_1983&amp;quot;,SPHEROID[&amp;quot;GRS_1980&amp;quot;,6378137.0,298.257222101]],PRIMEM[&amp;quot;Greenwich&amp;quot;,0.0],UNIT[&amp;quot;Degree&amp;quot;,0.0174532925199433]],PROJECTION[&amp;quot;Albers&amp;quot;],PARAMETER[&amp;quot;False_Easting&amp;quot;,0.0],PARAMETER[&amp;quot;False_Northing&amp;quot;,0.0],PARAMETER[&amp;quot;Central_Meridian&amp;quot;,-96.0],PARAMETER[&amp;quot;Standard_Parallel_1&amp;quot;,29.5],PARAMETER[&amp;quot;Standard_Parallel_2&amp;quot;,45.5],PARAMETER[&amp;quot;Latitude_Of_Origin&amp;quot;,37.5],UNIT[&amp;quot;Meter&amp;quot;,1.0],AUTHORITY[&amp;quot;ESRI&amp;quot;,&amp;quot;102003&amp;quot;]]
&lt;br&gt;&lt;br&gt;Spatial Reference:
&lt;br&gt;&lt;a href=&quot;http://spatialreference.org/ref/esri/102003/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://spatialreference.org/ref/esri/102003/&lt;/a&gt;&lt;br&gt;&lt;br&gt;I'm using Geotools version 2.5.2
&lt;br&gt;&lt;br&gt;What are 'Bursa wolf parameters'? &amp;nbsp;Do I need them? &amp;nbsp;Any ideas? &amp;nbsp;Should this be fixed if I upgrade to 2.6? (working across a few companies - upgrading isn't as easy as it would sound but it is possible)&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-using-CRS-from-ESRI-ArcGIS-9.3-%28esri%3A102003%29-tp26215762p26215762.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25912091</id>
	<title>Re: Planar view</title>
	<published>2009-10-15T09:44:50Z</published>
	<updated>2009-10-15T09:44:50Z</updated>
	<author>
		<name>Sagittarius</name>
	</author>
	<content type="html">Thanks.
&lt;br&gt;&lt;br&gt;I founded. I looked over it.
&lt;br&gt;&lt;br&gt;Maurice
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Jody Garnett-3 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Wrong mailing list my friend. Check website for correct one. There is &amp;nbsp;
&lt;br&gt;a crs lab which answers your question.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On 16/10/2009, at 12:00 AM, Sagittarius &amp;lt;mbernards-geotools@42solutions.nl 
&lt;br&gt;&amp;nbsp;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi All,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I followed the quickstart tutorial on
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://geotools.org/quickstart.html#quickstart&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://geotools.org/quickstart.html#quickstart&lt;/a&gt;&amp;nbsp;the geotools &amp;nbsp;
&lt;br&gt;&amp;gt; homepage &amp;nbsp;.
&lt;br&gt;&amp;gt; This tutorial is working great, but I have a question. I searched the
&lt;br&gt;&amp;gt; internet for over 2 days, but I couldn't find an answer to it..
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The tutorial loads a shapefile and displays it. But as far as I &amp;nbsp;
&lt;br&gt;&amp;gt; understand,
&lt;br&gt;&amp;gt; it is projected with a CoordinateReferenceSystem.wgs84.
&lt;br&gt;&amp;gt; This way the shapefile isn't planar, but it looks like it is bend &amp;nbsp;
&lt;br&gt;&amp;gt; over the
&lt;br&gt;&amp;gt; 'globe'. It isn't that much but you can see it.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What do I have to do to get a planar view, like it is drawn on a &amp;nbsp;
&lt;br&gt;&amp;gt; peace of
&lt;br&gt;&amp;gt; paper.
&lt;br&gt;&amp;gt; I know you've to do something with the CRS and projection and maybe
&lt;br&gt;&amp;gt; MathTransform, but I couldn't find a good example.
&lt;br&gt;&amp;gt; Maybe it can not be done with the outcome of the tutorial...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'll hope some could help me, point me in the good direction.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Maurice
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Planar-view-tp25908228p25908228.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Planar-view-tp25908228p25908228.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the geotools - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Planar-view-tp25908228p25912091.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25910141</id>
	<title>Re: Planar view</title>
	<published>2009-10-15T07:56:56Z</published>
	<updated>2009-10-15T07:56:56Z</updated>
	<author>
		<name>Jody Garnett-3</name>
	</author>
	<content type="html">Wrong mailing list my friend. Check website for correct one. There is &amp;nbsp;
&lt;br&gt;a crs lab which answers your question.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On 16/10/2009, at 12:00 AM, Sagittarius &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25910141&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mbernards-geotools@...&lt;/a&gt; 
&lt;br&gt;&amp;nbsp;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi All,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I followed the quickstart tutorial on
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://geotools.org/quickstart.html#quickstart&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://geotools.org/quickstart.html#quickstart&lt;/a&gt;&amp;nbsp;the geotools &amp;nbsp;
&lt;br&gt;&amp;gt; homepage &amp;nbsp;.
&lt;br&gt;&amp;gt; This tutorial is working great, but I have a question. I searched the
&lt;br&gt;&amp;gt; internet for over 2 days, but I couldn't find an answer to it..
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The tutorial loads a shapefile and displays it. But as far as I &amp;nbsp;
&lt;br&gt;&amp;gt; understand,
&lt;br&gt;&amp;gt; it is projected with a CoordinateReferenceSystem.wgs84.
&lt;br&gt;&amp;gt; This way the shapefile isn't planar, but it looks like it is bend &amp;nbsp;
&lt;br&gt;&amp;gt; over the
&lt;br&gt;&amp;gt; 'globe'. It isn't that much but you can see it.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What do I have to do to get a planar view, like it is drawn on a &amp;nbsp;
&lt;br&gt;&amp;gt; peace of
&lt;br&gt;&amp;gt; paper.
&lt;br&gt;&amp;gt; I know you've to do something with the CRS and projection and maybe
&lt;br&gt;&amp;gt; MathTransform, but I couldn't find a good example.
&lt;br&gt;&amp;gt; Maybe it can not be done with the outcome of the tutorial...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'll hope some could help me, point me in the good direction.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Maurice
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Planar-view-tp25908228p25908228.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Planar-view-tp25908228p25908228.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the geotools - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Planar-view-tp25908228p25910141.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25908228</id>
	<title>Planar view</title>
	<published>2009-10-15T06:00:20Z</published>
	<updated>2009-10-15T06:00:20Z</updated>
	<author>
		<name>Sagittarius</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&lt;br&gt;I followed the quickstart tutorial on &lt;a href=&quot;http://geotools.org/quickstart.html#quickstart&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;the geotools homepage &lt;/a&gt;.
&lt;br&gt;This tutorial is working great, but I have a question. I searched the internet for over 2 days, but I couldn't find an answer to it..
&lt;br&gt;&lt;br&gt;The tutorial loads a shapefile and displays it. But as far as I understand, it is projected with a CoordinateReferenceSystem.wgs84.
&lt;br&gt;This way the shapefile isn't planar, but it looks like it is bend over the 'globe'. It isn't that much but you can see it.
&lt;br&gt;&lt;br&gt;What do I have to do to get a planar view, like it is drawn on a peace of paper.
&lt;br&gt;I know you've to do something with the CRS and projection and maybe MathTransform, but I couldn't find a good example.
&lt;br&gt;Maybe it can not be done with the outcome of the tutorial...
&lt;br&gt;&lt;br&gt;I'll hope some could help me, point me in the good direction.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Maurice&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Planar-view-tp25908228p25908228.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25356061</id>
	<title>Re: Geottols WMS connection with ESRI Server</title>
	<published>2009-09-08T16:42:48Z</published>
	<updated>2009-09-08T16:42:48Z</updated>
	<author>
		<name>Jody Garnett-3</name>
	</author>
	<content type="html">Morning Moverton - can I ask you to sign up for the geotools-gt2-users &amp;nbsp;
&lt;br&gt;list :-) This &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25356061&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev@...&lt;/a&gt; is not really used; and I am &amp;nbsp;
&lt;br&gt;not sure how to shut it off.
&lt;br&gt;&lt;br&gt;With respect to ESRI services we have a couple of bug reports in our &amp;nbsp;
&lt;br&gt;issue tracker; but it sounds like you are hitting some that have not &amp;nbsp;
&lt;br&gt;been reported yet.
&lt;br&gt;&lt;br&gt;I am not sure about GTCloneUtils; but we did switch to a new feature &amp;nbsp;
&lt;br&gt;model for GeoTools 2.5.x so updating will be a bit of work if you are &amp;nbsp;
&lt;br&gt;doing more then WMS.
&lt;br&gt;&lt;br&gt;You should however try GeoTools 2.5.x WMS support to see if it can &amp;nbsp;
&lt;br&gt;connect to your ESRI server; you could write a test case or download a &amp;nbsp;
&lt;br&gt;recent uDig app that uses it in order to test (&lt;a href=&quot;http://udig.refractions.net/download/unstable/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://udig.refractions.net/download/unstable/&lt;/a&gt;&amp;nbsp;
&lt;br&gt;).
&lt;br&gt;&lt;br&gt;Let us continue this conversation on the geotools-gt2-users list...
&lt;br&gt;&lt;br&gt;Jody
&lt;br&gt;&lt;br&gt;On 09/09/2009, at 1:04 AM, moverton wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hello All,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am attempting to refactor an older in house product that utilizes &amp;nbsp;
&lt;br&gt;&amp;gt; GeoTools
&lt;br&gt;&amp;gt; 2.4.4. The code currently works with making WMS connections to &amp;nbsp;
&lt;br&gt;&amp;gt; GeoServer,
&lt;br&gt;&amp;gt; but we would like to also be able to connect to an ESRI map server. &amp;nbsp;
&lt;br&gt;&amp;gt; When
&lt;br&gt;&amp;gt; just trying to change the URL, I have noticed some strange behavior: &amp;nbsp;
&lt;br&gt;&amp;gt; the WMS
&lt;br&gt;&amp;gt; getCapabilities request is sent off, but in handling the response, &amp;nbsp;
&lt;br&gt;&amp;gt; it throws
&lt;br&gt;&amp;gt; and XML parsing error saying that a simple type cannot have any &amp;nbsp;
&lt;br&gt;&amp;gt; children. I
&lt;br&gt;&amp;gt; am trying to determine if this issue comes from just using an older &amp;nbsp;
&lt;br&gt;&amp;gt; version
&lt;br&gt;&amp;gt; of GeoTools (unsure of the upgrade due to a gratuitous use of &amp;nbsp;
&lt;br&gt;&amp;gt; GTCloneUtils
&lt;br&gt;&amp;gt; for cloning), or if there is some fundamental difference in the &amp;nbsp;
&lt;br&gt;&amp;gt; schema being
&lt;br&gt;&amp;gt; used.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Another bit of interest. I did notice that the ESRI server would not &amp;nbsp;
&lt;br&gt;&amp;gt; respond
&lt;br&gt;&amp;gt; using gzip compression no matter how the IIS server was configured. &amp;nbsp;
&lt;br&gt;&amp;gt; So I
&lt;br&gt;&amp;gt; removed that request from the underlying WMS calls to see if that &amp;nbsp;
&lt;br&gt;&amp;gt; would
&lt;br&gt;&amp;gt; help. All that changed is that I noticed a WMS request with version &amp;nbsp;
&lt;br&gt;&amp;gt; 1.4,
&lt;br&gt;&amp;gt; then another one with 1.0 before it crapped out and died with the same
&lt;br&gt;&amp;gt; error.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Anyways, if anyone has any tips or advice, I would be grateful. If &amp;nbsp;
&lt;br&gt;&amp;gt; the HTTP
&lt;br&gt;&amp;gt; requests and subsequent responses would be useful, let me know and &amp;nbsp;
&lt;br&gt;&amp;gt; I'll go
&lt;br&gt;&amp;gt; grab them (they are on another box not connected to the internet).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; moverton
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Geottols-WMS-connection-with-ESRI-Server-tp25348001p25348001.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Geottols-WMS-connection-with-ESRI-Server-tp25348001p25348001.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the geotools - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Geottols-WMS-connection-with-ESRI-Server-tp25348001p25356061.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25355842</id>
	<title>Re: Geottols WMS connection with ESRI Server</title>
	<published>2009-09-08T16:20:09Z</published>
	<updated>2009-09-08T16:20:09Z</updated>
	<author>
		<name>Jody Garnett-3</name>
	</author>
	<content type="html">Hey moverton; you will want to send this to the udig-users list on &amp;nbsp;
&lt;br&gt;source forge.
&lt;br&gt;&lt;br&gt;More information here:
&lt;br&gt;- &lt;a href=&quot;http://geotools.org/getinvolved.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://geotools.org/getinvolved.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Jody
&lt;br&gt;&lt;br&gt;On 09/09/2009, at 1:04 AM, moverton wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hello All,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am attempting to refactor an older in house product that utilizes &amp;nbsp;
&lt;br&gt;&amp;gt; GeoTools
&lt;br&gt;&amp;gt; 2.4.4. The code currently works with making WMS connections to &amp;nbsp;
&lt;br&gt;&amp;gt; GeoServer,
&lt;br&gt;&amp;gt; but we would like to also be able to connect to an ESRI map server. &amp;nbsp;
&lt;br&gt;&amp;gt; When
&lt;br&gt;&amp;gt; just trying to change the URL, I have noticed some strange behavior: &amp;nbsp;
&lt;br&gt;&amp;gt; the WMS
&lt;br&gt;&amp;gt; getCapabilities request is sent off, but in handling the response, &amp;nbsp;
&lt;br&gt;&amp;gt; it throws
&lt;br&gt;&amp;gt; and XML parsing error saying that a simple type cannot have any &amp;nbsp;
&lt;br&gt;&amp;gt; children. I
&lt;br&gt;&amp;gt; am trying to determine if this issue comes from just using an older &amp;nbsp;
&lt;br&gt;&amp;gt; version
&lt;br&gt;&amp;gt; of GeoTools (unsure of the upgrade due to a gratuitous use of &amp;nbsp;
&lt;br&gt;&amp;gt; GTCloneUtils
&lt;br&gt;&amp;gt; for cloning), or if there is some fundamental difference in the &amp;nbsp;
&lt;br&gt;&amp;gt; schema being
&lt;br&gt;&amp;gt; used.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Another bit of interest. I did notice that the ESRI server would not &amp;nbsp;
&lt;br&gt;&amp;gt; respond
&lt;br&gt;&amp;gt; using gzip compression no matter how the IIS server was configured. &amp;nbsp;
&lt;br&gt;&amp;gt; So I
&lt;br&gt;&amp;gt; removed that request from the underlying WMS calls to see if that &amp;nbsp;
&lt;br&gt;&amp;gt; would
&lt;br&gt;&amp;gt; help. All that changed is that I noticed a WMS request with version &amp;nbsp;
&lt;br&gt;&amp;gt; 1.4,
&lt;br&gt;&amp;gt; then another one with 1.0 before it crapped out and died with the same
&lt;br&gt;&amp;gt; error.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Anyways, if anyone has any tips or advice, I would be grateful. If &amp;nbsp;
&lt;br&gt;&amp;gt; the HTTP
&lt;br&gt;&amp;gt; requests and subsequent responses would be useful, let me know and &amp;nbsp;
&lt;br&gt;&amp;gt; I'll go
&lt;br&gt;&amp;gt; grab them (they are on another box not connected to the internet).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; moverton
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Geottols-WMS-connection-with-ESRI-Server-tp25348001p25348001.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Geottols-WMS-connection-with-ESRI-Server-tp25348001p25348001.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the geotools - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Geottols-WMS-connection-with-ESRI-Server-tp25348001p25355842.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25348001</id>
	<title>Geottols WMS connection with ESRI Server</title>
	<published>2009-09-08T08:04:29Z</published>
	<updated>2009-09-08T08:04:29Z</updated>
	<author>
		<name>moverton</name>
	</author>
	<content type="html">Hello All,
&lt;br&gt;&lt;br&gt;I am attempting to refactor an older in house product that utilizes GeoTools 2.4.4. The code currently works with making WMS connections to GeoServer, but we would like to also be able to connect to an ESRI map server. When just trying to change the URL, I have noticed some strange behavior: the WMS getCapabilities request is sent off, but in handling the response, it throws and XML parsing error saying that a simple type cannot have any children. I am trying to determine if this issue comes from just using an older version of GeoTools (unsure of the upgrade due to a gratuitous use of GTCloneUtils for cloning), or if there is some fundamental difference in the schema being used.
&lt;br&gt;&lt;br&gt;Another bit of interest. I did notice that the ESRI server would not respond using gzip compression no matter how the IIS server was configured. So I removed that request from the underlying WMS calls to see if that would help. All that changed is that I noticed a WMS request with version 1.4, then another one with 1.0 before it crapped out and died with the same error.
&lt;br&gt;&lt;br&gt;Anyways, if anyone has any tips or advice, I would be grateful. If the HTTP requests and subsequent responses would be useful, let me know and I'll go grab them (they are on another box not connected to the internet).
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;moverton&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Geottols-WMS-connection-with-ESRI-Server-tp25348001p25348001.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24604366</id>
	<title>Problem with transofrmation, jar or classpath problem.</title>
	<published>2009-07-22T04:11:30Z</published>
	<updated>2009-07-22T04:11:30Z</updated>
	<author>
		<name>sosna</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I am trying to transform point from one crs to another. I wrote following code:
&lt;br&gt;&lt;br&gt;public static void main(String[] args) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; 	// 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CoordinateReferenceSystem sourceCRS = null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CoordinateReferenceSystem destCRS = null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; GeometryFactory geometryFactory = JTSFactoryFinder.getGeometryFactory( null );	
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; WKTReader reader = new WKTReader( geometryFactory );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Point p = null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; p = (Point) reader.read(&amp;quot;POINT(1 2)&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (ParseException e2) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e2.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Point p2 = null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sourceCRS = CRS.decode(&amp;quot;EPSG:4326&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; destCRS = CRS.decode(&amp;quot;EPSG:2176&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (NoSuchAuthorityCodeException e1) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e1.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (FactoryException e1) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e1.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MathTransform math =CRS.findMathTransform(sourceCRS, destCRS);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; p2 = (Point) JTS.transform(p, math);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (MismatchedDimensionException e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (TransformException e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (FactoryException e1) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // TODO Auto-generated catch block
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e1.printStackTrace();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;POINT: &amp;quot; + p.toString());
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;POINT TRANSFORMED: &amp;quot; + p2.toString());
&lt;br&gt;&amp;nbsp;
&lt;br&gt;The program works fine under eclipse and i have result as following:
&lt;br&gt;&lt;br&gt;POINT: POINT (1 2)
&lt;br&gt;POINT TRANSFORMED: POINT (113493.97844319436 4040522.2084545777)
&lt;br&gt;&lt;br&gt;The problem is when i generate jar for this project. When i run it using: java -jar ctd.jar i have following error:
&lt;br&gt;&lt;br&gt;Exception in thread &amp;quot;main&amp;quot; java.lang.NoClassDefFoundError: org/opengis/referenci
&lt;br&gt;ng/FactoryException
&lt;br&gt;Caused by: java.lang.ClassNotFoundException: org.opengis.referencing.FactoryExce
&lt;br&gt;ption
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.net.URLClassLoader$1.run(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.security.AccessController.doPrivileged(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.net.URLClassLoader.findClass(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClass(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClass(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.ClassLoader.loadClassInternal(Unknown Source)
&lt;br&gt;Could not find the main class: CoordinateTransformer. Program will exit.
&lt;br&gt;&lt;br&gt;I have following jars in project:
&lt;br&gt;&lt;br&gt;geoapi-2.2-M1.jar
&lt;br&gt;gt-api-2.5.2.jar
&lt;br&gt;gt-epsg-hsql-2.5.2.jar
&lt;br&gt;gt-main-2.5.2.jar
&lt;br&gt;gt-metadata-2.5.2.jar
&lt;br&gt;gt-referencing-2.5.2.jar
&lt;br&gt;hsqldb-1.8.0.7.jar
&lt;br&gt;jsr-275-1.0-beta-2.jar
&lt;br&gt;jts-1.9.jar
&lt;br&gt;vecmath-1.3.1.jar
&lt;br&gt;&lt;br&gt;What i am doing wrong? Could someone tell me where is hsql database file ??&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-transofrmation%2C-jar-or-classpath-problem.-tp24604366p24604366.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24362332</id>
	<title>Re: 3D support</title>
	<published>2009-07-06T13:30:30Z</published>
	<updated>2009-07-06T13:30:30Z</updated>
	<author>
		<name>Andrea Aime-4</name>
	</author>
	<content type="html">rockbold ha scritto:
&lt;br&gt;&amp;gt; Hello all,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am trying to assess various possibilities for developing
&lt;br&gt;&amp;gt; a certain GIS project I am going to be working on in near future.
&lt;br&gt;&amp;gt; Does GeoTools currently support 3D rendering of geographical data.
&lt;br&gt;&amp;gt; My project might need an interactive Lat/Long map but in 3D (like google
&lt;br&gt;&amp;gt; earth).
&lt;br&gt;&amp;gt; Is it currently possible through geotools?
&lt;br&gt;&lt;br&gt;With GeoTools alone, nope, but you can have a look at the GeoWind 
&lt;br&gt;project that mixes together the Worldwind 3d rendering and native
&lt;br&gt;datasets with GeoTools:
&lt;br&gt;&lt;a href=&quot;http://geowind.javaforge.com/project/2425&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://geowind.javaforge.com/project/2425&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Andrea
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andrea Aime
&lt;br&gt;OpenGeo - &lt;a href=&quot;http://opengeo.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opengeo.org&lt;/a&gt;&lt;br&gt;Expert service straight from the developers.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/3D-support-tp24362256p24362332.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24362256</id>
	<title>3D support</title>
	<published>2009-07-06T13:26:00Z</published>
	<updated>2009-07-06T13:26:00Z</updated>
	<author>
		<name>rockbold</name>
	</author>
	<content type="html">Hello all,
&lt;br&gt;&lt;br&gt;I am trying to assess various possibilities for developing
&lt;br&gt;a certain GIS project I am going to be working on in near future.
&lt;br&gt;Does GeoTools currently support 3D rendering of geographical data.
&lt;br&gt;My project might need an interactive Lat/Long map but in 3D (like google earth).
&lt;br&gt;Is it currently possible through geotools?
&lt;br&gt;&lt;br&gt;Thanks in advance,
&lt;br&gt;Tanveer&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/3D-support-tp24362256p24362256.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24320972</id>
	<title>GeoTools &amp; GeoTIFF Help</title>
	<published>2009-07-03T03:31:35Z</published>
	<updated>2009-07-03T03:31:35Z</updated>
	<author>
		<name>ami09</name>
	</author>
	<content type="html">Hello to everyone,
&lt;br&gt;&lt;br&gt;I’m very new in GeoTools and GeoTiFF and I’ve some problems to create GeoTIFF. Maybe you can help me.
&lt;br&gt;&lt;br&gt;What I want to implement is:
&lt;br&gt;&lt;br&gt;I’ve some data like: latitude, longitude and a value. A value is an “int”-number.
&lt;br&gt;I want to create a GeoTIFF by using of e.g. such methods/functions like this: &amp;nbsp;saveValue(double lat, double lon, int value) i.e. create a TIFF-Image and save a value on position (lat,lon). After creation of an TIFF-image, it should be possible to read the same data again from the TIFF-Image i.e. lat, lon and the value
&lt;br&gt;&lt;br&gt;My question is: is it possible to implement it with GeoTools and can you explain it to me with an example or do you know any other JAVA-Frameworks, which helps me to solve such problems???
&lt;br&gt;&lt;br&gt;Thanks in advance.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Amir &lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GeoTools---GeoTIFF-Help-tp24320972p24320972.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24263698</id>
	<title>Re: Opensource GIS spatial databases</title>
	<published>2009-06-29T16:28:07Z</published>
	<updated>2009-06-29T16:28:07Z</updated>
	<author>
		<name>Jody Garnett-3</name>
	</author>
	<content type="html">Check out the plugins directory for a list of supported databases
&lt;br&gt;(DB2, etc...) and the unsupported directory for a few more (Oracle,
&lt;br&gt;etc...).
&lt;br&gt;&lt;br&gt;There are also some experimental databases taking shape in
&lt;br&gt;unsupported/jdbc-ng (which we would love help testing).
&lt;br&gt;&lt;br&gt;jody
&lt;br&gt;&lt;br&gt;On Tue, Jun 30, 2009 at 8:19 AM, rockbold&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24263698&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rockbold@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hello all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am new to GIS application development and GeoTools.
&lt;br&gt;&amp;gt; I am planning to develop a GIS system that would allow me to
&lt;br&gt;&amp;gt; graphically represents 3D points where the axes are as follows
&lt;br&gt;&amp;gt; X-axis: Geographical Latitude
&lt;br&gt;&amp;gt; Z-Axis: Geographical Longitude
&lt;br&gt;&amp;gt; Y-Axis(vertical): Time
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The purpose of the project is to mark geographical location of specific
&lt;br&gt;&amp;gt; occurences in time.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I understand one of the components needed for this is a PostGIS spatial
&lt;br&gt;&amp;gt; database.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I want to bypass the time and effort to develop a spatial database. My
&lt;br&gt;&amp;gt; requirement is pretty basic.
&lt;br&gt;&amp;gt; Are there any open source PostGIS(or other spatial DBs compatible with
&lt;br&gt;&amp;gt; Geotools) db available which
&lt;br&gt;&amp;gt; my web application will be able to use.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks in advance.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; cheers
&lt;br&gt;&amp;gt; Tanveer
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Opensource-GIS-spatial-databases-tp24261687p24261687.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Opensource-GIS-spatial-databases-tp24261687p24261687.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the geotools - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Opensource-GIS-spatial-databases-tp24261687p24263698.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24261687</id>
	<title>Opensource GIS spatial databases</title>
	<published>2009-06-29T15:19:25Z</published>
	<updated>2009-06-29T15:19:25Z</updated>
	<author>
		<name>rockbold</name>
	</author>
	<content type="html">Hello all,
&lt;br&gt;&lt;br&gt;I am new to GIS application development and GeoTools.
&lt;br&gt;I am planning to develop a GIS system that would allow me to
&lt;br&gt;graphically represents 3D points where the axes are as follows
&lt;br&gt;X-axis: Geographical Latitude
&lt;br&gt;Z-Axis: Geographical Longitude
&lt;br&gt;Y-Axis(vertical): Time
&lt;br&gt;&lt;br&gt;The purpose of the project is to mark geographical location of specific occurences in time.
&lt;br&gt;&lt;br&gt;I understand one of the components needed for this is a PostGIS spatial database.
&lt;br&gt;&lt;br&gt;I want to bypass the time and effort to develop a spatial database. My requirement is pretty basic.
&lt;br&gt;Are there any open source PostGIS(or other spatial DBs compatible with Geotools) db available which
&lt;br&gt;my web application will be able to use.
&lt;br&gt;&lt;br&gt;Thanks in advance.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;Tanveer
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Opensource-GIS-spatial-databases-tp24261687p24261687.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23933332</id>
	<title>Re: Geotools-Oracle Spatial DB Connection Problem</title>
	<published>2009-06-08T15:22:05Z</published>
	<updated>2009-06-08T15:22:05Z</updated>
	<author>
		<name>Jody Garnett-3</name>
	</author>
	<content type="html">Did you install the oracle database drivers?
&lt;br&gt;Jody
&lt;br&gt;&lt;br&gt;On Tue, Jun 9, 2009 at 7:02 AM, ilker&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23933332&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ilitheblack@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Everybody i try to connect my spatial db which was created on oracle
&lt;br&gt;&amp;gt; 11g...
&lt;br&gt;&amp;gt; i have to following oracleConnection.properties file:
&lt;br&gt;&amp;gt; #
&lt;br&gt;&amp;gt; # Properties needed to connect to PostGIS
&lt;br&gt;&amp;gt; #
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; # Must be the string &amp;quot;posgis&amp;quot;
&lt;br&gt;&amp;gt; dbtype=oracle
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; # Machine name or IP address to connect to
&lt;br&gt;&amp;gt; host=193.140.161.17
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; # Port number to connect to, default 5432
&lt;br&gt;&amp;gt; port=1521
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; # The database schema to access
&lt;br&gt;&amp;gt; schema = EBSYS
&lt;br&gt;&amp;gt; database=ORACLE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; # User name and password
&lt;br&gt;&amp;gt; user=EBSYS
&lt;br&gt;&amp;gt; passwd=EBSYS
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ..............................................................
&lt;br&gt;&amp;gt; And my java code is going here:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Reader okuyucu = new FileReader(&amp;quot;C:
&lt;br&gt;&amp;gt; Documents and Settings\\ilitheblack\\Belgelerim
&lt;br&gt;&amp;gt; &amp;quot; +
&lt;br&gt;&amp;gt; &amp;quot;EclipseCalismaAlani\\BitirmeProjesi\\SpatialDataManipulation\\src\\main
&lt;br&gt;&amp;gt; java&amp;quot; +
&lt;br&gt;&amp;gt; &amp;quot;
&lt;br&gt;&amp;gt; oracleConnection.properties&amp;quot;);
&lt;br&gt;&amp;gt; Properties config = new Properties();
&lt;br&gt;&amp;gt; config.load(okuyucu);
&lt;br&gt;&amp;gt; SpatialUtilities.veriDeposu = DataStoreFinder
&lt;br&gt;&amp;gt; .getDataStore(config);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; but it always returns null datastore....
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Geotools-Oracle-Spatial-DB-Connection-Problem-tp23932092p23932092.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Geotools-Oracle-Spatial-DB-Connection-Problem-tp23932092p23932092.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the geotools - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Geotools-Oracle-Spatial-DB-Connection-Problem-tp23932092p23933332.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23932092</id>
	<title>Geotools-Oracle Spatial DB Connection Problem</title>
	<published>2009-06-08T14:02:55Z</published>
	<updated>2009-06-08T14:02:55Z</updated>
	<author>
		<name>ilker</name>
	</author>
	<content type="html">Hi Everybody i try to connect my spatial db which was created on oracle 11g...
&lt;br&gt;i have to following oracleConnection.properties file:
&lt;br&gt;#
&lt;br&gt;# Properties needed to connect to PostGIS
&lt;br&gt;# 
&lt;br&gt;&lt;br&gt;# Must be the string &amp;quot;posgis&amp;quot;
&lt;br&gt;dbtype=oracle
&lt;br&gt;&lt;br&gt;# Machine name or IP address to connect to
&lt;br&gt;host=193.140.161.17
&lt;br&gt;&lt;br&gt;# Port number to connect to, default 5432
&lt;br&gt;port=1521
&lt;br&gt;&lt;br&gt;# The database schema to access
&lt;br&gt;schema = EBSYS
&lt;br&gt;database=ORACLE
&lt;br&gt;&lt;br&gt;# User name and password
&lt;br&gt;user=EBSYS
&lt;br&gt;passwd=EBSYS
&lt;br&gt;&lt;br&gt;..............................................................
&lt;br&gt;And my java code is going here:
&lt;br&gt;&lt;br&gt;Reader okuyucu = new FileReader(&amp;quot;C:
&lt;br&gt;Documents and Settings\\ilitheblack\\Belgelerim
&lt;br&gt;&amp;quot; +
&lt;br&gt;&amp;quot;EclipseCalismaAlani\\BitirmeProjesi\\SpatialDataManipulation\\src\\main
&lt;br&gt;java&amp;quot; +
&lt;br&gt;&amp;quot;
&lt;br&gt;oracleConnection.properties&amp;quot;);
&lt;br&gt;Properties config = new Properties();
&lt;br&gt;config.load(okuyucu);
&lt;br&gt;SpatialUtilities.veriDeposu = DataStoreFinder
&lt;br&gt;.getDataStore(config);
&lt;br&gt;&lt;br&gt;but it always returns null datastore....&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Geotools-Oracle-Spatial-DB-Connection-Problem-tp23932092p23932092.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23898813</id>
	<title>Re: How to create a filter by a propertyName ?</title>
	<published>2009-06-05T22:15:48Z</published>
	<updated>2009-06-05T22:15:48Z</updated>
	<author>
		<name>Jody Garnett-3</name>
	</author>
	<content type="html">Fid filter is used to check the feature ids or identifiers; this
&lt;br&gt;should work - however it sounds like you may have a list of names (in
&lt;br&gt;the form of an attribute called &amp;quot;NAME&amp;quot;)?.
&lt;br&gt;&lt;br&gt;If you would like to check an attribute please use an or filter to
&lt;br&gt;perform a bunch of equals checks. You may also wish to consider the
&lt;br&gt;use of the like filter and wild card expressions.
&lt;br&gt;&lt;br&gt;In CQL syntax:
&lt;br&gt;NAME = 'Fred' OR NAME = 'John'
&lt;br&gt;&lt;br&gt;For more CQL examples check the user guide.
&lt;br&gt;&lt;br&gt;Jody
&lt;br&gt;&lt;br&gt;On Sat, Jun 6, 2009 at 2:41 AM, Sovireak&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23898813&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sovireak.moeung@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; I want to use geotools for getting features from my Datastore Oracle.
&lt;br&gt;&amp;gt; I want to get only features filtered by a list of names.
&lt;br&gt;&amp;gt; How can i manage to build my filter and my query to get this feature
&lt;br&gt;&amp;gt; collection?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This is what i have tried :
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; public FeatureCollection getCollection(String typeName, List&amp;lt;String&amp;gt;
&lt;br&gt;&amp;gt; featureIdList)
&lt;br&gt;&amp;gt;    throws IOException {
&lt;br&gt;&amp;gt;    FilterFactory filterFactory = FilterFactoryFinder.createFilterFactory();
&lt;br&gt;&amp;gt;    FidFilter fidFilter = filterFactory.createFidFilter();
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    Iterator&amp;lt;String&amp;gt; featureIdIterator = featureIdList.iterator();
&lt;br&gt;&amp;gt;    while (featureIdIterator.hasNext()) {
&lt;br&gt;&amp;gt;        fidFilter.addFid(featureIdIterator.next());
&lt;br&gt;&amp;gt;    }
&lt;br&gt;&amp;gt;    DefaultQuery query = new DefaultQuery();
&lt;br&gt;&amp;gt;    query.setTypeName(typeName);
&lt;br&gt;&amp;gt;    query.setFilter(fidFilter);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    FeatureSource table = factory.getDataStore().getFeatureSource(typeName);
&lt;br&gt;&amp;gt;    return table.getFeatures(query);
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The FeatureCollection does not contain my features.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/How-to-create-a-filter-by-a-propertyName---tp23891628p23891628.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/How-to-create-a-filter-by-a-propertyName---tp23891628p23891628.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the geotools - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-create-a-filter-by-a-propertyName---tp23891628p23898813.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23891628</id>
	<title>How to create a filter by a propertyName ?</title>
	<published>2009-06-05T09:41:47Z</published>
	<updated>2009-06-05T09:41:47Z</updated>
	<author>
		<name>Sovireak</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;I want to use geotools for getting features from my Datastore Oracle.
&lt;br&gt;I want to get only features filtered by a list of names.
&lt;br&gt;How can i manage to build my filter and my query to get this feature collection?
&lt;br&gt;&lt;br&gt;This is what i have tried :
&lt;br&gt;&lt;br&gt;public FeatureCollection getCollection(String typeName, List&amp;lt;String&amp;gt; featureIdList)
&lt;br&gt;&amp;nbsp; &amp;nbsp; throws IOException {
&lt;br&gt;&amp;nbsp; &amp;nbsp; FilterFactory filterFactory = FilterFactoryFinder.createFilterFactory();
&lt;br&gt;&amp;nbsp; &amp;nbsp; FidFilter fidFilter = filterFactory.createFidFilter();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Iterator&amp;lt;String&amp;gt; featureIdIterator = featureIdList.iterator();
&lt;br&gt;&amp;nbsp; &amp;nbsp; while (featureIdIterator.hasNext()) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fidFilter.addFid(featureIdIterator.next());
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; DefaultQuery query = new DefaultQuery();
&lt;br&gt;&amp;nbsp; &amp;nbsp; query.setTypeName(typeName);
&lt;br&gt;&amp;nbsp; &amp;nbsp; query.setFilter(fidFilter);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; FeatureSource table = factory.getDataStore().getFeatureSource(typeName);
&lt;br&gt;&amp;nbsp; &amp;nbsp; return table.getFeatures(query);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;The FeatureCollection does not contain my features.
&lt;br&gt;&lt;br&gt;Thanks&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-create-a-filter-by-a-propertyName---tp23891628p23891628.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23389053</id>
	<title>Looking for class files in org.geotools.catalog</title>
	<published>2009-05-05T07:50:13Z</published>
	<updated>2009-05-05T07:50:13Z</updated>
	<author>
		<name>Pascal Jäger</name>
	</author>
	<content type="html">Hey there,
&lt;br&gt;&lt;br&gt;I have a tool based on geotools 2.3 and now I am trying to implement it
&lt;br&gt;against 2.6.
&lt;br&gt;But I have some difficulties with geotools.catalog.
&lt;br&gt;I found out that ServiceInfo and GeoResourcInfo have moved to
&lt;br&gt;geotools.data (of which I already have a jar file containing them).
&lt;br&gt;Now I found in the JavaDoc that classes like AbstractGeoResource,
&lt;br&gt;GeoResource and Service have been moved into
&lt;br&gt;the gt-library.jar or the gt-unsupported.jar. But unfortunatelly I can
&lt;br&gt;find neither of these jars.
&lt;br&gt;Where can I get them?
&lt;br&gt;&lt;br&gt;I hope you can help.
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;&lt;br&gt;Pascal
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Looking-for-class-files-in-org.geotools.catalog-tp23389053p23389053.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23317575</id>
	<title>animation support in geotools</title>
	<published>2009-04-30T07:44:03Z</published>
	<updated>2009-04-30T07:44:03Z</updated>
	<author>
		<name>hashara</name>
	</author>
	<content type="html">i want to take data sets for 4 time units from a database and display the variation from one dataset to another with time as a flash animation. does geotools support this kind of operation? please provide any tutorial or source codes.. &lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/animation-support-in-geotools-tp23317575p23317575.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19376314</id>
	<title>required artifacts are missing</title>
	<published>2008-09-08T09:54:01Z</published>
	<updated>2008-09-08T09:54:01Z</updated>
	<author>
		<name>djrenz</name>
	</author>
	<content type="html">I am new to GeoTools and java. 
&lt;br&gt;&lt;br&gt;I have been working with ArcObjects and C# for a very long time, 
&lt;br&gt;but would like to start digging in to GeoTools. 
&lt;br&gt;&lt;br&gt;I downloaded GeoTools 2.4-M2. 
&lt;br&gt;I am using NetBeans 6.1. 
&lt;br&gt;&lt;br&gt;When i try to create the demo apps (&lt;a href=&quot;http://docs.codehaus.org/display/GEOTDOC/Welcome+to+NetBeans+developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.codehaus.org/display/GEOTDOC/Welcome+to+NetBeans+developers&lt;/a&gt;) 
&lt;br&gt;I keep getting some build errors. 
&lt;br&gt;&lt;br&gt;I am hoping that someone can point in the correct direction so that i can run the demo apps. 
&lt;br&gt;I am not sure if this is because i have setup the project incorrectly or i have missing libraries, or something 
&lt;br&gt;else. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;# begin errors 
&lt;br&gt;--------------------------------------- 
&lt;br&gt;[ERROR]Transitive dependency resolution for scope: compile has failed for your project. 
&lt;br&gt;[ERROR]Error message: Missing: 
&lt;br&gt;[ERROR]---------- 
&lt;br&gt;[ERROR]1) org.geotools.demo:mappane:jar:1.0-SNAPSHOT 
&lt;br&gt;[ERROR] &amp;nbsp;Try downloading the file manually from the project website. 
&lt;br&gt;[ERROR] &amp;nbsp;Then, install it using the command: 
&lt;br&gt;[ERROR] &amp;nbsp; &amp;nbsp; &amp;nbsp;mvn install:install-file -DgroupId=org.geotools.demo -DartifactId=mappane -Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file 
&lt;br&gt;[ERROR] &amp;nbsp;Alternatively, if you host your own repository you can deploy the file there: 
&lt;br&gt;[ERROR] &amp;nbsp; &amp;nbsp; &amp;nbsp;mvn deploy:deploy-file -DgroupId=org.geotools.demo -DartifactId=mappane -Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id] 
&lt;br&gt;[ERROR] &amp;nbsp;Path to dependency: 
&lt;br&gt;[ERROR] &amp;nbsp; 1) org.mycompany:geoTools24M2:jar:1.0-SNAPSHOT 
&lt;br&gt;[ERROR] &amp;nbsp; 2) org.geotools.demo:mappane:jar:1.0-SNAPSHOT 
&lt;br&gt;[ERROR]2) org.geotools:wfs:jar:1.0-SNAPSHOT 
&lt;br&gt;[ERROR] &amp;nbsp;Try downloading the file manually from the project website. 
&lt;br&gt;[ERROR] &amp;nbsp;Then, install it using the command: 
&lt;br&gt;[ERROR] &amp;nbsp; &amp;nbsp; &amp;nbsp;mvn install:install-file -DgroupId=org.geotools -DartifactId=wfs -Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file 
&lt;br&gt;[ERROR] &amp;nbsp;Alternatively, if you host your own repository you can deploy the file there: 
&lt;br&gt;[ERROR] &amp;nbsp; &amp;nbsp; &amp;nbsp;mvn deploy:deploy-file -DgroupId=org.geotools -DartifactId=wfs -Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id] 
&lt;br&gt;[ERROR] &amp;nbsp;Path to dependency: 
&lt;br&gt;[ERROR] &amp;nbsp; 1) org.mycompany:geoTools24M2:jar:1.0-SNAPSHOT 
&lt;br&gt;[ERROR] &amp;nbsp; 2) org.geotools:wfs:jar:1.0-SNAPSHOT 
&lt;br&gt;[ERROR]3) org.geotools:postgis:jar:1.0-SNAPSHOT 
&lt;br&gt;[ERROR] &amp;nbsp;Try downloading the file manually from the project website. 
&lt;br&gt;[ERROR] &amp;nbsp;Then, install it using the command: 
&lt;br&gt;[ERROR] &amp;nbsp; &amp;nbsp; &amp;nbsp;mvn install:install-file -DgroupId=org.geotools -DartifactId=postgis -Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file 
&lt;br&gt;[ERROR] &amp;nbsp;Alternatively, if you host your own repository you can deploy the file there: 
&lt;br&gt;[ERROR] &amp;nbsp; &amp;nbsp; &amp;nbsp;mvn deploy:deploy-file -DgroupId=org.geotools -DartifactId=postgis -Dversion=1.0-SNAPSHOT -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id] 
&lt;br&gt;[ERROR] &amp;nbsp;Path to dependency: 
&lt;br&gt;[ERROR] &amp;nbsp; 1) org.mycompany:geoTools24M2:jar:1.0-SNAPSHOT 
&lt;br&gt;[ERROR] &amp;nbsp; 2) org.geotools:postgis:jar:1.0-SNAPSHOT 
&lt;br&gt;[ERROR]---------- 
&lt;br&gt;[ERROR]3 required artifacts are missing. 
&lt;br&gt;[ERROR]for artifact: 
&lt;br&gt;[ERROR] &amp;nbsp;org.mycompany:geoTools24M2:jar:1.0-SNAPSHOT 
&lt;br&gt;[ERROR]from the specified remote repositories: 
&lt;br&gt;[ERROR] &amp;nbsp;central (&lt;a href=&quot;http://repo1.maven.org/maven2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://repo1.maven.org/maven2&lt;/a&gt;) 
&lt;br&gt;[ERROR]Group-Id: org.mycompany 
&lt;br&gt;[ERROR]Artifact-Id: geoTools24M2 
&lt;br&gt;[ERROR]Version: 1.0-SNAPSHOT 
&lt;br&gt;[ERROR]From file: D:\_David\_Development\Apps\Java\geoTools24M2\pom.xml 
&lt;br&gt;--------------------------------------------------------- 
&lt;br&gt;#end errors 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Any help would be appreciated. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks, 
&lt;br&gt;david &lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/required-artifacts-are-missing-tp19376314p19376314.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18530580</id>
	<title>Re: NadconTransform</title>
	<published>2008-07-18T07:31:24Z</published>
	<updated>2008-07-18T07:31:24Z</updated>
	<author>
		<name>Jody Garnett</name>
	</author>
	<content type="html">Hi Nathanial; there is a source forge users list for questions. We don't 
&lt;br&gt;use the codehaus list; although I have not figure out how to shut it off.
&lt;br&gt;Jody
&lt;br&gt;&lt;br&gt;nathanial wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have some coordinates in the state plane system, using the NAD83 datum, and
&lt;br&gt;&amp;gt; I'd like to convert them to NAD27 using the NADCONTransform class. I've
&lt;br&gt;&amp;gt; tried having geotools convert them into geographical coordinates (from
&lt;br&gt;&amp;gt; lambert conic) but the NADCONTransform class keeps telling me that my points
&lt;br&gt;&amp;gt; are not on the grid. 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm starting from EPSG:2229 and converting to EPSG:4957 before passing my
&lt;br&gt;&amp;gt; points off to the NADCONTransform, using conus.las/los for my grid. Is there
&lt;br&gt;&amp;gt; something else I should be doing? Does anyone know how the NADCONTransform
&lt;br&gt;&amp;gt; class is properly used? &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/NadconTransform-tp18522774p18530580.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18522774</id>
	<title>NadconTransform</title>
	<published>2008-07-17T22:12:21Z</published>
	<updated>2008-07-17T22:12:21Z</updated>
	<author>
		<name>nathanial</name>
	</author>
	<content type="html">I have some coordinates in the state plane system, using the NAD83 datum, and I'd like to convert them to NAD27 using the NADCONTransform class. I've tried having geotools convert them into geographical coordinates (from lambert conic) but the NADCONTransform class keeps telling me that my points are not on the grid. 
&lt;br&gt;&lt;br&gt;I'm starting from EPSG:2229 and converting to EPSG:4957 before passing my points off to the NADCONTransform, using conus.las/los for my grid. Is there something else I should be doing? Does anyone know how the NADCONTransform class is properly used? &amp;nbsp;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/NadconTransform-tp18522774p18522774.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16128464</id>
	<title>Re: Esri shapefile size constraint</title>
	<published>2008-03-17T23:57:46Z</published>
	<updated>2008-03-17T23:57:46Z</updated>
	<author>
		<name>Jody Garnett</name>
	</author>
	<content type="html">You never mentioned an error; even in your first message... we should 
&lt;br&gt;actually use the geotools - user list to talk over the use of the library.
&lt;br&gt;Jody
&lt;br&gt;Keenan wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Yes, i am using an iterator to stream through the contents of the shapefile 
&lt;br&gt;&amp;gt; like i am extracting details like geometry, attributes,fid etc. But what is
&lt;br&gt;&amp;gt; the error all about if its not the size that matters? Could you please
&lt;br&gt;&amp;gt; explain that and if possible provide a solution? I have breaking my head
&lt;br&gt;&amp;gt; over this for sometime now. 
&lt;br&gt;&amp;gt; I have posted the error in my first message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks a ton
&lt;br&gt;&amp;gt; Keenan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jody Garnett wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Yes the shapefile reading code actually does not *read* anything until 
&lt;br&gt;&amp;gt;&amp;gt; you open up an iterator(); and then it only keeps the file open as you 
&lt;br&gt;&amp;gt;&amp;gt; call next(), .. hasNext(), ... next() ... etc...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; So it streams the content into your application as you read; it does NOT 
&lt;br&gt;&amp;gt;&amp;gt; load it into memory allowing you to work with massive files.
&lt;br&gt;&amp;gt;&amp;gt; Note GIS data is almost always big; so this approach is needed.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; You can find large shapefiles on the web; have a look at GeoNetwork and 
&lt;br&gt;&amp;gt;&amp;gt; the uDig data page.
&lt;br&gt;&amp;gt;&amp;gt; Jody
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Esri-shapefile-size-constraint-tp16088529p16128464.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16114449</id>
	<title>Re: Esri shapefile size constraint</title>
	<published>2008-03-17T22:45:57Z</published>
	<updated>2008-03-17T22:45:57Z</updated>
	<author>
		<name>Keenan</name>
	</author>
	<content type="html">Yes, i am using an iterator to stream through the contents of the shapefile &amp;nbsp;like i am extracting details like geometry, attributes,fid etc. But what is the error all about if its not the size that matters? Could you please explain that and if possible provide a solution? I have breaking my head over this for sometime now. 
&lt;br&gt;I have posted the error in my first message
&lt;br&gt;&lt;br&gt;Thanks a ton
&lt;br&gt;Keenan
&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Jody Garnett wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Yes the shapefile reading code actually does not *read* anything until 
&lt;br&gt;you open up an iterator(); and then it only keeps the file open as you 
&lt;br&gt;call next(), .. hasNext(), ... next() ... etc...
&lt;br&gt;&lt;br&gt;So it streams the content into your application as you read; it does NOT 
&lt;br&gt;load it into memory allowing you to work with massive files.
&lt;br&gt;Note GIS data is almost always big; so this approach is needed.
&lt;br&gt;&lt;br&gt;You can find large shapefiles on the web; have a look at GeoNetwork and 
&lt;br&gt;the uDig data page.
&lt;br&gt;Jody
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;I wanted to read a shapefile using java and its successfully working
&lt;br&gt;&amp;gt; using geotools.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;I am using the program given in this link 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://docs.codehaus.org/display/GEOTDOC/04+How+to+Read+a+Shapefile&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.codehaus.org/display/GEOTDOC/04+How+to+Read+a+Shapefile&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; This program works shapefiles in size of KB . i want to know if the
&lt;br&gt;&amp;gt; program can read files exceeding in sizes that is files going upto a several
&lt;br&gt;&amp;gt; MB's.
&lt;br&gt;&amp;gt; PS : &amp;nbsp;I am asking this question because i am not able to find any shapefile
&lt;br&gt;&amp;gt; with size in MB.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; TIA
&lt;br&gt;&amp;gt; KEENAn
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Esri-shapefile-size-constraint-tp16088529p16114449.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16102244</id>
	<title>Re: Esri shapefile size constraint</title>
	<published>2008-03-17T09:17:05Z</published>
	<updated>2008-03-17T09:17:05Z</updated>
	<author>
		<name>Jody Garnett</name>
	</author>
	<content type="html">Yes the shapefile reading code actually does not *read* anything until 
&lt;br&gt;you open up an iterator(); and then it only keeps the file open as you 
&lt;br&gt;call next(), .. hasNext(), ... next() ... etc...
&lt;br&gt;&lt;br&gt;So it streams the content into your application as you read; it does NOT 
&lt;br&gt;load it into memory allowing you to work with massive files.
&lt;br&gt;Note GIS data is almost always big; so this approach is needed.
&lt;br&gt;&lt;br&gt;You can find large shapefiles on the web; have a look at GeoNetwork and 
&lt;br&gt;the uDig data page.
&lt;br&gt;Jody
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;I wanted to read a shapefile using java and its successfully working
&lt;br&gt;&amp;gt; using geotools.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;I am using the program given in this link 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://docs.codehaus.org/display/GEOTDOC/04+How+to+Read+a+Shapefile&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.codehaus.org/display/GEOTDOC/04+How+to+Read+a+Shapefile&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; This program works shapefiles in size of KB . i want to know if the
&lt;br&gt;&amp;gt; program can read files exceeding in sizes that is files going upto a several
&lt;br&gt;&amp;gt; MB's.
&lt;br&gt;&amp;gt; PS : &amp;nbsp;I am asking this question because i am not able to find any shapefile
&lt;br&gt;&amp;gt; with size in MB.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; TIA
&lt;br&gt;&amp;gt; KEENAn
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/geotools---dev-f11854.html&quot; embed=&quot;fixTarget[11854]&quot; target=&quot;_top&quot; &gt;geotools - dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Esri-shapefile-size-constraint-tp16088529p16102244.html" />
</entry>

</feed>
