forked from Grid2op/grid2op
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
99 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"sub_0": [ | ||
0.0, | ||
0.0 | ||
], | ||
"sub_1": [ | ||
0.0, | ||
400.0 | ||
], | ||
"sub_2": [ | ||
200.0, | ||
400.0 | ||
], | ||
"sub_3": [ | ||
400.0, | ||
400.0 | ||
], | ||
"sub_4": [ | ||
400.0, | ||
0.0 | ||
], | ||
"sub_5": [ | ||
500.0, | ||
0.0 | ||
], | ||
"sub_6": [ | ||
400.0, | ||
-100.0 | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Copyright (c) 2019-2020, RTE (https://www.rte-france.com) | ||
# See AUTHORS.txt | ||
# This Source Code Form is subject to the terms of the Mozilla Public License, version 2.0. | ||
# If a copy of the Mozilla Public License, version 2.0 was not distributed with this file, | ||
# you can obtain one at http://mozilla.org/MPL/2.0/. | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# This file is part of Grid2Op, Grid2Op a testbed platform to model sequential decision making in power systems. | ||
|
||
import warnings | ||
|
||
import grid2op | ||
from grid2op.Chronics import ChangeNothing | ||
from grid2op.tests.helper_path_test import * | ||
try: | ||
from grid2op.PlotGrid import PlotMatplot | ||
CAN_PLOT = True | ||
except ImportError as exc_: | ||
CAN_PLOT = False | ||
|
||
|
||
class Issue223Tester(unittest.TestCase): | ||
def _skip_if_not_installed(self): | ||
if not CAN_PLOT: | ||
self.skipTest("matplotlib is not installed") | ||
|
||
def setUp(self) -> None: | ||
if CAN_PLOT: | ||
with warnings.catch_warnings(): | ||
warnings.filterwarnings("ignore") | ||
env_nm = os.path.join(PATH_DATA_TEST, "5bus_modif_grid") | ||
self.env = grid2op.make(env_nm, | ||
test=True, | ||
chronics_class=ChangeNothing) | ||
self.env.seed(0) | ||
self.env.reset() | ||
|
||
def test_env_working(self): | ||
self._skip_if_not_installed() | ||
with warnings.catch_warnings(): | ||
warnings.filterwarnings("error") # there should be no warning there | ||
# in the issue, it crashes there | ||
plot_helper = PlotMatplot(self.env.observation_space) | ||
assert "sub_5" in plot_helper._grid_layout | ||
assert "sub_6" in plot_helper._grid_layout | ||
# now test i can plot an observation | ||
fig = plot_helper.plot_obs(self.env.reset()) |