hey All,

i just found this method in SRIDStyle.java while adding a setting to route 
through the writers. it applies the new srid to _every_ geometry, which sounds 
slow on big datasets and unnecessary as we do not support multi SRID layers 
currently, or do we?

..ede

    public void updateSRIDs(Layer layer) {
      ...
      // apply srid for each geometry
      for (Object feature : layer.getFeatureCollectionWrapper().getFeatures()) {
          ((Feature)feature).getGeometry().setSRID(srid);
      }
    }

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

Reply via email to