# File lib/geo_ruby/simple_features/ewkt_parser.rb, line 299
      def get_next_token
        if @scanner.scan(@regex).nil?
          if @scanner.eos?
            nil
          else
            ch = @scanner.getch
            while ch == ' '
              ch = @scanner.getch
            end
            ch
          end
        else
          @scanner[1]
        end
      end