return cs;
}
public SphericalCS createSphericalCS(String code) throws FactoryException {
final String key = toKey(code);
SphericalCS cs = (SphericalCS) cache.get(key);
if (cs == null) {
try {
cache.writeLock(key);
cs = (SphericalCS) cache.peek(key);
if (cs == null) {