Skip to content

Commit

Permalink
formatting tuning to make it easier to comprehend the pipeline
Browse files Browse the repository at this point in the history
Co-authored-by: Even Rouault <even.rouault@spatialys.com>
  • Loading branch information
jjimenezshaw and rouault authored Aug 9, 2022
1 parent f760b52 commit 873062d
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions test/unit/test_operationfactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8529,10 +8529,14 @@ TEST(operation,
ASSERT_TRUE(op != nullptr);
EXPECT_EQ(
op->exportToPROJString(PROJStringFormatter::create().get()),
"+proj=pipeline +step +proj=axisswap +order=2,1 +step "
"+proj=unitconvert +xy_in=deg +xy_out=rad +step +inv +proj=vgridshift "
"+grids=us_nga_egm08_25.tif +multiplier=1 +step +proj=tmerc "
"+lat_0=29.5 +lon_0=-88.8333333333333 +k=0.99995 +x_0=300000 +y_0=0 "
"+ellps=GRS80 +step +proj=unitconvert +xy_in=m +xy_out=us-ft +step "
"+proj=affine +xoff=20 +step +proj=axisswap +order=2,1");
"+proj=pipeline "
"+step +proj=axisswap +order=2,1 "
"+step +proj=unitconvert +xy_in=deg +xy_out=rad "
"+step +inv +proj=vgridshift +grids=us_nga_egm08_25.tif "
"+multiplier=1 "
"+step +proj=tmerc +lat_0=29.5 +lon_0=-88.8333333333333 "
"+k=0.99995 +x_0=300000 +y_0=0 +ellps=GRS80 "
"+step +proj=unitconvert +xy_in=m +xy_out=us-ft "
"+step +proj=affine +xoff=20 "
"+step +proj=axisswap +order=2,1");
}

0 comments on commit 873062d

Please sign in to comment.