示例#1
0
文件: Qtree.cs 项目: jesumarquez/lt
        public static Qtree CreateGte(string dir, GridStructure so)
        {
            var q    = new Qtree(QtreeFormat.Gte);
            var repo = new Repository();

            repo.Init <GeoGrillas>(dir, so);
            //repo.Open<GR2>(dir, ref so);
            q.Repository = repo;
            q.Close();
            return(q);
        }
示例#2
0
文件: Qtree.cs 项目: jesumarquez/lt
        public static Qtree CreateTorino(string dir)
        {
            var q    = new Qtree(QtreeFormat.Gte);
            var repo = new Repository();
            var so   = new GridStructure();

            repo.Init <GR2>(dir, so);
            q.Repository = repo;
            q.Close();
            return(q);
        }