private static void forceSRS(GetMapRequest getMap, String srs) {
    getMap.setSRS(srs);

    try {
      getMap.setCrs(CRS.decode(srs));
    } catch (NoSuchAuthorityCodeException e) {
      e.printStackTrace();
    } catch (FactoryException e) {
      e.printStackTrace();
    }
  }