SVN Account for commiting

4 messages Options
Embed this post
Permalink
jssandeep

SVN Account for commiting

Reply Threaded More More options
Print post
Permalink
Hello All

I want to commit some class in Geotools/graphs.
How can I get the svn account for commiting into the repositiory.

Thanks
Sandeep


------------------------------------------------------------------------------

_______________________________________________
Geotools-gt2-users mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users
Vivien VD. DELESSE

GML Parser geotools 2.2.2

Reply Threaded More More options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)

Hi list,

 

I'm trying to make a GML parser with geotools 2.2.2,

 

Here is my code,

 

URI gmlFile = new File("/test.gml").toURI();              

 

FileGMLDataStore store = new FileGMLDataStore(gmlFile, 10, 10000);

 

String[] TypeName = store.getTypeNames();                 

                   

FeatureSource fs = store.getFeatureSource(TypeName[0]);

FeatureCollection fc = fs.getFeatures(); FeatureIterator I = fc.features();

                

FeatureReader fr = fc.reader();

 

while(I.hasNext()){

      Feature f = (Feature)I.next();

      System.out.println(f.getBounds().toString());

}

 

The execution fails during the creation of the “FeatureSource” :

 

java.io.IOException: org.xml.sax.SAXException: Could not find element handler for http://mapserver.gis.umn.edu/mapserver : features as a child of FeatureAssociationType.

 

Here is my gml code from “test.gml”,

 

<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs">

      <gml:featureMember xmlns:gml="http://www.opengis.net/gml">

            <feature:features xmlns:feature="http://mapserver.gis.umn.edu/mapserver" fid="3170">

                  <feature:geometry>

                        <gml:Point>

                             <gml:coordinates decimal="." cs="," ts=" ">804316.07294304,263309.52589873</gml:coordinates>

                        </gml:Point>

                  </feature:geometry>

            </feature:features>

      </gml:featureMember>

</wfs:FeatureCollection>

 

I don’t understand why it fails,

 

Is Someone have already make an GML parser with geotools 2.2.2 ?

 

Sorry for the duplicate post,

 

Thanks,

 

Viv

 

 

 

 


------------------------------------------------------------------------------

_______________________________________________
Geotools-gt2-users mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users
mbedward

Re: SVN Account for commiting

Reply Threaded More More options
Print post
Permalink
In reply to this post by jssandeep
Hi Sandeep,

Please see these pages in the Developer Guide:

http://docs.codehaus.org/display/GEOT/1+Contributors

http://docs.codehaus.org/display/GEOT/2+Committers

We certainly welcome contributions to the library !

If your present code for the graph module is relatively small and
self-contained the easiest thing to do is submit it via Jira as
outlined on the Contributors page.

Michael

------------------------------------------------------------------------------
_______________________________________________
Geotools-gt2-users mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users
Justin Deoliveira

Re: SVN Account for commiting

Reply Threaded More More options
Print post
Permalink
Hi Sandeep,

Usually we don't hand out commit access to people until they have
submitted a number of patches, and have the rest of the other developers.

As Michael stated, at this point you are best off submitting patches via
jira. I saw your patch on GEOT-2581, thanks submitting the code and for
an explanation. I will try to look at is as soon as I can and provide
feedback.

If no issues I will be happy to commit the code, and encourage to
continue to submit patches.

-Justin

Michael Bedward wrote:

> Hi Sandeep,
>
> Please see these pages in the Developer Guide:
>
> http://docs.codehaus.org/display/GEOT/1+Contributors
>
> http://docs.codehaus.org/display/GEOT/2+Committers
>
> We certainly welcome contributions to the library !
>
> If your present code for the graph module is relatively small and
> self-contained the easiest thing to do is submit it via Jira as
> outlined on the Contributors page.
>
> Michael
>
> ------------------------------------------------------------------------------
> _______________________________________________
> Geotools-gt2-users mailing list
> [hidden email]
> https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users


--
Justin Deoliveira
OpenGeo - http://opengeo.org
Enterprise support for open source geospatial.

------------------------------------------------------------------------------
_______________________________________________
Geotools-gt2-users mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users