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

create cadastre/parcel-fabric page #2669

Merged
merged 3 commits into from
Mar 20, 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
2 changes: 1 addition & 1 deletion src/layouts/DataPage.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const { pageTitle = 'UGRC', pageDescription, subTitle, category, application, co
---

<Layout
bannerHeading={`SGID ${category.replaceAll('-', ' ').toLowerCase()}`}
bannerHeading={`SGID ${category.replaceAll('-', ' ').toLowerCase()} category`}
pageTitle={pageTitle}
pageDescription={pageDescription}
>
Expand Down
110 changes: 110 additions & 0 deletions src/pages/products/sgid/cadastre/parcel-fabric.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
---
import Layout from '@layouts/DataPage.astro';

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

import Metadata from '@components/data/Metadata.astro';
import UpdateHistory from '@components/data/UpdateHistory.astro';

import DirectDownloads from '@components/data/DirectDownloads.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';

export const metadata: IMetadata = {
pageTitle: 'PLSS Fabric version 2.3',
pageDescription: `A specific data model used to manage and represent parcels of land.`,
stewards: ['UGRC', 'BLM', 'County surveyors', 'SITLA', 'UMIP', 'Premier Data Solutions'],
type: ProductType.POLYGON,
category: SgidCategory.CADASTRE,
};

const page: IPageMetadata = {
...metadata,
application: 'https://plss.utah.gov/',
updateHistory: [
'December 15, 2020',
'October 15, 2019',
'January 15, 2019',
'January 1, 2018',
'November 1, 2016',
'May 2, 2016',
],
links: [
{
title: 'File Geodatabase',
url: 'https://drive.google.com/a/utah.gov/uc?id=1g8O9ohO4Odf9XMm6ZkXZZ9c6iyGmkREX&export=download',
},
],
};
---

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

<Fragment slot="summary">
<p>
The State of Utah Public Land Survey System (PLSS) Fabric version 1.0 was generated from the Cadastral National
Spatial Data Infrastructure (CadNSDI) version 2.0 which are the core or essential elements of cadastral
information that provide the framework for building and using cadastral (land records) information nationwide.
</p>
</Fragment>

<Section title="Download the data" slot="downloads" titlePosition="center">
<DirectDownloads title="From Google Drive" links={page.links!} />
</Section>

<Fragment slot="description">
<p>
The PLSS data within the CadNSDI is typically survey data, control observations and other supplemental
measurements, but in some cases survey information has not been completely abstracted or is not available and in
these cases non Geographic Coordinate Database (GCDB) information has been used such as digitized maps or data
from other sources. In all cases the data steward is identified in the data sets and the metadata records.
</p>
<p>
The PLSS Fabric is created and maintained through a collaborative partnership between the State of Utah Department
of Technology Services, Utah Geospatial Resource Center (UGRC); the State of Utah School and Institutional Trust
Lands Administration (SITLA), and the United States Department of the Interior, Bureau of Land Management (BLM)
and BLM contractor Premier Data Solutions (Premier) with contributions from the Utah Mapping and Information
Partnership (UMIP) through the Department of Environmental Quality (DEQ).
</p>
<p>
Survey Control added to the PLSS Fabric are provided by the BLM Surveyors, County Surveyors, County Contract
Surveyors and Private Surveyors throughout the State.
</p>
</Fragment>

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

<Section title="More resources" slot="more-resources" titlePosition="center">
<GridForMoreResources>
<CardWithPopularLink title="CADNSDI GIS Version 2.3" href="/products/sgid/cadastre/cadnsdi"
>CADNSDI GIS Version 2.3 GCBD</CardWithPopularLink
>
<CardWithPopularLink title="Utah parcels" href="/products/sgid/cadastre/parcels"
>Parcel data for each of the 29 counties in Utah.</CardWithPopularLink
>
</GridForMoreResources>
</Section>

<Section title="You might also like" slot="you-might-also-like" stripe titlePosition="center">
<GridForYouMightLike>
<CardWithSmallLink
title="PLSS quarter sections"
href="/products/sgid/cadastre/plss-quarter-sections"
style="secondary">Public Land Survey System quarter sections for the State of Utah.</CardWithSmallLink
>
<CardWithSmallLink title="PLSS point data" href="/products/sgid/cadastre/plss-points" style="secondary"
>Public Land Survey System points for the State of Utah.</CardWithSmallLink
>
<CardWithSmallLink title="PLSS sections data" href="/products/sgid/cadastre/plss-sections" style="secondary"
>Public Land Survey System sections for the State of Utah.</CardWithSmallLink
><CardWithSmallLink title="PLSS townships data" href="/products/sgid/cadastre/plss-townships" style="secondary"
>Public Land Survey System townships for the State of Utah.</CardWithSmallLink
>
</GridForYouMightLike>
</Section>
</Layout>