Add readme info, claude scripts, gitignore

This commit is contained in:
2025-10-15 18:40:02 -07:00
parent ff0511b3c5
commit e9e284ee66
4 changed files with 694 additions and 1 deletions

View File

@@ -2,6 +2,9 @@
See [https://wiki.openstreetmap.org/wiki/The_Villages_Road_and_Address_Import](https://wiki.openstreetmap.org/wiki/The_Villages_Road_and_Address_Import)
See compare-addresses.py for an automated way of running the complete address diff toolchain in one step.
- TODO: fails to split out units
## Data
- Lake County Streets and Address Points: https://c.lakecountyfl.gov/ftp/GIS/GisDownloads/Shapefiles/
@@ -120,3 +123,22 @@ source:url=https://gitlab.com/zyphlar/the-villages-import
* Review imported data in Achavi or Osmcha to ensure it looks proper.
## Useful queries:
```
[timeout:60];
area["name"="Florida"]->.state;
area["name"="Lake County"](area.state)->.searchArea;nwr["addr:housenumber"](area.searchArea);
(._;>;);
out meta;
```
```
[timeout:60];
area["name"="Florida"]->.state;
area["name"="Lake County"](area.state)->.searchArea;way["highway"](area.searchArea);
(._;>;);
out meta;
```