Uses of Class
org.onebusaway.geospatial.model.CoordinateBounds

Packages that use CoordinateBounds
org.onebusaway.api.impl   
org.onebusaway.federations   
org.onebusaway.federations.impl   
org.onebusaway.geospatial   
org.onebusaway.geospatial.grid   
org.onebusaway.geospatial.model   
org.onebusaway.geospatial.services   
org.onebusaway.phone.actions   
org.onebusaway.presentation.impl   
org.onebusaway.presentation.services   
org.onebusaway.transit_data_federation.impl   
org.onebusaway.transit_data_federation.impl.beans   
org.onebusaway.transit_data_federation.impl.blocks   
org.onebusaway.transit_data_federation.impl.transit_graph   
org.onebusaway.transit_data_federation.services   
org.onebusaway.transit_data_federation.services.beans   
org.onebusaway.transit_data_federation.services.blocks   
org.onebusaway.transit_data_federation.services.transit_graph   
org.onebusaway.transit_data_federation.services.tripplanner   
org.onebusaway.transit_data.model   
org.onebusaway.transit_data.model.oba   
org.onebusaway.transit_data.model.trips   
org.onebusaway.webapp.actions   
org.onebusaway.webapp.gwt.oba_application.search   
org.onebusaway.webapp.gwt.oba_library.model   
org.onebusaway.webapp.gwt.where_library   
org.onebusaway.webapp.gwt.where_library.impl   
org.onebusaway.webapp.gwt.where_library.services   
org.onebusaway.webapp.gwt.where_library.view   
 

Uses of CoordinateBounds in org.onebusaway.api.impl
 

Methods in org.onebusaway.api.impl that return CoordinateBounds
 CoordinateBounds SearchBoundsFactory.createBounds()
           
 

Uses of CoordinateBounds in org.onebusaway.federations
 

Methods in org.onebusaway.federations that return types with arguments of type CoordinateBounds
 Map<String,List<CoordinateBounds>> FederatedService.getAgencyIdsWithCoverageArea()
           
 

Methods in org.onebusaway.federations with parameters of type CoordinateBounds
 FederatedService FederatedServiceCollection.getServiceForBounds(CoordinateBounds bounds)
           
 

Uses of CoordinateBounds in org.onebusaway.federations.impl
 

Methods in org.onebusaway.federations.impl that return types with arguments of type CoordinateBounds
static Map<FederatedService,Map<String,List<CoordinateBounds>>> FederatedServiceLibrary.getFederatedServiceAgencyCoverage(List<? extends FederatedService> federatedServiceInstances, Class<? extends FederatedService> federatedServiceInterface)
          Given a list of FederatedService instances federatedServiceInstances that implement a target federatedServiceInterface, query each instance in turn to determine its set of agencies and geographic bounds, verifying that no two distinct federated service instances have overlapping agency ids or geographic bounds.
 

Methods in org.onebusaway.federations.impl with parameters of type CoordinateBounds
 FederatedService FederatedServiceCollectionImpl.getServiceForBounds(CoordinateBounds bounds)
           
 FederatedService AbstractFederatedServiceCollectionWrapperImpl.getServiceForBounds(CoordinateBounds bounds)
           
 

Method parameters in org.onebusaway.federations.impl with type arguments of type CoordinateBounds
static boolean FederatedServiceLibrary.checkAgencyAndCoverageAgainstExisting(Map<FederatedService,Map<String,List<CoordinateBounds>>> byProvider, String agencyId, List<CoordinateBounds> coverage, Class<?> serviceInterface, boolean failHard)
          Given an existing set of FederatedService instances along with their set of agency ids and geographic bounds, examine an additional agency id and coverage area from another service instance and verify that there is no overlap.
static boolean FederatedServiceLibrary.checkAgencyAndCoverageAgainstExisting(Map<FederatedService,Map<String,List<CoordinateBounds>>> byProvider, String agencyId, List<CoordinateBounds> coverage, Class<?> serviceInterface, boolean failHard)
          Given an existing set of FederatedService instances along with their set of agency ids and geographic bounds, examine an additional agency id and coverage area from another service instance and verify that there is no overlap.
 

Constructor parameters in org.onebusaway.federations.impl with type arguments of type CoordinateBounds
FederatedServiceCollectionImpl(Map<FederatedService,Map<String,List<CoordinateBounds>>> services)
           
 

Uses of CoordinateBounds in org.onebusaway.geospatial
 

Methods in org.onebusaway.geospatial with parameters of type CoordinateBounds
 List<T> HierarchicalSTRtree.query(CoordinateBounds b)
           
 

Uses of CoordinateBounds in org.onebusaway.geospatial.grid
 

Methods in org.onebusaway.geospatial.grid that return CoordinateBounds
protected  CoordinateBounds GridFactory.getIndexAsBounds(GridIndex index)
           
 

Methods in org.onebusaway.geospatial.grid that return types with arguments of type CoordinateBounds
 List<CoordinateBounds> GridFactory.getGrid()
           
 

Methods in org.onebusaway.geospatial.grid with parameters of type CoordinateBounds
 void GridFactory.addBounds(CoordinateBounds bounds)
           
 

Uses of CoordinateBounds in org.onebusaway.geospatial.model
 

Methods in org.onebusaway.geospatial.model that return CoordinateBounds
 CoordinateBounds CoordinateBounds.intersection(CoordinateBounds r)
           
 CoordinateBounds CoordinateBounds.union(CoordinateBounds r)
           
 

Methods in org.onebusaway.geospatial.model with parameters of type CoordinateBounds
 void CoordinateBounds.addBounds(CoordinateBounds bounds)
           
 CoordinateBounds CoordinateBounds.intersection(CoordinateBounds r)
           
 boolean CoordinateBounds.intersects(CoordinateBounds r)
           
 CoordinateBounds CoordinateBounds.union(CoordinateBounds r)
           
 

Constructors in org.onebusaway.geospatial.model with parameters of type CoordinateBounds
CoordinateBounds(CoordinateBounds bounds)
           
 

Uses of CoordinateBounds in org.onebusaway.geospatial.services
 

Methods in org.onebusaway.geospatial.services that return CoordinateBounds
static CoordinateBounds SphericalGeometryLibrary.bounds(CoordinateBounds b, double distance)
           
static CoordinateBounds SphericalGeometryLibrary.bounds(CoordinatePoint point, double distance)
           
static CoordinateBounds SphericalGeometryLibrary.bounds(double lat, double lon, double distance)
           
static CoordinateBounds SphericalGeometryLibrary.bounds(double lat, double lon, double latDistance, double lonDistance)
           
static CoordinateBounds SphericalGeometryLibrary.boundsFromLatLonOffset(double lat, double lon, double latOffset, double lonOffset)
           
static CoordinateBounds SphericalGeometryLibrary.boundsFromLatLonSpan(double lat, double lon, double latSpan, double lonSpan)
           
 

Methods in org.onebusaway.geospatial.services with parameters of type CoordinateBounds
static CoordinateBounds SphericalGeometryLibrary.bounds(CoordinateBounds b, double distance)
           
static CoordinatePoint SphericalGeometryLibrary.getCenterOfBounds(CoordinateBounds b)
           
 

Uses of CoordinateBounds in org.onebusaway.phone.actions
 

Methods in org.onebusaway.phone.actions that return CoordinateBounds
protected  CoordinateBounds AbstractAction.getDefaultSearchArea()
           
 

Uses of CoordinateBounds in org.onebusaway.presentation.impl
 

Methods in org.onebusaway.presentation.impl that return CoordinateBounds
 CoordinateBounds ServiceAreaServiceImpl.getDefaultBounds()
           
 CoordinateBounds ServiceAreaServiceImpl.getServiceArea()
           
 

Methods in org.onebusaway.presentation.impl with parameters of type CoordinateBounds
 void ServiceAreaServiceImpl.setDefaultBounds(CoordinateBounds bounds)
           
 

Uses of CoordinateBounds in org.onebusaway.presentation.services
 

Methods in org.onebusaway.presentation.services that return CoordinateBounds
 CoordinateBounds ServiceAreaService.getServiceArea()
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data_federation.impl
 

Methods in org.onebusaway.transit_data_federation.impl that return types with arguments of type CoordinateBounds
 Map<String,CoordinateBounds> AgencyServiceImpl.getAgencyIdsAndCoverageAreas()
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data_federation.impl.beans
 

Methods in org.onebusaway.transit_data_federation.impl.beans with parameters of type CoordinateBounds
 ListBean<BlockStatusBean> BlockStatusBeanServiceImpl.getBlocksForBounds(CoordinateBounds bounds, long time)
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data_federation.impl.blocks
 

Methods in org.onebusaway.transit_data_federation.impl.blocks with parameters of type CoordinateBounds
 List<BlockLocation> BlockStatusServiceImpl.getBlocksForBounds(CoordinateBounds bounds, long time)
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data_federation.impl.transit_graph
 

Methods in org.onebusaway.transit_data_federation.impl.transit_graph with parameters of type CoordinateBounds
 List<StopEntry> TransitGraphImpl.getStopsByLocation(CoordinateBounds bounds)
           
 List<StopEntry> TransitGraphDaoImpl.getStopsByLocation(CoordinateBounds bounds)
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data_federation.services
 

Methods in org.onebusaway.transit_data_federation.services that return types with arguments of type CoordinateBounds
 Map<String,CoordinateBounds> AgencyService.getAgencyIdsAndCoverageAreas()
          For each agency in a transit bundle, computes the coordinate bounds of all the stops operated by that agency.
 

Uses of CoordinateBounds in org.onebusaway.transit_data_federation.services.beans
 

Methods in org.onebusaway.transit_data_federation.services.beans with parameters of type CoordinateBounds
 ListBean<BlockStatusBean> BlockStatusBeanService.getBlocksForBounds(CoordinateBounds bounds, long time)
           
 List<org.onebusaway.gtfs.model.AgencyAndId> GeospatialBeanService.getStopsByBounds(CoordinateBounds bounds)
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data_federation.services.blocks
 

Methods in org.onebusaway.transit_data_federation.services.blocks with parameters of type CoordinateBounds
 List<BlockInstance> BlockGeospatialService.getActiveScheduledBlocksPassingThroughBounds(CoordinateBounds bounds, long timeFrom, long timeTo)
          Determines the set of currently active blocks (according to scheduled times) that pass through the specified bounds.
 Set<BlockSequenceIndex> BlockGeospatialService.getBlockSequenceIndexPassingThroughBounds(CoordinateBounds bounds)
           
 List<BlockLocation> BlockStatusService.getBlocksForBounds(CoordinateBounds bounds, long time)
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data_federation.services.transit_graph
 

Methods in org.onebusaway.transit_data_federation.services.transit_graph with parameters of type CoordinateBounds
 List<StopEntry> TransitGraphDao.getStopsByLocation(CoordinateBounds bounds)
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data_federation.services.tripplanner
 

Methods in org.onebusaway.transit_data_federation.services.tripplanner with parameters of type CoordinateBounds
 List<StopEntry> TripPlannerGraph.getStopsByLocation(CoordinateBounds bounds)
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data.model
 

Methods in org.onebusaway.transit_data.model that return CoordinateBounds
 CoordinateBounds SearchQueryBean.getBounds()
           
 

Methods in org.onebusaway.transit_data.model with parameters of type CoordinateBounds
 void SearchQueryBean.setBounds(CoordinateBounds bounds)
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data.model.oba
 

Methods in org.onebusaway.transit_data.model.oba that return types with arguments of type CoordinateBounds
 List<CoordinateBounds> MinTransitTimeResult.getSearchGrid()
           
 

Method parameters in org.onebusaway.transit_data.model.oba with type arguments of type CoordinateBounds
 void MinTransitTimeResult.setSearchGrid(List<CoordinateBounds> searchGrid)
           
 

Uses of CoordinateBounds in org.onebusaway.transit_data.model.trips
 

Methods in org.onebusaway.transit_data.model.trips that return CoordinateBounds
 CoordinateBounds TripsForBoundsQueryBean.getBounds()
           
 

Methods in org.onebusaway.transit_data.model.trips with parameters of type CoordinateBounds
 void TripsForBoundsQueryBean.setBounds(CoordinateBounds bounds)
           
 

Uses of CoordinateBounds in org.onebusaway.webapp.actions
 

Methods in org.onebusaway.webapp.actions that return CoordinateBounds
protected  CoordinateBounds AbstractAction.getServiceArea()
          Protected Methods
 

Uses of CoordinateBounds in org.onebusaway.webapp.gwt.oba_application.search
 

Methods in org.onebusaway.webapp.gwt.oba_application.search with parameters of type CoordinateBounds
 void YelpLocalSearchProvider.search(CoordinateBounds bounds, String query, String category, LocalSearchCallback callback)
           
 void LocalSearchProvider.search(CoordinateBounds bounds, String query, String category, LocalSearchCallback callback)
           
 

Uses of CoordinateBounds in org.onebusaway.webapp.gwt.oba_library.model
 

Method parameters in org.onebusaway.webapp.gwt.oba_library.model with type arguments of type CoordinateBounds
 void TimedRegionModel.setData(List<CoordinateBounds> timeGrid, List<Integer> times)
           
 

Uses of CoordinateBounds in org.onebusaway.webapp.gwt.where_library
 

Methods in org.onebusaway.webapp.gwt.where_library that return CoordinateBounds
 CoordinateBounds OBAConfig.getBounds()
           
 

Uses of CoordinateBounds in org.onebusaway.webapp.gwt.where_library.impl
 

Methods in org.onebusaway.webapp.gwt.where_library.impl with parameters of type CoordinateBounds
 void StopsForRegionServiceImpl.getStopsForRegion(CoordinateBounds bounds, com.google.gwt.user.client.rpc.AsyncCallback<List<StopBean>> callback)
           
 

Uses of CoordinateBounds in org.onebusaway.webapp.gwt.where_library.services
 

Methods in org.onebusaway.webapp.gwt.where_library.services with parameters of type CoordinateBounds
 void StopsForRegionService.getStopsForRegion(CoordinateBounds bounds, com.google.gwt.user.client.rpc.AsyncCallback<List<StopBean>> callback)
           
 

Uses of CoordinateBounds in org.onebusaway.webapp.gwt.where_library.view
 

Methods in org.onebusaway.webapp.gwt.where_library.view with parameters of type CoordinateBounds
 Context StopFinderPresenter.getCoordinateBoundsAsContext(CoordinateBounds bounds)
           
 



Copyright © 2012 OneBusAway. All Rights Reserved.