b164bf9a87836f4f1fdc44e36d337a2c2f22da00,example.py,,uav_example,#,10

Before Change


        // command = np.array([0, 0, 2, 10])
        for _ in range(200):
            // state, reward, terminal, _ = env.step(command)
            env.tick()
            // To access specific sensor data:
            pixels = state["RGBCamera"]
            velocity = state["VelocitySensor"]
            // For a full list of sensors the UAV has, consult the configuration file "InfiniteForest-MaxDistance.json"

After Change


        env.reset()

        // This command tells the UAV to not roll or pitch, but to constantly yaw left at 10m altitude.
        command = np.array([0, 0, 2, 1000])
        for _ in range(1000):
            state, reward, terminal, _ = env.step(command)
            // To access specific sensor data:
            pixels = state["RGBCamera"]
            velocity = state["VelocitySensor"]
            // For a full list of sensors the UAV has, consult the configuration file "InfiniteForest-MaxDistance.json"
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: BYU-PCCL/holodeck
Commit Name: b164bf9a87836f4f1fdc44e36d337a2c2f22da00
Time: 2019-05-14
Author: maxdrob1@gmail.com
File Name: example.py
Class Name:
Method Name: uav_example


Project Name: BYU-PCCL/holodeck
Commit Name: c654fb044a9084fcd85606f18127c82dfd46182f
Time: 2019-02-11
Author: maxdrob1@gmail.com
File Name: example.py
Class Name:
Method Name: editor_example


Project Name: BYU-PCCL/holodeck
Commit Name: 04545285e120719767ec26e24526dcbc6c2c0db6
Time: 2018-09-27
Author: nickwalton00@gmail.com
File Name: holodeck/tests/testenvironments.py
Class Name:
Method Name: spawn_test