/**
   * Getting data URI list for a single radar station.
   *
   * @param stnName radar station name
   * @param productID _more_
   * @param start of the time
   * @param end of the time
   * @return list of URIs
   * @throws IOException java io exception
   */
  public List<Date> getRadarStationTimes(String stnName, String productID, Date start, Date end)
      throws IOException {

    TDSRadarDatasetInfo dri = queryRadarStation(stnName, productID, start, end);
    return dri.getTimeList();
  }