Exemplo n.º 1
0
class Shape(Base):
    """The path the vehicle takes along the route.

    Implements shapes.txt."""
    feed = models.ForeignKey('Feed', on_delete=models.CASCADE)
    shape_id = models.CharField(
        max_length=255, db_index=True,
        help_text="Unique identifier for a shape.")
    geometry = models.LineStringField(
        null=True, blank=True,
        help_text='Geometry cache of ShapePoints')

    def __str__(self):
        return "%d-%s" % (self.feed.id, self.shape_id)

    def update_geometry(self, update_parent=True):
        """Update the geometry from the related ShapePoints"""
        original = self.geometry
        points = self.points.order_by(
            'sequence').values_list('point', flat=True)
        if len(points) > 1:
            self.geometry = LineString([pt.coords for pt in points])
            if self.geometry != original:
                self.save()
                if update_parent:
                    for trip in self.trip_set.all():
                        trip.update_geometry()

    class Meta:
        db_table = 'shape'
        app_label = 'multigtfs'

    _rel_to_feed = 'feed'
Exemplo n.º 2
0
class Trip(Base):
    """A trip along a route

    This implements trips.txt in the GTFS feed
    """

    route = models.ForeignKey('Route', on_delete=models.CASCADE)
    service = models.ForeignKey('Service',
                                null=True,
                                blank=True,
                                on_delete=models.SET_NULL)
    trip_id = models.CharField(max_length=255,
                               db_index=True,
                               help_text="Unique identifier for a trip.")
    headsign = models.CharField(
        max_length=255,
        blank=True,
        help_text="Destination identification for passengers.")
    short_name = models.CharField(
        max_length=63,
        blank=True,
        help_text="Short name used in schedules and signboards.")
    direction = models.CharField(
        max_length=1,
        blank=True,
        choices=(('0', '0'), ('1', '1')),
        help_text="Direction for bi-directional routes.")
    block = models.ForeignKey(
        'Block',
        null=True,
        blank=True,
        on_delete=models.SET_NULL,
        help_text="Block of sequential trips that this trip belongs to.")
    shape = models.ForeignKey('Shape',
                              null=True,
                              blank=True,
                              on_delete=models.SET_NULL,
                              help_text="Shape used for this trip")
    geometry = models.LineStringField(
        null=True, blank=True, help_text='Geometry cache of Shape or Stops')
    wheelchair_accessible = models.CharField(
        max_length=1,
        blank=True,
        choices=(('0', 'No information'), ('1',
                                           'Some wheelchair accommodation'),
                 ('2', 'No wheelchair accommodation')),
        help_text='Are there accommodations for riders with wheelchair?')
    bikes_allowed = models.CharField(max_length=1,
                                     blank=True,
                                     choices=(('0', 'No information'),
                                              ('1',
                                               'Some bicycle accommodation'),
                                              ('2', 'No bicycles allowed')),
                                     help_text='Are bicycles allowed?')
    extra_data = JSONField(default={}, blank=True, null=True)

    def update_geometry(self, update_parent=True):
        """Update the geometry from the Shape or Stops"""
        original = self.geometry
        if self.shape:
            self.geometry = self.shape.geometry
        else:
            stoptimes = self.stoptime_set.order_by('stop_sequence')
            if stoptimes.count() > 1:
                self.geometry = LineString(
                    [st.stop.point.coords for st in stoptimes])
        if self.geometry != original:
            self.save()
            if update_parent:
                self.route.update_geometry()

    def __str__(self):
        return "%s-%s" % (self.route, self.trip_id)

    class Meta:
        db_table = 'trip'
        app_label = 'multigtfs'

    _column_map = (
        ('route_id', 'route__route_id'),
        ('service_id', 'service__service_id'),
        ('trip_id', 'trip_id'),
        ('trip_headsign', 'headsign'),
        ('trip_short_name', 'short_name'),
        ('direction_id', 'direction'),
        ('block_id', 'block__block_id'),
        ('shape_id', 'shape__shape_id'),
        ('wheelchair_accessible', 'wheelchair_accessible'),
        ('bikes_allowed', 'bikes_allowed'),
    )
    _filename = 'trips.txt'
    _rel_to_feed = 'route__feed'
    _unique_fields = ('trip_id', )