I would like to get some help in coding for implementing quadtree. I have a input node as spatial tile location in the format
<tile zoom level,tile row,tile column> given as
<12,3943,1813>
I want to create a quadtree and add nodes(in java) to implement the following:
Input Level '12' is split as
<13,7886,3626> <13,7887,3626> <13,7886,3627> <13,7887,3627> .
Futher each '13' level is split into level '14'.
<13,7886,3626> is split as
<14,15772,7252> <14,15773,7252> <14,15772,7253> <14,15773,7253>
<13,7887,3626> is split as
<14,15774,7252> <14,15775,7252> <14,15774,7253> <14,15775,7253>
<13,7886,3627> is split as
<14,15772,7254> <14,15773,7254> <14,15772,7255> <14,15773,7255>
<13,7887,3627> is split as
<14,15774,7254> <14,15775,7254> <14,15774,7255> <14,15775,7255>