Procedure - Latest

GeoEnrichment Risk Getting Started Guide

Product type
Data
Portfolio
Enrich
Product family
Enrich Boundaries > Risk Boundaries
Product
Coastal Risk
GeoEnrichment Risk
Historical Weather Risk
Property Fire Risk
Earth Risk
Flood Risk
Wildfire Risk
Wildfire Risk Extreme
Version
Latest
ft:locale
en-US
Product name
GeoEnrichment Risk
ft:title
GeoEnrichment Risk Getting Started Guide
Copyright
2024
First publish date
2007
ft:lastEdition
2025-01-10
ft:lastPublication
2025-01-10T15:24:03.441000

Note: The samples in this section use Coastal Risk (Distance to Coast) as an example. All products are uploaded using the same steps. Related scripts for each product are found in the Prerequisites section.

  1. Download the product delivery file.
  2. Extract the delivery file to find the text data file.
  3. Create the table structure in the database using the Create Table script. Be sure to change the table name in the template to the name of the dataset you are loading. If, for example, you are loading the data for Coastal Risk (Distance to Coast), the table should be named dist_to_coast.
  4. Once the table structure has been created, copy data using the PostgreSQL Copy command:

copy <table_name> from '<path_to_text_file>\<text_file_name.txt>' delimiter '|' csv quote e'\b';

Syntax:

<table_name>: Name of the table created using the Create Table script

<path_to_text_file>: Path to extracted data text file

<text_file_name.txt>: Extracted data text file name including extension

delimiter: Defines the text delimiter (in this case, the pipe character)

csv quote e’/b’: Specifies quoting

Example – Linux:

copy from '/mnr/Distance_to_Coast/Distance_to_Coast_Data/Distance_to_Coast.txt' delimiter '|' csv quote e'\b'

Example – Windows:

copy from 'F:\Distance_to_Coast\Distance_to_Coast_Data\Distance_to_Coast.txt' delimiter '|' csv quote e '\b'