Skip to content

Commit

Permalink
uta commuter rail stations
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachBeck authored and steveoh committed Mar 19, 2024
1 parent 40e76d6 commit dd57c3f
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data/downloadMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1974,8 +1974,8 @@ export const dataPages: DownloadMetadata = {
'Utah UTA Commuter Rail Stations': {
itemId: '6fd39acf47884e1dbe6c303e40f1367a',
name: 'Utah UTA Commuter Rail Stations',
featureServiceId: null,
openSgid: '',
featureServiceId: 'UTACommuterRailStations',
openSgid: 'transportation.uta_commuter_rail_stations',
layerId: 0,
},
'Utah Railroad Mileposts': {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
---
import Layout from '@layouts/DataPage.astro';
import type { IMetadata, IPageMetadata } from '@models/products/sgid/types';
import { ProductType, SgidCategory } from '@models/products/sgid/types';
import HubDownloads from '@components/data/HubDownloads.astro';
import Metadata from '@components/data/Metadata.astro';
import UpdateHistory from '@components/data/UpdateHistory.astro';
import CardWithPopularLink from '@components/page/CardWithPopularLink.astro';
import CardWithSmallLink from '@components/page/CardWithSmallLink.astro';
import GridForMoreResources from '@components/page/GridForMoreResources.astro';
import GridForYouMightLike from '@components/page/GridForYouMightLike.astro';
import Section from '@components/page/Section.astro';
import { dataPages } from '@data/downloadMetadata';
export const metadata: IMetadata = {
title: 'Utah UTA Commuter Rail Stations', // The ArcGIS Online title Goes Here (Utah blah blah)
description: `Point locations of Utah Transit Authority (UTA) commuter rail (FrontRunner) stations.`,
stewards: ['Utah Transit Authority (UTA)', 'UGRC'],
type: ProductType.POINT,
category: SgidCategory.TRANSPORTATION,
};
const page: IPageMetadata = {
...metadata,
updateHistory: [`May 2019`, `December 2018`, `May 2013`],
hub: {
...dataPages[metadata.title],
},
};
---

<Layout title={page.title} subTitle={page.updateHistory[0]} category={page.category} actionUrl={page.application}>
<Metadata slot="metadata" {...page} />

<Fragment slot="summary">
<p>
Point locations of Utah Transit Authority's (UTA) FrontRunner North and South commuter rail stations from North
Ogden to Provo. Locations were digitized from high resolution imagery and will be updated as needed.
</p>
</Fragment>

<Section title="Use the data" slot="downloads" titlePosition="center">
<HubDownloads {...page.hub} />
</Section>

<UpdateHistory slot="update-history" updates={page.updateHistory} style="secondary" />

<Section title="More resources" slot="more-resources" titlePosition="center">
<GridForMoreResources>
<CardWithPopularLink title="UTA" href="https://www.rideuta.com/Services/FrontRunner"
>Utah Transit Authority FrontRunner information including schedule and ticketing.</CardWithPopularLink
>
<CardWithPopularLink title="UDOT" href="https://www.udot.utah.gov/connect/public/public-transit/"
>Utah Department of Transportation public transit information.</CardWithPopularLink
>
</GridForMoreResources>
</Section>

<Section title="You might also like" slot="you-might-also-like" stripe titlePosition="center">
<GridForYouMightLike>
<CardWithSmallLink
title="Frontrunner Routes"
href="/products/sgid/transportation/uta-commuter-rail-routes"
style="secondary">UTA commuter rail routes.</CardWithSmallLink
>
<CardWithSmallLink title="UTA Routes" href="/products/sgid/transportation/uta-routes" style="secondary"
>All bus, TRAX, and Frontrunner routes.</CardWithSmallLink
>
<CardWithSmallLink title="UTA Stops" href="/products/sgid/transportation/uta-stops" style="secondary"
>All bus, TRAX, and Frontrunner stops.</CardWithSmallLink
>
<CardWithSmallLink
title="TRAX Routes"
href="/products/sgid/transportation/uta-light-rail-routes"
style="secondary">UTA light rail routes.</CardWithSmallLink
>
</GridForYouMightLike>
</Section>
</Layout>

0 comments on commit dd57c3f

Please sign in to comment.