Attribute Rules

All feature classes accessed by Attribute Rules must be located in the same database.

Unique ID Sequence

  • Every Parking GIS layer / table has a unique ID field that will be automatically populated by a Database Sequence

  • Block Segments - BLOCK_SEGMENT_ID

  • Parking Paystations - PARKING_PAY_ID

  • Parking Spaces - PARKING_SPACE_ID

  • Parking Restrictions - PARKING_RESTRICTION_ID

  • Parking Zones - PARKING_ZONE_ID

Text(NextSequenceValue("ATD_ADMIN.atd_parking_data_sequence")

Parking District

  • Only the Parking Spaces layer has the PARKING_DISTRICT field, which is automatically calculated based on an intersect with the Parking Districts polygon layer.

  • The PARKING_DISTRICT field is not manually editable by the user.

var ParkDistInt = Intersects(FeatureSetByName($datastore, "ATD_ADMIN.parking_districts", ["OBJECTID"]), $feature);
var ParkDist = First(ParkDistInt);

if (ParkDist == null) {
return "N"
}
else
return "Y";

Parking District Name

  • Only the Parking Spaces layer has the PARKING_DISTRICT_NAME field, which is automatically calculated based on an intersect with the Parking Districts polygon layer.

  • The PARKING_DISTRICT_NAME field is not manually editable by the user.

Parking District ID

  • Only the Parking Spaces layer has the PARKING_DISTRICT_ID field, which is automatically calculated based on an intersect with the Parking Districts polygon layer.

  • The PARKING_DISTRICT_ID field is not manually editable by the user.

RPP District

  • Only the Parking Zones layer has the RPP_DISTRICT field, which is automatically calculated based on an intersect with the RPP Districts polygon layer.

  • The RPP_DISTRICT field is not manually editable by the user.

RPP District ID

  • Only the Parking Zones layer has the RPP_DISTRICT_ID field, which is automatically calculated based on an intersect with the RPP Districts polygon layer.

  • The RPP_DISTRICT_ID field is not manually editable by the user.

Time Limit

  • Only the Parking Restrictions table has the TIME_LIMIT field, which is automatically calculated based on the PARKING_TYPE field in the same table.

  • The TIME_LIMIT field is not manually editable for the following Parking Types. If the user changes the Time Limit for any of the below Parking Types, it will default back based on the Attribute Rule

  • Bicycle Parking Zone

  • Bus Stop

  • Car2Go Parking

  • Commercial Service Zone

  • Customer Service Zone

  • Marked ADA Zone

  • Passenger Loading Zone

Day of the Week Hours

  • Only the Parking Restrictions table has the days of the week fields, which are automatically calculated based on the HOURS_OF_OPERATION field in the same table.

  • These fields are not manually editable for the following Hours of Operations. If the user changes the Hours for any of the below Hours of Operation, it will default back based on the Attribute Rule

    • Mon-Fri: 3PM-9AM

    • Mon-Fri: 8AM-5PM

    • Mon-Fri: 8AM-6PM

    • Mon-Fri: 9AM-4PM

    • Mon-Sat: 7AM-7PM

    • Mon-Sat: 8AM-6PM

    • Mon-Sat: 8AM-Midnight

    • Mon-Sun: 12PM-8PM

    • Mon-Sun: 6PM-6AM

    • Mon-Sun: 7AM-7PM

    • Mon-Sun: 8AM-10PM

    • Mon-Sun: All Day

    • Mon-Tue: 8AM-6PM, Wed-Fri: 8AM-Midnight, Sat: 11AM-Midnight

    • Mon-Wed: 10AM-8PM, Thur-Sat: 10AM-Mignight

    • Sat-Sun: 5AM-10PM

    • Wed-Sat: 7PM-Midnight

Last updated

Was this helpful?