Пример #1
0
        public void GetAllSp3Files(string folder = null, int start = -1, int end = -2)
        {
            if (start < 0 || end < 0)
            {
                return;
            }

            GetAllSp3Files(folder, DOY.FromInt(start), DOY.FromInt(end));
        }
Пример #2
0
 public void Read(string folder, int doyStart, int doyEnd)
 {
     GetAllSp3Files(folder, DOY.FromInt(doyStart), DOY.FromInt(doyEnd));
     Read(folder);
 }