Skip to content

Commit 609e518

Browse files
committed
Fix
1 parent 6073151 commit 609e518

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mir/repres/regular/PolarStereographic.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ void PolarStereographic::fillJob(api::MIRJob& job) const {
9797
<< "LaDInDegrees=" << LaDInDegrees_ << ";"
9898
<< "orientationOfTheGridInDegrees=" << orientationOfTheGridInDegrees_ << ";"
9999
<< "southPoleOnProjectionPlane=" << (southPoleOnProjectionPlane_ ? "1" : "0") << ";"
100-
<< "Ni=" << x()->size() << ";"
101-
<< "Nj=" << y()->size() << ";"
100+
<< "Ni=" << x().size() << ";"
101+
<< "Nj=" << y().size() << ";"
102102
<< "grid=" << std::abs(x().step()) << "/" << std::abs(y().step()) << ";"
103103
<< "latitudeOfFirstGridPointInDegrees=" << firstLL[LLCOORDS::LAT] << ";"
104104
<< "longitudeOfFirstGridPointInDegrees=" << firstLL[LLCOORDS::LON];

0 commit comments

Comments
 (0)