├── scripts ├── at │ ├── .gitignore │ └── Makefile ├── es │ ├── requirements.txt │ ├── combine.sh │ ├── download_gml.py │ └── find_missing_files.py ├── cz │ ├── requirements.txt │ ├── .gitignore │ ├── process_one.sh │ ├── download.sh │ └── README.md ├── fi │ └── oulu │ │ └── package.json ├── nl │ ├── run.sh │ └── package.json ├── no │ └── make_out.py └── README.md ├── .gitignore ├── .travis.yml ├── us-data └── counties.txt ├── sources ├── us │ ├── va │ │ ├── warrenton.json │ │ ├── smyth.json │ │ ├── warren.json │ │ ├── orange.json │ │ ├── nottoway.json │ │ ├── rockbridge.json │ │ ├── shenandoah.json │ │ ├── campbell.json │ │ ├── giles.json │ │ ├── franklin.json │ │ ├── grayson.json │ │ ├── williamsburg.json │ │ ├── spotsylvania.json │ │ ├── greene.json │ │ ├── madison.json │ │ ├── accomack.json │ │ ├── louisa.json │ │ ├── city_of_emporia.json │ │ ├── fluvanna.json │ │ ├── arlington.json │ │ ├── essex.json │ │ ├── halifax.json │ │ ├── isle_of_wight.json │ │ ├── city_of_norton.json │ │ ├── loudoun.json │ │ ├── nelson.json │ │ ├── amherst.json │ │ ├── new_kent.json │ │ ├── city_of_norfolk.json │ │ ├── middlesex.json │ │ ├── city_of_radford.json │ │ ├── city_of_chesapeake.json │ │ ├── augusta.json │ │ └── city_of_salem.json │ ├── il │ │ ├── skokie.json │ │ ├── mcdonough.json │ │ ├── lake.json │ │ └── whiteside.json │ ├── or │ │ ├── gresham.json │ │ └── portland.json │ ├── nj │ │ └── franklin_township.json │ ├── ri │ │ ├── middletown.json │ │ └── providence.json │ ├── nc │ │ ├── town_of_chapel_hill.json │ │ ├── city_of_elizabeth_city.json │ │ ├── anson.json │ │ ├── cherokee.json │ │ ├── harnett.json │ │ ├── avery.json │ │ ├── caswell.json │ │ ├── rockingham.json │ │ ├── alleghany.json │ │ ├── cary.json │ │ ├── union.json │ │ ├── lincoln.json │ │ ├── blowing_rock.json │ │ └── haywood.json │ ├── tx │ │ ├── waco.json │ │ ├── north_richland_hills.json │ │ ├── keller.json │ │ ├── hurst.json │ │ ├── colleyville.json │ │ ├── city_of_temple.json │ │ ├── desoto.json │ │ ├── anderson.json │ │ ├── lubbock.json │ │ ├── denton.json │ │ ├── collin.json │ │ └── round_rock.json │ ├── ut │ │ └── duchesne.json │ ├── sc │ │ ├── newberry.json │ │ ├── cherokee.json │ │ ├── charleston.json │ │ ├── anderson.json │ │ ├── berkeley.json │ │ ├── horry.json │ │ └── beaufort.json │ ├── la │ │ ├── orleans_parish.json │ │ ├── livingston.json │ │ ├── jefferson_parish.json │ │ ├── st_charles_parish.json │ │ ├── iberia.json │ │ └── st_john_the_baptist_parish.json │ ├── nm │ │ ├── hidalgo.json │ │ ├── albuquerque.json │ │ ├── bernalillo.json │ │ ├── dona_ana.json │ │ ├── dona_ana-2.json │ │ └── san_juan.json │ ├── nd │ │ └── dickinson.json │ ├── oh │ │ ├── toledo.json │ │ ├── clermont.json │ │ ├── warren.json │ │ ├── montgomery.json │ │ ├── union.json │ │ ├── medina.json │ │ ├── fairfield.json │ │ ├── fulton.json │ │ ├── noble.json │ │ ├── ottawa.json │ │ ├── carroll.json │ │ ├── clark.json │ │ ├── licking.json │ │ ├── allen.json │ │ ├── ashland.json │ │ ├── athens.json │ │ └── erie.json │ ├── fl │ │ ├── palm_beach.json │ │ ├── gulf.json │ │ ├── leon.json │ │ └── bay.json │ ├── nh │ │ └── jaffrey.json │ ├── nv │ │ ├── clark.json │ │ ├── nye.json │ │ └── lander.json │ ├── id │ │ ├── bannock.json │ │ ├── latah.json │ │ └── kootenai.json │ ├── mo │ │ ├── dallas.json │ │ ├── livingston.json │ │ ├── barry.json │ │ └── boone.json │ ├── az │ │ ├── yuma.json │ │ ├── gila.json │ │ ├── yavapai.json │ │ └── pima.json │ ├── ny │ │ ├── ulster.json │ │ ├── cayuga.json │ │ ├── allegany.json │ │ └── erie.json │ ├── ma │ │ └── town_of_newton.json │ ├── wi │ │ ├── adams.json │ │ ├── dodge.json │ │ ├── city_of_milwaukee.json │ │ ├── columbia.json │ │ ├── green.json │ │ ├── kewaunee.json │ │ ├── sauk.json │ │ ├── trempealeau.json │ │ ├── douglas.json │ │ ├── richland.json │ │ ├── marathon.json │ │ ├── vilas.json │ │ ├── crawford.json │ │ ├── dane.json │ │ ├── juneau.json │ │ ├── rock.json │ │ ├── st_croix.json │ │ ├── portage.json │ │ ├── lincoln.json │ │ ├── calumet.json │ │ ├── kenosha.json │ │ ├── jefferson.json │ │ └── la_crosse.json │ ├── ct │ │ ├── city_of_lyme.json │ │ ├── city_of_watertown.json │ │ ├── statewide.json │ │ └── town_on_trumbull.json │ ├── mn │ │ ├── cass.json │ │ ├── carlton.json │ │ ├── aitkin.json │ │ ├── renville.json │ │ ├── mille_lacs.json │ │ ├── polk.json │ │ ├── clearwater.json │ │ ├── anoka.json │ │ ├── otter_tail.json │ │ └── kandiyohi.json │ ├── ms │ │ ├── madison.json │ │ ├── hancock.json │ │ ├── hinds.json │ │ ├── desoto.json │ │ └── simpson.json │ ├── me │ │ └── statewide.json │ ├── wa │ │ └── skagit.json │ ├── al │ │ ├── baldwin.json │ │ ├── st_clair.json │ │ ├── shelby.json │ │ ├── calhoun.json │ │ └── tuscaloosa.json │ ├── ks │ │ ├── lane_county.json │ │ ├── rush_county.json │ │ ├── geary_county.json │ │ ├── meade_county.json │ │ ├── osage_county.json │ │ ├── scott_county.json │ │ ├── thomas_county.json │ │ ├── barton_county.json │ │ ├── harvey_county.json │ │ ├── pawnee_county.json │ │ ├── sumner_county.json │ │ ├── franklin_county.json │ │ ├── chautauqua_county.json │ │ ├── linn_county.json │ │ ├── bourbon_county.json │ │ ├── nemaha_county.json │ │ ├── anderson_county.json │ │ ├── atchison_county.json │ │ ├── crawford_county.json │ │ ├── doniphan_county.json │ │ ├── shawnee_county.json │ │ ├── jefferson_county.json │ │ ├── douglas.json │ │ ├── pottawatomie_county.json │ │ ├── elk_county.json │ │ ├── harper_county.json │ │ ├── wabaunsee_county.json │ │ ├── barber_county.json │ │ ├── brown_county.json │ │ └── allen_county.json │ ├── ky │ │ ├── clark.json │ │ ├── oldham.json │ │ └── mccracken.json │ ├── co │ │ ├── weld.json │ │ ├── routt.json │ │ ├── washington.json │ │ ├── moffat.json │ │ ├── adams.json │ │ ├── pitkin.json │ │ ├── gilpin.json │ │ ├── la_plata.json │ │ ├── eagle.json │ │ └── denver.json │ ├── pa │ │ ├── beaver.json │ │ ├── clearfield.json │ │ └── dauphin.json │ ├── ne │ │ ├── douglas.json │ │ ├── dixon.json │ │ └── omaha.json │ ├── tn │ │ ├── jefferson.json │ │ ├── cheatham.json │ │ └── rutherford.json │ ├── ia │ │ ├── johnson.json │ │ ├── dubuque.json │ │ └── muscatine.json │ ├── ca │ │ ├── palo_alto.json │ │ ├── tuolumne.json │ │ ├── solano.json │ │ └── merced.json │ ├── ga │ │ ├── gordon.json │ │ ├── bibb.json │ │ └── sumter.json │ ├── in │ │ ├── marion_county.json │ │ └── hamilton.json │ ├── wv │ │ ├── harrison.json │ │ ├── raleigh.json │ │ ├── hancock.json │ │ └── preston.json │ ├── mi │ │ └── troy.json │ ├── de │ │ ├── kent.json │ │ └── sussex.json │ ├── wy │ │ ├── laramie.json │ │ ├── carbon.json │ │ └── city_of_wright.json │ ├── mt │ │ ├── park.json │ │ ├── statewide.json │ │ └── helena.json │ ├── sd │ │ └── statewide.json │ └── ok │ │ └── carter-county.json ├── it │ ├── ve │ │ └── verona.json │ └── er │ │ └── rimini.json ├── LICENSE ├── de │ ├── mv │ │ └── city_of_rostock.json │ └── nw │ │ └── city_of_cologne.json ├── ca │ ├── bc │ │ ├── vancouver.json │ │ ├── thompson-nicola-regional-district.json │ │ ├── victoria.json │ │ └── surrey.json │ ├── on │ │ ├── haldimand.json │ │ ├── west_parry_sound_district.json │ │ ├── city_of_kitchener.json │ │ ├── city_of_kingston.json │ │ ├── city_of_burlington.json │ │ ├── city_of_guelph.json │ │ ├── town_of_oakville.json │ │ ├── york_region.json │ │ ├── city_of_windsor.json │ │ ├── city_of_hamilton.json │ │ ├── city_of_ottawa.json │ │ ├── city_of_welland.json │ │ └── niagara_region.json │ ├── ab │ │ └── banff.json │ ├── sk │ │ └── regina.json │ ├── yk │ │ └── whitehorse.json │ └── nb.json ├── bm │ └── territory_wide.json ├── no │ └── countrywide.json ├── br │ └── es │ │ └── vitoria.json ├── lv │ └── city_of_riga.json ├── ua │ └── 12 │ │ └── city_of_dnipropetrovsk.json ├── be │ └── wa │ │ ├── brussels-fr.json │ │ └── brussels-nl.json ├── sg │ └── countrywide.json ├── qa │ └── qatar.json ├── fr │ ├── bano.json │ ├── ain.json │ ├── lot.json │ └── var.json ├── au │ └── city_of_canberra.json ├── nl │ └── countrywide.json ├── is │ └── is_tgf_nf.csv └── at │ └── city_of_vienna.json └── package.json /scripts/at/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | at-*.json 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | data 4 | -------------------------------------------------------------------------------- /scripts/es/requirements.txt: -------------------------------------------------------------------------------- 1 | unicodecsv==0.9.4 2 | -------------------------------------------------------------------------------- /scripts/cz/requirements.txt: -------------------------------------------------------------------------------- 1 | unicodecsv==0.13.0 2 | xmltodict==0.9.2 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - 0.10 5 | -------------------------------------------------------------------------------- /scripts/cz/.gitignore: -------------------------------------------------------------------------------- 1 | cz-data.tar.gz 2 | *.zip 3 | cz.log 4 | *.csv 5 | *.pyc 6 | -------------------------------------------------------------------------------- /us-data/counties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubahnverleih/openaddresses/master/us-data/counties.txt -------------------------------------------------------------------------------- /scripts/cz/process_one.sh: -------------------------------------------------------------------------------- 1 | DIR="$(dirname $1)" 2 | XML="$(basename $1 .gz)" 3 | gunzip "$1" 4 | python process_cz_gml.py "$DIR/$XML" 2>/dev/null | tee -a cz.log 5 | gzip -9 "$DIR/$XML" -------------------------------------------------------------------------------- /scripts/es/combine.sh: -------------------------------------------------------------------------------- 1 | # write header 2 | ls build | grep "A.ES" | head -n 1 | xargs -I {} head -n 1 build/{} > tee es.csv 3 | 4 | # combine CSVs, stripping headers 5 | for a in $(find build | grep csv) 6 | do 7 | tail -n +2 $a >> es.csv 8 | done -------------------------------------------------------------------------------- /sources/us/va/warrenton.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "va", 5 | "town": "Warrenton" 6 | }, 7 | "data": "http://arcgis.webgis.net/arcgis/rest/services/VA/Smyth/MapServer/12", 8 | "type": "ESRI" 9 | } -------------------------------------------------------------------------------- /sources/us/il/skokie.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "il", 5 | "city": "skokie" 6 | }, 7 | "data": "http://cookviewer1.cookcountyil.gov/ArcGIS/rest/services/cookElectnSrvc/MapServer/1", 8 | "type": "ESRI" 9 | } -------------------------------------------------------------------------------- /sources/us/or/gresham.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "or", 5 | "city": "Gresham" 6 | }, 7 | "type": "ESRI", 8 | "data": "http://maps.greshamoregon.gov/arcgis/rest/services/Parcel/AddressPts/MapServer/0" 9 | } -------------------------------------------------------------------------------- /sources/us/nj/franklin_township.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "nj", 5 | "city": "Franklin Township" 6 | }, 7 | "data": "http://ags2.cdm.com/ArcGIS/rest/services/FTSA_Flex/MapServer/3", 8 | "website": "http://www.franklintwpnj.org/", 9 | "type": "ESRI" 10 | } -------------------------------------------------------------------------------- /sources/us/ri/middletown.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "ri", 5 | "city": "middletown" 6 | }, 7 | "data": "http://107.20.209.214/ArcGIS/rest/services/MiddletownRI/MiddletownDynamic/MapServer/0", 8 | "website": "http://www.middletownri.com/", 9 | "type": "ESRI" 10 | } -------------------------------------------------------------------------------- /scripts/fi/oulu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "oulu", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "hannesj", 10 | "license": "CC0", 11 | "dependencies": { 12 | "xml-stream": "^0.4.5" 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /sources/us/nc/town_of_chapel_hill.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "nc", 5 | "town": "Chapel Hill" 6 | }, 7 | "data": "http://gis.townofchapelhill.org/GIS_Data/addresses.zip", 8 | "type": "http", 9 | "compression": "zip", 10 | "website": "http://gis.townofchapelhill.org/download_data/" 11 | } -------------------------------------------------------------------------------- /scripts/es/download_gml.py: -------------------------------------------------------------------------------- 1 | import sys, os, subprocess 2 | 3 | with open(sys.argv[1], 'r') as f: 4 | urls = f.readlines() 5 | for url in urls: 6 | subprocess.call(['curl', url, '-O', sys.argv[2]]) 7 | 8 | # fix filenames -- unsure why this is necessary but it is 9 | for filename in os.listdir(sys.argv[2]): 10 | os.rename(filename, filename.strip()) 11 | -------------------------------------------------------------------------------- /scripts/nl/run.sh: -------------------------------------------------------------------------------- 1 | # recreate database 2 | dropdb --if-exists -U postgres nl 3 | createdb -U postgres nl 4 | 5 | # create output file & make writeable -- necessary bc postgres will 6 | # be running as the postgres user 7 | touch nl-out.csv && chmod 0777 nl-out.csv 8 | 9 | # download & combine data, generate CSV 10 | node nl-data.js && node nl-data.js CSV `pwd`/nl-out.csv 11 | -------------------------------------------------------------------------------- /sources/us/tx/waco.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "tx", 5 | "city": "Waco" 6 | }, 7 | "data": "http://gis.ci.waco.tx.us/arcgis/rest/services/WacoApps/ParcelPublicAccess/MapServer/2", 8 | "type": "ESRI", 9 | "conform": { 10 | "number": "addrnum", 11 | "street": "fullname", 12 | "type": "geojson" 13 | } 14 | } -------------------------------------------------------------------------------- /sources/us/va/smyth.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51173", 5 | "name": "Smyth County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Smyth" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/VA/Smyth/MapServer/12", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /scripts/cz/download.sh: -------------------------------------------------------------------------------- 1 | mkdir data || true 2 | cd data 3 | rm -rf ../unfetched_urls.txt 4 | for url in $(cat ../seznamlinku.txt); do 5 | if [ -e `basename $url` ]; then 6 | echo "skipping $url" 7 | else 8 | echo $url >> ../unfetched_urls.txt 9 | fi 10 | done 11 | 12 | cat ../unfetched_urls.txt | parallel -j 2 "echo \"fetching {}\"; curl {} -s -O" 13 | rm ../unfetched_urls.txt && cd .. 14 | -------------------------------------------------------------------------------- /sources/us/ut/duchesne.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "49013", 5 | "name": "Duchesne County", 6 | "state": "Utah" 7 | }, 8 | "country": "us", 9 | "state": "ut", 10 | "county": "Duchesne" 11 | }, 12 | "data": "http://maps.duchesne.utah.gov/arcgis/rest/services/PZB/FeatureServer/0", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /sources/us/va/warren.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51187", 5 | "name": "Warren County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Warren" 11 | }, 12 | "data": "http://vcloud.timmons.com/ArcGIS/rest/services/Warren/Warren/MapServer/0", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /sources/us/sc/newberry.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "45071", 5 | "name": "Newberry County", 6 | "state": "South Carolina" 7 | }, 8 | "country": "us", 9 | "state": "sc", 10 | "county": "Newberry" 11 | }, 12 | "data": "http://68.156.95.45/arcgis/rest/services/Basemaps/Dynamic/MapServer/2", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /sources/us/tx/north_richland_hills.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "tx", 5 | "city": "North Richland Hills" 6 | }, 7 | "data": "http://gis.dfwmaps.com/ArcGIS/rest/services/NRH/NRH_Baselayers_VE/MapServer/1", 8 | "type": "ESRI", 9 | "conform": { 10 | "number": "STNO", 11 | "street": "STREETNAME", 12 | "type": "geojson" 13 | } 14 | } -------------------------------------------------------------------------------- /sources/us/la/orleans_parish.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "22071", 5 | "name": "Orleans Parish", 6 | "state": "Louisiana" 7 | }, 8 | "country": "us", 9 | "state": "la", 10 | "county": "Orleans" 11 | }, 12 | "data": "http://gis.nola.gov/arcgis/rest/services/LGIM/TaxParcelQuery/MapServer/0/", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /sources/us/va/orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51137", 5 | "name": "Orange County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Orange" 11 | }, 12 | "data": "http://vcloud.timmons.com/ArcGIS/rest/services/Orange_WebLog/OrangeWebLog/MapServer/1", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /sources/it/ve/verona.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "it", 4 | "state": "ve", 5 | "city": "verona" 6 | }, 7 | "data": "http://file.comune.verona.it/opendata/territorio/2014/SHP_NUMERAZIONE_CIVICA_point%2026-02-21014.zip", 8 | "website": "http://www.comune.verona.it/nqcontent.cfm?a_id=41435", 9 | "attribution": "Comune di Verona", 10 | "type": "http", 11 | "compression": "zip" 12 | } -------------------------------------------------------------------------------- /sources/us/nm/hidalgo.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "35023", 5 | "name": "Hidalgo County", 6 | "state": "New Mexico" 7 | }, 8 | "country": "us", 9 | "state": "nm", 10 | "county": "Hidalgo" 11 | }, 12 | "data": "http://propaccess.hidalgoad.org:6080/arcgis/rest/services/HidalgoWeb/MapServer/1", 13 | "type": "ESRI" 14 | } 15 | -------------------------------------------------------------------------------- /sources/us/sc/cherokee.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "45021", 5 | "name": "Cherokee County", 6 | "state": "South Carolina" 7 | }, 8 | "country": "us", 9 | "state": "sc", 10 | "county": "Cherokee" 11 | }, 12 | "data": "http://gis.scacog.org/arcgis/rest/services/CherokeeCountyPublic/MapServer/6", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /scripts/nl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nl", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "nl-data.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "async": "^0.9.0", 13 | "execSync": "^1.0.2", 14 | "flow": "^0.2.3", 15 | "node-expat": "^2.3.4", 16 | "pg": "^4.1.1" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/va/nottoway.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51135", 5 | "name": "Nottoway County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Nottoway" 11 | }, 12 | "data": "http://vcloud.timmons.com/ArcGIS/rest/services/NottowayWeb/NottowayWeb_Main/MapServer/0", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /sources/us/va/rockbridge.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51163", 5 | "name": "Rockbridge County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Rockbridge" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/VA/RockbridgeCo_WebGIS/MapServer/11", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /sources/us/nd/dickinson.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "nd", 5 | "city": "Dickinson" 6 | }, 7 | "type": "ESRI", 8 | "data": "http://maps5.gisworkshop.com/ArcGIS/rest/services/CityofDickinsonElectric/MapServer/4", 9 | "conform": { 10 | "type": "geojson", 11 | "split": "PROPADDRESS", 12 | "number": "auto_number", 13 | "street": "auto_street" 14 | } 15 | } -------------------------------------------------------------------------------- /sources/us/oh/toledo.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "39095", "name": "Lucas County", "state": "Ohio"}, 4 | "country": "us", 5 | "state": "oh", 6 | "county": "Lucas", 7 | "city": "Toledo" 8 | }, 9 | "data": "http://services1.arcgis.com/JVJnGNgPBDy0lB85/ArcGIS/rest/services/Address/FeatureServer/0", 10 | "type": "ESRI", 11 | "skip": true, 12 | "note": "no geometry" 13 | } 14 | -------------------------------------------------------------------------------- /sources/us/va/shenandoah.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51171", 5 | "name": "Shenandoah County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Shenandoah" 11 | }, 12 | "data": "http://vcloud.timmons.com/ArcGIS/rest/services/Shenandoah_Weblog/Shenandoah_Weblog/MapServer/29", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /sources/LICENSE: -------------------------------------------------------------------------------- 1 | This collection of address files is in the public domain. No copyright 2 | restriction apply to this collection of address files. In case of doubt 3 | the stipulations in cc0 1.0 Universal apply. 4 | 5 | http://creativecommons.org/publicdomain/zero/1.0/legalcode 6 | 7 | The copyright or related rights of particular datasets listed in this 8 | collection is not governed by this license. 9 | 10 | Collection originally compiled by Ian Dees. 11 | -------------------------------------------------------------------------------- /sources/us/va/campbell.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51031", 5 | "name": "Campbell County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Campbell" 11 | }, 12 | "data": "http://gis.worldviewsolutions.com/arcgis/rest/services/campbell/201406_CampbellDynamicMap_Test/MapServer/7", 13 | "type": "ESRI" 14 | } -------------------------------------------------------------------------------- /sources/us/tx/keller.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "tx", 5 | "city": "Keller" 6 | }, 7 | "data": "http://gis.dfwmaps.com/ArcGIS/rest/services/Keller/Keller_All_VE/MapServer/13", 8 | "type": "ESRI", 9 | "conform": { 10 | "number": "STREETNUMB", 11 | "street": [ 12 | "STREETNAME", 13 | "STREETTYPE" 14 | ], 15 | "type": "geojson" 16 | } 17 | } -------------------------------------------------------------------------------- /sources/us/tx/hurst.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "tx", 5 | "city": "Hurst" 6 | }, 7 | "data": "http://gis4.dfwmaps.com/arcgis/rest/services/ICHurst/Hurst_BaseLayers_VE/MapServer/1", 8 | "type": "ESRI", 9 | "conform": { 10 | "number": "STREET_NUM", 11 | "street": [ 12 | "STREET_NAM", 13 | "STREET_TYP" 14 | ], 15 | "type": "geojson" 16 | } 17 | } -------------------------------------------------------------------------------- /sources/us/va/giles.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51071", 5 | "name": "Giles County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Giles" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/VA/GilesCo_WebGIS/MapServer/18", 13 | "type": "ESRI", 14 | "note": "NO ADDRESS DATA - TAX PARCELS" 15 | } -------------------------------------------------------------------------------- /sources/de/mv/city_of_rostock.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "de", 4 | "state": "mv", 5 | "city": "Rostock" 6 | }, 7 | "data": "http://www.opendata-hro.de/dataset/adressenliste/resource/65bba11e-6f8d-41e0-b539-7883edd61fe1", 8 | "website": "http://www.opendata-hro.de/", 9 | "license": { 10 | "url": "http://opendatacommons.org/licenses/by/1.0/", 11 | "attribution": true, 12 | "share-alike": false 13 | }, 14 | "type": "http", 15 | "year": "2014" 16 | } 17 | -------------------------------------------------------------------------------- /sources/ca/bc/vancouver.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "bc", 5 | "city": "Vancouver" 6 | }, 7 | "data": "ftp://webftp.vancouver.ca/OpenData/shape/shape_property_information.zip", 8 | "type": "ftp", 9 | "compression": "zip", 10 | "conform": { 11 | "file": "property_addresses.shp", 12 | "number": "CIVIC_NO", 13 | "street": "STREETNAME", 14 | "type": "shapefile" 15 | } 16 | } -------------------------------------------------------------------------------- /sources/us/fl/palm_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "12099", 5 | "name": "Palm Beach County", 6 | "state": "Florida" 7 | }, 8 | "country": "us", 9 | "state": "fl", 10 | "county": "Palm Beach" 11 | }, 12 | "attribution": "Palm Beach County", 13 | "data": "http://maps.co.palm-beach.fl.us/arcgis/rest/services/Ags/1/MapServer/2", 14 | "type": "ESRI" 15 | } 16 | -------------------------------------------------------------------------------- /sources/us/va/franklin.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51067", 5 | "name": "Franklin County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Franklin" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/VA/FranklinCo_WebGIS1/MapServer/24", 13 | "type": "ESRI", 14 | "note": "NO ADDRESS DATA - TAX PARCELS" 15 | } -------------------------------------------------------------------------------- /sources/ca/on/haldimand.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "county": "Haldimand" 6 | }, 7 | "type": "ESRI", 8 | "data": "http://maps.haldimandcounty.on.ca/arcgis/rest/services/StandardBasemapp/MapServer/92", 9 | "website": "http://www.opendata.haldimandcounty.on.ca", 10 | "conform":{ 11 | "type": "geojson", 12 | "number": "STREET_NO", 13 | "street": "STREET_NAM" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /sources/us/nc/city_of_elizabeth_city.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "nc", 5 | "city": "Elizabeth City" 6 | }, 7 | "data": "http://web2.mobile311.com/arcgis/rest/services/ElizabethCity/ElizabethCity/MapServer/1", 8 | "type": "ESRI", 9 | "conform": { 10 | "street": [ 11 | "NAME", 12 | "TYPE" 13 | ], 14 | "number": "NUMBER_", 15 | "type": "geojson" 16 | } 17 | } -------------------------------------------------------------------------------- /sources/us/va/grayson.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51077", 5 | "name": "Grayson County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Grayson" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/VA/GraysonCo_WebGIS/MapServer/18", 13 | "type": "ESRI", 14 | "note": "NOT PHYSICAL ADDRESS - OWNER ADDRESS" 15 | } -------------------------------------------------------------------------------- /sources/ca/bc/thompson-nicola-regional-district.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca" 4 | }, 5 | "data": "http://tnrdmap.tnrd.ca/arcgis/rest/services/Basemap_Detail_Cache/MapServer/3", 6 | "website": "https://www.tnrd.ca/content/mapping-services-gis-overview", 7 | "type": "ESRI", 8 | "conform": { 9 | "type": "geojson", 10 | "number": "StreetNo", 11 | "street": "StreetName", 12 | "city": "Community" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /sources/ca/on/west_parry_sound_district.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "West Parry Sound" 6 | }, 7 | "data": "http://www.wpsgn.ca/arcgis/rest/services/OpenData/WPSGN_OPENDATA/MapServer/1", 8 | "website": "http://www.wpsgn.ca/website/seguin.html", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "CivicNumber", 13 | "street": "CivicAddress" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /sources/us/tx/colleyville.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "tx", 5 | "town": "Colleyville" 6 | }, 7 | "data": "http://gis4.dfwmaps.com/arcgis/rest/services/ICColleyville/Colleyville_BaseLayers_VE/MapServer/1", 8 | "type": "ESRI", 9 | "conform": { 10 | "number": "StreetNumb", 11 | "street": [ 12 | "StreetName", 13 | "StreetType" 14 | ], 15 | "type": "geojson" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /sources/us/va/williamsburg.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "va", 5 | "city": "Williamsburg" 6 | }, 7 | "data": "http://www.williamsburgva.gov/Modules/ShowDocument.aspx?documentid=3604", 8 | "type": "http", 9 | "compression": "zip", 10 | "website": "http://www.williamsburgva.gov/index.aspx?page=36", 11 | "note": { 12 | "email": "mbarham@williamsburgva.gov", 13 | "phone": "757-220-6189" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /sources/us/va/spotsylvania.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51177", 5 | "name": "Spotsylvania County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Spotsylvania" 11 | }, 12 | "data": "http://gis.spotsylvania.va.us/arcgis/rest/services/Spotsylvania/MapServer/6", 13 | "type": "ESRI", 14 | "website": "http://gis.spotsylvania.va.us/Spotsylvania/" 15 | } -------------------------------------------------------------------------------- /scripts/no/make_out.py: -------------------------------------------------------------------------------- 1 | #!/bin/python 2 | 3 | import os 4 | import unicodecsv as csv 5 | 6 | writer = csv.DictWriter(open('no.csv', 'w'), fieldnames=('X','Y','PUNKT','KOMM','OBJTYPE','GATENR','GATENAVN','HUSNR','BOKST','POSTNR','POSTNAVN','TRANSID')) 7 | writer.writeheader() 8 | for f in os.listdir('./csv'): 9 | print(f) 10 | with open('./csv/{}'.format(f)) as csvfile: 11 | reader = csv.DictReader(csvfile) 12 | for row in reader: 13 | writer.writerow(row) 14 | -------------------------------------------------------------------------------- /sources/us/nh/jaffrey.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "nh", 5 | "city": "jaffrey" 6 | }, 7 | "data": "http://107.20.209.214/ArcGIS/rest/services/JaffreyNH/JaffreyDynamic/MapServer/1", 8 | "website": "http://www.town.jaffrey.nh.us/", 9 | "type": "ESRI", 10 | "conform": { 11 | "split": "Jaff_parcels.Address", 12 | "street": "auto_street", 13 | "number": "auto_number", 14 | "type": "geojson" 15 | } 16 | } -------------------------------------------------------------------------------- /sources/us/nv/clark.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "32003", "name": "Clark County", "state": "Nevada"}, 4 | "country": "us", 5 | "state": "nv", 6 | "county": "Clark" 7 | }, 8 | "data": "http://gisgate.co.clark.nv.us/arcgis/rest/services/GISMO/Address/MapServer/2", 9 | "type": "ESRI", 10 | "conform": { 11 | "number": "strno", 12 | "street": ["strdir", "strname", "strtype"], 13 | "type": "geojson" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /sources/us/id/bannock.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "16005", "name": "Bannock County", "state": "Idaho"}, 4 | "country": "us", 5 | "state": "id", 6 | "county": "Bannock" 7 | }, 8 | "data": "http://205.185.94.142/ArcGIS/rest/services/BannockCounty/TaxParcelQuery/MapServer/1", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "HOUSE_NEW", 13 | "street": ["DIRECTION","STREET"] 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /sources/us/oh/clermont.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "39025", "name": "Clermont County", "state": "Ohio"}, 4 | "country": "us", 5 | "state": "oh", 6 | "county": "Clermont" 7 | }, 8 | "data": "http://maps5.clermontcountyohio.gov/gisweb/rest/services/Parcels/MapServer/0", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "ADDRNO", 13 | "street": ["ADRDIR", "ADRSTR", "ADRSUF"] 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /sources/bm/territory_wide.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "ISO 3166": {"alpha2": "BM", "country": "Bermuda"}, 4 | "country": "bm" 5 | }, 6 | "data": "http://services5.arcgis.com/YFNj7IqppWGZsn5o/arcgis/rest/services/AddressPoints/FeatureServer/0", 7 | "type": "ESRI", 8 | "conform": { 9 | "type": "geojson", 10 | "number": ["Number", "Extension"], 11 | "street": "Street", 12 | "district": "Parish", 13 | "postcode": "PostalCode" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /sources/us/la/livingston.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "22063", "name": "Livingston Parish", "state": "Louisiana"}, 4 | "country": "us", 5 | "state": "la", 6 | "county": "Livingston" 7 | }, 8 | "data": "http://atlas.geoportalmaps.com/arcgis/rest/services/Livingston_Services/MapServer/9", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "ADDRESS_NUMBER", 13 | "street": "STREET_NAME" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /sources/us/mo/dallas.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "29059", 5 | "name": "Dallas County", 6 | "state": "Missouri" 7 | }, 8 | "country": "us", 9 | "state": "mo", 10 | "county": "Dallas" 11 | }, 12 | "data": "https://sites.integritygis.com/Geocortex/Essentials/REST/sites/Dallas_County_MO_Public/map/mapservices/1/layers/4", 13 | "type": "ESRI", 14 | "skip": true, 15 | "note": "Geocortex server" 16 | } 17 | -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- 1 | The `scripts` directory contains import scripts that preprocess data from individual sources that take forms too complex to be prepared by OpenAddresses' automated data-cleaning scripts. 2 | 3 | Most users of OpenAddresses should not need these files, as they will have been used by others to create data that is appropriate for the `conform` process. That data is what an individual `source.json` file will point to. 4 | 5 | However, if a datasource needs to be refreshed or otherwise repaired, these scripts may be of use. 6 | -------------------------------------------------------------------------------- /sources/no/countrywide.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "ISO 3166": {"alpha2": "NO", "country": "Norway"}, 4 | "country": "no" 5 | }, 6 | "data": "http://data.openaddresses.io/cache/no.zip", 7 | "website": "http://data.kartverket.no/download/content/elveg-utm-33-hele-landet", 8 | "type": "http", 9 | "compression": "zip", 10 | "conform": { 11 | "lon": "x", 12 | "lat": "y", 13 | "number": "HUSNR", 14 | "street": "GATENAVN", 15 | "type": "csv" 16 | } 17 | } -------------------------------------------------------------------------------- /sources/us/az/yuma.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "04027", "name": "Yuma County", "state": "Arizona"}, 4 | "country": "us", 5 | "state": "az", 6 | "county": "Yuma" 7 | }, 8 | "data": "http://gis.yumacountyaz.gov/ArcGIS/rest/services/YumaCounty/MapServer/128", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "ST_NUM", 13 | "street": ["ST_DIR", "ST_NAME", "ST_DESIG"], 14 | "city": "CITY" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sources/us/ny/ulster.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "36111", 5 | "name": "Ulster County", 6 | "state": "New York" 7 | }, 8 | "country": "us", 9 | "state": "ny", 10 | "county": "Ulster" 11 | }, 12 | "website": "https://gis.ny.gov/gisdata/inventories/details.cfm?DSID=1165", 13 | "data": "https://gis.ny.gov/secured/coop/fileserver/?DSID=1165&file=address_pts.zip", 14 | "compression": "zip", 15 | "type": "http" 16 | } -------------------------------------------------------------------------------- /sources/us/ma/town_of_newton.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": "https://github.com/NewtonMAGIS/GISData/raw/master/Addresses/Addresses.geojson", 3 | "website": "https://github.com/NewtonMAGIS/GISData/", 4 | "type": "http", 5 | "coverage": { 6 | "country": "us", 7 | "state": "ma", 8 | "city": "Newton" 9 | }, 10 | "conform": { 11 | "type": "geojson", 12 | "number": "Number", 13 | "street": "FullStName", 14 | "city": "City", 15 | "postcode": "ZipCode" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /sources/us/mo/livingston.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "29117", 5 | "name": "Livingston County", 6 | "state": "Missouri" 7 | }, 8 | "country": "us", 9 | "state": "mo", 10 | "county": "Livingston" 11 | }, 12 | "data": "https://sites.integritygis.com/Geocortex/Essentials/REST/sites/Livingston_County_MO_Public/map/mapservices/1/layers/13", 13 | "type": "ESRI", 14 | "skip": true, 15 | "note": "Geocortex server" 16 | } 17 | -------------------------------------------------------------------------------- /sources/us/ny/cayuga.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "36011", 5 | "name": "Cayuga County", 6 | "state": "New York" 7 | }, 8 | "country": "us", 9 | "state": "ny", 10 | "county": "Cayuga" 11 | }, 12 | "website": "https://gis.ny.gov/gisdata/inventories/details.cfm?DSID=1138", 13 | "data": "https://gis.ny.gov/secured/coop/fileserver/?DSID=1138&file=cayuga_addresses.zip", 14 | "compression": "zip", 15 | "type": "http" 16 | } -------------------------------------------------------------------------------- /sources/us/nm/albuquerque.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "nm", 5 | "city": "Albuquerque" 6 | }, 7 | "data": "http://manzano.cabq.gov/gisshapes/base.zip", 8 | "type": "http", 9 | "compression": "zip", 10 | "note": "POLYGONS", 11 | "conform": { 12 | "type": "shapefile-polygon", 13 | "number": "STREETNUMB", 14 | "street": [ 15 | "STREETNAME", 16 | "STREETDESI", 17 | "STREETQUAD" 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/oh/warren.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "39165", "name": "Warren County", "state": "Ohio"}, 4 | "country": "us", 5 | "state": "oh", 6 | "county": "Warren" 7 | }, 8 | "data": "http://webmap1.co.warren.oh.us/ArcGIS/rest/services/Dynamic/GeodataParcelExtract/MapServer/0", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "STREET_NBR", 13 | "street": ["STREET_NAME", "STREET_TYPE", "STREET_DIR"] 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /sources/us/wi/adams.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55001", 5 | "name": "Adams County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Adams" 11 | }, 12 | "data": "https://gis2.msa-ps.com/ArcGIS/rest/services/StreetsAddress/MapServer/29", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "numb", 17 | "street": "street" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/wi/dodge.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55027", 5 | "name": "Dodge County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Dodge" 11 | }, 12 | "data": "https://gis2.msa-ps.com/ArcGIS/rest/services/StreetsAddress/MapServer/47", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "add2", 17 | "street": "add4" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/it/er/rimini.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "it", 4 | "state": "er", 5 | "city": "rimini" 6 | }, 7 | "data": "http://archivio.comune.rimini.it/binary/comune_rimini/open_data/civici.1422008379.zip", 8 | "website": "http://www.comune.rimini.it/filo_diretto/open_data/-toponomastica/pagina53.html", 9 | "type": "http", 10 | "compression": "zip", 11 | "conform": { 12 | "number": "CIVICO", 13 | "street": "DENOMINAZI", 14 | "type": "shapefile" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sources/us/la/jefferson_parish.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "22051", "name": "Jefferson Parish", "state": "Louisiana"}, 4 | "country": "us", 5 | "state": "la", 6 | "county": "Jefferson" 7 | }, 8 | "data": "http://webmap.jeffparish.net/arcgis/rest/services/CODE/Code_Enforcement/MapServer/5", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "ADDRESS", 13 | "street": "STREET", 14 | "postcode": "ZIP" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sources/us/ct/city_of_lyme.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "ct", 5 | "city": "lyme" 6 | }, 7 | "attribution": "City of Lyme", 8 | "data": "http://107.20.209.214/ArcGIS/rest/services/ELYME/EastLymeDynamic/MapServer/0", 9 | "website": "http://townlyme.org/", 10 | "type": "ESRI", 11 | "conform": { 12 | "street": "ParcelPolygon.StreetName", 13 | "number": "ParcelPolygon.StreetNumber", 14 | "type": "geojson", 15 | "postcode": "cama.zip" 16 | } 17 | } -------------------------------------------------------------------------------- /sources/us/mn/cass.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "27021", 5 | "name": "Cass County", 6 | "state": "Minnesota" 7 | }, 8 | "country": "us", 9 | "state": "mn", 10 | "county": "Cass" 11 | }, 12 | "data": "http://cassweb3.co.cass.mn.us/arcgis/rest/services/Basic_Layers2/MapServer/1", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "BLDNUM1", 16 | "street": "RD_NAME", 17 | "type": "geojson" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ms/madison.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "28089", 5 | "name": "Madison County", 6 | "state": "Mississippi" 7 | }, 8 | "country": "us", 9 | "state": "ms", 10 | "county": "Madison" 11 | }, 12 | "data": "http://gis.cmpdd.org/arcgis/rest/services/Viewers/Madison/MapServer/13", 13 | "type": "ESRI", 14 | "conform": { 15 | "street": "PHYSTREET", 16 | "number": "PHYNUM", 17 | "type": "geojson" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/nc/anson.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37007", 5 | "name": "Anson County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Anson" 11 | }, 12 | "data": "http://www.co.anson.nc.us/Portals/2/records/address.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "website": "http://www.co.anson.nc.us/PublicRecords/GISDataDownloads.aspx", 16 | "note": "unzip times out" 17 | } -------------------------------------------------------------------------------- /sources/us/nc/cherokee.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37039", 5 | "name": "Cherokee County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Cherokee" 11 | }, 12 | "data": "ftp://www.cherokeecounty-nc.gov/E911gdb.gdb.zip", 13 | "type": "ftp", 14 | "compression": "zip", 15 | "website": "http://www.cherokeecounty-nc.gov/index.aspx?page=122", 16 | "note": "GDB not yet supported" 17 | } -------------------------------------------------------------------------------- /sources/us/va/greene.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51079", 5 | "name": "Greene County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Greene" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/VA/GreeneCo_WebGIS/MapServer/2", 13 | "type": "ESRI", 14 | "conform": { 15 | "street": "FULLNAME", 16 | "number": "ADDRNUM", 17 | "type": "geojson" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/br/es/vitoria.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "br", 4 | "state": "es", 5 | "city": "Vitória" 6 | }, 7 | "data": "http://geoweb.vitoria.es.gov.br/Downloads/SHP/lote.zip", 8 | "website": "http://geoweb.vitoria.es.gov.br", 9 | "attribution": "Prefeitura de Vitória", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "street": "LOGRADOURO", 14 | "number": "NUMERO", 15 | "type": "shapefile-polygon", 16 | "encoding": "ISO-8859-1" 17 | } 18 | } -------------------------------------------------------------------------------- /sources/us/me/statewide.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "23", 5 | "state": "Maine" 6 | }, 7 | "country": "us", 8 | "state": "me" 9 | }, 10 | "data": "http://www.maine.gov/megis/catalog/shps/state/ng911pts.zip", 11 | "type": "http", 12 | "compression": "zip", 13 | "conform": { 14 | "number": "address_nu", 15 | "street": [ 16 | "streetname", 17 | "suffix" 18 | ], 19 | "type": "shapefile" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/va/madison.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51113", 5 | "name": "Madison County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Madison" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/VA/MadisonCo_WebGIS/MapServer/13", 13 | "type": "ESRI", 14 | "conform": { 15 | "street": "ROADNAME", 16 | "number": "ADDRESS", 17 | "type": "geojson" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/wi/city_of_milwaukee.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "wi", 5 | "city": "Milwaukee" 6 | }, 7 | "type": "ESRI", 8 | "data": "http://maps.milwaukee.gov/ArcGIS/rest/services/LMS/LMS_APO/MapServer/1", 9 | "conform": { 10 | "type": "geojson", 11 | "number": "HSE_NBR", 12 | "street": [ 13 | "DIR", 14 | "STREET", 15 | "STTYPE" 16 | ], 17 | "postcode": "ZIP_CODE", 18 | "city": "CITY" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/va/accomack.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51001", 5 | "name": "Accomack County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Accomack" 11 | }, 12 | "data": "http://gis.worldviewsolutions.com/arcgis/rest/services/accomack/public/MapServer/6", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "addresss", 16 | "street": "street", 17 | "type": "geojson" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/va/louisa.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51109", 5 | "name": "Louisa County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Louisa" 11 | }, 12 | "data": "http://vcloud.timmons.com/ArcGIS/rest/services/Louisa/LouisaEnhancement/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "street": "ROADNAME", 16 | "number": "ADDRESS", 17 | "type": "geojson" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/wi/columbia.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55021", 5 | "name": "Columbia County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Columbia" 11 | }, 12 | "data": "http://lrs.co.columbia.wi.us/ArcGIS/rest/services/LRS/Addresses/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "ADDRESSNUM", 17 | "street": "FULL_NM" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/ca/on/city_of_kitchener.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "Kitchener" 6 | }, 7 | "data": "http://app.kitchener.ca/opendata/shp/Addresses.zip", 8 | "website": "http://app.kitchener.ca/opendata/ds_detail.aspx?dsid=74", 9 | "license": "http://app.kitchener.ca/opendata/license.aspx", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "street": "street", 14 | "number": "address_la", 15 | "type": "shapefile" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /sources/lv/city_of_riga.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "lv", 4 | "city": "Riga" 5 | }, 6 | "data": "https://opendata.riga.lv/visas-datu-kopas.html?file=files/Opendata/Dati-Vectori/Attistiba/Adreses_shp_05_03_15.zip", 7 | "website": "https://opendata.riga.lv/visas-datu-kopas.html", 8 | "license": "https://opendata.riga.lv/licence.html", 9 | "type": "http", 10 | "compression": "zip", 11 | "conform": { 12 | "type": "shapefile", 13 | "number": "Nr", 14 | "street": "iela" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sources/ua/12/city_of_dnipropetrovsk.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "UA", 4 | "state": "UA-12", 5 | "city": "Dnipropetrovsk" 6 | }, 7 | "data": "https://www.dropbox.com/s/vercjotzvhluglb/dnipro_addr_bld.shp.zip?dl=1", 8 | "website": "", 9 | "attribution": "", 10 | "type": "http", 11 | "compression": "zip", 12 | "license": "ODbl", 13 | "conform": { 14 | "type": "shapefile", 15 | "number": "Number", 16 | "street": "AddressUA", 17 | "srs" : "EPSG:4326" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/mn/carlton.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "27017", 5 | "name": "Carlton County", 6 | "state": "Minnesota" 7 | }, 8 | "country": "us", 9 | "state": "mn", 10 | "county": "Carlton" 11 | }, 12 | "data": "http://www.carltoncountygis.com/arcgis/rest/services/Map_Layers/MapServer/77", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "Fire_Numbe", 16 | "street": "Street_Nam", 17 | "type": "geojson" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/mo/barry.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "29009", 5 | "name": "Barry County", 6 | "state": "Missouri" 7 | }, 8 | "country": "us", 9 | "state": "mo", 10 | "county": "Barry" 11 | }, 12 | "data": "http://gis-server.greatriv.com/ArcGIS/rest/services/BarryCo/BarryCo_operational/MapServer/2", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "address", 16 | "street": "roadname", 17 | "type": "geojson" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/va/city_of_emporia.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51595", 5 | "name": "City of Emporia", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "city": "Emporia" 11 | }, 12 | "data": "http://gis.worldviewsolutions.com/arcgis/rest/services/emporia/main/MapServer/8", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "str_num", 16 | "street": "str_name", 17 | "type": "geojson" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/wa/skagit.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "53057", 5 | "name": "Skagit County", 6 | "state": "Washington" 7 | }, 8 | "country": "us", 9 | "state": "wa", 10 | "county": "Skagit" 11 | }, 12 | "data": "http://www.skagitcounty.net/publicgis/rest/services/Assessor/PropertyMap/MapServer/3", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "housenumber", 16 | "street": "roadname", 17 | "type": "geojson" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/al/baldwin.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "01003", 5 | "name": "Baldwin County", 6 | "state": "Alabama" 7 | }, 8 | "country": "us", 9 | "state": "al", 10 | "county": "Baldwin" 11 | }, 12 | "data": "http://web3.kcsgis.com/kcsgis/rest/services/Baldwin/Public/MapServer/31", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "street": "PropStreetName", 17 | "number": "PropStreetNumber" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/lane_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20101", "name": "Lane County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Lane" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-lane_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/rush_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20165", "name": "Rush County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Rush" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-rush_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/la/st_charles_parish.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "22089", "name": "St. Charles Parish", "state": "Louisiana"}, 4 | "country": "us", 5 | "state": "la", 6 | "county": "St. Charles" 7 | }, 8 | "data": "http://www.scpgis.com/webmaps/rest/services/SCPGIS/WEBGIS/MapServer/1", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "NUMBER", 13 | "street": "STREET", 14 | "city": "TOWN", 15 | "postcode": "FIRECODE" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /sources/be/wa/brussels-fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "http", 3 | "data": "http://data.openaddresses.io/cache/be-wa-brussels-4326.zip", 4 | "website": "http://bric.brussels/", 5 | "compression": "zip", 6 | "coverage": { 7 | "country": "be", 8 | "state": "Wallonia", 9 | "city": "Brussels" 10 | }, 11 | "license": "http://bric.brussels/en/our-solutions/urbis-solutions/Licence%20Open%20data%20Fr%20v4.pdf", 12 | "conform": { 13 | "number": "ADRN", 14 | "type": "shapefile", 15 | "street": "PW_NAME_FR" 16 | } 17 | } -------------------------------------------------------------------------------- /sources/be/wa/brussels-nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "http", 3 | "data": "http://data.openaddresses.io/cache/be-wa-brussels-4326.zip", 4 | "website": "http://bric.brussels/", 5 | "compression": "zip", 6 | "coverage": { 7 | "country": "be", 8 | "state": "Wallonia", 9 | "city": "Brussels" 10 | }, 11 | "license": "http://bric.brussels/en/our-solutions/urbis-solutions/Licence%20Open%20data%20Fr%20v4.pdf", 12 | "conform": { 13 | "number": "ADRN", 14 | "type": "shapefile", 15 | "street": "PW_NAME_DU" 16 | } 17 | } -------------------------------------------------------------------------------- /sources/sg/countrywide.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "sg", 4 | "ISO 3166": { 5 | "alpha2": "SG", 6 | "country": "Singapore" 7 | } 8 | }, 9 | "conform": { 10 | "type": "geojson", 11 | "number": "HOUSE_BLK_NO", 12 | "street": "ROAD_NAME" 13 | }, 14 | "data": "http://arcgis-whereto-1649028446.ap-southeast-1.elb.amazonaws.com/arcgis/rest/services/SAS/Basemap_3414/MapServer/17", 15 | "type": "ESRI", 16 | "license": "Unknown", 17 | "website": "http://whereto.sg" 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/id/latah.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "16057", 5 | "name": "Latah County", 6 | "state": "Idaho" 7 | }, 8 | "country": "us", 9 | "state": "id", 10 | "county": "Latah" 11 | }, 12 | "data": "http://gis.latah.id.us/arcgis/rest/services/Planning_Building/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "Address", 17 | "street": "Street", 18 | "city": "CITY" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/ks/geary_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20061", "name": "Geary County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Geary" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-geary_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/meade_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20119", "name": "Meade County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Meade" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-meade_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/osage_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20139", "name": "Osage County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Osage" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-osage_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/scott_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20171", "name": "Scott County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Scott" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-scott_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/thomas_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20193", 5 | "name": "Thomas County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Thomas" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "add_", 15 | "street": "street", 16 | "postcode": "zip" 17 | }, 18 | "data": "http://72.205.198.131/ArcGIS/rest/services/Thomas/Thomas/MapServer/30", 19 | "type": "ESRI" 20 | } -------------------------------------------------------------------------------- /sources/us/ky/clark.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "21049", "name": "Clark County", "state": "Kentucky"}, 4 | "country": "us", 5 | "state": "ky", 6 | "county": "Clark" 7 | }, 8 | "data": "http://gis.ccgisonline.com:6080/arcgis/rest/services/BASElayers/AddressBase/MapServer/0", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "STRADD", 13 | "street": ["PRE_DIR", "STR_NAME", "STREET_TYP", "STREET_DIR"], 14 | "postcode": "ZIPCODE" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sources/us/ms/hancock.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "22125", 5 | "name": "Hancock County", 6 | "state": "Mississippi" 7 | }, 8 | "country": "us", 9 | "state": "ms", 10 | "county": "Hancock" 11 | }, 12 | "data": "http://services.geoportalmaps.com/arcgis/rest/services/HancockCounty_Services/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "ADDNUM", 17 | "street": "STREETNAME" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/tx/city_of_temple.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "geometry": {"type": "Point", "coordinates": [-97.35, 31.09]}, 4 | "country": "us", 5 | "state": "tx", 6 | "city": "Temple" 7 | }, 8 | "data": "http://maps.ci.temple.tx.us:8080/ArcGIS/rest/services/ZoningMap/MapServer/26", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "street": [ 13 | "LOCSTRDIR", 14 | "LOCSTRNAME", 15 | "LOCSTRSUF" 16 | ], 17 | "number": "LOCSTRNUM" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/tx/desoto.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "tx", 5 | "city": "DeSoto" 6 | }, 7 | "data": "http://gis4.dfwmaps.com/arcgis/rest/services/ICDesoto/Desoto_Baselayers_VE10/MapServer/2", 8 | "type": "ESRI", 9 | "conform": { 10 | "type": "geojson", 11 | "number": "HOUSE_NUM", 12 | "street": [ 13 | "PREFIX", 14 | "PRETYPE", 15 | "STREET", 16 | "TYPE", 17 | "SUFFIX" 18 | ], 19 | "city": "CITY" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/qa/qatar.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "qa", 4 | "ISO 3166": { 5 | "alpha2": "QA", 6 | "country": "Qatar" 7 | } 8 | }, 9 | "data": "http://cgismobile.gisqatar.org.qa/arcgis/rest/services/SearchQars/MapServer/0", 10 | "website": "http://www.gisqatar.org.qa/en/page2/page10/test.php", 11 | "license": "Unknown", 12 | "type": "ESRI", 13 | "conform": { 14 | "number": "BUILDING", 15 | "street": "STREET", 16 | "type": "geojson", 17 | "accuracy": 1 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/co/weld.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "08123", "name": "Weld County", "state": "Colorado"}, 4 | "country": "us", 5 | "state": "co", 6 | "county": "Weld" 7 | }, 8 | "data": "http://data.openaddresses.io/cache/us-co-weld_county.zip", 9 | "type": "http", 10 | "compression": "zip", 11 | "conform": { 12 | "lon": "x", 13 | "lat": "y", 14 | "number": "HOUSENUM", 15 | "street": ["PRE_DIR", "PRETYPE", "STR_NAME", "STR_TYPE"], 16 | "type": "csv" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/ct/city_of_watertown.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "ct", 5 | "city": "watertown" 6 | }, 7 | "attribution": "City of Watertown", 8 | "data": "http://107.20.209.214/ArcGIS/rest/services/WatertownCT/WatertownDynamic/MapServer/0", 9 | "website": "http://www.watertownct.org/", 10 | "type": "ESRI", 11 | "conform": { 12 | "street": "ParcelPolygon.StreetName", 13 | "number": "ParcelPolygon.StreetNumber", 14 | "type": "geojson", 15 | "postcode": "cama.zip" 16 | } 17 | } -------------------------------------------------------------------------------- /sources/us/ks/barton_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20009", "name": "Barton County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "barton" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LNG", 15 | "lat": "LAT" 16 | }, 17 | "type": "http", 18 | "data": "http://data.openaddresses.io/cache/us-ks-barton_county.csv" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/harvey_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20079", "name": "Harvey County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Harvey" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-harvey_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/pawnee_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20145", "name": "Pawnee County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Pawnee" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-pawnee_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/sumner_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20191", "name": "Sumner County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Sumner" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-sumner_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/pa/beaver.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "42007", 5 | "name": "Beaver County", 6 | "state": "Pennsylvania" 7 | }, 8 | "country": "us", 9 | "state": "pa", 10 | "county": "Beaver" 11 | }, 12 | "data": "http://bkrgis.bakerprojects.com/ArcGIS/rest/services/BeaverCounty/BeaverCounty_Addresses/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "SAN", 17 | "street": "ST_NAME" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/tx/anderson.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "48001", 5 | "name": "Anderson County", 6 | "state": "Texas" 7 | }, 8 | "country": "us", 9 | "state": "tx", 10 | "county": "Anderson" 11 | }, 12 | "data": "http://search.anderson.manatron.com/Parcel_shape_file.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "type": "shapefile", 17 | "number": "Physical_2", 18 | "street": "Physical_1" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/va/fluvanna.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51065", 5 | "name": "Fluvanna County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Fluvanna" 11 | }, 12 | "data": "http://vcloud.timmons.com/ArcGIS/rest/services/FluvannaWebLogistics/FluvannaWeblogistics/MapServer/19", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "ADDRNUM", 16 | "street": "FULLNAME", 17 | "type": "geojson" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/wi/green.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55045", 5 | "name": "Green County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Green" 11 | }, 12 | "data": "http://landrecords.greencountywi.org/arcgis/rest/services/GreenCo_GIS/MapServer/1", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "numb", 17 | "street": "street", 18 | "city": "MCD_Name" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/wi/kewaunee.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55061", 5 | "name": "Kewaunee County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Kewaunee" 11 | }, 12 | "data": "https://maps.ags.ruekert-mielke.com/ags/rest/services/KewauneeCo/KewauneeCoFeature/FeatureServer/2", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HOUSE_NO", 17 | "street": "ROADNAME" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/wi/sauk.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55111", 5 | "name": "Sauk County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Sauk" 11 | }, 12 | "data": "https://gis2.msa-ps.com/ArcGIS/rest/services/StreetsAddress/MapServer/18", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "TEXTSTRI_1", 17 | "street": "ROAD_NAME", 18 | "city": "VIL_CITY_1" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/wi/trempealeau.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55121", 5 | "name": "Trempealeau County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Trempealeau" 11 | }, 12 | "data": "http://www.tremplocounty.com/ArcGIS/rest/services/Public/Landmarks_Addressing/MapServer/2", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "FIRE_NO", 17 | "street": "STREETNAME" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/ca/on/city_of_kingston.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "Kingston" 6 | }, 7 | "type": "ESRI", 8 | "data": "http://maps.cityofkingston.ca/ArcGIS/rest/services/DataCatalog/DataCatalog_Addresses/MapServer/0", 9 | "website": "https://www.cityofkingston.ca/explore/data-catalogue", 10 | "conform":{ 11 | "type": "geojson", 12 | "number": "ADDRESS_NUMBER", 13 | "street": "STREET", 14 | "postcode": "POSTAL_CODE", 15 | "city": "MUNICIPALITY" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /sources/us/mn/aitkin.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "27001", 5 | "name": "Aitkin County", 6 | "state": "Minnesota" 7 | }, 8 | "country": "us", 9 | "state": "mn", 10 | "county": "Aitkin" 11 | }, 12 | "data": "http://gisweb.co.aitkin.mn.us/arcgis/rest/services/MapLayers/MapServer/3", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "STR_NUM", 17 | "street": "STREET", 18 | "postcode": "ZIP_CODE" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/mn/renville.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "27129", 5 | "name": "Renville County", 6 | "state": "Minnesota" 7 | }, 8 | "country": "us", 9 | "state": "mn", 10 | "county": "Renville" 11 | }, 12 | "data": "http://gis.co.renville.mn.us/arcgis/rest/services/RENVILLEPUBLIC/MapServer/3", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "hnum", 16 | "street": "street", 17 | "type": "geojson", 18 | "postcode": "zip" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/nv/nye.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "32023", 5 | "name": "Nye County", 6 | "state": "Nevada" 7 | }, 8 | "country": "us", 9 | "state": "nv", 10 | "county": "Nye" 11 | }, 12 | "data": "http://nyenv.mygisonline.com/arcgis/rest/services/NV_Nye/NyeNVfeatures/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "split": "address", 16 | "number": "auto_number", 17 | "street": "auto_street", 18 | "type": "geojson" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/va/arlington.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51013", 5 | "name": "Arlington County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "city": "Arlington" 11 | }, 12 | "data": "http://gis.arlingtonva.us/arlgis/rest/services/public/Addresses/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "stnum", 16 | "street": "stname", 17 | "type": "geojson", 18 | "postcode": "zip5" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/ca/bc/victoria.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "bc", 5 | "city": "Victoria" 6 | }, 7 | "data": "http://vicmap.victoria.ca/_GISData/AddressPointsSHP.zip", 8 | "website": "http://www.victoria.ca/EN/main/city/open-data-catalogue.html", 9 | "license": "http://www.victoria.ca/EN/main/city/open-data-catalogue/open-data-licence.html", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "number": "HOUSE", 14 | "street": "STREET", 15 | "type": "shapefile" 16 | } 17 | } -------------------------------------------------------------------------------- /sources/us/ks/franklin_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20059", "name": "Franklin County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Franklin" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-franklin_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/mn/mille_lacs.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "27095", 5 | "name": "Mille Lacs County", 6 | "state": "Minnesota" 7 | }, 8 | "country": "us", 9 | "state": "mn", 10 | "county": "Mille Lacs" 11 | }, 12 | "data": "http://136.234.73.7/arcgis/rest/services/MilleLacs_E911/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "house_num", 16 | "street": "street", 17 | "type": "geojson", 18 | "postcode": "zipcode" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/mn/polk.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "27119", 5 | "name": "Polk County", 6 | "state": "Minnesota" 7 | }, 8 | "country": "us", 9 | "state": "mn", 10 | "county": "Polk" 11 | }, 12 | "data": "http://gis.co.polk.mn.us/arcgis/rest/services/PolkALL/MapServer/12", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "hnum", 17 | "street": "street", 18 | "postcode": "zip", 19 | "city": "city" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/ms/hinds.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "28049", 5 | "name": "Hinds County", 6 | "state": "Mississippi" 7 | }, 8 | "country": "us", 9 | "state": "ms", 10 | "county": "Hinds" 11 | }, 12 | "data": "http://gis.cmpdd.org/arcgis/rest/services/Viewers/Hinds/MapServer/3", 13 | "type": "ESRI", 14 | "conform": { 15 | "street": "loc_alpha", 16 | "number": "loc_num", 17 | "type": "geojson" 18 | }, 19 | "note": "Very poor address coverage" 20 | } -------------------------------------------------------------------------------- /sources/us/nc/harnett.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37085", 5 | "name": "Harnett County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Harnett" 11 | }, 12 | "data": "http://gisportal.harnett.org/LinkClick.aspx?fileticket=5_4xOOq8Wgc%3d&tabid=54&portalid=0&mid=373", 13 | "type": "http", 14 | "website": "http://gisportal.harnett.org/Downloads/tabid/54/Default.aspx", 15 | "note": "Addrpts.shp is in the .exe file" 16 | } 17 | -------------------------------------------------------------------------------- /sources/us/va/essex.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51057", 5 | "name": "Essex County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Essex" 11 | }, 12 | "data": "http://vcloud.timmons.com/ArcGIS/rest/services/EssexWebLogistics/Essex_Main/MapServer/8", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "ADDRNUM", 16 | "street": "FULLNAME", 17 | "type": "geojson", 18 | "postcode": "zip" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/va/halifax.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51083", 5 | "name": "Halifax County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Halifax" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/VA/HalifaxCo_WebGIS/MapServer/5", 13 | "type": "ESRI", 14 | "conform": { 15 | "street": "STREET", 16 | "number": "STR_NO", 17 | "type": "geojson", 18 | "postcode": "zip_code" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/va/isle_of_wight.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51093", 5 | "name": "Isle of Wight County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Isle of Wight" 11 | }, 12 | "type": "ESRI", 13 | "data": "http://services.arcgis.com/Dc6hhMQCpvLlOmSY/arcgis/rest/services/Address_Points/FeatureServer/0", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "ADDRESS", 17 | "street": "ROADNAME" 18 | } 19 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "openaddresses", 3 | "version": "1.0.0", 4 | "author": "Alex Barth ", 5 | "description": "Manage, test and download a global register of addresses.", 6 | "main": "download.js", 7 | "scripts": { 8 | "test": "tape test/*.js | tap-min" 9 | }, 10 | "license": "BSD", 11 | "engines": { 12 | "node": ">=0.8" 13 | }, 14 | "devDependencies": { 15 | "glob": "4.2.x", 16 | "tape": "3.0.x", 17 | "tap-min": "^1.0.0", 18 | "validator": "4.0.x" 19 | }, 20 | "dependencies": { 21 | "request": "^2.51.0" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /scripts/at/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | mkdir -p /tmp/at || true 3 | bash -c "if [ ! -f /tmp/at/at-in.zip ]; then curl 'http://www.bev.gv.at/pls/portal/docs/PAGE/BEV_PORTAL_CONTENT_ALLGEMEIN/0200_PRODUKTE/UNENTGELTLICHE_PRODUKTE_DES_BEV/Adresse_Relationale_Tabellen-Stichtagsdaten.zip' > /tmp/at/at-in.zip; unzip -d /tmp/at/ /tmp/at/at-in.zip; fi" 4 | python split.py /tmp/at/ADRESSE.CSV /tmp/at/STRASSE.csv > timestamp.txt 5 | cp at-*.json ../../sources/ 6 | zip /tmp/at/at-out.zip at-*.csv 7 | bash -c "aws s3 cp /tmp/at/at-out.zip s3://data.openaddresses.io/cache/at-$$(cat timestamp.txt).zip" 8 | rm -f timestamp.txt -------------------------------------------------------------------------------- /scripts/es/find_missing_files.py: -------------------------------------------------------------------------------- 1 | # finds files that were not successfully converted; when I ran the code, 2 | # this revealed 14, all of which had misformed URLs. I corrected them 3 | # manually and re-ran the import 4 | 5 | import os 6 | 7 | GML_PATH = './spain_catastre/gml' 8 | 9 | if __name__ == '__main__': 10 | for f in os.listdir(GML_PATH): 11 | parts = f.split('.') 12 | if parts[-1] == 'zip': 13 | csv_filename = ('.'.join(parts[:-1])) + '.csv' 14 | if not os.path.exists('./build/' + csv_filename): 15 | print '%s/%s' % (GML_PATH, f) -------------------------------------------------------------------------------- /sources/ca/bc/surrey.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "bc", 5 | "city": "surrey" 6 | }, 7 | "data": "http://cosmos.surrey.ca/COSREST/rest/services/Public/MapServer/83", 8 | "website": "http://data.surrey.ca/", 9 | "license": "Open Data License", 10 | "type": "ESRI", 11 | "conform": { 12 | "number": "HOUSE_NO", 13 | "street": "ROAD_NAME", 14 | "type": "geojson" 15 | }, 16 | "skip": true, 17 | "note": "skip until bug resolved https://github.com/openaddresses/machine/issues/242" 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/ks/chautauqua_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20019", "name": "Chautauqua County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Chautauqua" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "STR", 12 | "city": "CITY", 13 | "postcode": "ZIP", 14 | "lon": "LON", 15 | "lat": "LAT" 16 | }, 17 | "data": "http://data.openaddresses.io/cache/us-ks-chautauqua_county.csv", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ne/douglas.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "31055", 5 | "state": "Nebraska", 6 | "county": "Douglas" 7 | }, 8 | "country": "us", 9 | "state": "ne", 10 | "county": "Douglas" 11 | }, 12 | "data": "http://gis.dogis.org/arcgis/rest/services/OpenData_layers/MapServer/34", 13 | "website": "http://www.dogis.org/", 14 | "type": "ESRI", 15 | "conform": { 16 | "type": "geojson", 17 | "number": "ADDRNUM", 18 | "street": "FULLNAME" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/ny/allegany.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "36003", 5 | "name": "Allegany County", 6 | "state": "New York" 7 | }, 8 | "country": "us", 9 | "state": "ny", 10 | "county": "Allegany" 11 | }, 12 | "website": "http://gis.ny.gov/gisdata/inventories/details.cfm?dsid=921&nysgis=", 13 | "data": "http://gis.ny.gov/gisdata/fileserver/?DSID=921&file=AddressPoints_SAM.shp.zip", 14 | "type": "http", 15 | "compression": "zip", 16 | "note": "No known projection translation" 17 | } -------------------------------------------------------------------------------- /sources/us/ri/providence.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "ri", 5 | "city": "Providence" 6 | }, 7 | "data": "https://data.providenceri.gov/api/geospatial/ynak-nf84?method=export&format=Original", 8 | "website": "https://data.providenceri.gov/Reference/Providence-Parcel-Boundaries/ynak-nf84", 9 | "license": "", 10 | "type": "http", 11 | "compression": "zip", 12 | "year": "2014", 13 | "note": "Full parcel shapefile set (not points); address string is stored in the Property_A attribute; current as of Winter 2014" 14 | } -------------------------------------------------------------------------------- /sources/us/tn/jefferson.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "47089", 5 | "name": "Jefferson County", 6 | "state": "Tennessee" 7 | }, 8 | "country": "us", 9 | "state": "tn", 10 | "county": "Jefferson" 11 | }, 12 | "data": "http://maps.binarybus.com/arcgis/rest/services/Jefferson/jefferson/MapServer/1", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "houseno", 16 | "street": "street", 17 | "type": "geojson", 18 | "postcode": "zip" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/wi/douglas.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55031", 5 | "name": "Douglas County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Douglas" 11 | }, 12 | "data": "http://ags1.wgxtreme.com/ArcGIS/rest/services/DouglasCoSuperiorWI/DouglasCoSuperiorWIGIWSAssessor/MapServer/9", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "FIRE_NO", 17 | "street": "ROAD_NAME" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/wi/richland.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55103", 5 | "name": "Richland County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Richland" 11 | }, 12 | "data": "https://gis2.msa-ps.com/ArcGIS/rest/services/RichlandCo/RichlandCo_GIS_Public/MapServer/6", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "numb", 17 | "street": "street", 18 | "city": "twn" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/az/gila.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "04007", 5 | "name": "Gila County", 6 | "state": "Arizona" 7 | }, 8 | "country": "us", 9 | "state": "az", 10 | "county": "Gila" 11 | }, 12 | "data": "http://gis.gilacountyaz.gov/arcgis/rest/services/ASR/AddLU/MapServer/1", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HOUSE_NUM", 17 | "street": "RDNAME", 18 | "postcode": "ZIP", 19 | "city": "CITY" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/az/yavapai.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "04025", 5 | "name": "Yavapai County", 6 | "state": "Arizona" 7 | }, 8 | "country": "us", 9 | "state": "az", 10 | "county": "Yavapai" 11 | }, 12 | "data": "http://gis.yavapai.us/arcgis/rest/services/Property/MapServer/4", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "CIVIC", 17 | "street": ["PRE_DIR", "STREET", "SUFFIX"], 18 | "city": "COMMUNITY" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/va/city_of_norton.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51720", 5 | "name": "City of Norton", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "city": "Norton" 11 | }, 12 | "data": "http://gis.worldviewsolutions.com/arcgis/rest/services/norton/real_estate/MapServer/21", 13 | "type": "ESRI", 14 | "conform": { 15 | "street": "roadname", 16 | "number": "addr_no", 17 | "type": "geojson", 18 | "postcode": "zip" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/al/st_clair.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "01115", 5 | "name": "St. Clair County", 6 | "state": "Alabama" 7 | }, 8 | "country": "us", 9 | "state": "al", 10 | "county": "St. Clair" 11 | }, 12 | "data": "http://webgis.stclairco.com/arcgis/rest/services/Appraisal/MapServer/146", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "street": "STREET_NAME", 17 | "number": "STREET_NUM", 18 | "postcode": "ZIPCODE_1" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/co/routt.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "08107", 5 | "name": "Routt County", 6 | "state": "Colorado" 7 | }, 8 | "country": "us", 9 | "state": "co", 10 | "county": "Routt" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "CompleteAddressNum", 15 | "street": "CompleteStreetName", 16 | "postcode": "ZIP" 17 | }, 18 | "data": "http://maps.co.routt.co.us/arcgis/rest/services/Basemap/Basemap/MapServer/1", 19 | "type": "ESRI" 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/co/washington.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "08121", 5 | "name": "Washington County", 6 | "state": "Colorado" 7 | }, 8 | "country": "us", 9 | "state": "co", 10 | "county": "Washington" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "LOC_NUMBER", 15 | "street": "LOC_STREET", 16 | "city": "MUNI" 17 | }, 18 | "data": "http://gis.co.washington.ny.us/arcgis/rest/services/WashingtonCounty/MapServer/4", 19 | "type": "ESRI" 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/ia/johnson.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "19103", 5 | "name": "Johnson County", 6 | "state": "Iowa" 7 | }, 8 | "country": "us", 9 | "state": "ia", 10 | "county": "Johnson" 11 | }, 12 | "data": "http://gis.johnson-county.com/arcgis/rest/services/Parcels/MapServer/2", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HouseNumber", 17 | "street": "STREET", 18 | "city": "CITY", 19 | "postcode": "ZIP" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/ks/linn_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20107", "name": "Linn County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Linn" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "street", 12 | "postcode": "", 13 | "lon": "x", 14 | "lat": "y" 15 | }, 16 | "data": "http://data.openaddresses.io/cache/us-ks-linn_county.csv", 17 | "website": "http://jade.kgs.ku.edu/orka2/MainPage.aspx", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ca/palo_alto.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "ca", 5 | "city": "Palo Alto" 6 | }, 7 | "attribution": "City of Palo Alto", 8 | "data": "http://openaddresses.s3.amazonaws.com/manual/Palo%20Alto%20Location.csv", 9 | "website": "http://www.cityofpaloalto.org/gov/depts/it/open_data/terms_of_use.asp", 10 | "type": "http", 11 | "conform": { 12 | "lon": "Longitude", 13 | "lat": "Latitude", 14 | "number": "Situs Number", 15 | "street": "Loc Street Name", 16 | "type": "csv" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/ga/gordon.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "13129", 5 | "name": "Gordon County", 6 | "state": "Georgia" 7 | }, 8 | "country": "us", 9 | "state": "ga", 10 | "county": "Gordon" 11 | }, 12 | "attribution": "Gordon County", 13 | "data": "http://66.110.220.61/arcgis/rest/services/Addresses/MapServer/0", 14 | "type": "ESRI", 15 | "conform": { 16 | "type": "geojson", 17 | "number": "HOUSE_NO", 18 | "street": "STREET", 19 | "city": "COMMUNITY" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/il/mcdonough.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "17109", 5 | "name": "McDonough County", 6 | "state": "Illinois" 7 | }, 8 | "country": "us", 9 | "state": "il", 10 | "county": "McDonough" 11 | }, 12 | "data": "http://gis.wiu.edu/arcgis/rest/services/mcdonough_highway/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "number", 16 | "street": [ 17 | "name", 18 | "suffix" 19 | ], 20 | "type": "geojson" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/sc/charleston.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "45019", "name": "Charleston County", "state": "South Carolina"}, 4 | "country": "us", 5 | "state": "sc", 6 | "county": "Charleston" 7 | }, 8 | "data": "http://ccgisapps.charlestoncounty.org/arcgis/rest/services/Public_Search/Public_Search/MapServer/1", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "FULL_HOUSE_NUMBER", 13 | "street": ["PRE_DIR", "ST_NAME", "ST_TYPE", "SUF_DIR"], 14 | "city": "POSTAL_TOWN" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sources/us/tx/lubbock.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "48303", "name": "Lubbock County", "state": "Texas"}, 4 | "country": "us", 5 | "state": "tx", 6 | "county": "Lubbock" 7 | }, 8 | "data": "http://216.167.160.18:88/2014/rest/services/2015External/MapServer/0", 9 | "type": "ESRI", 10 | "conform": { 11 | "number": "SitusSNo", 12 | "street": [ 13 | "SitusPrDir", 14 | "SitusSNm", 15 | "SitusPoDir", 16 | "SitusSTp" 17 | ], 18 | "type": "geojson" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/va/loudoun.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51107", 5 | "name": "Loudoun County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Loudoun" 11 | }, 12 | "data": "http://logis.loudoun.gov/GIS/rest/services/COL/LandRecords/MapServer/2", 13 | "type": "ESRI", 14 | "website": "http://logis.loudoun.gov/weblogis/", 15 | "conform": { 16 | "number": "ad_address", 17 | "street": "st_fullname", 18 | "type": "geojson" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/wi/marathon.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55073", 5 | "name": "Marathon County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Marathon" 11 | }, 12 | "data": "http://mcwalis.co.marathon.wi.us/ArcGIS/rest/services/CountyDynamicMap_Internal2/MapServer/9", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HOUSE_NUMBER1", 17 | "street": "FULLNAME", 18 | "accuracy": 1 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/wi/vilas.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55125", 5 | "name": "Vilas County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Vilas" 11 | }, 12 | "data": "http://vcgis.co.vilas.wi.us/arcgis2/rest/services/Address/MapServer/1", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HouseNumber", 17 | "street": "PrimaryName", 18 | "postcode": "Zip", 19 | "city": "ZN" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/ga/bibb.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "13021", 5 | "name": "Bibb County", 6 | "state": "Georgia" 7 | }, 8 | "country": "us", 9 | "state": "ga", 10 | "county": "Bibb" 11 | }, 12 | "data": "http://bibbgis.co.bibb.ga.us/warcgis/rest/services/MBGS/GeneralPurpose/MapServer/3", 13 | "website": "http://bibbgis.co.bibb.ga.us/mapsandapps/", 14 | "type": "ESRI", 15 | "conform": { 16 | "type": "geojson", 17 | "number": "ADDRNUM", 18 | "street": "FULLNAME" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/in/marion_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "18097", 5 | "name": "Marion County", 6 | "state": "Indiana" 7 | }, 8 | "country": "us", 9 | "state": "in", 10 | "county": "Marion" 11 | }, 12 | "data": "http://imaps.indy.gov/arcgis/rest/services/MapIndyProperty/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "stnum", 16 | "street": "full_stname", 17 | "city": "CITY", 18 | "postcode": "ZIPCODE", 19 | "type": "geojson" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/ks/bourbon_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20011", "name": "Bourbon County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Bourbon" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "street", 12 | "postcode": "", 13 | "lon": "x", 14 | "lat": "y" 15 | }, 16 | "data": "http://data.openaddresses.io/cache/us-ks-bourbon_county.csv", 17 | "website": "http://jade.kgs.ku.edu/orka2/MainPage.aspx", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/nemaha_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20131", "name": "Nemaha County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Nemaha" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "street", 12 | "postcode": "", 13 | "lon": "x", 14 | "lat": "y" 15 | }, 16 | "data": "http://data.openaddresses.io/cache/us-ks-nemaha_county.csv", 17 | "website": "http://jade.kgs.ku.edu/orka2/MainPage.aspx", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ms/desoto.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "28033", 5 | "name": "DeSoto County", 6 | "state": "Mississippi" 7 | }, 8 | "country": "us", 9 | "state": "ms", 10 | "county": "DeSoto" 11 | }, 12 | "data": "http://maps.desotocountyms.gov/arcgis/rest/services/Layers/MapServer/82", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "NUMBER", 17 | "street": "ADDR", 18 | "city": "COMMUNITY", 19 | "postcode": "ZIP_CODE" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/nc/avery.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37011", 5 | "name": "Avery County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Avery" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/NC/Avery/MapServer/9", 13 | "type": "ESRI", 14 | "conform": { 15 | "street": [ 16 | "STREET_NM", 17 | "STREET_TYP" 18 | ], 19 | "number": "HOUSE_NUMB", 20 | "type": "geojson" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/nc/caswell.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37033", 5 | "name": "Caswell County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Caswell" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/NC/Caswell/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "street": [ 16 | "ST_NAME", 17 | "ST_TYPE" 18 | ], 19 | "number": "POSTADDRES", 20 | "type": "geojson" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/nc/rockingham.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37157", 5 | "name": "Rockingham County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Rockingham" 11 | }, 12 | "data": "http://arcgis.webgis.net/arcgis/rest/services/NC/Rockingham/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "address_nu", 17 | "street": ["street_nam","street_typ"], 18 | "postcode": "zip" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/va/nelson.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51125", 5 | "name": "Nelson County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Nelson" 11 | }, 12 | "data": "http://vcloud.timmons.com/ArcGIS/rest/services/NelsonWeb/Nelson_Main/MapServer/8", 13 | "type": "ESRI", 14 | "conform": { 15 | "street": [ 16 | "ROAD_NAME", 17 | "SUFFIX" 18 | ], 19 | "number": "ADDR", 20 | "type": "geojson" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/wi/crawford.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55023", 5 | "name": "Crawford County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Crawford" 11 | }, 12 | "data": "https://gis2.msa-ps.com/ArcGIS/rest/services/StreetsAddress/MapServer/22", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HSENO", 17 | "street": "PARCELSTRE", 18 | "postcode": "PZIP", 19 | "city": "TOWN" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/ca/on/city_of_burlington.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "Burlington" 6 | }, 7 | "data": "http://cms.burlington.ca/AssetFactory.aspx?did=30050", 8 | "website": "http://cms.burlington.ca/Page12956.aspx", 9 | "license": "http://cms.burlington.ca/AssetFactory.aspx?did=18762", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "number": "housenum", 14 | "street": [ 15 | "street", 16 | "strtype" 17 | ], 18 | "type": "shapefile" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/il/lake.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "17097", 5 | "name": "Lake County", 6 | "state": "Illinois" 7 | }, 8 | "country": "us", 9 | "state": "il", 10 | "county": "Lake" 11 | }, 12 | "data": "http://maps.lakecountyil.gov/arcgis/rest/services/GISMapping/CommonLayers/MapServer/1", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": ["PLA_NUMBER", "PLA_NUMSUF"], 17 | "street": ["PLA_DIRECT", "PLA_NAME", "PLA_TYPE", "PLA_SUFFIX"] 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/anderson_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20003", "name": "Anderson County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Anderson" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "street", 12 | "postcode": "", 13 | "lon": "x", 14 | "lat": "y" 15 | }, 16 | "data": "http://data.openaddresses.io/cache/us-ks-anderson_county.csv", 17 | "website": "http://jade.kgs.ku.edu/orka2/MainPage.aspx", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/atchison_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20005", "name": "Atchison County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Atchison" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "street", 12 | "postcode": "", 13 | "lon": "x", 14 | "lat": "y" 15 | }, 16 | "data": "http://data.openaddresses.io/cache/us-ks-atchison_county.csv", 17 | "website": "http://jade.kgs.ku.edu/orka2/MainPage.aspx", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/crawford_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20037", "name": "Crawford County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Crawford" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "street", 12 | "postcode": "", 13 | "lon": "x", 14 | "lat": "y" 15 | }, 16 | "data": "http://data.openaddresses.io/cache/us-ks-crawford_county.csv", 17 | "website": "http://jade.kgs.ku.edu/orka2/MainPage.aspx", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/ks/doniphan_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "20043", "name": "Doniphan County", "state": "Kansas"}, 4 | "country": "us", 5 | "state": "ks", 6 | "county": "Doniphan" 7 | }, 8 | "conform": { 9 | "type": "csv", 10 | "number": "NUM", 11 | "street": "street", 12 | "postcode": "", 13 | "lon": "x", 14 | "lat": "y" 15 | }, 16 | "data": "http://data.openaddresses.io/cache/us-ks-doniphan_county.csv", 17 | "website": "http://jade.kgs.ku.edu/orka2/MainPage.aspx", 18 | "type": "http" 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/va/amherst.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51009", 5 | "name": "Amherst County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Amherst" 11 | }, 12 | "data": "http://vcloud.timmons.com/ArcGIS/rest/services/Amherst/Amherst_Weblogistics/MapServer/1", 13 | "type": "ESRI", 14 | "website": "http://amherstgis.timmons.com/", 15 | "conform": { 16 | "number": "address", 17 | "street": "roadname", 18 | "type": "geojson" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/wi/dane.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55025", 5 | "name": "Dane County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Dane" 11 | }, 12 | "data": "https://dcimapapps.countyofdane.com/arcgis/rest/services/Parcels/MapServer/4", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "split": "SITEADDRESS", 17 | "number": "auto_number", 18 | "street": "auto_street", 19 | "accuracy": 2 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/wi/juneau.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55057", 5 | "name": "Juneau County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Juneau" 11 | }, 12 | "data": "https://gis2.msa-ps.com/ArcGIS/rest/services/StreetsAddress/MapServer/2", 13 | "type": "ESRI", 14 | "note": "Number col contains letters & Needs to be reprojected!", 15 | "conform": { 16 | "type": "geojson", 17 | "number": "HOUSENUM", 18 | "street": "STNAME" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/wi/rock.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55105", 5 | "name": "Rock County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Rock" 11 | }, 12 | "data": "http://www.co.rock.wi.us:8080/rockweb/rest/services/OL_E911/addresses_interactive/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "NUMBER_", 17 | "street": "ROAD_NAME", 18 | "city": "TOWN", 19 | "accuracy": 1 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/wv/harrison.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "54033", 5 | "name": "Harrison County", 6 | "state": "West Virginia" 7 | }, 8 | "country": "us", 9 | "state": "wv", 10 | "county": "Harrison" 11 | }, 12 | "data": "http://arcgis.harrisoncountywv.com:6080/arcgis/rest/services/AddressMap/AddressData2014/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "ADDRNUM", 17 | "street": "FULLNAME", 18 | "city": "MUNICIPALITY" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/fl/gulf.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "12045", 5 | "name": "Gulf County", 6 | "state": "Florida" 7 | }, 8 | "country": "us", 9 | "state": "fl", 10 | "county": "Gulf" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "HouseNumber", 15 | "street": "PrimaryName" 16 | }, 17 | "data": "http://arcgis4.roktech.net/arcgis/rest/services/gulf/GoMaps4/MapServer/2", 18 | "type": "ESRI", 19 | "website": "http://maps2.roktech.net/GulfGoMaps4/?mapName=GIS" 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/ks/shawnee_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20177", 5 | "name": "Shawnee County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Shawnee" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "HOUSENUM", 15 | "split": "PADDRESS", 16 | "street": "auto_street", 17 | "postcode": "ZipCode" 18 | }, 19 | "data": "http://gis.snco.us/ArcGIS/rest/services/Basemap_102100/MapServer/1", 20 | "type": "ESRI" 21 | } -------------------------------------------------------------------------------- /sources/us/mi/troy.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "mi", 5 | "city": "Troy" 6 | }, 7 | "data": "http://gis.troymi.gov/arcgis/rest/services/LandManagement/MapServer/12", 8 | "website": "http://www.troymi.gov/Resources/Maps.aspx", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "PropAddressNumber", 13 | "street": [ 14 | "PropAddressDir", 15 | "PropAddressStreet" 16 | ], 17 | "postcode": "PropAddressZip", 18 | "city": "PropAddressCity", 19 | "region": "PropAddressState", 20 | "id": "PIN88" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sources/us/ms/simpson.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "28127", 5 | "name": "Simpson County", 6 | "state": "Mississippi" 7 | }, 8 | "country": "us", 9 | "state": "ms", 10 | "county": "Simpson" 11 | }, 12 | "type": "ESRI", 13 | "data": "http://gis.cmpdd.org/arcgis/rest/services/Simpson/SimpsonHealth/MapServer/4", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "STREET_NUM", 17 | "street": "STREET", 18 | "postcode": "39073", 19 | "city": "CITY" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /sources/us/nc/alleghany.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37005", 5 | "name": "Alleghany County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Alleghany" 11 | }, 12 | "website": "http://arcgis.webgis.net/nc/Alleghany/", 13 | "data": "http://arcgis.webgis.net/arcgis/rest/services/NC/Alleghany/MapServer/10", 14 | "type": "ESRI", 15 | "conform": { 16 | "street": "PAR_RDNAME", 17 | "number": "PAR_ADDR", 18 | "type": "geojson" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/wi/st_croix.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55109", 5 | "name": "Saint Croix County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Saint Croix" 11 | }, 12 | "data": "https://services1.arcgis.com/HuQMFGE1RTLjFtYd/ArcGIS/rest/services/AddressPoints/FeatureServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "ADDRNUM", 17 | "street": "FULLNAME", 18 | "postcode": "ZIPCODE" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/ga/sumter.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "13261", 5 | "name": "Sumter County", 6 | "state": "Georgia" 7 | }, 8 | "country": "us", 9 | "state": "ga", 10 | "county": "Sumter" 11 | }, 12 | "attribution": "Sumter County", 13 | "data": "http://web3.kcsgis.com/kcsgis/rest/services/Americus_SumterCo_GA/Public/MapServer/0", 14 | "type": "ESRI", 15 | "conform": { 16 | "type": "geojson", 17 | "number": "ADDRNUM", 18 | "street": "FULLNAME", 19 | "postcode": "ZIP" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/il/whiteside.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "17195", 5 | "name": "Whiteside County", 6 | "state": "Illinois" 7 | }, 8 | "country": "us", 9 | "state": "il", 10 | "county": "Whiteside" 11 | }, 12 | "data": "http://services.arcgis.com/l0M0OC6J9QAHCiGx/ArcGIS/rest/services/TaxParcelQuery/FeatureServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "split": "PSTLADDRESS", 17 | "number": "auto_number", 18 | "street": "auto_street" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/ca/on/city_of_guelph.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "Guelph" 6 | }, 7 | "data": "http://openguelph.wpengine.com/wp-content/uploads/2014/05/Addresses.zip", 8 | "website": "http://openguelph.wpengine.com/dataset/city-of-guelph-addresses/", 9 | "license": "http://openguelph.wpengine.com/open-data-guelph/city-of-guelph-open-government-licence/", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "street": "streetname", 14 | "number": "streetno", 15 | "type": "shapefile" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /sources/fr/bano.json: -------------------------------------------------------------------------------- 1 | { 2 | "skip": true, 3 | "note": "CSV Format, replaced with per-department sources June 2015", 4 | "coverage": { 5 | "country": "fr" 6 | }, 7 | "data": "https://github.com/osm-fr/bano-data/archive/master.zip", 8 | "website": "http://wiki.openstreetmap.org/wiki/WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)", 9 | "license": { 10 | "url": "http://opendatacommons.org/licenses/odbl/1.0/", 11 | "attribution": true, 12 | "share-alike": true 13 | }, 14 | "compression": "zip", 15 | "type": "http", 16 | "year": "2014" 17 | } 18 | -------------------------------------------------------------------------------- /sources/us/al/shelby.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "01117", 5 | "name": "Shelby County", 6 | "state": "Alabama" 7 | }, 8 | "country": "us", 9 | "state": "al", 10 | "county": "Shelby" 11 | }, 12 | "data": "http://maps.shelbyal.com/arcgis/rest/services/ShelbyALcache/MapServer/0", 13 | "type": "ESRI", 14 | "attribution": "Shelby County", 15 | "conform": { 16 | "type": "geojson", 17 | "number": "Add_Num", 18 | "street": "Full_Street_Name", 19 | "postcode": "Zip5" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /sources/us/co/moffat.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "08081", 5 | "name": "Moffat County", 6 | "state": "Colorado" 7 | }, 8 | "country": "us", 9 | "state": "co", 10 | "county": "Moffat" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "STREETNO", 15 | "street": "STREETNAME", 16 | "city": "CITY", 17 | "postcode": "ZIPCODE" 18 | }, 19 | "data": "http://gisweb.co.rio-blanco.co.us/arcgis/rest/services/MoffatCOfeatures/MapServer/22", 20 | "type": "ESRI" 21 | } 22 | -------------------------------------------------------------------------------- /sources/us/de/kent.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "10001", 5 | "name": "Kent County", 6 | "state": "Delaware" 7 | }, 8 | "country": "us", 9 | "state": "de", 10 | "county": "Kent" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "Address", 15 | "street": "Roadname", 16 | "unit": "Apartment", 17 | "postcode": "Zipcode", 18 | "city": "City" 19 | }, 20 | "data": "http://co.kent.de.us/arcgis/rest/services/Structure/MapServer/0", 21 | "type": "ESRI" 22 | } 23 | -------------------------------------------------------------------------------- /sources/us/la/iberia.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "22045", 5 | "name": "Iberia Parish", 6 | "state": "Louisiana" 7 | }, 8 | "country": "us", 9 | "state": "la", 10 | "county": "Iberia" 11 | }, 12 | "data": "http://services.geoportalmaps.com/arcgis/rest/services/Iberia_Parcels/MapServer/3", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "Address_Nu", 17 | "street": [ 18 | "Street_Dir", 19 | "Street_Nam" 20 | ] 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sources/us/nv/lander.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "32015", 5 | "name": "Lander County", 6 | "state": "Nevada" 7 | }, 8 | "country": "us", 9 | "state": "nv", 10 | "county": "Lander" 11 | }, 12 | "data": "http://landernv.mygisonline.com/arcgis/rest/services/NV_Lander/LanderNVfeatures/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "split": "mailing", 16 | "number": "auto_number", 17 | "street": "auto_street", 18 | "type": "geojson", 19 | "postcode": "zip" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/oh/montgomery.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "39113", "name": "Montgomery County", "state": "Ohio"}, 4 | "country": "us", 5 | "state": "oh", 6 | "county": "Montgomery" 7 | }, 8 | "data": "http://www.mcegisohio.org/arcgis/rest/services/AUDGIS_B1/MapServer/1", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "ADDR_NUM", 13 | "street": ["PRE_DIR", "PRE_TYPE", "STR_NAME", "STR_TYPE", "SUF_DIR"], 14 | "city": "CITY", 15 | "postcode": "ZIP", 16 | "region": "STATE" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/tn/cheatham.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "47021", 5 | "name": "Cheatham County", 6 | "state": "Tennessee" 7 | }, 8 | "country": "us", 9 | "state": "tn", 10 | "county": "Cheatham" 11 | }, 12 | "data": "http://gismapper.apsu.edu/arcgis/rest/services/Cheatham/CheathamViewer/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "housenum", 17 | "street": "street_nam", 18 | "region": "state", 19 | "postcode": "zip" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /sources/au/city_of_canberra.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "AU", 4 | "state": "ACT", 5 | "city": "Canberra" 6 | }, 7 | "data": "http://www.actmapi.act.gov.au/actmapi/rest/services/epd_ssl/addresses/MapServer/0", 8 | "website": "http://www.actmapi.act.gov.au/html5.html", 9 | "attribution": "ACT Government, Australia", 10 | "type": "ESRI", 11 | "conform": { 12 | "type": "geojson", 13 | "number": "STREET_NUMBER", 14 | "street": [ 15 | "STREET_NAME", 16 | "STREET_TYPE" 17 | ], 18 | "district": "DISTRICT" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/ca/on/town_of_oakville.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "Oakville" 6 | }, 7 | "data": "http://opendata.oakville.ca/Address_Points/Address_Points.shp.zip", 8 | "website": "http://oakville.ca/data/address-points.html", 9 | "license": "http://oakville.ca/data/open_data_licence.html", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "number": "STREET_NUM", 14 | "street": [ 15 | "STREET_NAM", 16 | "STREET_TYP" 17 | ], 18 | "type": "shapefile" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/al/calhoun.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "01015", 5 | "name": "Calhoun County", 6 | "state": "Alabama" 7 | }, 8 | "country": "us", 9 | "state": "al", 10 | "county": "Calhoun" 11 | }, 12 | "data": "http://gis.calhouncounty.org/arcgis2/rest/services/ParcelViewer/MapServer/68", 13 | "type": "ESRI", 14 | "attribution": "Calhoun County", 15 | "conform": { 16 | "street": "street_name", 17 | "number": "street_num", 18 | "type": "geojson", 19 | "postcode": "zipcode_1" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/al/tuscaloosa.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "01125", 5 | "name": "Tuscaloosa County", 6 | "state": "Alabama" 7 | }, 8 | "country": "us", 9 | "state": "al", 10 | "county": "Tuscaloosa" 11 | }, 12 | "type": "ESRI", 13 | "data": "http://services1.arcgis.com/DADyRNMb7tdzKmmq/arcgis/rest/services/Addresses/FeatureServer/0", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HNUM", 17 | "street": "STREET", 18 | "city": "POSTAL_CIT", 19 | "postcode": "ZIP" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/az/pima.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "04019", 5 | "name": "Pima County", 6 | "state": "Arizona" 7 | }, 8 | "country": "us", 9 | "state": "az", 10 | "county": "Pima" 11 | }, 12 | "data": "https://maps2.tucsonaz.gov/arcgis/rest/services/CityManager/cmStreetcarDevOpp_AddressParcels/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "STREET_NO", 17 | "street": "STREET", 18 | "postcode": "ZIPCODE", 19 | "city": "ZIPCITY" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/ky/oldham.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "21185", 5 | "name": "Oldham County", 6 | "state": "Kentucky" 7 | }, 8 | "country": "us", 9 | "state": "ky", 10 | "county": "Oldham" 11 | }, 12 | "data": "http://oldhamgis.org/ArcGIS/rest/services/Addresses/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "houseno", 16 | "street": [ 17 | "str_name", 18 | "street_typ" 19 | ], 20 | "type": "geojson", 21 | "postcode": "zipcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/nm/bernalillo.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "35001", "name": "Bernalillo County", "state": "New Mexico"}, 4 | "country": "us", 5 | "state": "nm", 6 | "county": "Bernalillo" 7 | }, 8 | "data": "http://amus.bernco.gov/ArcGIS/rest/services/AdvancedPublic/MapServer/46", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "SITUSNUM", 13 | "street": ["SITUSSTR", "SITUSSTRTY", "SITUSDIREC"], 14 | "city": "SITUSCITY", 15 | "postcode": "SITUSZIP", 16 | "region": "SITUSSTATE" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/oh/union.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "39159", "name": "Union County", "state": "Ohio"}, 4 | "country": "us", 5 | "state": "oh", 6 | "county": "Union" 7 | }, 8 | "data": "http://www4.co.union.oh.us/unioncountyohio/rest/services/Address/MapServer/0", 9 | "type": "ESRI", 10 | "conform": { 11 | "number": "HouseNumbe", 12 | "street": ["PrefixDire", "PrefixType", "StreetName", "StreetType", "SuffixDire"], 13 | "city": "City", 14 | "region": "State", 15 | "postcode": "zip", 16 | "type": "geojson" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/wi/portage.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55097", 5 | "name": "Portage County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Portage" 11 | }, 12 | "data": "http://gisinfo.co.portage.wi.us:6080/arcgis/rest/services/RealEstate/Operational/MapServer/1", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HouseNumber", 17 | "street": "FullName", 18 | "postcode": "Zipcode", 19 | "city": "City" 20 | } 21 | } -------------------------------------------------------------------------------- /scripts/cz/README.md: -------------------------------------------------------------------------------- 1 | # Czech Address Data 2 | 3 | ## Downloading 4 | 5 | 1. visit [this link](http://vdp.cuzk.cz/vdp/ruian/vymennyformat/vyhledej?vf.pu=S&_vf.pu=on&_vf.pu=on&vf.cr=U&vf.up=OB&vf.ds=Z&vf.vu=Z&_vf.vu=on&_vf.vu=on&_vf.vu=on&_vf.vu=on&vf.uo=O&ob.kod=531723&search=Vyhledat) 6 | 2. fill out the form [this way](image.png) 7 | 3. click on 'Seznam linků' 8 | 4. download the URLs (I like to use `aria2c` for this). Place .gz files in a subdirectory called `data` 9 | 5. use the Makefile (`make process`) to process the results. It takes a while. 10 | 6. combine the results with `make combine` 11 | 7. `make upload` 12 | 8. update source JSON 13 | -------------------------------------------------------------------------------- /sources/us/ia/dubuque.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "19061", 5 | "name": "Dubuque County", 6 | "state": "Iowa" 7 | }, 8 | "country": "us", 9 | "state": "ia", 10 | "county": "Dubuque" 11 | }, 12 | "data": "http://gis.dbqco.org/arcgis/rest/services/BaseMaps/PublicSafety/MapServer/2", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "TESTHNUM", 17 | "street": "ROAD", 18 | "city": "CITY", 19 | "postcode": "ZIP_CODE", 20 | "id": "ID" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sources/us/mn/clearwater.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "27029", 5 | "name": "Clearwater County", 6 | "state": "Minnesota" 7 | }, 8 | "country": "us", 9 | "state": "mn", 10 | "county": "Clearwater" 11 | }, 12 | "data": "http://map.co.clearwater.mn.us/arcgis/rest/services/Clearwater/ClearwaterAll_LINK/MapServer/6", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "bld_num", 17 | "street": "basename", 18 | "postcode": "Zip_Code", 19 | "city": "city" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/nc/cary.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37183", 5 | "name": "Wake County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Wake", 11 | "city": "Cary" 12 | }, 13 | "data": "ftp://199.72.17.76/GIS/CaryBuildings.zip", 14 | "type": "ftp", 15 | "compression": "zip", 16 | "conform": { 17 | "number": "StreetNumb", 18 | "street": "StreetWhol", 19 | "type": "shapefile", 20 | "city": "PhyCty", 21 | "postcode": "PhyZip" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/ca/ab/banff.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "ab", 5 | "city": "Banff" 6 | }, 7 | "data": "https://banffdata.blob.core.windows.net/converted/shp.AddressPoints.zip", 8 | "website": "http://www.banffopendata.ca/DataBrowser/BanffData/AddressPoints", 9 | "license": "http://www.banffopendata.ca/Home/About", 10 | "type": "http", 11 | "compression": "zip", 12 | "attribution": "City of Banff", 13 | "conform": { 14 | "type": "shapefile", 15 | "number": "STREET_NUM", 16 | "street": "STREET_NAM", 17 | "unit": "SUITE" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /sources/us/co/adams.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "08001", 5 | "name": "Adams County", 6 | "state": "Colorado" 7 | }, 8 | "country": "us", 9 | "state": "co", 10 | "county": "Adams" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "ST_Num", 15 | "street": [ 16 | "ST_Dir", 17 | "ST_Name", 18 | "ST_Type" 19 | ] 20 | }, 21 | "data": "http://gisapp.adcogov.org/arcgis/rest/services/Public/AdamsCountyBasic/MapServer/32", 22 | "type": "ESRI" 23 | } 24 | -------------------------------------------------------------------------------- /sources/us/co/pitkin.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "08097", 5 | "name": "Pitkin County", 6 | "state": "Colorado" 7 | }, 8 | "country": "us", 9 | "state": "co", 10 | "county": "Pitkin" 11 | }, 12 | "attribution": "Pitkin County", 13 | "data": "https://maps.pitkincounty.com/download/AddressPoint/shp/AddressPoint.zip", 14 | "type": "http", 15 | "compression": "zip", 16 | "conform": { 17 | "number": "street_nu", 18 | "street": "name", 19 | "type": "shapefile", 20 | "postcode": "zip" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/in/hamilton.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "18057", 5 | "name": "Hamilton County", 6 | "state": "Indiana" 7 | }, 8 | "country": "us", 9 | "state": "in", 10 | "county": "Hamilton" 11 | }, 12 | "data": "http://gis.hamiltoncounty.in.gov/ArcGIS/rest/services/E911/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "loc_no", 16 | "street": [ 17 | "loc_st", 18 | "loc_st_suf" 19 | ], 20 | "type": "geojson", 21 | "postcode": "loc_zip" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/ks/jefferson_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20087", 5 | "name": "Jefferson County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Jefferson" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "NUMBER", 15 | "street": [ 16 | "STR_NAM", 17 | "STR_TYPE" 18 | ], 19 | "postcode": "ZIP5" 20 | }, 21 | "data": "http://www.jfksgis.com/arcgis/rest/services/Address911/MapServer/0", 22 | "type": "ESRI" 23 | } -------------------------------------------------------------------------------- /sources/us/ky/mccracken.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "21145", 5 | "name": "McCracken County", 6 | "state": "Kentucky" 7 | }, 8 | "country": "us", 9 | "state": "ky", 10 | "county": "McCracken" 11 | }, 12 | "data": "http://map-gis.paducahky.gov/arcgis/rest/services/EmergencyBaseMap/MapServer/4", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "STNUM", 17 | "street": [ 18 | "STPREFIX", 19 | "STNAME", 20 | "STTYPE" 21 | ] 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/ny/erie.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "ny", 5 | "US Census": { 6 | "geoid": "36029" 7 | }, 8 | "county":"erie" 9 | 10 | }, 11 | "website": "http://gis2.erie.gov/HTML5/ErieCountyNY/", 12 | "data": "http://gis2.erie.gov/arcgis/rest/services/ErieCountyNY/MapServer/2", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "id": "PIN", 17 | "street": "ADDNAME", 18 | "number": "ADDNUM", 19 | "city": "CITYTOWN", 20 | "postcode": "ZIP", 21 | "accuracy":2 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /sources/us/or/portland.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "city": "Portland", 5 | "state": "or" 6 | }, 7 | "compression": "zip", 8 | "conform": { 9 | "number": "address_number", 10 | "lon": "x", 11 | "lat": "y", 12 | "type": "csv", 13 | "street": [ 14 | "str_predir_code", 15 | "street_name", 16 | "street_type_code" 17 | ], 18 | "srs": "EPSG:2913" 19 | }, 20 | "skip": false, 21 | "note": "zipped csv", 22 | "data": "ftp://ftp02.portlandoregon.gov/CivicApps/address.zip", 23 | "type": "ftp" 24 | } -------------------------------------------------------------------------------- /sources/us/pa/clearfield.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "42033", 5 | "name": "Clearfield County", 6 | "state": "Pennsylvania" 7 | }, 8 | "country": "us", 9 | "state": "pa", 10 | "county": "Clearfield" 11 | }, 12 | "data": "http://gis.clearfieldco.org/arcgis/rest/services/Web_Map/MapServer/1", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "BLDGNUMBER", 17 | "street": [ 18 | "PREDIR", 19 | "STRNAME", 20 | "STRTYPE" 21 | ] 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/sc/anderson.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "45007", 5 | "name": "Anderson County", 6 | "state": "South Carolina" 7 | }, 8 | "country": "us", 9 | "state": "sc", 10 | "county": "Anderson" 11 | }, 12 | "data": "http://propertyviewer.andersoncountysc.org/arcgis/rest/services/Address_PropertyViewer/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HOUSE_NUMB", 17 | "street": "RDNAME", 18 | "city": "PO_NAME", 19 | "postcode": "ZIP" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/va/new_kent.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51127", 5 | "name": "New Kent County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "New Kent" 11 | }, 12 | "data": "http://vcloud.timmons.com/ArcGIS/rest/services/NewKent/NewKent/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "SAN", 17 | "street": [ 18 | "PRD", 19 | "STN", 20 | "STS", 21 | "POD" 22 | ] 23 | } 24 | } -------------------------------------------------------------------------------- /sources/us/wy/laramie.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "56021", 5 | "name": "Laramie County", 6 | "state": "Wyoming" 7 | }, 8 | "country": "us", 9 | "state": "wy", 10 | "county": "Laramie" 11 | }, 12 | "data": "http://arcims.laramiecounty.com/arcgis/rest/services/Floodplains/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "address_id", 16 | "street": [ 17 | "st_name", 18 | "st_type" 19 | ], 20 | "type": "geojson", 21 | "postcode": "zip" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/ca/tuolumne.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "06109", 5 | "name": "Tuolumne County", 6 | "state": "California" 7 | }, 8 | "country": "us", 9 | "state": "ca", 10 | "county": "Tuolumne" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "HOUSE_NUM", 15 | "street": "STREET_NAME", 16 | "postcode": "zip_code" 17 | }, 18 | "attribution": "Tuolumne County", 19 | "data": "http://gis.co.tuolumne.ca.us:8093/arcgis/rest/services/Address_Parcels/MapServer/0", 20 | "type": "ESRI" 21 | } 22 | -------------------------------------------------------------------------------- /sources/us/de/sussex.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "10005", 5 | "name": "Sussex County", 6 | "state": "Delaware" 7 | }, 8 | "country": "us", 9 | "state": "de", 10 | "county": "Sussex" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "HouseInt", 15 | "street": "PrimaryName", 16 | "postcode": "Zip", 17 | "city": "Alias1" 18 | }, 19 | "data": "http://maps.sussexcountyde.gov/gis/rest/services/County_Layers/Sussex_County_Addresses_Streets/MapServer/0", 20 | "type": "ESRI" 21 | } 22 | -------------------------------------------------------------------------------- /sources/us/mn/anoka.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "27003", 5 | "name": "Anoka County", 6 | "state": "Minnesota" 7 | }, 8 | "country": "us", 9 | "state": "mn", 10 | "county": "Anoka" 11 | }, 12 | "data": "http://gisservices.co.anoka.mn.us/anoka_gis/rest/services/Address_Pts/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "loc_numb", 16 | "street": [ 17 | "loc_name", 18 | "loc_type" 19 | ], 20 | "type": "geojson", 21 | "postcode": "loc_zip" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/mt/park.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "30067", 5 | "name": "Park County", 6 | "state": "Montana" 7 | }, 8 | "country": "us", 9 | "state": "mt", 10 | "county": "Park" 11 | }, 12 | "data": "http://www.parkcounty.org/arcgis/rest/services/Maps/Clerk_Recorder_Web_Map/MapServer/3", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "number_", 16 | "street": [ 17 | "streetname", 18 | "suftype" 19 | ], 20 | "type": "geojson", 21 | "postcode": "zipcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/sc/berkeley.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "45015", 5 | "name": "Berkeley County", 6 | "state": "South Carolina" 7 | }, 8 | "country": "us", 9 | "state": "sc", 10 | "county": "Berkeley" 11 | }, 12 | "data": "http://gis.berkeleycountysc.gov/arcgis/rest/services/mobile/base_test/MapServer/3", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "num", 16 | "street": [ 17 | "addr_sn", 18 | "addr_st" 19 | ], 20 | "type": "geojson", 21 | "postcode": "zip" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/sd/statewide.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "46", 5 | "state": "South Dakota" 6 | }, 7 | "country": "us", 8 | "state": "sd" 9 | }, 10 | "data": "http://arcgis.sd.gov/arcgis/rest/services/BIT/AddressViewer/MapServer/0", 11 | "type": "ESRI", 12 | "conform": { 13 | "number": "house_num", 14 | "street": [ 15 | "StreetName", 16 | "StreetPosdirectional", 17 | "StreetPostType" 18 | ], 19 | "city": "CITY", 20 | "postcode": "ZipCode", 21 | "type": "geojson" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/va/city_of_norfolk.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51710", 5 | "name": "City of Norfolk", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "city": "Norfolk" 11 | }, 12 | "data": "http://con.orf.opendata.arcgis.com/datasets/e946260f3b23471fa0e3657034bac382_0.zip", 13 | "website": "http://con.orf.opendata.arcgis.com/", 14 | "type": "http", 15 | "compression": "zip", 16 | "conform": { 17 | "type": "shapefile", 18 | "number": "HSE_NUM", 19 | "street": "STREET" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/va/middlesex.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51119", 5 | "name": "Middlesex County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Middlesex" 11 | }, 12 | "data": "http://www.co.middlesex.va.us/test2/12112012address.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "website": "http://www.co.middlesex.va.us/index_911GIS_Downloads.html", 16 | "conform": { 17 | "number": "address", 18 | "street": "roadname", 19 | "type": "shapefile" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/wv/raleigh.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "53031", 5 | "name": "Raleigh County", 6 | "state": "West Virginia" 7 | }, 8 | "country": "us", 9 | "state": "wv", 10 | "county": "Raleigh" 11 | }, 12 | "type": "ESRI", 13 | "data": "http://services.arcgis.com/7qDWTH3pTiLOFaZS/arcgis/rest/services/Raleigh_Co_EOC_Address_Sites/FeatureServer/0", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "ADDR_LABEL", 17 | "street": "SA_STREET", 18 | "city": "TOWN", 19 | "postcode": "ZIP" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/ca/sk/regina.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "sk", 5 | "city": "Regina" 6 | }, 7 | "data": "https://reginaopendata.blob.core.windows.net/opendata/Address/SHP_ZIP/shp.AddressPoint.zip", 8 | "website": "http://openregina.cloudapp.net/DataBrowser/OpenRegina/AddressPoint#param=NOFILTER--DataView--Results", 9 | "license": "http://www.regina.ca/residents/open-government/data/terms/index.html", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "number": "BUILDING", 14 | "street": "STREET", 15 | "type": "shapefile" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /sources/us/fl/leon.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "12073", 5 | "name": "Leon County", 6 | "state": "Florida" 7 | }, 8 | "country": "us", 9 | "state": "fl", 10 | "county": "Leon" 11 | }, 12 | "data": "http://tlcgisinter.leoncountyfl.gov/arcgis/rest/services/Public/TLC_Inter_OverlayGMapLabel_D_WM/MapServer/351", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "NAME", 19 | "TYPE", 20 | "SUFFIX" 21 | ] 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/oh/medina.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "39103", "name": "Medina County", "state": "Ohio"}, 4 | "country": "us", 5 | "state": "oh", 6 | "county": "Medina" 7 | }, 8 | "data": "http://www.gisdata.co.medina.oh.us/taxmaps/parcel_address_points_nad83_shapefile.zip", 9 | "website": "http://www.gisdata.co.medina.oh.us/taxmaps/", 10 | "license": "http://www.gisdata.co.medina.oh.us/taxmaps/", 11 | "type": "http", 12 | "year": "2014", 13 | "compression": "zip", 14 | "note": "License states it must accompany the data when distributed. License included in shapefile" 15 | } 16 | -------------------------------------------------------------------------------- /sources/us/ok/carter-county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "40019", "name": "Carter County", "state": "Oklahoma"}, 4 | "country": "us", 5 | "state": "ok", 6 | "county": "Carter" 7 | }, 8 | "conform": { 9 | "type": "geojson", 10 | "number": "ADDRESS", 11 | "street": "ROADNAME", 12 | "postcode": "ZIPCODE", 13 | "city": "COMMUNITY" 14 | }, 15 | "attribution": "Kern, Cleveland, Canadian, Logan Counties", 16 | "data": "http://ardmoregis.ardmorecity.org/arcgis/rest/services/ARDMORE_GIS/ARD_ADDRESS_PARCEL/MapServer/0", 17 | "type": "ESRI" 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/sc/horry.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "45051", 5 | "name": "Horry County", 6 | "state": "South Carolina" 7 | }, 8 | "country": "us", 9 | "state": "sc", 10 | "county": "Horry" 11 | }, 12 | "data": "http://www.horrycounty.org/gisweb/rest/services/Public/AddressPoints/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "StreetNum", 17 | "street": "STREETNAME", 18 | "postcode": "ZIPCODE", 19 | "city": "CITY", 20 | "region": "STATE" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/wi/lincoln.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55069", 5 | "name": "Lincoln County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Lincoln" 11 | }, 12 | "data": "https://gis2.msa-ps.com/ArcGIS/rest/services/StreetsAddress/MapServer/49", 13 | "type": "ESRI", 14 | "note": "Number col contains letters", 15 | "conform": { 16 | "type": "geojson", 17 | "number": "ADDRNO", 18 | "street": "FULLROADNM", 19 | "postcode": "ZIP5", 20 | "city": "CITY" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/ca/on/york_region.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "york region" 6 | }, 7 | "data": "http://data.openaddresses.io/cache/ca-on-york_region.zip", 8 | "website": "http://www.york.ca/opendatalist/", 9 | "attribution": "York Region", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "number": ["ADDRESS_NU","ADD_NUM_SU"], 14 | "street": "FULL_STREE", 15 | "postcode": "MAIL_POSTA", 16 | "type": "shapefile" 17 | }, 18 | "skip": true, 19 | "note": "cached data not valid zip and will be replaced" 20 | } 21 | -------------------------------------------------------------------------------- /sources/ca/yk/whitehorse.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "yk", 5 | "city": "Whitehorse" 6 | }, 7 | "data": "http://ww3.whitehorse.ca/features/gis/open_data/Administration/Parcels_Filtered_Address_from_Diamond.zip", 8 | "website": "http://data.whitehorse.ca/", 9 | "type": "http", 10 | "compression": "zip", 11 | "conform": { 12 | "file": "Parcels_Filtered_Address_from_Diamond/DBO_Parcels_Filtered_Address_from_Diamond.shp", 13 | "split": "address", 14 | "number": "auto_number", 15 | "street": "auto_street", 16 | "type": "shapefile-polygon" 17 | } 18 | } -------------------------------------------------------------------------------- /sources/de/nw/city_of_cologne.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "de", 4 | "state": "nw", 5 | "city": "Köln" 6 | }, 7 | "data": "http://www.offenedaten-koeln.de/sites/default/files/Adresse.zip", 8 | "website": "http://www.offenedaten-koeln.de/", 9 | "license": { 10 | "text": "CC BY 3.0 DE", 11 | "url": "https://creativecommons.org/licenses/by/3.0/de/", 12 | "attribution": true, 13 | "share-alike": false, 14 | "attribution name": "Stadt Köln" 15 | }, 16 | "compression": "zip", 17 | "type": "http", 18 | "conform": { 19 | "type": "shapefile", 20 | "postcode": "PLZ", 21 | "street": "STRASSE", 22 | "number": "HAUSNR" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /sources/us/mn/otter_tail.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "27111", 5 | "name": "Otter Tail County", 6 | "state": "Minnesota" 7 | }, 8 | "country": "us", 9 | "state": "mn", 10 | "county": "Otter Tail" 11 | }, 12 | "data": "http://www.ottertailcounty.net/arcgiswa/rest/services/Address_Roads/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "bld_num", 16 | "street": [ 17 | "st_name", 18 | "st_type" 19 | ], 20 | "type": "geojson", 21 | "postcode": "otczip" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/nm/dona_ana.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "35013", 5 | "name": "Doña Ana County", 6 | "state": "New Mexico" 7 | }, 8 | "country": "us", 9 | "state": "nm", 10 | "county": "Doña Ana" 11 | }, 12 | "data": "http://maps.donaanacounty.org/arcgis/rest/services/DACGeoData/DACGeoData/MapServer/6", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "ADDRESS", 17 | "street": [ 18 | "PREDIR", 19 | "STREETNAME", 20 | "ST_SUFFIX" 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /sources/us/tx/denton.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "48121", 5 | "name": "Denton County", 6 | "state": "Texas" 7 | }, 8 | "country": "us", 9 | "state": "tx", 10 | "county": "Denton" 11 | }, 12 | "data": "http://services.arcgis.com/9dTWrhPzuDPnUVXr/ArcGIS/rest/services/County_Parcels/FeatureServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "SITUS_NUM", 17 | "street": "SITUS_STRE", 18 | "city": "CITY", 19 | "postcode": "ZIP", 20 | "region": "STATE" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/va/city_of_radford.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51750", 5 | "name": "City of Radford", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "city": "Radford" 11 | }, 12 | "data": "http://radfordgis.radford.va.us/arcgiscloud/rest/services/Realestate1/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "addrnum", 16 | "street": [ 17 | "stname", 18 | "STABBRTYPE" 19 | ], 20 | "type": "geojson", 21 | "postcode": "addrzip" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/wi/calumet.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55015", 5 | "name": "Calumet County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Calumet" 11 | }, 12 | "data": "ftp://liouser:l!oguest1@ftp.co.calumet.wi.us/websitedata/CalumetAddressPts.zip", 13 | "type": "ftp", 14 | "compression": "zip", 15 | "conform": { 16 | "file": "AddressPoint.shp", 17 | "type": "shapefile", 18 | "number": "ADDRNUM", 19 | "street": "FULLNAME", 20 | "city": "MUNICIPALI" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/wi/kenosha.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55059", 5 | "name": "Kenosha County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Kenosha" 11 | }, 12 | "data": "http://kc-web-01.kenoshacounty.org/arcgis/rest/services/Interactive_Mapping/AddressPoints/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "NAME", 19 | "TYPE" 20 | ], 21 | "city": "Muni" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/nl/countrywide.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "ISO 3166": { 4 | "alpha2": "NL", 5 | "country": "Netherlands" 6 | }, 7 | "country": "nl" 8 | }, 9 | "data": "https://www.dropbox.com/s/8uaqry2w657p44n/bagadres.zip?dl=1", 10 | "website": "http://www.nlextract.nl", 11 | "type": "http", 12 | "compression": "zip", 13 | "conform": { 14 | "lon": "lon", 15 | "lat": "lat", 16 | "number": ["huisletter", "huisnummer","huisnummertoevoeging"], 17 | "street": "openbareruimte", 18 | "postcode": "postcode", 19 | "city": "woonplaats", 20 | "district":"gemeente", 21 | "region": "provincie", 22 | "type": "csv", 23 | "csvsplit": ";" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /sources/us/co/gilpin.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "08047", 5 | "name": "Gilpin County", 6 | "state": "Colorado" 7 | }, 8 | "country": "us", 9 | "state": "co", 10 | "county": "Gilpin" 11 | }, 12 | "attribution": "Gilpin County", 13 | "data": "https://maps.digitaldataservices.com/Clients/GILP/Data/SiteAddressPoint.zip", 14 | "license": "", 15 | "year": "", 16 | "type": "http", 17 | "compression": "zip", 18 | "conform": { 19 | "number": "addrnum", 20 | "street": "fullname", 21 | "type": "shapefile" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/co/la_plata.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "08067", 5 | "name": "La Plata County", 6 | "state": "Colorado" 7 | }, 8 | "country": "us", 9 | "state": "co", 10 | "county": "La Plata" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "SITE_NUM", 15 | "street": [ 16 | "SITE_DR", 17 | "SITE_ST", 18 | "SITE_MD" 19 | ], 20 | "id": "APN" 21 | }, 22 | "data": "http://lpcgis.laplata.co.us/arcgis/rest/services/Map_LayersJS/MapServer/66", 23 | "type": "ESRI" 24 | } 25 | -------------------------------------------------------------------------------- /sources/us/id/kootenai.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "16055", 5 | "name": "Kootenai County", 6 | "state": "Idaho" 7 | }, 8 | "country": "us", 9 | "state": "id", 10 | "county": "Kootenai" 11 | }, 12 | "data": "http://kcearth.kcgov.us/ws/rest/services/Dispatch_Dynamic_KE/MapServer/33", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HOUSE_NUM", 17 | "street": [ 18 | "PRE_DIR", 19 | "ST_NAME", 20 | "ST_TYPE" 21 | ], 22 | "city": "CITY" 23 | } 24 | } -------------------------------------------------------------------------------- /sources/us/ks/douglas.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20045", 5 | "name": "Douglas County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Douglas" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "ADDNUM1", 15 | "street": [ 16 | "PRE_DIR", 17 | "STR_NAM", 18 | "STR_TYPE" 19 | ], 20 | "postcode": "ZIP5" 21 | }, 22 | "data": "http://gis.lawrenceks.org/arcgis/rest/services/AddressPoints/MapServer/0", 23 | "type": "ESRI" 24 | } -------------------------------------------------------------------------------- /sources/us/ne/dixon.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "31051", 5 | "name": "Dixon County", 6 | "state": "Nebraska" 7 | }, 8 | "country": "us", 9 | "state": "ne", 10 | "county": "Dixon" 11 | }, 12 | "data": "http://gis1.gisworkshop.com/arcgis/rest/services/DixonEM/MapServer/2", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "STRUCTNO", 17 | "street": [ 18 | "PREDIR", 19 | "STREETNAME", 20 | "STREETTYPE", 21 | "SUFDIR" 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /sources/us/wi/jefferson.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55055", 5 | "name": "Jefferson County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "Jefferson" 11 | }, 12 | "data": "http://jeffarcgis.jeffersoncountywi.gov/arcgis/rest/services/Public/Property_Ownership/MapServer/24", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "vector.SDE.Address.HSENO", 17 | "street": "vector.SDE.Address.STREET", 18 | "postcode": "vector.SDE.Address.ZIP" 19 | } 20 | } -------------------------------------------------------------------------------- /sources/us/wy/carbon.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "56007", 5 | "name": "Carbon County", 6 | "state": "Wyoming" 7 | }, 8 | "country": "us", 9 | "state": "wy", 10 | "county": "Carbon" 11 | }, 12 | "data": "http://arcmobile.co.albany.wy.us/arcgis/rest/services/CarbonCounty/CarbonCntyWebMap/MapServer/4", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "streetno", 17 | "street": [ 18 | "streetname", 19 | "streetsuf" 20 | ], 21 | "postcode": "zipcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/ca/solano.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "06095", 5 | "name": "Solano County", 6 | "state": "California" 7 | }, 8 | "country": "us", 9 | "state": "ca", 10 | "county": "Solano" 11 | }, 12 | "attribution": "Solano County", 13 | "data": "http://regis.solanocounty.com/ArcGIS/rest/services/ParcelSiteNum/MapServer/0", 14 | "type": "ESRI", 15 | "conform": { 16 | "type": "geojson", 17 | "number": ["SITENUM", "UNITBLDG"], 18 | "street": "SITEROAD", 19 | "postcode": "ZIP", 20 | "city": "CITY" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sources/us/mo/boone.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "29019", 5 | "name": "Boone County", 6 | "state": "Missouri" 7 | }, 8 | "country": "us", 9 | "state": "mo", 10 | "county": "Boone" 11 | }, 12 | "type": "ESRI", 13 | "data": "https://maps.showmeboone.com/arcgis/rest/services/BC_Basemap_Address/MapServer/0", 14 | "conform": { 15 | "type": "geojson", 16 | "number": ["HOUSENO", "POST_QUAL", "APT"], 17 | "street": ["PRE_DIR", "STREET", "SUFFIX", "POST_DIR"], 18 | "postcode": "ZIP", 19 | "city": "CITY" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /sources/us/pa/dauphin.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "42027", 5 | "name": "Dauphin County", 6 | "state": "Pennsylvania" 7 | }, 8 | "country": "us", 9 | "state": "pa", 10 | "county": "Dauphin" 11 | }, 12 | "data": "https://gis.dauphincounty.org/arcgis/rest/services/Parcels/MapServer/1", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "house_number", 17 | "street": [ 18 | "prefix_directional", 19 | "street_name", 20 | "street_suffix" 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /sources/us/sc/beaufort.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "45013", 5 | "name": "Beaufort County", 6 | "state": "South Carolina" 7 | }, 8 | "country": "us", 9 | "state": "sc", 10 | "county": "Beaufort" 11 | }, 12 | "type": "ESRI", 13 | "data": "http://webgis.bcgov.net/arcgis/rest/services/Addresses/MapServer/0", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "STREETNUM", 17 | "street": [ 18 | "PREDIRECT", 19 | "STREETNAME", 20 | "TYPE", 21 | "POSTDIRECT" 22 | ] 23 | } 24 | } -------------------------------------------------------------------------------- /sources/us/wv/hancock.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "54029", 5 | "name": "Hancock County", 6 | "state": "West Virginia" 7 | }, 8 | "country": "us", 9 | "state": "wv", 10 | "county": "Hancock" 11 | }, 12 | "data": "https://services2.arcgis.com/tvHADotIheMdYJmO/ArcGIS/rest/services/Address.gdb/FeatureServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "ADDRESS", 17 | "street": "ROADNAME", 18 | "city": "COMMUNITY", 19 | "district": "COUNTY", 20 | "accuracy": 1 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/wv/preston.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "54077", 5 | "name": "Preston County", 6 | "state": "West Virginia" 7 | }, 8 | "country": "us", 9 | "state": "wv", 10 | "county": "Preston" 11 | }, 12 | "data": "http://bkrgis.bakerprojects.com/ArcGIS/rest/services/PrestonCounty/PrestonCounty_Addess/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "Number_", 17 | "street": "Street", 18 | "city": "Community", 19 | "postcode": "ZIP", 20 | "accuracy": 1 21 | } 22 | } -------------------------------------------------------------------------------- /sources/ca/on/city_of_windsor.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "windsor" 6 | }, 7 | "data": "http://www.citywindsor.ca/opendata/Lists/OpenData/Attachments/20/Land_Parcels_LL84.zip", 8 | "website": "http://www.citywindsor.ca/opendata/pages/open-data-catalogue.aspx", 9 | "license": "http://www.citywindsor.ca/opendata/Documents/OpenDataTermsofUse.pdf", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "split": "ADD_RANGE", 14 | "number": "auto_number", 15 | "street": "auto_street", 16 | "type": "shapefile-polygon" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/ct/statewide.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "09", 5 | "state": "Connecticut" 6 | }, 7 | "country": "us", 8 | "state": "ct" 9 | }, 10 | "conform": { 11 | "type": "geojson", 12 | "number": "AddressNumber", 13 | "street": "CompleteStreetName", 14 | "unit": "AddressNumberSuffix", 15 | "postcode": "ZipCode", 16 | "city": "Municipal_PlaceName", 17 | "region": "County_PlaceName" 18 | }, 19 | "data": "http://www.ctgismaps2.ct.gov/arcgis/rest/services/CT_Open_Maps/Address_Points/MapServer/0", 20 | "type": "ESRI" 21 | } 22 | -------------------------------------------------------------------------------- /sources/us/nc/union.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37179", 5 | "name": "Union County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Union" 11 | }, 12 | "data": "http://www.co.union.nc.us/Portals/0/GIS/shapes/address_points.zip", 13 | "license": "", 14 | "year": "11/2013", 15 | "type": "http", 16 | "compression": "zip", 17 | "conform": { 18 | "number": "num", 19 | "street": [ 20 | "name", 21 | "type" 22 | ], 23 | "type": "shapefile" 24 | } 25 | } -------------------------------------------------------------------------------- /sources/us/ne/omaha.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "3137000", 5 | "place": "Omaha city", 6 | "state": "Nebraska" 7 | }, 8 | "country": "us", 9 | "state": "ne", 10 | "place": "Omaha" 11 | }, 12 | "data": "http://gis.dogis.org/arcgis/rest/services/House_Numbers/MapServer/0", 13 | "license": "Imdemnification?", 14 | "type": "ESRI", 15 | "conform": { 16 | "type": "geojson", 17 | "number": "ADDRNUM", 18 | "street": "FULLNAME", 19 | "city": "MUNICIPALITY", 20 | "postcode": "ZIP", 21 | "accuracy": 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /sources/us/nm/dona_ana-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "35013", 5 | "name": "Doña Ana County", 6 | "state": "New Mexico" 7 | }, 8 | "country": "us", 9 | "state": "nm", 10 | "county": "Doña Ana" 11 | }, 12 | "data": "http://www.pdnmapa.org/HTML/dacshps/DAC_Address.zip", 13 | "license": "", 14 | "year": "", 15 | "type": "http", 16 | "compression": "zip", 17 | "conform": { 18 | "number": "address", 19 | "street": [ 20 | "streetname", 21 | "st_suffix" 22 | ], 23 | "type": "shapefile" 24 | } 25 | } -------------------------------------------------------------------------------- /sources/us/oh/fairfield.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39045", 5 | "name": "Fairfield County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Fairfield" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/FAI_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "PREFIX", 19 | "NAME", 20 | "TYPE", 21 | "SUFFIX" 22 | ], 23 | "type": "shapefile" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /sources/us/tn/rutherford.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "47149", 5 | "name": "Rutherford County", 6 | "state": "Tennessee" 7 | }, 8 | "country": "us", 9 | "state": "tn", 10 | "county": "Rutherford" 11 | }, 12 | "data": "http://maps.rutherfordcountytn.gov/ArcGIS/rest/services/Basemaps/PublicSafety/MapServer/2", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "addrnum", 16 | "street": [ 17 | "streetname", 18 | "streettype" 19 | ], 20 | "type": "geojson", 21 | "postcode": "zipcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/va/city_of_chesapeake.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51550", 5 | "name": "City of Chesapeake", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "city": "Chesapeake" 11 | }, 12 | "data": "http://gisdata.cityofchesapeake.net/public/rest/services/A_POL_Basemap/MapServer/8", 13 | "type": "ESRI", 14 | "conform": { 15 | "number": "st_number", 16 | "street": [ 17 | "st_name", 18 | "st_type" 19 | ], 20 | "type": "geojson", 21 | "postcode": "st_zipcode" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/ca/on/city_of_hamilton.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "Hamilton" 6 | }, 7 | "data": "http://opendata.hamilton.ca/SHP/Address_Points.zip", 8 | "license": "http://www.hamilton.ca/NR/rdonlyres/C58984A4-FE11-40B9-A231-8572EB922AAA/0/OpenDataTermsAndConditions_Final.htm", 9 | "website": "http://www.hamilton.ca/ProjectsInitiatives/OpenData/", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "number": "street_num", 14 | "street": [ 15 | "name", 16 | "suffix" 17 | ], 18 | "type": "shapefile" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/ca/on/city_of_ottawa.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "Ottawa" 6 | }, 7 | "data": "http://data.ottawa.ca/dataset/9603c5e9-7de6-49b4-b3a1-25c913badc36/resource/8413789d-2a37-4a58-bfc3-c56efe02d29a/download/address-points.shp.zip", 8 | "website": "http://data.ottawa.ca/dataset/address-points-main-and-subordinates", 9 | "license": "http://ottawa.ca/en/mobile-apps-and-open-data/open-data-terms-use", 10 | "type": "http", 11 | "compression": "zip", 12 | "conform": { 13 | "number": "ADDRNUM", 14 | "street": "FULLNAME", 15 | "type": "shapefile" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /sources/is/is_tgf_nf.csv: -------------------------------------------------------------------------------- 1 | { 2 | "website": "http://www.skra.is/", 3 | "data": "ftp://ftp.skra.is/skra/STADFANG.dsv.zip", 4 | "license": "http://www.skra.is/fasteignaskra/nidurhalsthjonusta/stadfangaskra/user-licence/", 5 | "type": "ftp", 6 | "coverage": "country", 7 | "compression": "zip", 8 | "skip": "true", 9 | "note": "This is information for the second street name column from the dataset", 10 | "conform": { 11 | "file": "STADFANG.dsv", 12 | "type": "csv", 13 | "csvsplit": "|", 14 | "lon": "LONG_WGS84", 15 | "lat": "LAT_WGS84", 16 | "number": "HUSNR", 17 | "street": "HEITI_TGF" 18 | } 19 | } -------------------------------------------------------------------------------- /sources/us/mt/statewide.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "30", 5 | "state": "Montana" 6 | }, 7 | "country": "us", 8 | "state": "mt" 9 | }, 10 | "data": "ftp://ftp.geoinfo.msl.mt.gov/Data/Spatial/MSDI/AddressStructures/StructuresFramework_shp.zip", 11 | "website": "http://geoinfo.msl.mt.gov/home/msdi/structures_and_addresses.aspx", 12 | "type": "http", 13 | "compression": "zip", 14 | "conform": { 15 | "number": "ADDNUM", 16 | "street": "FULLRDNAME", 17 | "city": "COMMUNITY", 18 | "postcode": "ZIPCODE", 19 | "type": "shapefile" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/ca/on/city_of_welland.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "city": "Welland" 6 | }, 7 | "data": "http://www.welland.ca/open/Datasheets/Welland_civic_addresses.zip", 8 | "website": "http://www.welland.ca/open/OpendataResp.asp?utitle=Civic%20Addresses", 9 | "license": "http://www.welland.ca/open/OpendataTermUse.asp", 10 | "year": "2014", 11 | "type": "http", 12 | "compression": "zip", 13 | "conform": { 14 | "split": "address", 15 | "number": "auto_number", 16 | "street": "auto_street", 17 | "type": "shapefile", 18 | "srs": "EPSG:26917" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /sources/us/ks/pottawatomie_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20149", 5 | "name": "Pottawatomie County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Pottawatomie" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "NUMBER_", 15 | "street": [ 16 | "STR_NAM", 17 | "STR_TYPE" 18 | ], 19 | "city": "CITY", 20 | "postcode": "ZIP5" 21 | }, 22 | "data": "http://www.pottcounty.org/arcgis/rest/services/AddressAll/MapServer/0", 23 | "type": "ESRI" 24 | } -------------------------------------------------------------------------------- /sources/us/mn/kandiyohi.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "27067", 5 | "name": "Kandiyohi County", 6 | "state": "Minnesota" 7 | }, 8 | "country": "us", 9 | "state": "mn", 10 | "county": "Kandiyohi" 11 | }, 12 | "website": "http://gis.co.kandiyohi.mn.us/maps/kandigis/", 13 | "data": "http://gis.co.kandiyohi.mn.us/arcgis/rest/services/Kandiyohi/MapServer/2", 14 | "type": "ESRI", 15 | "conform": { 16 | "type": "geojson", 17 | "number": "HOUSENUM", 18 | "street": "STREETNAME", 19 | "city": "CITY", 20 | "postcode": "ZIP" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/mt/helena.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "geometry": { 4 | "type": "Point", 5 | "coordinates": [ 6 | -112.04, 7 | 46.59 8 | ] 9 | }, 10 | "country": "us", 11 | "state": "mt", 12 | "city": "Helena" 13 | }, 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HOUSENUMBE", 17 | "street": [ 18 | "PREFIX", 19 | "BASENAME", 20 | "STREETTYPE", 21 | "SUFFIX" 22 | ] 23 | }, 24 | "data": "http://helenamontanamaps.org/arcgisadp/rest/services/HCC/MapServer/0", 25 | "type": "ESRI" 26 | } -------------------------------------------------------------------------------- /sources/us/nc/lincoln.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37109", 5 | "name": "Lincoln County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Lincoln" 11 | }, 12 | "data": "http://207.4.172.206/shpfiles/address.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "website": "http://www.co.lincoln.nc.us/index.aspx?NID=470", 16 | "conform": { 17 | "street": [ 18 | "rdname", 19 | "rdtype" 20 | ], 21 | "number": "hsenumber", 22 | "type": "shapefile" 23 | } 24 | } -------------------------------------------------------------------------------- /sources/us/nm/san_juan.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "35045", 5 | "name": "San Juan County", 6 | "state": "New Mexico" 7 | }, 8 | "country": "us", 9 | "state": "nm", 10 | "county": "San Juan" 11 | }, 12 | "data": "http://maps.sjcounty.net/geoportal/AssessorPublicInfo.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "file": "AssessorPublicInfo/AssessorPublicInfo.shp", 17 | "split": "physaddr", 18 | "street": "auto_street", 19 | "number": "auto_number", 20 | "type": "shapefile-polygon" 21 | } 22 | } -------------------------------------------------------------------------------- /sources/us/oh/fulton.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39051", 5 | "name": "Fulton County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Fulton" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/FUL_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "ST_PREFIX", 19 | "ST_NAME", 20 | "ST_TYPE" 21 | ], 22 | "type": "shapefile", 23 | "postcode": "zipcode" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /sources/us/oh/noble.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39121", 5 | "name": "Noble County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Noble" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/NOB_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "ST_PREFIX", 19 | "ST_NAME", 20 | "ST_TYPE", 21 | "ST_SUFFIX" 22 | ], 23 | "type": "shapefile", 24 | "postcode": "zipcode" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sources/us/tx/collin.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "48085", 5 | "name": "Collin County", 6 | "state": "Texas" 7 | }, 8 | "country": "us", 9 | "state": "tx", 10 | "county": "Collin" 11 | }, 12 | "data": "http://gismaps.collincountytx.gov/ArcGIS/rest/services/dynamic/AddressPoints/MapServer/0", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "street": [ 17 | "ADD_PRE", 18 | "ADD_NAME", 19 | "ADD_TYPE", 20 | "ADD_SUF" 21 | ], 22 | "number": "ADD_NUMBER" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /sources/us/va/augusta.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51015", 5 | "name": "Augusta County", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "county": "Augusta" 11 | }, 12 | "data": "ftp://www.co.augusta.va.us/GIS/Augusta_Address_Points_080514.zip", 13 | "website": "ftp://www.co.augusta.va.us/GIS/", 14 | "year": 2014, 15 | "type": "ftp", 16 | "compression": "zip", 17 | "conform": { 18 | "split": "address", 19 | "street": "auto_street", 20 | "number": "auto_number", 21 | "type": "shapefile" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/ca/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "ISO 3166": { 4 | "alpha2": "CA-NB", 5 | "province": "New Brunswick", 6 | "country": "Canada" 7 | }, 8 | "country": "ca", 9 | "state": "nb" 10 | }, 11 | "data": "http://geonb.snb.ca/downloads/gcadb/geonb_gcadb-bdavg_shp.zip", 12 | "website": "http://www.snb.ca/geonb1/e/DC/catalogue-E.asp", 13 | "license": {"url": "http://geonb.snb.ca/documents/license/geonb-odl_en.pdf"}, 14 | "type": "http", 15 | "compression": "zip", 16 | "conform": { 17 | "number": "civic_num", 18 | "street": "street_nam", 19 | "type": "shapefile" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/co/eagle.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "08037", 5 | "name": "Eagle County", 6 | "state": "Colorado" 7 | }, 8 | "country": "us", 9 | "state": "co", 10 | "county": "Eagle" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "STREETNO", 15 | "street": [ 16 | "STREETDIR", 17 | "STREETNAME", 18 | "STREETSUF" 19 | ], 20 | "city": "LOCCITY" 21 | }, 22 | "data": "http://gismap.eaglecounty.us/arcgiswa/rest/services/FlexApp/Address_ForLabel/MapServer/0", 23 | "type": "ESRI" 24 | } 25 | -------------------------------------------------------------------------------- /sources/us/ct/town_on_trumbull.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "ct", 5 | "city": "Trumbull" 6 | }, 7 | "data": "https://gis.gbrct.org:6443/arcgis/rest/services/Trumbull/Trumbull_Parcels_NAD83/MapServer/4", 8 | "website": "http://www.trumbull-ct.gov/", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "ST_NUM", 13 | "street": { 14 | "function": "regexp", 15 | "field": "Location", 16 | "pattern": "^(?:[0-9]+ )(.*)", 17 | "replace": "$1" 18 | }, 19 | "id": "PAR_ID", 20 | "accuracy": 2 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sources/us/ks/elk_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20049", 5 | "name": "Elk County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Elk" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "eksde.sde.ElkAA.prop_", 15 | "street": [ 16 | "eksde.sde.ElkAA.prop_st", 17 | "eksde.sde.ElkAA.prop_sfx" 18 | ], 19 | "postcode": "eksde.sde.ElkAA.prop_zip" 20 | }, 21 | "data": "http://72.205.198.131/ArcGIS/rest/services/Elk/Elk/MapServer/31", 22 | "type": "ESRI" 23 | } -------------------------------------------------------------------------------- /sources/us/ks/harper_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20077", 5 | "name": "Harper County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Harper" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "add_num", 15 | "street": [ 16 | "st_dir", 17 | "st_name", 18 | "st_type", 19 | "st_suf" 20 | ], 21 | "postcode": "zip" 22 | }, 23 | "data": "http://72.205.198.131/ArcGIS/rest/services/Harper/Harper/MapServer/31", 24 | "type": "ESRI" 25 | } -------------------------------------------------------------------------------- /sources/us/ks/wabaunsee_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20197", 5 | "name": "Wabaunsee County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Wabaunsee" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "add_num", 15 | "street": [ 16 | "road_pre", 17 | "road_name", 18 | "road_type" 19 | ], 20 | "postcode": "zipcode" 21 | }, 22 | "data": "http://72.205.198.131/ArcGIS/rest/services/Wabaunsee/Wabaunsee/MapServer/43", 23 | "type": "ESRI" 24 | } -------------------------------------------------------------------------------- /sources/us/la/st_john_the_baptist_parish.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": {"geoid": "22095", "name": "St. John the Baptist Parish", "state": "Louisiana"}, 4 | "country": "us", 5 | "state": "la", 6 | "county": "St. John the Baptist" 7 | }, 8 | "data": "http://services.geoportalmaps.com/arcgis/rest/services/StJohn_Public_Services/MapServer/1", 9 | "type": "ESRI", 10 | "conform": { 11 | "type": "geojson", 12 | "number": "STR_NUM", 13 | "street": ["PRE_DIR", "STR_NAME", "STR_TYPE", "POST_DIR"], 14 | "city": "COMMUNITY", 15 | "postcode": "ZIP_CODE", 16 | "region": "STATE_1" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/oh/ottawa.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39123", 5 | "name": "Ottawa County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Ottawa" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/OTT_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "ST_PREFIX", 19 | "ST_NAME", 20 | "ST_TYPE", 21 | "ST_SUFFIX" 22 | ], 23 | "type": "shapefile", 24 | "postcode": "zipcode" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sources/at/city_of_vienna.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "at", 4 | "state": "Wien", 5 | "ISO 3166": { 6 | "alpha2": "AT-9" 7 | } 8 | }, 9 | "type": "http", 10 | "data": "http://www.wien.gv.at/wohnen/baupolizei/csv/gebadr.csv", 11 | "website": "https://www.data.gv.at/katalog/dataset/1d5c2411-9719-4c8f-b99d-57a5f4a4ae41", 12 | "license": "https://www.data.gv.at/katalog/dataset/1d5c2411-9719-4c8f-b99d-57a5f4a4ae41", 13 | "conform": { 14 | "type": "csv", 15 | "csvsplit": ";", 16 | "encoding": "latin-1", 17 | "number": "NAME_ONR", 18 | "street": "NAME_STR", 19 | "postcode": "PLZ", 20 | "lon": "ZUG_X", 21 | "lat": "ZUG_Y", 22 | "srs": "EPSG:31256" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /sources/ca/on/niagara_region.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "ca", 4 | "state": "on", 5 | "county": "Niagara" 6 | }, 7 | "data": "http://niagaraodidata.blob.core.windows.net/niagaraopendata/Addresses.zip", 8 | "website": "http://www.niagararegion.ca/government/opendata/data-set.aspx#id=1&tab=data_table&f=xml&r=25&p=1", 9 | "type": "http", 10 | "compression": "zip", 11 | "conform": { 12 | "number": "StreetNo", 13 | "street": [ 14 | "StreetName", 15 | "StreetType" 16 | ], 17 | "city": "Municipal", 18 | "postcode": "PostalCode", 19 | "type": "shapefile" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /sources/us/ca/merced.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "06047", 5 | "name": "Merced County", 6 | "state": "California" 7 | }, 8 | "country": "us", 9 | "state": "ca", 10 | "county": "Merced" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "HOUSE_NUM", 15 | "street": [ 16 | "ST_DIR", 17 | "ST_NAME", 18 | "ST_TYPE" 19 | ] 20 | }, 21 | "attribution": "Merced County", 22 | "data": "http://map.co.merced.ca.us/arcgis/rest/services/internet/basemap_web_fire/MapServer/74", 23 | "type": "ESRI" 24 | } 25 | -------------------------------------------------------------------------------- /sources/us/fl/bay.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "12005", 5 | "name": "Bay County", 6 | "state": "Florida" 7 | }, 8 | "country": "us", 9 | "state": "fl", 10 | "county": "Bay" 11 | }, 12 | "attribution": "Bay County", 13 | "data": "http://www.baycountyfl.gov/gis/downloads/address.zip", 14 | "website": "http://www.baycountyfl.gov/gis/downloads2.php?agreecheck=on", 15 | "type": "http", 16 | "compression": "zip", 17 | "conform": { 18 | "street": "fullname", 19 | "number": "house", 20 | "type": "shapefile", 21 | "postcode": "zip" 22 | } 23 | } -------------------------------------------------------------------------------- /sources/us/ia/muscatine.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "19139", 5 | "name": "Muscatine County", 6 | "state": "Iowa" 7 | }, 8 | "country": "us", 9 | "state": "ia", 10 | "county": "Muscatine" 11 | }, 12 | "website": "https://iowagisdata.org/gisdr/county/muscatine/open/browse", 13 | "license": "http://www.co.muscatine.ia.us/departments/gis_pro.shtml", 14 | "data": "https://iowagisdata.org/gisdr/county/muscatine/open/download?filename=MuscatineIowaAddressPoints.gdb.zip", 15 | "type": "http", 16 | "compression": "zip", 17 | "note": "address point file geodatabase" 18 | } 19 | -------------------------------------------------------------------------------- /sources/us/ks/barber_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20007", 5 | "name": "Barber County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Barber" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "addnum", 15 | "street": [ 16 | "predir", 17 | "streetname", 18 | "sttype", 19 | "stpost" 20 | ], 21 | "postcode": "zipcode" 22 | }, 23 | "data": "http://72.205.198.131/ArcGIS/rest/services/Barber/Barber/MapServer/30", 24 | "type": "ESRI" 25 | } -------------------------------------------------------------------------------- /sources/us/ks/brown_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20013", 5 | "name": "Brown County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Brown" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "add_num", 15 | "street": [ 16 | "road_pre", 17 | "road_name", 18 | "road_type", 19 | "road_post" 20 | ], 21 | "postcode": "zip" 22 | }, 23 | "data": "http://72.205.198.131/ArcGIS/rest/services/Brown/Brown/MapServer/33", 24 | "type": "ESRI" 25 | } -------------------------------------------------------------------------------- /sources/us/nc/blowing_rock.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "nc", 5 | "place": "Blowing Rock" 6 | }, 7 | "data": "http://arcgis.webgis.net/arcgis/rest/services/NC/BlowingRock/MapServer/6", 8 | "type": "ESRI", 9 | "conform": { 10 | "street": { 11 | "function": "regexp", 12 | "field": "PropAddress", 13 | "pattern": "^(?:[0-9]+ )(.*)", 14 | "replace": "$1" 15 | }, 16 | "number": { 17 | "function": "regexp", 18 | "field": "PropAddress", 19 | "pattern": "^([0-9]+)" 20 | }, 21 | "type": "geojson" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /sources/us/nc/haywood.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "37087", 5 | "name": "Haywood County", 6 | "state": "North Carolina" 7 | }, 8 | "country": "us", 9 | "state": "nc", 10 | "county": "Haywood" 11 | }, 12 | "data": "http://maps.haywoodnc.net/downloads/Addresses.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "website": "http://maps.haywoodnc.net/downloads/default.aspx", 16 | "conform": { 17 | "street": [ 18 | "st_name", 19 | "st_type" 20 | ], 21 | "number": "add_num", 22 | "type": "shapefile" 23 | } 24 | } -------------------------------------------------------------------------------- /sources/us/oh/carroll.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39019", 5 | "name": "Carroll County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Carroll" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/CAR_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "ADDR_NUM", 17 | "street": [ 18 | "PRE_DIR", 19 | "STR_NAME", 20 | "STR_TYPE", 21 | "SUF_DIR" 22 | ], 23 | "type": "shapefile", 24 | "postcode": "zip" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sources/us/oh/clark.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39023", 5 | "name": "Clark County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Clark" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/CLA_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "ST_PREFIX", 19 | "ST_NAME", 20 | "ST_TYPE", 21 | "ST_SUFFIX" 22 | ], 23 | "type": "shapefile", 24 | "postcode": "zipcode" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sources/us/oh/licking.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39089", 5 | "name": "Licking County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Licking" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/LIC_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "ADDR_NUM", 17 | "street": [ 18 | "PRE_DIR", 19 | "STR_NAME", 20 | "STR_TYPE", 21 | "SUF_DIR" 22 | ], 23 | "type": "shapefile", 24 | "postcode": "zip" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sources/us/tx/round_rock.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "country": "us", 4 | "state": "tx", 5 | "city": "Round Rock" 6 | }, 7 | "website": "http://www.roundrocktexas.gov/departments/gis/downloadable-gis-files/", 8 | "data": "http://www.roundrocktexas.gov/main/wp-content/uploads/2014/12/address.zip", 9 | "license": { 10 | "text": "Indemnification", 11 | "attribution": false, 12 | "share-alike": false 13 | }, 14 | "year": "2014", 15 | "type": "http", 16 | "compression": "zip", 17 | "conform": { 18 | "street": "rd_fullnam", 19 | "number": "addr_numbe", 20 | "type": "shapefile" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /sources/us/va/city_of_salem.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "51775", 5 | "name": "City of Salem", 6 | "state": "Virginia" 7 | }, 8 | "country": "us", 9 | "state": "va", 10 | "city": "Salem" 11 | }, 12 | "data": "http://gis.salemva.gov/ArcGIS/rest/services/ParcelDataNX/MapServer/19", 13 | "type": "ESRI", 14 | "website": "http://gis.salemva.gov/", 15 | "conform": { 16 | "street": "SalemGIS.DBO.RlEstD.street_name", 17 | "number": "SalemGIS.DBO.RlEstD.street_number", 18 | "type": "geojson", 19 | "postcode": "salemgis.dbo.rlestd.zip_code" 20 | } 21 | } -------------------------------------------------------------------------------- /sources/us/wi/la_crosse.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "55063", 5 | "name": "La Crosse County", 6 | "state": "Wisconsin" 7 | }, 8 | "country": "us", 9 | "state": "wi", 10 | "county": "La Crosse" 11 | }, 12 | "data": "http://gis.lacrossecounty.org/arcgis/rest/services/AGOL/AddressPoints/MapServer/1", 13 | "type": "ESRI", 14 | "conform": { 15 | "type": "geojson", 16 | "number": "HOUSENUMBE", 17 | "street": [ 18 | "STREETNAME", 19 | "STREETTYPE", 20 | "STREETSUFF" 21 | ], 22 | "postcode": "ZIP" 23 | } 24 | } -------------------------------------------------------------------------------- /sources/us/wy/city_of_wright.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "geometry": { 4 | "type": "Point", 5 | "coordinates": [ 6 | -105.517, 7 | 43.751 8 | ] 9 | }, 10 | "country": "us", 11 | "state": "wy", 12 | "city": "Wright" 13 | }, 14 | "data": "http://gis.ccgov.net/arcgis/rest/services/BaseMapRebuild/MapServer/2", 15 | "type": "ESRI", 16 | "conform": { 17 | "type": "geojson", 18 | "number": "HOUSE", 19 | "unit": "UNIT", 20 | "street": [ 21 | "DIRECTION", 22 | "STREET", 23 | "SUFFIX" 24 | ] 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sources/fr/ain.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "ISO 3166": { 4 | "alpha2": "FR-01" 5 | }, 6 | "country": "fr" 7 | }, 8 | "website": "http://adresse.data.gouv.fr/download/", 9 | "note": "Downloaded and cached 2015-06-18", 10 | "data": "http://data.openaddresses.io/cache/fr/BAN_licence_gratuite_repartage_01.zip", 11 | "type": "http", 12 | "compression": "zip", 13 | "conform": { 14 | "type": "csv", 15 | "csvsplit": ";", 16 | "number": "numero", 17 | "street": "nom_voie", 18 | "lon": "lon", 19 | "lat": "lat", 20 | "city": "nom_commune", 21 | "postcode": "code_post" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /sources/fr/lot.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "ISO 3166": { 4 | "alpha2": "FR-46" 5 | }, 6 | "country": "fr" 7 | }, 8 | "website": "http://adresse.data.gouv.fr/download/", 9 | "note": "Downloaded and cached 2015-06-18", 10 | "data": "http://data.openaddresses.io/cache/fr/BAN_licence_gratuite_repartage_46.zip", 11 | "type": "http", 12 | "compression": "zip", 13 | "conform": { 14 | "type": "csv", 15 | "csvsplit": ";", 16 | "number": "numero", 17 | "street": "nom_voie", 18 | "lon": "lon", 19 | "lat": "lat", 20 | "city": "nom_commune", 21 | "postcode": "code_post" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /sources/fr/var.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "ISO 3166": { 4 | "alpha2": "FR-83" 5 | }, 6 | "country": "fr" 7 | }, 8 | "website": "http://adresse.data.gouv.fr/download/", 9 | "note": "Downloaded and cached 2015-06-18", 10 | "data": "http://data.openaddresses.io/cache/fr/BAN_licence_gratuite_repartage_83.zip", 11 | "type": "http", 12 | "compression": "zip", 13 | "conform": { 14 | "type": "csv", 15 | "csvsplit": ";", 16 | "number": "numero", 17 | "street": "nom_voie", 18 | "lon": "lon", 19 | "lat": "lat", 20 | "city": "nom_commune", 21 | "postcode": "code_post" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /sources/us/co/denver.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "08031", 5 | "name": "Denver County", 6 | "state": "Colorado" 7 | }, 8 | "country": "us", 9 | "state": "co", 10 | "county": "Denver" 11 | }, 12 | "conform": { 13 | "type": "shapefile", 14 | "number": "ADDRESS__1", 15 | "street": [ 16 | "PREDIRECTI", 17 | "STREET_NAM", 18 | "POSTTYPE", 19 | "POSTDIRECT" 20 | ] 21 | }, 22 | "data": "http://data.denvergov.org/download/gis/addresses/shape/addresses.zip", 23 | "type": "http", 24 | "compression": "zip" 25 | } 26 | -------------------------------------------------------------------------------- /sources/us/ks/allen_county.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "20001", 5 | "name": "Allen County", 6 | "state": "Kansas" 7 | }, 8 | "country": "us", 9 | "state": "ks", 10 | "county": "Allen" 11 | }, 12 | "conform": { 13 | "type": "geojson", 14 | "number": "houseno", 15 | "street": [ 16 | "predir", 17 | "streetname", 18 | "streetsuf", 19 | "streetpost" 20 | ], 21 | "postcode": "zipcode" 22 | }, 23 | "data": "http://72.205.198.131/ArcGIS/rest/services/Allen/Allen/MapServer/32", 24 | "type": "ESRI" 25 | } -------------------------------------------------------------------------------- /sources/us/oh/allen.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39003", 5 | "name": "Allen County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Allen" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/ALL_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "ST_PREFIX", 19 | "ST_NAME", 20 | "ST_TYPE", 21 | "ST_SUFFIX" 22 | ], 23 | "type": "shapefile", 24 | "postcode": "zipcode" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sources/us/oh/ashland.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39005", 5 | "name": "Ashland County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Ashland" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/ASH_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "ST_PREFIX", 19 | "ST_NAME", 20 | "ST_TYPE", 21 | "ST_SUFFIX" 22 | ], 23 | "type": "shapefile", 24 | "postcode": "zipcode" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sources/us/oh/athens.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39009", 5 | "name": "Athens County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Athens" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/ATH_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "ST_PREFIX", 19 | "ST_NAME", 20 | "ST_TYPE", 21 | "ST_SUFFIX" 22 | ], 23 | "type": "shapefile", 24 | "postcode": "zipcode" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /sources/us/oh/erie.json: -------------------------------------------------------------------------------- 1 | { 2 | "coverage": { 3 | "US Census": { 4 | "geoid": "39043", 5 | "name": "Erie County", 6 | "state": "Ohio" 7 | }, 8 | "country": "us", 9 | "state": "oh", 10 | "county": "Erie" 11 | }, 12 | "data": "http://gis3.oit.ohio.gov/LBRS/_downloads/ERI_ADDS.zip", 13 | "type": "http", 14 | "compression": "zip", 15 | "conform": { 16 | "number": "HOUSENUM", 17 | "street": [ 18 | "ST_PREFIX", 19 | "ST_NAME", 20 | "ST_TYPE", 21 | "ST_SUFFIX" 22 | ], 23 | "type": "shapefile", 24 | "postcode": "zipcode" 25 | } 26 | } 27 | --------------------------------------------------------------------------------