# File lib/geo_ruby/simple_features/geometry_collection.rb, line 129
      def self.from_geometries(geometries,srid=DEFAULT_SRID,with_z=false,with_m=false)
        geometry_collection = new(srid,with_z,with_m)
        geometry_collection.concat(geometries)
        geometry_collection
      end