Update data
This commit is contained in:
parent
89088101e3
commit
727a67050f
88019
Address/Primary_Address.geojson
Normal file
88019
Address/Primary_Address.geojson
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1 +0,0 @@
|
||||||
UTF-8
|
|
Binary file not shown.
|
@ -1 +0,0 @@
|
||||||
PROJCS["NAD_1983_HARN_StatePlane_Oregon_North_FIPS_3601_Feet_Intl",GEOGCS["GCS_North_American_1983_HARN",DATUM["D_North_American_1983_HARN",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",8202099.737532808],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-120.5],PARAMETER["Standard_Parallel_1",44.33333333333334],PARAMETER["Standard_Parallel_2",46.0],PARAMETER["Latitude_Of_Origin",43.66666666666666],UNIT["Foot",0.3048]]
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
320518
Address/processed.geojson
320518
Address/processed.geojson
File diff suppressed because it is too large
Load Diff
|
@ -1,28 +0,0 @@
|
||||||
<!DOCTYPE qgis PUBLIC 'http://mrcc.com/qgis.dtd' 'SYSTEM'>
|
|
||||||
<qgis version="3.22.10-Białowieża">
|
|
||||||
<identifier>geopoints</identifier>
|
|
||||||
<parentidentifier></parentidentifier>
|
|
||||||
<language>ENG</language>
|
|
||||||
<type>dataset</type>
|
|
||||||
<title>geopoints</title>
|
|
||||||
<abstract></abstract>
|
|
||||||
<links/>
|
|
||||||
<fees></fees>
|
|
||||||
<encoding></encoding>
|
|
||||||
<crs>
|
|
||||||
<spatialrefsys>
|
|
||||||
<wkt>PROJCRS["NAD83(HARN) / Oregon North (ft)",BASEGEOGCRS["NAD83(HARN)",DATUM["NAD83 (High Accuracy Reference Network)",ELLIPSOID["GRS 1980",6378137,298.257222101,LENGTHUNIT["metre",1]]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433]],ID["EPSG",4152]],CONVERSION["SPCS83 Oregon North zone (International feet)",METHOD["Lambert Conic Conformal (2SP)",ID["EPSG",9802]],PARAMETER["Latitude of false origin",43.6666666666667,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8821]],PARAMETER["Longitude of false origin",-120.5,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8822]],PARAMETER["Latitude of 1st standard parallel",46,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8823]],PARAMETER["Latitude of 2nd standard parallel",44.3333333333333,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8824]],PARAMETER["Easting at false origin",8202099.738,LENGTHUNIT["foot",0.3048],ID["EPSG",8826]],PARAMETER["Northing at false origin",0,LENGTHUNIT["foot",0.3048],ID["EPSG",8827]]],CS[Cartesian,2],AXIS["easting (X)",east,ORDER[1],LENGTHUNIT["foot",0.3048]],AXIS["northing (Y)",north,ORDER[2],LENGTHUNIT["foot",0.3048]],USAGE[SCOPE["Engineering survey, topographic mapping."],AREA["United States (USA) - Oregon - counties of Baker; Benton; Clackamas; Clatsop; Columbia; Gilliam; Grant; Hood River; Jefferson; Lincoln; Linn; Marion; Morrow; Multnomah; Polk; Sherman; Tillamook; Umatilla; Union; Wallowa; Wasco; Washington; Wheeler; Yamhill."],BBOX[43.95,-124.17,46.26,-116.47]],ID["EPSG",2913]]</wkt>
|
|
||||||
<proj4>+proj=lcc +lat_0=43.6666666666667 +lon_0=-120.5 +lat_1=46 +lat_2=44.3333333333333 +x_0=2500000.0001424 +y_0=0 +ellps=GRS80 +units=ft +no_defs</proj4>
|
|
||||||
<srsid>882</srsid>
|
|
||||||
<srid>2913</srid>
|
|
||||||
<authid>EPSG:2913</authid>
|
|
||||||
<description>NAD83(HARN) / Oregon North (ft)</description>
|
|
||||||
<projectionacronym>lcc</projectionacronym>
|
|
||||||
<ellipsoidacronym>EPSG:7019</ellipsoidacronym>
|
|
||||||
<geographicflag>false</geographicflag>
|
|
||||||
</spatialrefsys>
|
|
||||||
</crs>
|
|
||||||
<extent>
|
|
||||||
<spatial miny="44.13963100000000139" dimensions="2" maxy="45.29047299999999865" crs="EPSG:2913" maxz="0" minx="-124.18405799999999317" maxx="-121.95829399999999509" minz="0"/>
|
|
||||||
</extent>
|
|
||||||
</qgis>
|
|
BIN
Address/qgis.qgz
BIN
Address/qgis.qgz
Binary file not shown.
|
@ -110,6 +110,8 @@ def formatstreetname(name):
|
||||||
if name == "NW":
|
if name == "NW":
|
||||||
return "Northwest"
|
return "Northwest"
|
||||||
# Suffixes
|
# Suffixes
|
||||||
|
if name == "AV":
|
||||||
|
return "Avenue"
|
||||||
if name == "AVE":
|
if name == "AVE":
|
||||||
return "Avenue"
|
return "Avenue"
|
||||||
if name == "BLVD":
|
if name == "BLVD":
|
||||||
|
@ -132,6 +134,8 @@ def formatstreetname(name):
|
||||||
return "Hill"
|
return "Hill"
|
||||||
if name == "HOLW":
|
if name == "HOLW":
|
||||||
return "Hollow"
|
return "Hollow"
|
||||||
|
if name == "HW":
|
||||||
|
return "Highway"
|
||||||
if name == "HWY":
|
if name == "HWY":
|
||||||
return "Highway"
|
return "Highway"
|
||||||
if name == "LN":
|
if name == "LN":
|
||||||
|
|
Loading…
Reference in New Issue
Block a user