Skip to content

Commit e60af24

Browse files
committed
update link references
1 parent 9bf7366 commit e60af24

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Thanks for opening a PR to PowerTableDataParser.jl, please take note of the following when making a PR:
22

3-
Check the [contributor guidelines](https://nrel-sienna.github.io/PowerTableDataParser.jl/stable/api/developer_guidelines/)
3+
Check the [contributor guidelines](https://nlr-sienna.github.io/PowerTableDataParser.jl/stable/api/developer_guidelines/)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# PowerTableDataParser.jl
22

3-
[![Main - CI](https://github.com/NREL-Sienna/PowerTableDataParser.jl/actions/workflows/main-tests.yml/badge.svg)](https://github.com/NREL-Sienna/PowerTableDataParser.jl/actions/workflows/main-tests.yml)
4-
[![codecov](https://codecov.io/gh/NREL-Sienna/PowerTableDataParser.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/NREL-SIENNA/SIENNA-PACKAGE.jl)
5-
[![Documentation Build](https://github.com/NREL-Sienna/PowerTableDataParser.jl/workflows/Documentation/badge.svg?)](https://nrel-sienna.github.io/PowerTableDataParser.jl/stable)
3+
[![Main - CI](https://github.com/NLR-Sienna/PowerTableDataParser.jl/actions/workflows/main-tests.yml/badge.svg)](https://github.com/NLR-Sienna/PowerTableDataParser.jl/actions/workflows/main-tests.yml)
4+
[![codecov](https://codecov.io/gh/NLR-Sienna/PowerTableDataParser.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/NLR-SIENNA/SIENNA-PACKAGE.jl)
5+
[![Documentation Build](https://github.com/NLR-Sienna/PowerTableDataParser.jl/workflows/Documentation/badge.svg?)](https://nlr-sienna.github.io/PowerTableDataParser.jl/stable)
66

77
This repository contains a Work-in-progress version of the CSV Data Parser (CDM) from PowerSystems.jl as a stand-alone package since the support within PowerSystems.jl will be deprecated in future versions.
88

99
## Development
1010

11-
Contributions to the development and enahancement of PowerTableDataParser is welcome. Please see [CONTRIBUTING.md](https://github.com/NREL-Sienna/PowerTableDataParser.jl/blob/main/CONTRIBUTING.md) for code contribution guidelines.
11+
Contributions to the development and enahancement of PowerTableDataParser is welcome. Please see [CONTRIBUTING.md](https://github.com/NLR-Sienna/PowerTableDataParser.jl/blob/main/CONTRIBUTING.md) for code contribution guidelines.
1212

1313
## License
1414

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ makedocs(
2020
format = Documenter.HTML(
2121
prettyurls = haskey(ENV, "GITHUB_ACTIONS"),
2222
size_threshold = nothing,),
23-
sitename = "github.com/NREL-Sienna/PowerTableDataParser.jl",
23+
sitename = "github.com/NLR-Sienna/PowerTableDataParser.jl",
2424
authors = "José Daniel Lara",
2525
pages = Any[p for p in pages],
2626
draft = false,
2727
)
2828

2929
deploydocs(
30-
repo="github.com/NREL-Sienna/PowerTableDataParser.jl",
30+
repo="github.com/NLR-Sienna/PowerTableDataParser.jl",
3131
target="build",
3232
branch="gh-pages",
3333
devbranch="main",

docs/src/tutorials/intro_page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SIENNA-Examples
22

33
All the tutorials for the SIENNA project are part of a separate repository
4-
[SIENNA-Examples](https://github.com/NREL-SIENNA/SIENNAExamples.jl).
4+
[SIENNA-Examples](https://github.com/NLR-SIENNA/SIENNAExamples.jl).

src/power_system_table_data.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ Reads in all the data stored in csv files in a `directory`
105105
# Arguments
106106
- `directory::AbstractString`: directory containing CSV files
107107
- `base_power::Float64`: base power for [`System`](@ref)
108-
- `user_descriptor_file::AbstractString`: customized input descriptor file. [Example](https://github.com/NREL-Sienna/PowerSystemsTestData/blob/master/RTS_GMLC/user_descriptors.yaml)
109-
- `descriptor_file=POWER_SYSTEM_DESCRIPTOR_FILE`: `PowerSystems.jl` descriptor file. [Default](https://github.com/NREL-Sienna/PowerSystems.jl/blob/main/src/descriptors/power_system_inputs.json)
110-
- `generator_mapping_file=GENERATOR_MAPPING_FILE_CDM`: generator mapping configuration file. [Default](https://github.com/NREL-Sienna/PowerSystems.jl/blob/main/src/parsers/generator_mapping_cdm.yaml)
111-
- `timeseries_metadata_file = joinpath(directory, "timeseries_pointers")`: Time series pointers .json file. [Example](https://github.com/NREL-Sienna/PowerSystemsTestData/blob/master/RTS_GMLC/timeseries_pointers.json)
108+
- `user_descriptor_file::AbstractString`: customized input descriptor file. [Example](https://github.com/NLR-Sienna/PowerSystemsTestData/blob/master/RTS_GMLC/user_descriptors.yaml)
109+
- `descriptor_file=POWER_SYSTEM_DESCRIPTOR_FILE`: `PowerSystems.jl` descriptor file. [Default](https://github.com/NLR-Sienna/PowerSystems.jl/blob/main/src/descriptors/power_system_inputs.json)
110+
- `generator_mapping_file=GENERATOR_MAPPING_FILE_CDM`: generator mapping configuration file. [Default](https://github.com/NLR-Sienna/PowerSystems.jl/blob/main/src/parsers/generator_mapping_cdm.yaml)
111+
- `timeseries_metadata_file = joinpath(directory, "timeseries_pointers")`: Time series pointers .json file. [Example](https://github.com/NLR-Sienna/PowerSystemsTestData/blob/master/RTS_GMLC/timeseries_pointers.json)
112112
113113
The general format for data in the `directory` is:
114114
- bus.csv (required)
@@ -127,7 +127,7 @@ The general format for data in the `directory` is:
127127
Each generator will be defined as a concrete subtype of [`Generator`](@ref),
128128
based on the `fuel` and `type` columns in `gen.csv` and the `generator_mapping_file`.
129129
The default mapping file
130-
is [`src/parsers/generator_mapping.yaml`](https://github.com/NREL-Sienna/PowerSystems.jl/blob/main/src/parsers/generator_mapping.yaml). You can override this behavior by specifying your own file.
130+
is [`src/parsers/generator_mapping.yaml`](https://github.com/NLR-Sienna/PowerSystems.jl/blob/main/src/parsers/generator_mapping.yaml). You can override this behavior by specifying your own file.
131131
132132
# Custom Column names
133133
@@ -139,7 +139,7 @@ you can change the `custom_name` field under the `generator` category to
139139
140140
To enable the parsing of a custom set of csv files, you can generate a configuration
141141
file (such as `user_descriptors.yaml`) from the defaults, which are stored
142-
in [`src/descriptors/power_system_inputs.json`](https://github.com/NREL-Sienna/PowerSystems.jl/blob/main/src/descriptors/power_system_inputs.json).
142+
in [`src/descriptors/power_system_inputs.json`](https://github.com/NLR-Sienna/PowerSystems.jl/blob/main/src/descriptors/power_system_inputs.json).
143143
144144
```python
145145
python ./bin/generate_config_file.py ./user_descriptors.yaml

0 commit comments

Comments
 (0)