Skip to content

Commit a61fb7c

Browse files
committed
Consolidate parsing examples to one how-to
1 parent f3ccd00 commit a61fb7c

File tree

6 files changed

+6
-88
lines changed

6 files changed

+6
-88
lines changed

docs/make.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ pages = OrderedDict(
1717
"How to..." => Any[
1818
"...install PowerSystems.jl" => "how_to/install.md",
1919
"...load a `system` from `PowerSystemCaseBuilder`" => "how_to/powersystembuilder.md",
20-
"...load a Matpower or PSSE file" => "how_to/parse_powerflow_cases.md",
21-
"...parse tabular data" => "how_to/parse_tabular_data.md",
20+
"...parse data from Matpower, PSSE, or CSV files" => "how_to/parsing.md",
2221
"...add time series data from CSVs" => "how_to/add_ts_from_csvs.md",
2322
"...customize the tabular data parser" => "how_to/extend_tabular_parsing.md",
2423
"...get all the buses in a system" => "how_to/get_buses.md",
@@ -39,8 +38,7 @@ pages = OrderedDict(
3938
"explanation/time_series.md",
4039
"explanation/example_dynamic_data.md",
4140
"explanation/cost_functions.md",
42-
"explanation/market_bid_cost.md",
43-
"explanation/parsing.md",
41+
"explanation/market_bid_cost.md"
4442
],
4543
"Model Library" => Any[],
4644
"Reference" =>

docs/src/how_to/parse_powerflow_cases.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

docs/src/how_to/parse_tabular_data.md

Lines changed: 0 additions & 57 deletions
This file was deleted.
File renamed without changes.

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,5 @@ If you are new to `PowerSystems.jl`, here's how we suggest getting started:
8080
- See [Creating a System with Dynamic devices](@ref) and the
8181
[tutorial in PowerSimulationsDynamics](https://nrel-sienna.github.io/PowerSimulationsDynamics.jl/stable/tutorials/tutorial_dynamic_data/)
8282
if you are interested in [dynamic](@ref D) simulations
83-
4. Then, see the how-to's on parsing [Matpower or PSS/e files](@ref parse_files) or
84-
[CSV files](@ref tabular_parser) to begin loading your own data into `PowerSystems.jl`
83+
4. Then, see the how-to's on parsing [Matpower](@ref pm_data) or [PSS/e files](@ref dyr_data) or
84+
[CSV files](@ref table_data) to begin loading your own data into `PowerSystems.jl`

docs/src/tutorials/creating_system.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ and modified the `System` per-unit settings.
329329
Next, you might want to:
330330
- [Add time series data to components in the `System`](@ref tutorial_time_series)
331331
- [Learn more about how to retrieve components and their data from a `System`](@ref get_components_tutorial)
332-
- [Import a `System` from an existing Matpower or PSSE file instead of creating it manually](@ref parse_files)
333-
- [Create your own `System` from .csv files instead of creating it manually](@ref tabular_parser)
332+
- [Import a `System` from an existing Matpower or PSSE file instead of creating it manually](@ref parsing)
333+
- [Create your own `System` from .csv files instead of creating it manually](@ref table_data)
334334
- [Read more to understand per-unitization in PowerSystems.jl](@ref per_unit)
335335

0 commit comments

Comments
 (0)