Stories
Slash Boxes
Comments

SoylentNews is people

posted by janrinok on Wednesday July 20 2016, @02:11AM   Printer-friendly
from the probably-painted-bright-orange dept.

Germany is planning to require "black boxes" in autonomous and semi-autonomous cars:

Germany plans new legislation to require manufacturers of cars equipped with an autopilot function to install a black box to help determine responsibility in the event of an accident, transport ministry sources told Reuters on Monday. The fatal crash of a Tesla Motors Inc Model S car in its Autopilot mode has increased the pressure on industry executives and regulators to ensure that automated driving technology can be deployed safely.

Under the proposal from Transport Minister Alexander Dobrindt, drivers will not have to pay attention to traffic or concentrate on steering, but must remain seated at the wheel so they can intervene in the event of an emergency. Manufacturers will also be required to install a black box that records when the autopilot system was active, when the driver drove and when the system requested that the driver take over, according to the proposals. The draft is due to be sent to other ministries for approval this summer, a transport ministry spokesman said.

Look for the kill switch next. Also at Ars Technica.


Original Submission

 
This discussion has been archived. No new comments can be posted.
Display Options Threshold/Breakthrough Mark All as Read Mark All as Unread
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • (Score: 4, Insightful) by Arik on Wednesday July 20 2016, @02:18AM

    by Arik (4543) on Wednesday July 20 2016, @02:18AM (#376976) Journal
    "Under the proposal from Transport Minister Alexander Dobrindt, drivers will not have to pay attention to traffic or concentrate on steering, but must remain seated at the wheel so they can intervene in the event of an emergency. "

    Humans can't do that. If we are told we don't need to pay attention to traffic or concentrate on steering then we won't - and that means we won't be at all prepared to intervene in the event of an emergency.
    --
    If laughter is the best medicine, who are the best doctors?
    Starting Score:    1  point
    Moderation   +2  
       Insightful=2, Total=2
    Extra 'Insightful' Modifier   0  
    Karma-Bonus Modifier   +1  

    Total Score:   4  
  • (Score: 0) by Anonymous Coward on Wednesday July 20 2016, @02:25AM

    by Anonymous Coward on Wednesday July 20 2016, @02:25AM (#376981)

    Despite your effort of actually changing the formatting in your reply so it looks to stand out, your point is valid

    • (Score: 0) by Anonymous Coward on Wednesday July 20 2016, @03:05AM

      by Anonymous Coward on Wednesday July 20 2016, @03:05AM (#377004)

      That's an RFC, you insensitive clod!

    • (Score: 0) by Anonymous Coward on Wednesday July 20 2016, @03:57AM

      by Anonymous Coward on Wednesday July 20 2016, @03:57AM (#377029)

      What are you on?

      • (Score: 1, Insightful) by Anonymous Coward on Wednesday July 20 2016, @05:46AM

        by Anonymous Coward on Wednesday July 20 2016, @05:46AM (#377063)

        Lynx user detected.

        • (Score: 2) by Phoenix666 on Wednesday July 20 2016, @01:18PM

          by Phoenix666 (552) on Wednesday July 20 2016, @01:18PM (#377196) Journal

          I love that browser. Now and then a wave of atavism comes over me and I spend a week in CLI, browsing on Lynx, answering email on elm.

          --
          Washington DC delenda est.
          • (Score: 1) by Arik on Thursday July 21 2016, @02:31AM

            by Arik (4543) on Thursday July 21 2016, @02:31AM (#377690) Journal
            Elm sucks, try mutt.
            --
            If laughter is the best medicine, who are the best doctors?
  • (Score: 2) by Wootery on Wednesday July 20 2016, @09:05AM

    by Wootery (2341) on Wednesday July 20 2016, @09:05AM (#377117)

    Agree. Maybe it's really about liability not safety.

  • (Score: 2) by theluggage on Wednesday July 20 2016, @09:57AM

    by theluggage (1797) on Wednesday July 20 2016, @09:57AM (#377137)

    Humans can't do that. If we are told we don't need to pay attention to traffic or concentrate on steering then we won't

    This. 1000x.

    There's a quantum leap to be made between modern cruise control/automatic collision avoidance and true autonomy. Once you let the driver stop making second-by-second decisions, they will zone out, and the computer has to be able to deal with all eventualities - at least as well as a reasonable human driver.

    That means it should be legal to operate an autonomous car while drunk, asleep, texting, performing lewd acts with passengers etc. because that is exactly what people will do. That means testing with trained operators in which any human intervention counts as a failure until the incidents-per-mile figure is provably better than for a good human driver (...and that's per comparable mile - not straight-line-freeway miles with autopilot vs. all miles driven by humans). If the car is in autonomous mode then the manufacturer must be liable for any at-fault accidents - they shouldn't have the wriggle-room to blame the driver for failing to intervene.

    Or, preferably, the insurance system should be overhauled to avoid this nonsense of assigning fault with zero burden of proof: your car gets wrecked? Your insurer pays. You/your passengers get injured? Your insurer pays. You hit a pedestrian? Your insurer pays. Accident happened because of your dangerous driving? That's up to the police, the criminal justice system and the driver licensing authorities to decide whether you need to be taken off the road. Making insurance companies solely liable for the losses of their own clients should be a zero sum game for consumers & the industry as a whole: the individual insurers won't like it because they won't be able to gamble on dumping more liabilities on their competitors than their competitors dump on them, or make extra money by flogging details of "not at fault" claimants to ambulance-chasing lawyers and overpriced replacement car firms. Boo hoo.

  • (Score: 2) by darkfeline on Thursday July 21 2016, @03:55AM

    by darkfeline (1030) on Thursday July 21 2016, @03:55AM (#377723) Homepage
    // ==UserScript==
    // @name         Arik Fixer
    // @version      0.1
    // @description  Fix Arik
    // @match        https://soylentnews.org/comments.pl*
    // @match        https://soylentnews.org/article.pl*
    // @grant        none
    // @require      https://code.jquery.com/jquery-latest.js
    // @require      https://gist.github.com/raw/2625891/waitForKeyElements.js
    // ==/UserScript==

    (function() {
      'use strict';

      function fixArik(node) {
        $("div.sict_open").each(function(){
          var details = $(this).find("div.details");
          console.dir(details.find("a").first().text());
          // If author is Arik
          if (details.find("a").first().text() === "Arik (4543)") {
            var post = $(this).parent().parent();
            // Get post body.
            var body = post.find("div.commentBody");
            // Replace <tt> with <p>
            body = body.find("tt").first();
            var newBody = $('<p>' + body.html() + '</p>');
            body.replaceWith(newBody);
          }
        });
      }

      waitForKeyElements("div.sict_open", fixArik);
    })();
    --
    Join the SDF Public Access UNIX System today!