@Test
  public void testIsFirstAxisNorth() throws Exception {

    assertTrue(
        "First axis north " + EPSG_4258, ProjectionHelper.isFirstAxisNorth(CRS.decode(EPSG_4258)));
    assertTrue(
        "First axis north " + WKTHelper.PROJ_EPSG_4326,
        ProjectionHelper.isFirstAxisNorth(CRS.decode(WKTHelper.PROJ_EPSG_4326)));
    assertFalse(
        "First axis NOT north " + EPSG_3067,
        ProjectionHelper.isFirstAxisNorth(CRS.decode(EPSG_3067)));
  }