As became evident in comments to the question, the data consist of only four observations of time to bud burst. (It would be a mistake to analyze them as if they were 16 independent values.) They consist of intervals of times rather than exact times:
[1,8], [8,16], [16,24], [24,32]
There are several approaches one might take. An appealing, highly general one is to take these intervals at their word: the true time of bud burst could be anything within each interval. We are thus led to represent "uncertainty" in two separate forms: sampling uncertainty (we have a presumably representative sample of the species this year) and observational uncertainty (reflected by the intervals).
Sampling uncertainty is handled with familiar statistical techniques: we are asked to estimate the median and we can do so in any number of ways, depending on statistical assumptions, and we can provide confidence intervals for the estimate. For simplicity, let's suppose time to bud burst has a symmetrical distribution. Because it is (presumably) non-negative, this implies it has a variance and also suggests the mean of even just four observations may be approximately normally distributed. Moreover, symmetry implies we can use the mean as a surrogate for the median (which is sought in the original question). This gives us access to standard, simple, estimates and confidence interval methods.
Observation uncertainty can be handled with principles of interval arithmetic (often called "probability bounds analysis"): perform all calculations using all possible configurations of data consistent with the observations. Let's see how this works in a simple case: estimating the mean. It is intuitively clear that the mean can be no smaller than $(1+8+16+24)/4$ = $10.25$, achieved by using the smallest values in each interval, and also that the mean can be no greater than $(8+16+24+32)$ = $18$. We conclude:
$$\text{Mean} = [10.25, 18].$$
This represents an entire interval of estimates: an appropriate result of a computation with interval inputs!
A $1-\alpha$ upper (one-sided) confidence limit of the mean of four values $\mathbf{x} = (x_1, x_2, x_3, x_4)$ is computed from their mean $m$ and sample standard deviation $s$ with the Student t-distribution as
$$\text{ucl}(\mathbf{x}, \alpha) = x + t_{n-1}(\alpha) s / \sqrt{n}.$$
Unlike the calculation of the mean, it is no longer generally the case that the interval of ucl's is bounded by the ucl's of the limiting values. Indeed, note that the ucl of the lower interval limits, $\text{ucl}((1,8,16,24), .025)$, equals $28.0758$, whereas $\text{ucl}((8, 11.676, 16, 24), .025) = 25.8674$ is smaller yet. By maximizing and minimizing the ucl among all possible combinations of values consistent with the observations, we find (for example) that
$$\text{ucl}(\text{data},.025) = [25.8, 39.3]$$
(that's an interval of numbers representing an interval-valued ucl, not a confidence interval!) and, for the lower confidence limit,
$$\text{lcl}(\text{data},.025) = [0, 6.2].$$
(These values have been rounded outwards. The $0$ is a negative value that was truncated to $0$ on the premise that the median bud time cannot be negative.)
In words, we might say that
"These observations are consistent with values that, had they been precisely measured, could result in an upper 2.5% confidence limit of the median as high as 39.3 days, but no higher. They are consistent with values (which might differ from the first) that would result in a lower 2.5% confidence limit as low as 0."
What one is to make of this is a matter for individual contemplation and depends on the application. If one wants to be reasonably sure that bud burst occurs before 40 days, then this result gives some satisfaction (conditional on the assumptions about bud burst distribution and independence of the observations). If one wants to estimate bud burst to the nearest day, then clearly more data are needed. In other circumstances, this statistical conclusion in terms of interval-valued confidence limits may be frustrating. E.g., how confident can we be that bud burst occurs in 50% of specimens before 30 days? It's hard to say, because the answers will be intervals.
There are other ways to handle this problem. I especially favor using maximum likelihood methods. (To apply them here, we would need to know more about how the interval cutpoints were established. It matters whether they were determined independently of the data or not.) The present question appears to be a good opportunity to introduce interval-based methods because they do not seem to be well known, even though in certain disciplines (risk assessment and analysis of algorithms) they have been warmly advocated by some people.