# File lib/geo_ruby/simple_features/point.rb, line 201
      def self.from_x_y(x,y,srid=DEFAULT_SRID)
        point= new(srid)
        point.set_x_y(x,y)
      end