Finding the location of an image of the Mandelbrot set

In Mathematica V10, we can generate an image very much like yours with the following command:

MandelbrotSetPlot[
  {-0.7092 + 0.24445 I,
   -0.712 + 0.2487 I},
  MaxIterations -> 250,
  ImageResolution -> 2000,
  ColorFunction -> "CherryTones"
]

enter image description here

Of course, it might make sense to increase the iteration count. Here's the same image with MaxIterations set to 1500.

enter image description here

The key geometric feature that allows us to find this is the spiral pattern. There are 13 arms spiraling in to the Misiurewicz point near the top of the figure. That tells us that we are located near a period 13 bulb. Counting counter-clockwise from the main spike, the arms get smaller until we get to the $7^{\text{th}}$ arm, indicating we could look at the $6/13$ or $7/13$ bulb, which I'll describe in a moment. Also, the first prominent spiral (which isn't really spiraling much) has four arms; this will be useful when we try to figure out which of the smaller components off of the period bulb we should examine.

The main cardioid of the Mandelbrot set can be parametrized via $$c(t) = \frac{1}{2} e^{2 i \pi t}-\frac{1}{4}e^{4 i \pi t}.$$ There is a bulb attached to this cardioid at each rational number $t$. The denominator of that rational number tells you the period associated with the bulb, i.e. every parameter $c$ chosen from the part of that bulb directly connected to the main cardioid yields a function $f_c(z)=z^2+c$ with the property that the critical point zero is attracted to an orbit whose period is that denominator. This also happens to be the number of arms that spiral in near here.

The numerator of the fraction $t$ tells you how the points in the periodic orbit are stepped through. This is easiest to see with an example of the resulting Julia sets.

enter image description here

This also happens to mirror the changes in the sizes of the spiral arms of the Mandelbrot set.

Taking all this into account, I decided to examine the period $6/13$ bulb attached to the main cardioid, i.e. the point $$c(6/13) = \frac{1}{2} e^{\frac{12 i \pi }{13}}-\frac{1}{4} e^{-\frac{2 i \pi }{13}} \approx -0.706835 + 0.235839 i.$$

This point is shown in red in the image below. The image also includes a sketch of the cardioid as determined by the parametrization $c(t)$.

enter image description here

Zooming in, we see something like so:

enter image description here

Now, at this scale, all of the smaller disks that we see attached to the main $6/13$ disk have similar spiral patterns. This is where we use the fact that the first prominent spiral has four arms. This leads us, finally, to the portion outlined in blue in that final image.