Skip to content

Commit

Permalink
Merge pull request #1444 from cityofaustin/17135-jc-eng-areas-simplified
Browse files Browse the repository at this point in the history
Use simplified engineering areas geometries
  • Loading branch information
johnclary authored May 6, 2024
2 parents 64ba91e + 22509e1 commit 9a2a68f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion atd-toolbox/engineering_areas_load/insert_areas.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ mutation InsertEngineeringAreas($payload: [engineering_areas_insert_input!]!) {
}`;

const loadAreasGeojson = () =>
JSON.parse(fs.readFileSync("data/engineering_areas.geojson"));
// engineering_areas_50pct_simp has been generated by taking the
// data/engineering_areas.geojson output and running it through 50%
// simplification on mapshaper.org
JSON.parse(fs.readFileSync("data/engineering_areas_50pct_simp.geojson"));

const makeHasuraRequest = async ({ query, variables, env }) => {
const body = JSON.stringify({
Expand Down

0 comments on commit 9a2a68f

Please sign in to comment.