示例#1
0
 public EF_Stop(GTFS_Stop stop)
 {
     OriginalId         = stop.StopId;
     StopName           = stop.StopName;
     StopLatitude       = stop.StopLatitude;
     StopLongitude      = stop.StopLongitude;
     LocationType       = stop.LocationType;
     WheelchairBoarding = stop.WheelchairBoarding;
 }
示例#2
0
 public VMDL_Stop(int id, string name, double lat, double lon, E_LocationType loctype, int? parentStation, E_WheelchairSupport wheelchair)
 {
     this.StopId = id;
     this.StopName = name;
     this.StopLatitude = lat;
     this.StopLongitude = lon;
     this.LocationType = loctype;
     this.ParentStation = parentStation;
     this.WheelchairBoarding = wheelchair;
 }
示例#3
0
 public VMDL_Stop(int id, string name, double lat, double lon, E_LocationType loctype, int?parentStation, E_WheelchairSupport wheelchair)
 {
     this.StopId             = id;
     this.StopName           = name;
     this.StopLatitude       = lat;
     this.StopLongitude      = lon;
     this.LocationType       = loctype;
     this.ParentStation      = parentStation;
     this.WheelchairBoarding = wheelchair;
 }
示例#4
0
 public EF_Trip(GTFS_Trip trip, EF_Route route, EF_Calendar calendar, EF_Shape shape)
 {
     OriginalId           = trip.TripId;
     RouteId              = route;
     ServiceId            = calendar;
     ShapeId              = shape;
     TripHeadsign         = trip.TripHeadsign;
     DirectionId          = trip.DirectionId;
     BlockId              = trip.BlockId;
     WheelchairAccessible = trip.WheelchairAccessible;
 }
示例#5
0
 public Stop(int dbid, string id, string name, double lat, double lon, E_LocationType loctype, int?parentStation, E_WheelchairSupport wheelchair, int?gid)
 {
     this.DbId               = dbid;
     this.StopId             = id;
     this.StopName           = name;
     this.StopLatitude       = lat;
     this.StopLongitude      = lon;
     this.LocationType       = loctype;
     this.ParentStation      = parentStation;
     this.WheelchairBoarding = wheelchair;
     this.GroupId            = gid;
 }
示例#6
0
文件: Stop.cs 项目: takraj/menetrend
 public Stop(int dbid, string id, string name, double lat, double lon, E_LocationType loctype, int? parentStation, E_WheelchairSupport wheelchair, int? gid)
 {
     this.DbId = dbid;
     this.StopId = id;
     this.StopName = name;
     this.StopLatitude = lat;
     this.StopLongitude = lon;
     this.LocationType = loctype;
     this.ParentStation = parentStation;
     this.WheelchairBoarding = wheelchair;
     this.GroupId = gid;
 }