public static SpatialReferenceImpl createImpl(String wkt) {
if (wkt == null || wkt.length() == 0)
throw new IllegalArgumentException(
"Cannot create SpatialReference from null or empty text.");
SpatialReferenceImpl spatRef = new SpatialReferenceImpl();
spatRef.m_userWkt = wkt;
return spatRef;
}