Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [udig-devel] creating a temporary layer and crs

Did you make sure that all of the GeometryAttributeType have valid CRSs associated with them?

On 12-May-08, at 11:53 AM, andrea antonello wrote:

Hi, I think I had this problem before, but not on temporary layers.
I am creating one with:

IGeoResource resource = CatalogPlugin.getDefault().getLocalCatalog()
               .createTemporaryResource(fet.getSchema());
       try {

           FeatureStore fStore = resource.resolve(FeatureStore.class,
                   new NullProgressMonitor());
           fStore.addFeatures(fet);
       } catch (IOException e) {
           e.printStackTrace();
       }
       ApplicationGIS.addLayersToMap(ApplicationGIS.getActiveMap(),
               Collections.singletonList(resource), -1);


But I get:
org .geotools .referencing.operation.projection.PointOutsideEnvelopeException:
Longitude 607659°34.4'E is out of range (±180°).

since it is trying to interprete my coordinates as lat/long. Since on
a featurestore I can't force a crs, how can I solve this?

Ciao
Andrea
_______________________________________________
User-friendly Desktop Internet GIS (uDig)
http://udig.refractions.net
http://lists.refractions.net/mailman/listinfo/udig-devel



Back to the top