I'm using GeoTools 2.7.5 on a web application that runs on GlassFish
3.1.2.2 @ Linux @ OpenJDK 64-Bit Server VM (build 21.0-b17, mixed mode).
I'm trying to parse the following KML to JTS geometry and in some cases I
get a GEOMETRYCOLLECTION EMPTY

Source code:

public static boolean validateKMLType(File file, boolean kmz) throws
ParserConfigurationException, SAXException, FileNotFoundException,
IOException {
        if (kmz) {
            file = decompress(file);
        }

        SimpleFeature f;
        StreamingParser parser = new StreamingParser(new
KMLConfiguration(), new FileInputStream(file), KML.Placemark);
        while ((f = (SimpleFeature) parser.parse()) != null) {
            Geometry geo = (Geometry) f.getDefaultGeometry();
            return (geo instanceof Polygon || geo instanceof MultiPolygon);
        }
        return false;
    }

BE11.kml:

<?xml version="1.0" encoding="utf-8" ?>
<kml xmlns="http://www.opengis.net/kml/2.2";>
<Document><Folder><name>BE11</name>
<Schema name="BE11" id="BE11">
<SimpleField name="Name" type="string"></SimpleField>
 <SimpleField name="Description" type="string"></SimpleField>
<SimpleField name="Layer" type="string"></SimpleField>
 <SimpleField name="SubClasses" type="string"></SimpleField>
<SimpleField name="ExtendedEn" type="string"></SimpleField>
 <SimpleField name="Linetype" type="string"></SimpleField>
<SimpleField name="EntityHand" type="string"></SimpleField>
 <SimpleField name="Text" type="string"></SimpleField>
</Schema>
  <Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
 <ExtendedData><SchemaData schemaUrl="#BE11">
<SimpleData name="Layer">BE11</SimpleData>
 <SimpleData name="SubClasses">AcDbEntity:AcDbPolyline</SimpleData>
<SimpleData name="Linetype">Continuous</SimpleData>
 <SimpleData name="EntityHand">265</SimpleData>
</SchemaData></ExtendedData>

<MultiGeometry><Polygon><outerBoundaryIs><LinearRing><coordinates>-46.314101224213893,-18.939146462106791
-46.314086312614357,-18.939085282267282
-46.314076424857099,-18.939048534372091
-46.314066201710489,-18.939043529058697
-46.31403777101292,-18.939060876965602
-46.313985215826371,-18.939075251821521
-46.313907124395264,-18.939104415790364
-46.313819053759602,-18.939138807455254
-46.313795471131407,-18.939152245227906
-46.313681701190227,-18.939200352740837
-46.313563369702521,-18.939248625832391
-46.313447046492179,-18.939301524735797
-46.313341150890736,-18.939356986756682
-46.31327807770105,-18.939395616723637
-46.313220151520177,-18.939476629324226
-46.313151312691581,-18.939576171462715
-46.313119757533165,-18.939611351541377
-46.313057109254842,-18.939686045670268
-46.312954517140511,-18.939805734085862
-46.312896430379375,-18.939865027813685
-46.312813761384604,-18.93993139269605
-46.312748121720354,-18.940021277762497
-46.312727274295248,-18.940045517517905
-46.312829578279988,-18.940240417208539
-46.312938078962361,-18.940436106777266
-46.313026199552986,-18.940605878558696
-46.313036578687928,-18.940585156576521
-46.313100566008863,-18.94046541030383
-46.313167869436121,-18.940357704571316
-46.313237134061715,-18.940249621018889
-46.313395843040865,-18.940049932499289
-46.313485708413829,-18.939954286995995
-46.313599068507116,-18.939865747777297
-46.313803272644414,-18.939759225114944
-46.314042349758452,-18.939654624893521
-46.314137167605423,-18.939618752528805
-46.314219811204957,-18.939596110449404
-46.314243544547786,-18.93957504019868
-46.31424669622993,-18.93954937549038
-46.314228837963093,-18.939507018615224
-46.314178998258008,-18.939381638147008
-46.314101224213893,-18.939146462106791</coordinates></LinearRing></outerBoundaryIs></Polygon><Polygon><outerBoundaryIs><LinearRing><coordinates>-46.312678225180491,-18.940126937442255
-46.312620865636724,-18.94021313433678
-46.312583076217386,-18.940284991376704
-46.312550590749353,-18.940357133248984
-46.312485460279937,-18.940444877756981
-46.312409264531716,-18.940527017366126
-46.312369036082195,-18.940594995806233
-46.312337777031473,-18.940653267230427
-46.312257395099834,-18.940756553043002
-46.31217060418588,-18.940864952304878
-46.312088056237258,-18.940948398993864
-46.312018466056053,-18.941027591899992
-46.311942601704985,-18.941083265805542
-46.311832382031618,-18.941156541013974
-46.311816752801072,-18.941176563809879
-46.311771361598822,-18.941240272418138
-46.311709818704223,-18.941328613045439
-46.311677482782422,-18.941373691414956
-46.311665306005416,-18.94142004504641
-46.311663576816429,-18.941445751399829
-46.311677562254772,-18.941492120034393
-46.311734372855341,-18.94160886148644
-46.31182891184136,-18.941786080166509
-46.31193967470206,-18.941972521192973
-46.312048913248397,-18.942172909341362
-46.312083028063377,-18.942233303077735
-46.312115855493559,-18.942265618023981
-46.312120298770402,-18.942255416652603
-46.312137499288667,-18.942189316946209
-46.31215710453143,-18.942092639045573
-46.31217130010436,-18.941986229975548
-46.312187149355509,-18.941888222143991
-46.312207647338489,-18.94178415345991
-46.31224420693777,-18.941679906863005
-46.312306964353759,-18.941583827343191
-46.312357784667988,-18.941510448350392
-46.312460049769278,-18.941392929799939
-46.312548933589575,-18.941293192876486
-46.312641558467526,-18.941195622423528
-46.312726385733832,-18.941100965006274
-46.31280320520613,-18.941014238262539
-46.312867872888255,-18.940916207967128
-46.312925570849508,-18.940805916938515
-46.312979853922158,-18.940689856896309
-46.313000823683979,-18.940649329159651
-46.312984407919345,-18.940598152019064
-46.312920397000632,-18.940477988655736
-46.312857971893578,-18.940360517740437
-46.31279232669867,-18.940241000183889
-46.312726125500816,-18.94011952842342
-46.312702331832448,-18.940085957556352
-46.312678225180491,-18.940126937442255</coordinates></LinearRing></outerBoundaryIs></Polygon><Polygon><outerBoundaryIs><LinearRing><coordinates>-46.314348965427769,-18.939790224587785
-46.31431165738362,-18.939712622450994
-46.314283177433389,-18.939658510416645
-46.314267842324675,-18.939629894459134
-46.314247367535984,-18.939615310152131
-46.31419500232002,-18.939633144781428
-46.314104037285816,-18.939675224714325
-46.313983350373931,-18.939730324744229
-46.313858094101384,-18.939792260157621
-46.313738068674866,-18.939851959492103
-46.313643531617863,-18.939901828101032
-46.313560765861624,-18.93994560229585
-46.313510742140281,-18.939964535196193
-46.31347820009244,-18.940014285679652
-46.313427958203185,-18.94009056757158
-46.313377129939418,-18.940158974771737
-46.313335747564963,-18.940188281664945
-46.313274400013533,-18.940252843085489
-46.313225763261769,-18.94032365450407
-46.31318374057485,-18.940383633018779
-46.313151761829758,-18.940456981134041
-46.313110340888642,-18.940538480312817
-46.313070255055827,-18.940604347012538
-46.313058346562556,-18.940675628443962
-46.313156590622782,-18.940848366512974
-46.313216144374117,-18.940948831122732
-46.313269904395462,-18.941051095033078
-46.313324912787721,-18.941152525469608
-46.313383831647286,-18.941273589293928
-46.3134322341039,-18.941262564506179
-46.313558181907304,-18.941122062024633
-46.31371993120095,-18.941025707883682
-46.31395892448046,-18.940900515379198
-46.31415695671145,-18.940790884030239
-46.314301056466753,-18.940703487626127
-46.314527055547643,-18.940592198024973
-46.314673126144314,-18.940516135056392
-46.314698392764747,-18.940495336757238
-46.31470313423366,-18.94048525872148
-46.314672961303238,-18.940432777377982
-46.314620708291734,-18.940323751925735
-46.314515135062706,-18.940129287830263
-46.314445558077921,-18.939988169738903
-46.314348965427769,-18.939790224587785</coordinates></LinearRing></outerBoundaryIs></Polygon><Polygon><outerBoundaryIs><LinearRing><coordinates>-46.313115746023087,-18.940836030790685
-46.313056193066494,-18.940727921276828
-46.313029053747336,-18.940732881987966
-46.313010395344364,-18.940751307277122
-46.312958848112302,-18.940836455138854
-46.312902129781527,-18.940926068798795
-46.31284430843926,-18.941019124404288
-46.312788969579401,-18.941106016011819
-46.31265594493717,-18.941244650290187
-46.312526965995218,-18.941365374034884
-46.312467453029555,-18.941433624037771
-46.312413440484129,-18.941514623315705
-46.312337792966424,-18.941603262653963
-46.312315685297868,-18.94165772277502
-46.312283234335247,-18.941739237716785
-46.312252192220178,-18.941813543349063
-46.312234642222428,-18.941859791384907
-46.31222794167639,-18.941969837163004
-46.312211575365879,-18.942054889855498
-46.312185144616507,-18.94217891138614
-46.312157573762711,-18.942269745545495
-46.312135212530102,-18.942310172205392
-46.312180617934992,-18.94238143100991
-46.312265018296252,-18.94252760767343
-46.312359580002308,-18.942687332022626
-46.31241908553195,-18.942793106184126
-46.312449973246785,-18.942845456100372
-46.312472080400674,-18.942893272166803
-46.312478108159937,-18.942912907529269
-46.312510078344765,-18.942886239790344
-46.31260101934167,-18.94278774142284
-46.31270083086779,-18.942672299324204
-46.312798785049495,-18.942551002956833
-46.312881751425806,-18.942422063507504
-46.312954350129672,-18.94228236018068
-46.313014007911619,-18.942135290528348
-46.313065566321512,-18.941987529852277
-46.313113514931132,-18.941837417470591
-46.313165820810788,-18.941693963464324
-46.313223783035525,-18.941560876167738
-46.313290402128679,-18.941439170614586
-46.313353857753732,-18.941325992103572
-46.313365136099584,-18.9413045572533
-46.313274115843164,-18.941132809111274
-46.313222576490588,-18.941037046928955
-46.313171224732251,-18.940942499702572
-46.313115746023087,-18.940836030790685</coordinates></LinearRing></outerBoundaryIs></Polygon><Polygon><outerBoundaryIs><LinearRing><coordinates>-46.31340643702918,-18.941390028219708
-46.313370289565029,-18.941434871222974
-46.313308215768373,-18.941517696661148
-46.313281661071535,-18.941557351455625
-46.313215828387015,-18.941713617284993
-46.31315767489631,-18.941861059884936
-46.313137572733879,-18.941925390742167
-46.313085118373813,-18.942080965879104
-46.313008919526631,-18.942270322231341
-46.312987459367555,-18.942357583846 -46.312855287964815,-18.94255239050953
-46.312697188464242,-18.942732120284901
-46.312582968824998,-18.94287309830478
-46.312416946909444,-18.943004937738653
-46.312336653631029,-18.943080595985904
-46.312276931390301,-18.943147098520534
-46.312248553210893,-18.943188892222238
-46.312252871829187,-18.943214059755306
-46.312283883299123,-18.943262950101353
-46.31233674689377,-18.943315283592931
-46.312433596673031,-18.943417331578704
-46.312594662739563,-18.943565680260011
-46.312711653395965,-18.94366713749994
-46.312809553628057,-18.943775357557183
-46.312931264457646,-18.943900464447456
-46.312993659762469,-18.943989259979727
-46.313018406026401,-18.944027779070513
-46.313067566982973,-18.944024031422163
-46.313106769527401,-18.943997383323477
-46.313222420112155,-18.943921287603477
-46.313401693196731,-18.943782330758854
-46.313537482533839,-18.943675561242742
-46.313656263553035,-18.943591394056945
-46.313784161874949,-18.943481255372092
-46.313944299185003,-18.943346319464027
-46.314110180565272,-18.943209325027006
-46.314203100437979,-18.943149843456773
-46.314279094758618,-18.943074661746113
-46.314298288249645,-18.943042266524643
-46.314274917031362,-18.942986365180957
-46.314193504640741,-18.94283773633914
-46.314034358101793,-18.942537376213831
-46.313914482649004,-18.942316470322456
-46.313914482649004,-18.942316470322456
-46.313914483898387,-18.942316472624011
-46.313723693045631,-18.941965129845087
-46.313584896746839,-18.941711288557503
-46.313447435474124,-18.941448888807074
-46.31340643702918,-18.941390028219708</coordinates></LinearRing></outerBoundaryIs></Polygon><Polygon><outerBoundaryIs><LinearRing><coordinates>-46.314896004587588,-18.940829632410786
-46.314822416093172,-18.94069339351779
-46.314775441883654,-18.940610821607329
-46.314743972976039,-18.940555640156063
-46.314726873643686,-18.940527200223965
-46.31470044270705,-18.940545175766449
-46.314554306185272,-18.940625278846621
-46.314378434582437,-18.940723269258935
-46.314306150571539,-18.940761913524231
-46.313905380106888,-18.940972511707862
-46.313702879982181,-18.941080039981028
-46.313633145706547,-18.941132041885005
-46.31359298795887,-18.941184119990535
-46.313452143558678,-18.941335945066093
-46.313441292944788,-18.941369173209935
-46.313552032535,-18.941583923747501
-46.313661945928452,-18.941786507520369
-46.313877000161696,-18.942160457545373
-46.314003667461904,-18.942414365192086
-46.314104268434072,-18.94259718168172
-46.314209350572412,-18.942793084740163
-46.314301949997223,-18.942964177108706
-46.314332763367162,-18.943007586079268
-46.314355798082367,-18.94301660858164
-46.314393816878308,-18.942985814272401
-46.314513714840857,-18.942893036032952
-46.314660372518496,-18.942783009671395
-46.314850073997391,-18.942633846555069
-46.314957335128184,-18.942548591491995
-46.31514653538116,-18.942394041894723
-46.315314607553866,-18.942256679515417
-46.315443302511831,-18.942157354700175
-46.315506602145739,-18.942097488834666
-46.315549525475269,-18.942034834224543
-46.315549905956694,-18.942020223955694
-46.31555535390978,-18.941970161969646
-46.315525152040536,-18.941910599697309
-46.315453278085094,-18.941777367002793
-46.315331302170492,-18.941576974223764
-46.315249301998406,-18.941454703722282
-46.315138488737297,-18.941247426766438
-46.315002950799894,-18.941007668291235
-46.314896004587588,-18.940829632410786</coordinates></LinearRing></outerBoundaryIs></Polygon></MultiGeometry>
  </Placemark>
</Folder></Document></kml>


-- 
André Gustavo de Andrade
[email protected]
skype: aandrade1234
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
_______________________________________________
GeoTools-GT2-Users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users

Reply via email to