Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
phlndrwd committed Oct 25, 2023
1 parent 522e989 commit b556168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Writing of an LFRic-compatible, time-independent, increment file is dependent on
monio::Monio::get().initialiseFile(grid, filePath);
```

Where `grid` is a reference to the `atlas::CubedSphereGrid` used to setup the geometry of the `atlas::FieldSet`, `filePath` is a `std::string` defining a valid path to the file to be read. This particular function call returns an `int` that determines the variable naming convention used in the input file. However, it is necessary to capture and use that `int` here.
Where `grid` is a reference to the `atlas::CubedSphereGrid` used to setup the geometry of the `atlas::FieldSet`, `filePath` is a `std::string` defining a valid path to the file to be read. This particular function call returns an `int` that determines the variable naming convention used in the input file. However, it is not necessary to capture and use that `int` here.

Following this, or if MONIO was also used to read LFRic-compatible data, writing of an LFRic-compatible, time-independent, increment file can be carried out with the following call:

Expand All @@ -85,7 +85,7 @@ _This method is intended for use with tests only_. Writing of an LFRic-compatibl
monio::Monio::get().initialiseFile(grid, filePath);
```

Where `grid` is a reference to the `atlas::CubedSphereGrid` used to setup the geometry of the `atlas::FieldSet`, `filePath` is a `std::string` defining a valid path to the file to be read. This particular function call returns an `int` that determines the variable naming convention used in the input file. However, it is necessary to capture and use that `int` here.
Where `grid` is a reference to the `atlas::CubedSphereGrid` used to setup the geometry of the `atlas::FieldSet`, `filePath` is a `std::string` defining a valid path to the file to be read. This particular function call returns an `int` that determines the variable naming convention used in the input file. However, it is not necessary to capture and use that `int` here.

Following this, writing of an LFRic-compatible, time-independent, state file can be carried out with the following call:

Expand Down

0 comments on commit b556168

Please sign in to comment.