From cd51fa7b01262815c03c998c8d6f6caa8fe2598f Mon Sep 17 00:00:00 2001 From: DenisePeterson <144163719+DenisePeterson@users.noreply.github.com> Date: Wed, 20 Mar 2024 14:02:37 -0600 Subject: [PATCH 1/3] chore: create cadastre/parcel-fabric page --- .../sgid/cadastre/parcel-fabric.astro | 120 ++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 src/pages/products/sgid/cadastre/parcel-fabric.astro diff --git a/src/pages/products/sgid/cadastre/parcel-fabric.astro b/src/pages/products/sgid/cadastre/parcel-fabric.astro new file mode 100644 index 0000000000..365c35c093 --- /dev/null +++ b/src/pages/products/sgid/cadastre/parcel-fabric.astro @@ -0,0 +1,120 @@ +--- +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 BulletedList from '@components/page/BulletedList.astro'; +import CardWithPopularLink from '@components/page/CardWithPopularLink.astro'; +import CardWithSmallLink from '@components/page/CardWithSmallLink.astro'; +import ExternalLink from '@components/page/ExternalLink.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: `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.`, + stewards: ['UGRC', 'BLM', 'County surveyors', 'SITLA', 'UMIP', 'Premier Data Solutions'], + type: ProductType.GEODATABASE, + 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', + ], + config: { + skipInDepth: true, + }, +}; +--- + + + + + +

+ 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. +

+

+ 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). +

+

+ Survey Control added to the PLSS Fabric is provided by the BLM Surveyors, County Surveyors, County Contract + Surveyors and Private Surveyors throughout the State. +

+
+ +
+
+
+

PLSS Fabric Version 2.3

+

+ Download now. +

+
+
+

Important Notes for PLSS Fabric Version 2.3

+ +
  • The Fabric works best with ArcMap 10.4.1. Improvements were made in ArcMap 10.5 in 2017.
  • +
  • The newest Version 2.3 includes updates from BLM, UGRC and SITLA.
  • +
  • + Continuous updates will be made to the PLSS Fabric and are available for download from this page. Please + return frequently to download the latest version of the Fabric with new control added. +
  • +
  • + Data for CadNSDI Versions and the GCDB downloadable layers (soon to be Utah PLSS) are published from the + fabric which is the production database now. +
  • +
    +
    +
    +
    + +
    + + CADNSDI GIS Version 2.3 GCBD + Parcel data for each of the 29 counties in Utah. + +
    + +
    + + Public Land Survey System quarter sections for the State of Utah. + Public Land Survey System points for the State of Utah. + Public Land Survey System sections for the State of Utah.Public Land Survey System townships for the State of Utah. + +
    +
    From f160df264ed23cca2d251e66ac9ac7d2c3fc0038 Mon Sep 17 00:00:00 2001 From: DenisePeterson <144163719+DenisePeterson@users.noreply.github.com> Date: Wed, 20 Mar 2024 14:25:03 -0600 Subject: [PATCH 2/3] fix: add geodatabase to data.ts and types.ts --- src/types/types.ts | 1 + src/utilities/data.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/types/types.ts b/src/types/types.ts index 1a50142d63..7998ec4626 100644 --- a/src/types/types.ts +++ b/src/types/types.ts @@ -115,6 +115,7 @@ export enum ProductType { ELEVATION_RASTER, IMAGERY_RASTER, GPS_NETWORK, + GEODATABASE, } export interface IHubDownload { diff --git a/src/utilities/data.ts b/src/utilities/data.ts index c5fb9240f5..78baac0691 100644 --- a/src/utilities/data.ts +++ b/src/utilities/data.ts @@ -22,6 +22,8 @@ export const convertProductType = (type: ProductType) => { return 'Aerial photography'; case ProductType.GPS_NETWORK: return 'GPS network'; + case ProductType.GEODATABASE: + return 'Geodatabase'; default: return type; } From 64288dcf11aa1ba0d73c7a22a2469579e911bee0 Mon Sep 17 00:00:00 2001 From: steveoh Date: Wed, 20 Mar 2024 15:50:48 -0600 Subject: [PATCH 3/3] chore: review edits --- src/layouts/DataPage.astro | 2 +- .../sgid/cadastre/parcel-fabric.astro | 76 ++++++++----------- src/types/types.ts | 1 - src/utilities/data.ts | 2 - 4 files changed, 34 insertions(+), 47 deletions(-) diff --git a/src/layouts/DataPage.astro b/src/layouts/DataPage.astro index b0d8b488b4..529aab61f3 100644 --- a/src/layouts/DataPage.astro +++ b/src/layouts/DataPage.astro @@ -22,7 +22,7 @@ const { pageTitle = 'UGRC', pageDescription, subTitle, category, application, co --- diff --git a/src/pages/products/sgid/cadastre/parcel-fabric.astro b/src/pages/products/sgid/cadastre/parcel-fabric.astro index 365c35c093..1dd01d8296 100644 --- a/src/pages/products/sgid/cadastre/parcel-fabric.astro +++ b/src/pages/products/sgid/cadastre/parcel-fabric.astro @@ -5,20 +5,20 @@ 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 BulletedList from '@components/page/BulletedList.astro'; +import DirectDownloads from '@components/data/DirectDownloads.astro'; import CardWithPopularLink from '@components/page/CardWithPopularLink.astro'; import CardWithSmallLink from '@components/page/CardWithSmallLink.astro'; -import ExternalLink from '@components/page/ExternalLink.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: `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.`, + 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.GEODATABASE, + type: ProductType.POLYGON, category: SgidCategory.CADASTRE, }; @@ -33,9 +33,12 @@ const page: IPageMetadata = { 'November 1, 2016', 'May 2, 2016', ], - config: { - skipInDepth: true, - }, + links: [ + { + title: 'File Geodatabase', + url: 'https://drive.google.com/a/utah.gov/uc?id=1g8O9ohO4Odf9XMm6ZkXZZ9c6iyGmkREX&export=download', + }, + ], }; --- @@ -43,6 +46,18 @@ const page: IPageMetadata = { +

    + 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. +

    +
    + +
    + +
    + +

    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 @@ -57,41 +72,14 @@ const page: IPageMetadata = { Partnership (UMIP) through the Department of Environmental Quality (DEQ).

    - Survey Control added to the PLSS Fabric is provided by the BLM Surveyors, County Surveyors, County Contract + Survey Control added to the PLSS Fabric are provided by the BLM Surveyors, County Surveyors, County Contract Surveyors and Private Surveyors throughout the State.

    -
    -
    -
    -

    PLSS Fabric Version 2.3

    -

    - Download now. -

    -
    -
    -

    Important Notes for PLSS Fabric Version 2.3

    - -
  • The Fabric works best with ArcMap 10.4.1. Improvements were made in ArcMap 10.5 in 2017.
  • -
  • The newest Version 2.3 includes updates from BLM, UGRC and SITLA.
  • -
  • - Continuous updates will be made to the PLSS Fabric and are available for download from this page. Please - return frequently to download the latest version of the Fabric with new control added. -
  • -
  • - Data for CadNSDI Versions and the GCDB downloadable layers (soon to be Utah PLSS) are published from the - fabric which is the production database now. -
  • -
    -
    -
    -
    + -
    +
    CADNSDI GIS Version 2.3 GCBD
    -
    +
    - Public Land Survey System quarter sections for the State of Utah.Public Land Survey System quarter sections for the State of Utah. - Public Land Survey System points for the State of Utah. - Public Land Survey System sections for the State of Utah.Public Land Survey System townships for the State of Utah. diff --git a/src/types/types.ts b/src/types/types.ts index 7998ec4626..1a50142d63 100644 --- a/src/types/types.ts +++ b/src/types/types.ts @@ -115,7 +115,6 @@ export enum ProductType { ELEVATION_RASTER, IMAGERY_RASTER, GPS_NETWORK, - GEODATABASE, } export interface IHubDownload { diff --git a/src/utilities/data.ts b/src/utilities/data.ts index 78baac0691..c5fb9240f5 100644 --- a/src/utilities/data.ts +++ b/src/utilities/data.ts @@ -22,8 +22,6 @@ export const convertProductType = (type: ProductType) => { return 'Aerial photography'; case ProductType.GPS_NETWORK: return 'GPS network'; - case ProductType.GEODATABASE: - return 'Geodatabase'; default: return type; }