[Geotools-devel] [jira] Reopened: (GEOT-2627) gml:id should be unique per document

2009-09-15 Thread Rini Angreani (JIRA)
[ http://jira.codehaus.org/browse/GEOT-2627?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rini Angreani reopened GEOT-2627: - Reopen this for me to refactor idExists(). > gml:id should be unique per document > -

[Geotools-devel] [jira] Created: (GEOT-2710) i have problem opening shapefile in netbeans using shapeLab.java in web and i'm new to geotools can anyone help me??

2009-09-15 Thread darmawan sutanto (JIRA)
i have problem opening shapefile in netbeans using shapeLab.java in web and i'm new to geotools can anyone help me?? Key: GEOT-2710 URL: http://ji

Re: [Geotools-devel] Light mutithreading on the streaming renderer

2009-09-15 Thread Christian Müller
About threading with coverages. I use tile decoder threads (decoding each tile in its own thread). This improves response time and cpu utilization. The threads for themselves are very short living ones. I have not seen any problems at my installations or heard something from user mailing list.

[Geotools-devel] [jira] Created: (GEOT-2711) Align ImagePyramid with latest ImageMosaic work

2009-09-15 Thread Simone Giannecchini (JIRA)
Align ImagePyramid with latest ImageMosaic work --- Key: GEOT-2711 URL: http://jira.codehaus.org/browse/GEOT-2711 Project: GeoTools Issue Type: Task Components: gc imagepyramid Affect

[Geotools-devel] [jira] Created: (GEOT-2712) Automatic import of gdal_retile pyramids

2009-09-15 Thread Simone Giannecchini (JIRA)
Automatic import of gdal_retile pyramids Key: GEOT-2712 URL: http://jira.codehaus.org/browse/GEOT-2712 Project: GeoTools Issue Type: Improvement Components: gc imagepyramid Affects Versi

[Geotools-devel] [jira] Created: (GEOT-2713) Improved computation of requested resolutions for ImagePyramid

2009-09-15 Thread Simone Giannecchini (JIRA)
Improved computation of requested resolutions for ImagePyramid -- Key: GEOT-2713 URL: http://jira.codehaus.org/browse/GEOT-2713 Project: GeoTools Issue Type: Improvement C

[Geotools-devel] Sniffing for opportunities with Shapefiles and OGC WKT.

2009-09-15 Thread Sunburned Surveyor
Geotools Programmers: I'm about to embark on a project to overhaul the way OpenJUMP imports data from simple files. There are really only three (3) types of files that are critical to include in the update (I'm still debating on if I want to update GML 2.0 support): - ESRI Shapefiles - OGC WKT -

Re: [Geotools-devel] Sniffing for opportunities with Shapefiles and OGC WKT.

2009-09-15 Thread Jody Garnett
Some history since the last version OpenJump used: - 3-4 years ago - switched to java io (ie file channels) for increased performance - 2 years ago - Jesse put in code to manages all its side car files with a single set of locks For WKT - we mostly use what is in JTS; there is a fork of that c

Re: [Geotools-devel] Sniffing for opportunities with Shapefiles and OGC WKT.

2009-09-15 Thread Sunburned Surveyor
Jody, Thank you for responding so quickly. I always appreciate your efforts to answer my questions. Attempted collaboration with Geotools wouldn't be the same without you. :] Based on the history that you posted, it sounds like OpenJUMP may have made some shapefile fixes that you guys are missing

Re: [Geotools-devel] Sniffing for opportunities with Shapefiles and OGC WKT.

2009-09-15 Thread Jody Garnett
With respect to adopting the low level code: - quick and dirty; take a the array of object[] out and place them in a jump feature - blood sweat and tears: supply a FeatureFactory that creates jump features to the shapefile code Jody On 16/09/2009, at 6:17 AM, Sunburned Surveyor wrote: > I c

[Geotools-devel] Question on construction of ShapefileAttributeReader.

2009-09-15 Thread Sunburned Surveyor
I figured out I need to use the ShapefileAttributeReader class to get low-level access to Shapefiles: http://javadoc.geotools.fr/2.5/org/geotools/data/shapefile/ShapefileAttributeReader.html However, I have a question on the appropriate use of the consuctor. I need to pass the constructor an arra

Re: [Geotools-devel] Sniffing for opportunities with Shapefiles and OGC WKT.

2009-09-15 Thread Jody Garnett
On 16/09/2009, at 7:40 AM, Sunburned Surveyor wrote: > Jody, > > Thank you for responding so quickly. I always appreciate your efforts > to answer my questions. Attempted collaboration with Geotools wouldn't > be the same without you. :] I am losing patience with attempted collaboration - when op

Re: [Geotools-devel] Question on construction of ShapefileAttributeReader.

2009-09-15 Thread Jody Garnett
On 16/09/2009, at 8:04 AM, Sunburned Surveyor wrote: > However, I have a question on the appropriate use of the consuctor. I > need to pass the constructor an array of AttributeDescriptor objects. > How do I get the AttributeDescriptor object's to pass to the > constructor? These are produced by

Re: [Geotools-devel] Question on construction of ShapefileAttributeReader.

2009-09-15 Thread Sunburned Surveyor
Roger that. My task list: - Figure out how to create an AttributeDescriptor array from a DBaseFileHeader object. - Document this process. - Whip up a little helper class that makes this process painless. - Check JIRA and let Geotools know if OpenJUMP has any Shapefile import patches they need. La

[Geotools-devel] Demonstration Theatre Invite

2009-09-15 Thread Jody Garnett
The FOSS4G conferences is coming up and there are demonstration slots available. The demo theatre is a great chance to show off a GeoTools project, a cool hack, or a new feature The only restriction is to show running software (i.e. not a presentation). Contact me at jody.garn...@lisasoft.co

[Geotools-devel] Questions on AttributeTypeImpl.

2009-09-15 Thread Sunburned Surveyor
I'm trying to scrape together a class that builds AttributeDescriptor objects from a DBaseFileHeader. I'm finding myself hip deep in the Geotools feature model. (How did that happen?) I need to ask some questions on the proper use of the AttributeTypeImpl class: - Is it allowable to pass null val

Re: [Geotools-devel] Questions on AttributeTypeImpl.

2009-09-15 Thread Jody Garnett
I'm trying to scrape together a class that builds AttributeDescriptor objects from a DBaseFileHeader. I'm finding myself hip deep in the Geotools feature model. (How did that happen?) Because that is what we use to describe the valid values :-) I need to ask some questions on the proper use of

[Geotools-devel] Geometry code sprint at FOSS4G

2009-09-15 Thread Ben Caradoc-Davies
I propose that we hold a FOSS4G code sprint to progress ISO 19107 / GML 3D geometry collaboration (OSGeom) between GeoTools/GeoServer and deegree communities. See here for more: http://wiki.osgeo.org/wiki/FOSS4G_2009_Code_Sprint#Geometry Current plan is to follow Markus (or at the least, to foll

Re: [Geotools-devel] [Java-collab] Geometry code sprint at FOSS4G

2009-09-15 Thread Jody Garnett
Thanks for organising a venue Ben. > I propose that we hold a FOSS4G code sprint to progress ISO 19107 / > GML 3D geometry collaboration (OSGeom) between GeoTools/GeoServer > and deegree communities. See here for more: > http://wiki.osgeo.org/wiki/FOSS4G_2009_Code_Sprint#Geometry Nice outlin

Re: [Geotools-devel] [Java-collab] Geometry code sprint at FOSS4G

2009-09-15 Thread Ben Caradoc-Davies
On 16/09/09 14:13, Jody Garnett wrote: > Nice outline; there has also been an expression of interest from from > a couple other user communities on this list; so I would change the > "goals" section just to mention the java-collab list :-) OK, done. > Do you mind if we reduce that email to a seri