File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,8 @@ module.exports = function(app) {
9090 retObj . CBPSection = hierarchy === "County" || ( hierarchy === "State" && id !== "04000US72" ) || hierarchy === "MSA"
9191 retObj . includeIncome = hierarchy === "Nation" ? `&exclude=State:0` : hierarchy === "State" ? `&include=State+County:${ id } ` : hierarchy === "County" ? `&include=County+Tract:${ id } ` : hierarchy === "Place" ? `&include=Place+Place-Tract:${ id } ` : "" ;
9292 retObj . incomeDrilldown = hierarchy === "Nation" ? "State" : hierarchy === "State" ? "County" : hierarchy === "County" ? "Tract" : hierarchy === "Place" ? "Place-Tract" : "" ;
93+ retObj . specialTessCut = hierarchy === "Nation" ? "&exclude=State:0" : hierarchy === "State" ? `&include=State+County:${ id } ` : hierarchy === "County" ? `&include=County+Tract:${ id } ` : hierarchy === "Place" ? `&include=State+Place:${ id } ` : hierarchy === "MSA" ? `&include=State+County:${ id } ` : hierarchy === "PUMA" ? `&include=State+PUMA:${ id } ` : "" ;
94+ retObj . specialTessDrilldown = hierarchy === "Nation" ? "State" : hierarchy === "State" ? "County" : hierarchy === "MSA" ? "County" : hierarchy === "PUMA" ? "PUMA" : hierarchy === "County" ? "Tract" : hierarchy === "Place" ? "Place" : "" ;
9395
9496 if ( hierarchy !== "Nation" && hierarchy !== "State" && hierarchy !== "PUMA" ) {
9597 const url = `${ CANON_GEOSERVICE_API } relations/intersects/${ id } ?targetLevels=state` ;
You can’t perform that action at this time.
0 commit comments