Package org.onebusaway.geospatial.model

Examples of org.onebusaway.geospatial.model.CoordinateBounds


  private static CoordinateBounds getSearchBounds(double radius) {

    LocationManager locationManager = MobileApplicationContext.getLocationManager();
    LatLng p = locationManager.getCurrentSearchLocation();

    CoordinateBounds bounds = SphericalGeometryLibrary.bounds(p.getLatitude(),
        p.getLongitude(), radius);
    System.out.println(bounds);
    return bounds;
  }
View Full Code Here


  public String execute() throws ServiceException {
   
    if( _query == null || _query.length() == 0)
      return INPUT;

    CoordinateBounds bounds = getServiceArea();

    if (bounds == null) {
      pushNextAction("routes", "query", _query);
      return "query-default-search-location";
    }
View Full Code Here

  @Actions( {
      @Action(value = "/where/iphone/stops"),
      @Action(value = "/where/text/stops")})
  public String execute() throws ServiceException {

    CoordinateBounds bounds = getServiceArea();

    if (bounds == null) {
      pushNextAction("stops", "code", _code);
      return "query-default-search-location";
    }
View Full Code Here

    _regions.clear();
    _maxTime = 0;

    for (int i = 0; i < timeGrid.size(); i++) {

      CoordinateBounds bounds = timeGrid.get(i);

      int time = times.get(i);
      _maxTime = Math.max(time, _maxTime);

      LatLng p1 = LatLng.newInstance(bounds.getMinLat(), bounds.getMinLon());
      LatLng p2 = LatLng.newInstance(bounds.getMaxLon(), bounds.getMaxLon());
      LatLngBounds b = LatLngBounds.newInstance();
      b.extend(p1);
      b.extend(p2);

      TimedRegion region = new TimedRegion(b, time);
View Full Code Here

    }

    if (checkCompletion())
      return;

    CoordinateBounds bounds = _searchGrid.get(_gridIndex++);
    String query = _queries.get(_queryIndex);
    String category = _categories.get(_queryIndex);
    _searchProvider.search(bounds, query, category, this);
  }
View Full Code Here

    System.out.println(originalBounds);

    LatLngBounds smallerBounds = null;
    if (originalBounds != null) {
      LatLng center = originalBounds.getCenter();
      CoordinateBounds cb2 = SphericalGeometryLibrary.bounds(
          center.getLatitude(), center.getLongitude(), 4000);
      smallerBounds = getBounds(cb2);
      System.out.println(cb2);
      System.out.println(smallerBounds);
    }
View Full Code Here

  private void checkSteps(CoordinateBounds bounds) {
    if (!(Double.isNaN(_latStep) || Double.isNaN(_lonStep)))
      return;

    CoordinateBounds steps = SphericalGeometryLibrary.bounds(
        bounds.getMinLat(), bounds.getMinLon(), 200);

    _latStep = snap(steps.getMaxLat() - steps.getMinLat(), 1e3);
    _lonStep = snap(steps.getMaxLon() - steps.getMinLon(), 1e3);
  }
View Full Code Here

    double minLat = floor(bounds.getMinLat(), _latStep);
    double maxLat = floor(bounds.getMaxLat(), _latStep);
    double minLon = floor(bounds.getMinLon(), _lonStep);
    double maxLon = floor(bounds.getMaxLon(), _lonStep);

    CoordinateBounds dirtyRegion = new CoordinateBounds();
    List<CoordinateBounds> dirtyRegions = new ArrayList<CoordinateBounds>();

    for (double lat = minLat; lat <= maxLat; lat += _latStep) {
      for (double lon = minLon; lon <= maxLon; lon += _lonStep) {
        CoordinateBounds region = snapBounds(lat, lon, lat + _latStep, lon
            + _lonStep);
        RegionCache cache = _cache.get(region);
        if (cache == null) {
          dirtyRegion.addBounds(region);
          dirtyRegions.add(region);
View Full Code Here

    double minLon = floor(bounds.getMinLon() - _lonStep, _lonStep);
    double maxLon = floor(bounds.getMaxLon() + _lonStep, _lonStep);

    for (double lat = minLat; lat <= maxLat; lat += _latStep) {
      for (double lon = minLon; lon <= maxLon; lon += _lonStep) {
        CoordinateBounds region = snapBounds(lat, lon, lat + _latStep, lon
            + _lonStep);
        checkRegion(region);
      }
    }
  }
View Full Code Here

    if (_pendingOps.isEmpty())
      return;

    RegionOp regionOp = _pendingOps.removeFirst();
    CoordinateBounds region = regionOp.getRequestRegion();

    RegionCache cache = _cache.get(region);
    if (cache != null) {
      handleRegion(region, cache);
      return;
View Full Code Here

TOP

Related Classes of org.onebusaway.geospatial.model.CoordinateBounds

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.