Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: energy-uranium #2653

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions src/data/downloadMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -805,8 +805,8 @@ export const dataPages: DownloadMetadata = {
'Utah Permitted Uranium Mines': {
itemId: '222316608b7d4f23b3e18c7bb0596c75',
name: 'Utah Permitted Uranium Mines',
featureServiceId: null,
openSgid: '',
featureServiceId: 'PermittedUraniumMines',
openSgid: 'energy.permitted_uranium_mines',
layerId: 0,
},
'Utah Power Plants CO2': {
Expand All @@ -826,29 +826,29 @@ export const dataPages: DownloadMetadata = {
'Utah Uranium Area Boundaries': {
itemId: '3eba2c1bd5bf4165bee3caf6c1525eae',
name: 'Utah Uranium Area Boundaries',
featureServiceId: null,
openSgid: '',
featureServiceId: 'UraniumAreaBoundaries',
openSgid: 'energy.uranium_area_boundaries',
layerId: 0,
},
'Utah UGS Uranium Districts': {
itemId: '1b9c8a48aae84adb81294e766cbe4b3c',
name: 'Utah UGS Uranium Districts',
featureServiceId: null,
openSgid: '',
featureServiceId: 'UraniumDistricts_UGS',
openSgid: 'energy.ugs_uranium_districts',
layerId: 0,
},
'Utah Uranium Mills': {
itemId: 'd49fd89f13c04a43b9b6ff0a684ad875',
name: 'Utah Uranium Mills',
featureServiceId: null,
openSgid: '',
featureServiceId: 'UraniumMills',
openSgid: 'energy.uranium_mills',
layerId: 0,
},
'Utah Uranium Past Producers': {
itemId: 'bb603c7f82ad473296c0d4bef14da185',
name: 'Utah Uranium Past Producers',
featureServiceId: null,
openSgid: '',
featureServiceId: 'UraniumPastProducers',
openSgid: 'energy.uranium_past_producers',
layerId: 0,
},
'Utah UREZ Phase 1 Geothermal Zones': {
Expand Down
85 changes: 85 additions & 0 deletions src/pages/products/sgid/energy/permitted-uranium-mills.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
---
import Layout from '@layouts/DataPage.astro';

import type { IMetadata, IPageMetadata } from '@models/products/sgid/types';
import { ProductType, SgidCategory } from '@models/products/sgid/types';

import Disclaimer from '@components/data/Disclaimer.astro';
import HubDownloads from '@components/data/HubDownloads.astro';
import Metadata from '@components/data/Metadata.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 Uranium Mills',
description: `Uranium mill locations in Utah.`,
stewards: ['UGRC'],
type: ProductType.POINT,
category: SgidCategory.ENERGY,
};

const page: IPageMetadata = {
...metadata,
updateHistory: [`Unknown`],
hub: {
...dataPages[metadata.title],
},
};
---

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

<Fragment slot="summary">
<p>This dataset contains the locations of uranium mills in Utah in addition to mill ID, name, operator and more.</p>
</Fragment>

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

<Disclaimer slot="disclaimer" style="secondary">
<p>There are no constraints or warranties with regard to the use of this dataset.</p>
</Disclaimer>

<Section title="More resources" slot="more-resources" titlePosition="center">
<GridForMoreResources>
<CardWithPopularLink title="Permitted Uranium Mines" href="/products/sgid/energy/permitted-uranium-mines"
>Permitted uranium mines in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Past Producers" href="/products/sgid/energy/uranium-past-producers"
>Uranium past producers in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Area Boundaries" href="/products/sgid/energy/uranium-area-boundaries"
>Uranium area boundaries in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Districts (UGS)" href="/products/sgid/energy/ugs-uranium-districts"
>Uranium districts from the Utah Geological Survey (UGS) in Utah.</CardWithPopularLink
>
</GridForMoreResources>
</Section>

<Section title="You might also like" slot="you-might-also-like" stripe titlePosition="center">
<GridForYouMightLike>
<CardWithSmallLink title="Energy" href="/products/sgid/energy" style="secondary">Energy page</CardWithSmallLink>
<CardWithSmallLink title="Utilities" href="/products/sgid/utilities" style="secondary"
>Utilities page</CardWithSmallLink
>
</GridForYouMightLike>
</Section>
</Layout>
88 changes: 88 additions & 0 deletions src/pages/products/sgid/energy/permitted-uranium-mines.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
---
import Layout from '@layouts/DataPage.astro';

import type { IMetadata, IPageMetadata } from '@models/products/sgid/types';
import { ProductType, SgidCategory } from '@models/products/sgid/types';

import Disclaimer from '@components/data/Disclaimer.astro';
import HubDownloads from '@components/data/HubDownloads.astro';
import Metadata from '@components/data/Metadata.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 Permitted Uranium Mines',
description: `Permitted uranium mine locations in Utah.`,
stewards: ['UGRC'],
type: ProductType.POINT,
category: SgidCategory.ENERGY,
};

const page: IPageMetadata = {
...metadata,
updateHistory: [`Unknown`],
hub: {
...dataPages[metadata.title],
},
};
---

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

<Fragment slot="summary">
<p>
This dataset contains the locations of permitted uranium mines in Utah in addition to a mine ID, type, status,
name, operator, product and more.
</p>
</Fragment>

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

<Disclaimer slot="disclaimer" style="secondary">
<p>There are no constraints or warranties with regard to the use of this dataset.</p>
</Disclaimer>

<Section title="More resources" slot="more-resources" titlePosition="center">
<GridForMoreResources>
<CardWithPopularLink title="Uranium Mills" href="/products/sgid/energy/permitted-uranium-mills"
>Uranium mills in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Past Producers" href="/products/sgid/energy/uranium-past-producers"
>Uranium past producers in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Area Boundaries" href="/products/sgid/energy/uranium-area-boundaries"
>Uranium area boundaries in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Districts (UGS)" href="/products/sgid/energy/ugs-uranium-districts"
>Uranium districts from the Utah Geological Survey (UGS) in Utah.</CardWithPopularLink
>
</GridForMoreResources>
</Section>

<Section title="You might also like" slot="you-might-also-like" stripe titlePosition="center">
<GridForYouMightLike>
<CardWithSmallLink title="Energy" href="/products/sgid/energy" style="secondary">Energy page</CardWithSmallLink>
<CardWithSmallLink title="Utilities" href="/products/sgid/utilities" style="secondary"
>Utilities page</CardWithSmallLink
>
</GridForYouMightLike>
</Section>
</Layout>
85 changes: 85 additions & 0 deletions src/pages/products/sgid/energy/ugs-uranium-districts.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
---
import Layout from '@layouts/DataPage.astro';

import type { IMetadata, IPageMetadata } from '@models/products/sgid/types';
import { ProductType, SgidCategory } from '@models/products/sgid/types';

import Disclaimer from '@components/data/Disclaimer.astro';
import HubDownloads from '@components/data/HubDownloads.astro';
import Metadata from '@components/data/Metadata.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 UGS Uranium Districts',
description: `Uranium district boundaries from the Utah Geological Survey (UGS) in Utah.`,
stewards: ['UGRC'],
type: ProductType.POLYGON,
category: SgidCategory.ENERGY,
};

const page: IPageMetadata = {
...metadata,
updateHistory: [`Unknown`],
hub: {
...dataPages[metadata.title],
},
};
---

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

<Fragment slot="summary">
<p>This dataset contains the locations of uranium districts in Utah in addition to their name and potential.</p>
</Fragment>

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

<Disclaimer slot="disclaimer" style="secondary">
<p>There are no constraints or warranties with regard to the use of this dataset.</p>
</Disclaimer>

<Section title="More resources" slot="more-resources" titlePosition="center">
<GridForMoreResources>
<CardWithPopularLink title="Permitted Uranium Mines" href="/products/sgid/energy/permitted-uranium-mines"
>Permitted uranium mines in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Mills" href="/products/sgid/energy/permitted-uranium-mills"
>Uranium mills in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Past Producers" href="/products/sgid/energy/uranium-past-producers"
>Uranium past producers in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Area Boundaries" href="/products/sgid/energy/uranium-area-boundaries"
>Uranium area boundaries in Utah.</CardWithPopularLink
>
</GridForMoreResources>
</Section>

<Section title="You might also like" slot="you-might-also-like" stripe titlePosition="center">
<GridForYouMightLike>
<CardWithSmallLink title="Energy" href="/products/sgid/energy" style="secondary">Energy page</CardWithSmallLink>
<CardWithSmallLink title="Utilities" href="/products/sgid/utilities" style="secondary"
>Utilities page</CardWithSmallLink
>
</GridForYouMightLike>
</Section>
</Layout>
85 changes: 85 additions & 0 deletions src/pages/products/sgid/energy/uranium-area-boundaries.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
---
import Layout from '@layouts/DataPage.astro';

import type { IMetadata, IPageMetadata } from '@models/products/sgid/types';
import { ProductType, SgidCategory } from '@models/products/sgid/types';

import Disclaimer from '@components/data/Disclaimer.astro';
import HubDownloads from '@components/data/HubDownloads.astro';
import Metadata from '@components/data/Metadata.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 Uranium Area Boundaries',
description: `Uranium area boundaries in Utah.`,
stewards: ['UGRC'],
type: ProductType.POLYGON,
category: SgidCategory.ENERGY,
};

const page: IPageMetadata = {
...metadata,
updateHistory: [`Unknown`],
hub: {
...dataPages[metadata.title],
},
};
---

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

<Fragment slot="summary">
<p>This dataset contains the locations of uranium areas in Utah in addition to the name of the area.</p>
</Fragment>

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

<Disclaimer slot="disclaimer" style="secondary">
<p>There are no constraints or warranties with regard to the use of this dataset.</p>
</Disclaimer>

<Section title="More resources" slot="more-resources" titlePosition="center">
<GridForMoreResources>
<CardWithPopularLink title="Permitted Uranium Mines" href="/products/sgid/energy/permitted-uranium-mines"
>Permitted uranium mines in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Mills" href="/products/sgid/energy/permitted-uranium-mills"
>Uranium mills in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Past Producers" href="/products/sgid/energy/uranium-past-producers"
>Uranium past producers in Utah.</CardWithPopularLink
>

<CardWithPopularLink title="Uranium Districts (UGS)" href="/products/sgid/energy/ugs-uranium-districts"
>Uranium districts from the Utah Geological Survey (UGS) in Utah.</CardWithPopularLink
>
</GridForMoreResources>
</Section>

<Section title="You might also like" slot="you-might-also-like" stripe titlePosition="center">
<GridForYouMightLike>
<CardWithSmallLink title="Energy" href="/products/sgid/energy" style="secondary">Energy page</CardWithSmallLink>
<CardWithSmallLink title="Utilities" href="/products/sgid/utilities" style="secondary"
>Utilities page</CardWithSmallLink
>
</GridForYouMightLike>
</Section>
</Layout>
Loading