org.geotools.index.quadtree.QuadTree.getIndexfile()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(96)

本文整理了Java中org.geotools.index.quadtree.QuadTree.getIndexfile方法的一些代码示例,展示了QuadTree.getIndexfile的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。QuadTree.getIndexfile方法的具体详情如下:
包路径:org.geotools.index.quadtree.QuadTree
类名称:QuadTree
方法名:getIndexfile

QuadTree.getIndexfile介绍

暂无

代码示例

代码示例来源:origin: org.geotools/gt-shapefile

public LazySearchIterator(QuadTree tree, Envelope bounds) {
  super();
  this.tree = tree;
  this.indexfile = tree.getIndexfile();
  tree.registerIterator(this);
  this.current = tree.getRoot();
  this.bounds = bounds;
  this.closed = false;
  this.next = null;
  this.indexfile = indexfile;
}

代码示例来源:origin: org.geotools/gt-shapefile-old

public LazySearchIterator(QuadTree tree, Envelope bounds) {
  super();
  this.tree = tree;
  this.indexfile = tree.getIndexfile();
  tree.registerIterator(this);
  this.current = tree.getRoot();
  this.bounds = bounds;
  this.closed = false;
  this.next = null;
  this.indexfile = indexfile;
}

代码示例来源:origin: org.geotools/gt-shapefile

public CachedQuadTree(QuadTree tree) throws IOException {
  offsets = new Indices();
  this.root = cloneAndTranslate(tree.getRoot(), tree.getIndexfile());
}

代码示例来源:origin: org.geotools/gt2-shapefile

public Iterator iterator() {
  LazySearchIterator object;
  try {
    object = new LazySearchIterator(tree.getRoot().copy(), tree.getIndexfile(), bounds);
  } catch (IOException e) {
    throw new RuntimeException(e);
  }
  tree.registerIterator(object);
  return object;
}

代码示例来源:origin: org.geotools/gt-shapefile-old

public CachedQuadTree(QuadTree tree) throws IOException {
  offsets = new Indices();
  this.root = cloneAndTranslate(tree.getRoot(), tree.getIndexfile());
}

相关文章