Skip to content

Commit 9449896

Browse files
Merge pull request #120 from Pentracchiano/patch-3
Fix builtin plugins links and some typos
2 parents 40fd56c + 5f4f211 commit 9449896

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

docs/reference/plugins.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,29 @@ You can also add your own plugins to the Explorer using this [form](https://wiki
1616

1717
IF builtins all come bundled with IF. Below you will find a list of each builtin along with a brief description of its purpose and a link to its README documentation.
1818

19-
- [Time Sync](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins#readme): Takes a heterogeneous set of time series data that might be offset, discontinuous or irregularly spaces and returns time series conforming to a user defined time grid. E.g. a user can define that all sets of observations should start at some global start time, end at some global end time and have a specific temporal resolution.
19+
- [Time Sync](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/time-sync): Takes a heterogeneous set of time series data that might be offset, discontinuous or irregularly spaces and returns time series conforming to a user defined time grid. E.g. a user can define that all sets of observations should start at some global start time, end at some global end time and have a specific temporal resolution.
2020

21-
- [SCI-embodied](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/sci-embodied) - Calculates the embodied carbon for a component.
21+
- [SCI-embodied](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/sci-embodied) - Calculates the embodied carbon for a component.
2222

23-
- [SCI](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/sci): Calculates the software carbon intensity.
24-
- [Shell](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/shell) - A plugin that enables external code in any language to be run in a child process
23+
- [SCI](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/sci): Calculates the software carbon intensity.
24+
- [Shell](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/shell) - A plugin that enables external code in any language to be run in a child process.
2525

26-
- [Sum](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/sum): a generic arithmetic plugin that allows you to sum any set of input parameters.
27-
- [Multiply](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/multiply): a generic arithmetic plugin that allows you to multiply any set of input parameters.
28-
- [Coefficient](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/coefficient): a generic arithmetic plugin that allows you to multiply any input value by a coefficient.
26+
- [Sum](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/sum): a generic arithmetic plugin that allows you to sum any set of input parameters.
27+
- [Multiply](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/multiply): a generic arithmetic plugin that allows you to multiply any set of input parameters.
28+
- [Coefficient](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/coefficient): a generic arithmetic plugin that allows you to multiply any input value by a coefficient.
2929

30-
- [Mock Observations](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/mock-observations): A plugin for mocking observations (inputs) for testing and demo purposes.
31-
- [Subtract](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/subtract): a generic plugin for subtracting one value from another
30+
- [Mock Observations](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/mock-observations): A plugin for mocking observations (inputs) for testing and demo purposes.
31+
- [Subtract](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/subtract): a generic plugin for subtracting one value from another.
3232

33-
- [Divide](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/divide): A generic plugin for doing arithmetic division of two values.
34-
- [Regex](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/regex): A generic plugin to match part of one string and extract it into another.
33+
- [Divide](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/divide): A generic plugin for doing arithmetic division of two values.
34+
- [Regex](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/regex): A generic plugin to match part of one string and extract it into another.
3535

36-
- [Exponent](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/exponent): A generic plugin for raising a value to a power
36+
- [Exponent](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/exponent): A generic plugin for raising a value to a power.
3737

38-
- [Interpolation](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/interpolation): A generic plugin for interpolating between known points.
38+
- [Interpolation](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/interpolation): A generic plugin for interpolating between known points.
3939

40-
- [Copy Param](https://github.com/Green-Software-Foundation/if/tree/main/src/builtins/copy-param): A generic plugin for copying a parameter to a new element in the input array, optionally deleting the original. Useful as a way to rename parameters.
40+
- [Copy Param](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/copy-param): A generic plugin for copying a parameter to a new element in the input array, optionally deleting the original. Useful as a way to rename parameters.
4141

42-
- [CSV lookup](https://github.com/Green-Software-Foundation/if/blob/main/src/if-run/builtins/csv-lookup/README.md): A generic plugin for querying data from CSV files.
42+
- [CSV lookup](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/csv-lookup): A generic plugin for querying data from CSV files.
4343

44-
- [Time Converter](https://github.com/Green-Software-Foundation/if/blob/main/src/if-run/builtins/time-converter/README.md): A gerenric plugin for converting time unit of energy value to another time unit.
44+
- [Time Converter](https://github.com/Green-Software-Foundation/if/tree/main/src/if-run/builtins/time-converter): A generic plugin for converting time unit of energy value to another time unit.

0 commit comments

Comments
 (0)