This repository contains a QGIS-based prototype for exploring spatial sampling and scoring of potential Low-Income Housing Tax Credit (LIHTC) development areas across Metro Atlanta.
Updated by Mar 26
- The current version randomly samples points within five counties and assigns temporary values to simulate scoring outcomes.
- The goal is to evolve this prototype into a polished, interactive web map based on stakeholder feedback and real data.
lihtc_qgis/
├── data/
│ ├── processed/ # Tracked: cleaned shapefiles (<100MB)
│ │ ├── 30_random_points_0326.gpkg # Randomly sampled test points
│ │ └── five_counties_atl_0326.gpkg # Processed five-county boundary
│ └── raw/ # Not tracked: raw shapefiles (>100MB)
│ ├── tl_2023_us_county/
│ └── tl_2024_13_tract/
├── output/
│ └── maps/
│ ├── test_0326.png # Exported visualization
│ └── test_0326.pgw # Georeferencing for PNG
├── qgis/
│ └── test_0326.qgz # QGIS project file
├── README.md # Project notes
└── .gitignore # Rules to avoid uploading large/unnecessary files
We aim to eventually publish this as a web-based map for broader accessibility
- Reference: https://doculy.ai/lihtc
This map prototype includes:
- 30 random points generated within selected counties
- Random value assignment to each point for test visualization
- Basic symbology to differentiate values (gradients)
QGIS → Attribute Table → Field Calculator → Expression
round(randf(0, 100))
Hi Team, I’m sharing a prototype visualization created in QGIS as part of our effort to explore spatial sampling of potential LIHTC development areas. This version randomly samples points within five Metro Atlanta counties and assigns each point a random value (for now) to simulate location-based scoring potential. The styling is basic but intended as a starting point for feedback.
I’d love your input on the following areas:
- Reference + Examples:
- Are there strong examples (internal or external) of map visualizations—either static or interactive—we should use as references?
- Any QAP-related visualizations you’ve seen that were especially effective?
- Purpose & Audience
- Who is the intended audience for this map?
- What insight or message do we want the reader to walk away with?
- Deliverables:
- What output format is ideal for future delivery? Static maps (PDF), QGIS packages, or interactive (e.g., web map or dashboard)?
- Information content:
- Are there key map elements missing that we should include (e.g., basemap, legend, annotation)?
- Should we show raw scores, categories (e.g., low/med/high), or just visual gradients?
- Spatial Design
- Scope & Framing
- Should we zoom in closer on priority census tracts, or show all of Metro Atlanta?
- Would it help to include a state-level outline or context (e.g., showing Georgia boundary in gray)?
- Should the visualization include “known development zones” or past award overlays?
- Symbology & Labeling
- format suggestions: color, front choices?
- Scope & Framing
- Do not push anything under data/raw/
- Use .gitignore to exclude large or temporary files
- Check file size before pushing:
find . -type f -size +90M -exec ls -lh {} \;
Update .gitignore as needed:
nano .gitignore
git add .gitignore
git commit -m "Update .gitignore"
git push
📌 Reproducibility Example
- Algorithm Used: Random points in layer bounds
- Input: five_counties.gpkg
- Points: 30
- Execution Time: ~5.76 seconds