예제 #1
0
 private static EpsgDatum GetFirstDatum(EpsgCrs crs)
 {
     while (crs != null)
     {
         if (crs.Datum != null)
         {
             return(crs.Datum);
         }
         crs = crs.SourceGeographicCrs;
     }
     return(null);
 }
예제 #2
0
 private static bool IsNotDeprecated(EpsgCrs crs)
 {
     return(!crs.Deprecated);
 }